IndivisaTextSans-Regular.svg 887 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590
  1. <?xml version="1.0" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
  3. <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
  4. <metadata></metadata>
  5. <defs>
  6. <font id="indivisa_text_sansregular" horiz-adv-x="575" >
  7. <font-face units-per-em="1000" ascent="754" descent="-246" />
  8. <missing-glyph horiz-adv-x="258" />
  9. <glyph unicode="&#x2f;symbol&#x33;&#x2f;" horiz-adv-x="957" d="M505 638l68 -270h270l-203 -135l136 -270l-271 135l-270 -270l135 405l-270 203l338 -68zM814 87q18 0 30.5 -12.5t12.5 -31.5q0 -18 -12.5 -30.5t-30.5 -12.5t-30.5 12.5t-12.5 30.5q0 19 12.5 31.5t30.5 12.5zM854 43q0 17 -11.5 29t-28.5 12t-28.5 -12t-11.5 -29 t12 -28.5t28 -11.5t28 11.5t12 28.5zM796 68h18q8 0 11 -2q6 -3 6 -10q0 -5 -4 -9q-3 -3 -6 -3q7 -3 8 -10q2 -14 3 -16h-7q-1 2 -2 7.5t-1 6.5q0 9 -10 9h-9v-23h-7v50zM803 47h10q5 0 7 1q3 3 3 6q0 9 -10 9h-10v-16z" />
  10. <glyph unicode="&#x2f;symbol&#x32;&#x2f;" horiz-adv-x="932" d="M494 570l52 -90l-137 -240h-103l137 240l-52 90h103zM357 570l52 -90l-138 -240h-103l138 240l-52 90h103zM752 120h-103l-137 240l51 90l137 -240h103zM683 0h-103l-137 240l51 90l138 -240h103zM100 120l51 90h275l51 -90h-274l-52 -90zM168 0l52 90h274l52 -90h-275 l-51 -90zM789 88q18 0 30.5 -13t12.5 -31t-12.5 -31t-30.5 -13t-30.5 13t-12.5 31t12.5 31t30.5 13zM829 44q0 16 -11.5 28t-28.5 12t-28.5 -12t-11.5 -28t11.5 -28t28.5 -12t28.5 12t11.5 28zM771 69h18q7 0 11 -2q5 -4 5 -11q0 -5 -3 -8q-1 -2 -6 -4q7 -1 8 -9q0 -8 3 -16 h-8q-1 2 -1.5 6.5t-0.5 6.5q-1 10 -11 10h-8v-23h-7v50zM778 47h10q5 0 7 1q3 3 3 7q0 8 -10 8h-10v-16z" />
  11. <glyph unicode="&#x2f;symbol&#x35;&#x2f;" horiz-adv-x="705" d="M232 -6l-132 136l124 234l129 -136zM474 -6l-121 234l128 136l124 -234z" />
  12. <glyph unicode="&#x2f;symbol&#x31;&#x2f;" horiz-adv-x="5534" d="M1865 412q-25 0 -40.5 14.5t-15.5 37.5q0 35 32.5 64t70.5 29q24 0 39 -13.5t15 -37.5q0 -36 -31 -65t-70 -29zM1284 412q-26 0 -41.5 14.5t-15.5 37.5q0 35 33 64t71 29q24 0 38.5 -13.5t14.5 -37.5q0 -36 -31 -65t-69 -29zM959 0q0 42 11 108q-16 -50 -51.5 -82.5 t-78.5 -32.5q-41 0 -63 29.5t-22 82.5q0 62 27 121t84 101t132 42q17 0 25 -1l16 73l6 102l136 7q0 -67 -46 -273t-46 -277h-130zM100 0l78 364q17 86 21 136l128 7l11 -15l-104 -492h-134zM3503 492l-57 -492h-131l20 175q5 50 33 215h-3q-31 -102 -81 -215l-76 -175h-149 l-2 175q-2 121 9 215h-2q-32 -130 -59 -215l-53 -175h-109l154 500l184 6l1 -137q2 -134 -15 -259h2q39 126 94 259l56 131l169 7zM5316 300q-37 -177 -37 -183q0 -34 36 -34q25 0 59 18l-9 -79q-52 -29 -114 -29q-105 0 -105 100q0 20 40 210l-47 1l9 44l54 14l53 95l81 6 l13 -15l-20 -86h99l6 -14l-17 -51zM336 0q0 79 41 260l6 102l137 7q0 -31 -7 -89h2q52 89 134 89q34 0 53 -19.5t19 -51.5q0 -27 -26 -147q-18 -85 -18 -151h-131q0 55 19 150q15 78 15 87q0 24 -17 24q-34 0 -64 -82.5t-32 -178.5h-131zM1170 0q0 72 27 193l14 67l6 102 l137 7q0 -46 -27 -177t-27 -192h-130zM1399 362l140 7q13 -129 -5 -289h2q76 151 91 284q22 5 50 5q32 0 48.5 -8.5t16.5 -33.5q0 -46 -51 -147.5t-116 -179.5h-149q-5 228 -27 362zM1752 0q0 69 26 193l15 67l6 102l137 7q0 -46 -27 -177t-27 -192h-130zM4716 0 q0 79 41 260l6 102l137 7q0 -12 -7 -89h2q52 89 134 89q34 0 53 -19.5t19 -51.5q0 -27 -26 -147q-19 -90 -19 -151h-130q0 55 19 150q15 78 15 87q0 24 -17 24q-35 0 -65 -82t-32 -179h-130zM2245 256q-52 30 -97 30q-18 0 -30 -7t-12 -19q0 -14 20 -26.5t44 -22t44 -33 t20 -56.5q0 -57 -53 -93t-128 -36q-78 0 -118 28l27 93q57 -38 111 -38q19 0 29.5 7.5t10.5 18.5q0 13 -20 26t-44 23t-44 33t-20 55q0 56 54.5 93t128.5 37q58 0 104 -18zM2525 369q88 0 146 -32l-29 -128q-31 -145 -31 -209h-130q0 37 12 112q-15 -52 -51 -85.5t-81 -33.5 q-41 0 -62.5 29.5t-21.5 83.5q0 62 26.5 120.5t85 100.5t136.5 42zM4653 51q-67 -58 -159 -58q-65 0 -103.5 35t-38.5 102q0 94 68.5 166.5t167.5 72.5q54 0 86.5 -23.5t32.5 -64.5q0 -57 -60 -96.5t-161 -43.5v-1q0 -64 63 -64q42 0 90 28zM3936 0q0 74 42 260l5 102l137 7 q0 -31 -7 -89h2q53 89 134 89q34 0 53 -19.5t19 -51.5q0 -27 -26 -147q-18 -85 -18 -151h-131q0 55 19 150q15 71 15 87q0 24 -17 24q-34 0 -64 -82.5t-32 -178.5h-131zM3768 369q87 0 145 -32l-28 -128q-31 -145 -31 -209h-130q0 45 12 112q-15 -52 -51 -85.5t-81 -33.5 q-41 0 -63 29.5t-22 83.5q0 46 16 91.5t46 84t79 63t108 24.5zM4490 177q47 10 73 34t26 59q0 31 -22 31q-28 0 -48.5 -38.5t-28.5 -85.5zM3677 101q23 0 47 43t38 101q1 8 4.5 24.5t4.5 19.5q-16 8 -27 8q-34 0 -62.5 -54.5t-28.5 -101.5q0 -40 24 -40zM913 101 q22 0 44.5 39.5t37.5 94.5q1 9 8 40l3 14q-14 8 -27 8q-33 0 -61.5 -54.5t-28.5 -101.5q0 -40 24 -40zM2435 101q23 0 47 43.5t37 100.5q3 14 9 44q-14 8 -27 8q-34 0 -62 -54.5t-28 -101.5q0 -40 24 -40z" />
  13. <glyph unicode="&#x2f;symbol&#x34;&#x2f;" horiz-adv-x="2607" d="M1684 406q0 65 -11 128l126 14l15 -15v-533h-130v406zM1889 406q0 62 -10 128l126 14l14 -15v-533h-130v406zM427 101v-101h-320v362q0 80 -7 135l126 7l14 -14v-396zM925 21l7 109q62 -36 144 -36q50 0 50 36q0 20 -31.5 41.5t-69 40.5t-69 57t-31.5 88q0 69 55 108 t138 39q80 0 127 -18l-14 -111q-56 29 -111 29q-27 0 -42.5 -11t-15.5 -29q0 -20 20.5 -38t50 -34t59.5 -35t50.5 -51t20.5 -72q0 -66 -53.5 -103.5t-139.5 -37.5q-41 0 -83.5 8t-61.5 20zM795 0l-106 -7q-11 16 -21 49h-4q-34 -49 -104 -49q-43 0 -70 23t-27 66 q0 113 191 118v20q0 54 -58 54q-55 0 -108 -29l-8 97q72 26 150 26q154 0 154 -135q0 -25 -2 -69t-2 -70q0 -51 15 -94zM1626 0l-107 -7q-12 20 -21 49h-3q-34 -49 -105 -49q-43 0 -69.5 23t-26.5 66q0 113 191 118v20q0 54 -58 54q-54 0 -109 -29l-7 97q72 26 150 26 q153 0 153 -135q0 -25 -1.5 -69.5t-1.5 -69.5q0 -51 15 -94zM2405 213q0 -24 -1 -36l-11 -11h-191q14 -83 98 -83q44 0 84 21l7 -81q-46 -30 -127 -30q-90 0 -144 47.5t-54 134.5q0 85 52 139t132 54q72 0 113.5 -43t41.5 -112zM2199 207l78 4q2 14 2 26q0 59 -34 59 q-44 0 -46 -89zM654 74v88q-29 -3 -47 -18t-18 -39q0 -18 10 -29t27 -11q16 0 28 9zM1485 74v88q-29 -3 -47 -18t-18 -39q0 -18 10 -29t27 -11q16 0 28 9zM2464 85q18 0 30.5 -13t12.5 -31t-12.5 -31t-30.5 -13t-31 13t-13 31t13 31t31 13zM2504 41q0 17 -12 28.5t-28 11.5 t-28 -11.5t-12 -28.5t12 -28.5t28 -11.5t28 11.5t12 28.5zM2446 66h18q7 0 11 -3q5 -3 5 -10q0 -5 -3 -9q-3 -3 -6 -3q7 -1 8 -10q0 -7 3 -15h-8q-1 2 -1.5 6.5t-0.5 6.5q-1 9 -11 9h-8v-22h-7v50zM2453 44h10q5 0 7 1q3 3 3 7q0 8 -10 8h-10v-16z" />
  14. <glyph unicode=" " horiz-adv-x="258" />
  15. <glyph unicode="&#x09;" horiz-adv-x="258" />
  16. <glyph unicode="&#xa0;" horiz-adv-x="258" />
  17. <glyph unicode="!" horiz-adv-x="280" d="M163 201h-50q-14 416 -17 485l74 10l9 -8q-5 -265 -16 -487zM188 50q0 -25 -14.5 -42.5t-38.5 -17.5q-22 0 -35 15t-13 38q0 24 16 42t39 18q21 0 33.5 -15t12.5 -38z" />
  18. <glyph unicode="&#x22;" horiz-adv-x="278" d="M104 756l7 -11l-23 -243h-30l-20 254h66zM227 756l6 -11l-23 -243h-29l-21 254h67z" />
  19. <glyph unicode="#" horiz-adv-x="694" d="M196 -10l-42 5l-8 8l36 145h-134l-8 8l7 41h147l37 146h-141l-8 8l7 42h154l38 153l42 -5l8 -8l-35 -140h168l38 153l42 -5l8 -8l-35 -140h129l8 -8l-6 -42h-143l-37 -146h141l8 -8l-6 -41h-155l-39 -158l-41 5l-8 8l35 145h-168zM247 197h169l36 146h-169z" />
  20. <glyph unicode="$" horiz-adv-x="479" d="M222 -140l-8 8v122q-93 0 -155 36l7 70q66 -42 153 -42q58 0 90 30.5t32 80.5q0 24 -8.5 45t-18.5 35t-33 31t-35 24t-41 24q-27 16 -42 25.5t-37 28t-33.5 36t-20.5 43.5t-9 57q0 73 44.5 120.5t118.5 58.5v130l32 3l8 -8v-122h3q84 0 139 -31l-10 -71q-58 39 -131 39 q-58 0 -91 -30t-33 -80q0 -27 10.5 -50t29 -39.5t40 -31t46.5 -28.5q9 -5 13 -7q30 -17 50.5 -32t43 -39t34 -55t11.5 -70q0 -75 -45.5 -122t-121.5 -57v-129z" />
  21. <glyph unicode="%" horiz-adv-x="969" d="M418 498q0 -97 -52.5 -150.5t-128.5 -53.5t-124 53t-48 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM737 696l-423 -706h-46l421 706h48zM131 497q0 -73 28.5 -116.5t81.5 -43.5q51 0 81.5 41.5t30.5 115.5t-28.5 117.5t-80.5 43.5t-82.5 -40.5t-30.5 -117.5z M904 126q0 -97 -52.5 -150.5t-128.5 -53.5q-77 0 -124.5 53t-47.5 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM616 125q0 -73 28.5 -117t81.5 -44q51 0 81.5 41.5t30.5 116.5q0 74 -28 117.5t-81 43.5q-51 0 -82 -40.5t-31 -117.5z" />
  22. <glyph unicode="&#x26;" horiz-adv-x="751" d="M334 635q-46 0 -78 -27t-32 -71q0 -31 20 -70t38 -62t49 -59l147 -175q8 -11 26 -31q49 68 49 162q0 41 -6 71l75 12l13 -14q6 -160 -94 -270q55 -52 97 -52q30 0 57 18l10 -51q-33 -26 -86 -26q-66 0 -133 62q-88 -62 -192 -62q-96 0 -153.5 52t-58.5 132 q1 59 36.5 110.5t96.5 82.5q-70 88 -70 165q0 71 53 117.5t138 46.5q64 0 112 -30t71 -82l-43 -59q-51 110 -142 110zM161 189q0 -61 42.5 -103t116.5 -43q74 0 132 44q-21 22 -51 59l-144 170q-8 10 -15 17q-40 -26 -60.5 -65t-20.5 -79z" />
  23. <glyph unicode="'" horiz-adv-x="155" d="M108 756l6 -11l-23 -243h-29l-21 254h67z" />
  24. <glyph unicode="(" horiz-adv-x="378" d="M314 -196q-100 77 -155.5 201t-55.5 276q0 151 55.5 274.5t155.5 200.5l29 -36q-160 -174 -160 -439q0 -266 160 -440z" />
  25. <glyph unicode=")" horiz-adv-x="378" d="M276 281q0 -152 -55.5 -275.5t-155.5 -201.5l-30 37q160 174 160 440q0 265 -160 439l30 36q100 -78 155.5 -201t55.5 -274z" />
  26. <glyph unicode="*" horiz-adv-x="487" d="M222 366l-6 9l15 152l-131 -93l-25 43l4 9l142 63l-149 67l24 43l11 1l124 -89l-15 161h50l5 -9l-16 -155l133 97l25 -43l-5 -10l-140 -63l148 -67l-25 -43l-11 -1l-125 91l16 -163h-49z" />
  27. <glyph unicode="+" d="M510 322h-193v-197h-52l-1 197h-204v47q48 2 204 4l-1 192h54v-192q75 1 193 1l5 -5z" />
  28. <glyph unicode="," horiz-adv-x="231" d="M46 -170q48 92 58 160q-21 2 -34.5 17.5t-13.5 37.5q0 26 18 44.5t43 18.5t39.5 -17t14.5 -49q0 -49 -31 -116t-67 -115z" />
  29. <glyph unicode="-" horiz-adv-x="363" d="M30 272v39h303v-39h-303z" />
  30. <glyph unicode="." horiz-adv-x="234" d="M175 51q0 -26 -17.5 -43.5t-41.5 -17.5t-40 16t-16 41t17.5 43t42.5 18q24 0 39.5 -16t15.5 -41z" />
  31. <glyph unicode="/" horiz-adv-x="353" d="M293 751l8 -8l-187 -747l-43 8l-8 8l187 747z" />
  32. <glyph unicode="0" horiz-adv-x="658" d="M587 347q0 -170 -76 -263.5t-187 -93.5q-113 0 -183 93t-70 255q0 169 75.5 263.5t188.5 94.5t182.5 -94t69.5 -255zM150 345q0 -137 46 -218.5t132 -81.5q83 0 132 78t49 219q0 137 -46 218.5t-132 81.5q-82 0 -131.5 -76.5t-49.5 -220.5z" />
  33. <glyph unicode="1" horiz-adv-x="335" d="M140 609h-1l-116 -27l-12 45l194 69l9 -9v-687h-75v464q0 104 1 145z" />
  34. <glyph unicode="2" horiz-adv-x="578" d="M77 0l-10 64q156 135 249 248t93 200q0 55 -39 90t-107 35q-81 0 -188 -58l-8 62q102 55 212 55q93 0 150.5 -48t57.5 -123q0 -175 -345 -461h200q87 0 160 10l-10 -74h-415z" />
  35. <glyph unicode="3" horiz-adv-x="510" d="M60 642q37 22 90.5 38t104.5 16q78 0 127.5 -39t49.5 -104q0 -60 -46 -111.5t-132 -80.5q97 -7 153.5 -50.5t56.5 -122.5q0 -88 -69.5 -143t-184.5 -55q-86 0 -164 24l8 57q75 -24 154 -24t128 37.5t49 100.5q0 66 -54 96.5t-137 30.5q-36 0 -70 -7v57q111 23 170.5 71 t59.5 107q0 44 -30.5 70.5t-86.5 26.5q-78 0 -172 -53z" />
  36. <glyph unicode="4" horiz-adv-x="594" d="M33 242l305 442l79 11l9 -9v-439q55 0 131 9l-10 -70h-121v-186h-72v186h-310zM99 246v-2q74 2 230 2h25v209q0 115 3 163h-2z" />
  37. <glyph unicode="5" horiz-adv-x="541" d="M73 14l7 58q72 -24 147 -24q78 0 127 42.5t49 115.5q0 72 -45.5 109t-116.5 37q-81 0 -130 -22l-14 12v344h206q87 0 160 10l-5 -73h-296v-226q49 13 104 13q92 0 154 -51t62 -148q0 -100 -70.5 -160.5t-184.5 -60.5q-80 0 -154 24z" />
  38. <glyph unicode="6" horiz-adv-x="592" d="M308 -10q-107 0 -167.5 80.5t-60.5 226.5q0 182 90 290.5t233 108.5q59 0 84 -13l-8 -60q-28 14 -74 14q-101 0 -170.5 -79t-75.5 -231h2q32 35 79.5 53.5t95.5 18.5q87 0 140 -52.5t53 -141.5q0 -99 -63.5 -157t-157.5 -58zM318 345q-48 0 -94 -23t-63 -60 q10 -217 148 -217q63 0 102.5 41.5t39.5 111.5q0 66 -35 106.5t-98 40.5z" />
  39. <glyph unicode="7" horiz-adv-x="529" d="M48 610l10 76h413l9 -8v-46q-113 -132 -191 -300t-88 -332h-78q10 156 95.5 329.5t186.5 291.5v2h-185q-95 0 -172 -13z" />
  40. <glyph unicode="8" horiz-adv-x="579" d="M287 -10q-96 0 -159.5 46.5t-63.5 119.5q0 62 47 112t117 78v2q-142 74 -142 180q0 71 60.5 119.5t147.5 48.5q86 0 143 -47.5t57 -115.5q0 -56 -39.5 -104t-105.5 -77v-1q166 -73 166 -186q0 -74 -64.5 -124.5t-163.5 -50.5zM293 644q-55 0 -95 -31.5t-40 -79.5 q0 -91 141 -153q54 27 88 67.5t34 85.5q0 48 -36.5 79.5t-91.5 31.5zM278 315q-59 -26 -99.5 -67.5t-40.5 -90.5q0 -51 43 -83t107 -32q66 0 109 34t44 85q1 49 -40 84.5t-123 69.5z" />
  41. <glyph unicode="9" horiz-adv-x="592" d="M264 267q-91 0 -146 54.5t-55 145.5q0 102 64 165.5t157 63.5q101 0 164.5 -80t63.5 -221q0 -173 -91.5 -289t-232.5 -116q-45 0 -74 8l-2 59q25 -7 68 -7q105 0 174 79t80 215h-2q-25 -38 -70.5 -57.5t-97.5 -19.5zM280 639q-60 0 -99.5 -46.5t-39.5 -120.5 q0 -68 37 -109.5t104 -41.5q47 0 88 21t62 65q-2 108 -43 170t-109 62z" />
  42. <glyph unicode=":" horiz-adv-x="234" d="M175 376q0 -26 -17.5 -43.5t-41.5 -17.5t-40 16.5t-16 40.5q0 25 17.5 43t42.5 18q23 0 39 -16t16 -41zM175 51q0 -26 -17.5 -43.5t-41.5 -17.5t-40 16t-16 41t17.5 43t42.5 18q24 0 39.5 -16t15.5 -41z" />
  43. <glyph unicode=";" horiz-adv-x="241" d="M182 376q0 -26 -17.5 -43.5t-41.5 -17.5q-23 0 -39.5 16.5t-16.5 40.5q0 25 17.5 43t42.5 18q24 0 39.5 -16t15.5 -41zM46 -170q48 92 58 160q-21 2 -34.5 17.5t-13.5 37.5q0 26 18 44.5t43 18.5t39.5 -17t14.5 -49q0 -49 -31 -116t-67 -115z" />
  44. <glyph unicode="&#x3c;" d="M490 121l-426 211v32l4 7q68 35 207.5 99.5t213.5 95.5v-53l-348 -163l349 -175v-54z" />
  45. <glyph unicode="=" d="M510 417h-450v47q170 5 450 5l5 -6zM510 229h-450v47q170 5 450 5l5 -6z" />
  46. <glyph unicode="&#x3e;" d="M85 121v54l349 175l-348 163v53q74 -31 213.5 -95.5t207.5 -99.5l4 -7v-32z" />
  47. <glyph unicode="?" horiz-adv-x="432" d="M206 213l-47 -1q-9 25 -9 47q0 27 18 52t43.5 46.5t51 44t43.5 54t18 67.5q0 51 -32 82.5t-85 31.5q-42 0 -84.5 -21.5t-71.5 -63.5l-35 40q33 48 87 76t117 28q83 0 132.5 -44t49.5 -118q0 -44 -19.5 -83t-48 -65.5t-56.5 -49t-47.5 -43.5t-19.5 -40t3 -32zM240 50 q0 -25 -14.5 -42.5t-38.5 -17.5q-22 0 -35 15t-13 38q0 24 16 42t39 18q21 0 33.5 -15t12.5 -38z" />
  48. <glyph unicode="@" horiz-adv-x="1138" d="M803 -162q-132 -94 -304 -94q-191 0 -313 121t-122 313q0 157 84 291.5t219.5 210.5t285.5 76q186 0 303.5 -114.5t117.5 -284.5q0 -151 -90.5 -259t-215.5 -108q-50 0 -80.5 19t-40.5 52.5t-8 71.5t15 84h-4q-40 -91 -96 -159t-118 -68q-43 0 -70 38t-27 110 q0 90 39 173.5t113 139t164 55.5q70 0 128 -22l-52 -215q-5 -23 -7.5 -34t-7.5 -36t-5 -39.5t-0.5 -36.5t5.5 -34.5t14.5 -26t24.5 -19.5t37 -6q85 0 160.5 91t75.5 226q0 157 -106.5 260t-268.5 103q-96 0 -193 -39.5t-174.5 -107t-126.5 -169t-49 -214.5 q0 -177 110.5 -290.5t290.5 -113.5q83 0 146 21.5t131 59.5zM471 55q39 0 87 63t81 138.5t46 132.5l12 52q-35 13 -67 13q-54 0 -104 -46.5t-79.5 -116.5t-29.5 -139q0 -97 54 -97z" />
  49. <glyph unicode="A" horiz-adv-x="612" d="M98 0h-74l205 589q25 72 33 103l76 4l11 -10l239 -686h-79l-70 199h-271zM240 404l-51 -145h229l-50 145q-51 152 -63 209h-2q-12 -53 -63 -209z" />
  50. <glyph unicode="B" horiz-adv-x="590" d="M275 0h-172v531q0 87 -8 155h184q103 0 164 -48t61 -128q0 -56 -30.5 -95t-84.5 -58q71 -17 108 -61t37 -108q0 -87 -71 -137.5t-188 -50.5zM269 628h-89v-248h86q77 0 117.5 31.5t40.5 89.5q0 59 -40 93t-115 34zM272 324h-92v-265h95q86 0 131.5 34.5t45.5 97.5 q0 62 -44 97.5t-136 35.5z" />
  51. <glyph unicode="C" horiz-adv-x="592" d="M534 109l9 -65q-72 -54 -188 -54q-130 0 -208.5 90.5t-78.5 252.5q0 166 82.5 264.5t213.5 98.5q105 0 173 -43l-15 -71q-66 48 -155 48q-96 0 -157 -77t-61 -214q0 -127 57.5 -205t160.5 -78q92 0 167 53z" />
  52. <glyph unicode="D" horiz-adv-x="681" d="M613 346q0 -162 -94.5 -254t-248.5 -92h-167v531q0 87 -8 155h188q144 0 237 -92t93 -248zM276 627h-96v-567h93q127 0 193 74t66 208q0 131 -69 208t-187 77z" />
  53. <glyph unicode="E" horiz-adv-x="521" d="M481 64v-64h-378v531q0 87 -8 155h369l8 -8l-1 -56l-291 6v-260l247 3l-1 -61l-246 3v-254z" />
  54. <glyph unicode="F" horiz-adv-x="496" d="M180 0h-77v531q0 87 -8 155h364l8 -8l-1 -56l-286 6v-272l242 3l-1 -61l-241 3v-301z" />
  55. <glyph unicode="G" horiz-adv-x="648" d="M563 299l8 -8l-2 -253q-40 -22 -97.5 -35t-110.5 -13q-136 0 -214.5 90t-78.5 250q0 169 85.5 267.5t230.5 98.5q97 0 167 -38l-14 -70q-63 44 -149 44q-109 0 -174 -76.5t-65 -216.5q0 -129 57.5 -207t165.5 -78q58 0 123 19v50q0 83 -9 166z" />
  56. <glyph unicode="H" horiz-adv-x="705" d="M180 0h-77v529q0 80 -8 157l77 10l8 -8v-317h344v158q0 90 -7 157l76 10l9 -8v-688h-78v312h-344v-312z" />
  57. <glyph unicode="I" horiz-adv-x="283" d="M180 0h-77v529q0 80 -8 157l77 10l8 -8v-688z" />
  58. <glyph unicode="J" horiz-adv-x="273" d="M31 -193l-25 38q87 69 87 222v462q0 79 -9 155l78 12l9 -8v-621q0 -102 -33.5 -162t-106.5 -98z" />
  59. <glyph unicode="K" horiz-adv-x="590" d="M103 529q0 88 -8 157l75 10l9 -8v-323h97q28 43 211 331l65 -12l6 -8l-219 -327l242 -349l-84 -9q-66 92 -219 315h-99v-306h-76v529z" />
  60. <glyph unicode="L" horiz-adv-x="492" d="M470 64v-64h-367v530q0 79 -8 156l77 10l8 -8v-629z" />
  61. <glyph unicode="M" horiz-adv-x="860" d="M704 696l10 -8l85 -688h-77l-33 264q-23 180 -34 326h-2q-27 -104 -98 -326l-86 -264h-86l-84 264q-75 229 -100 326h-1q-8 -100 -36 -326l-33 -264h-68l86 691l89 5l123 -365q46 -142 71 -258h1q28 119 72 258l120 360z" />
  62. <glyph unicode="N" horiz-adv-x="703" d="M358 398q10 -15 40 -64t40.5 -66t30.5 -51.5t34 -61t27 -55.5h2q-6 97 -6 415q0 86 -8 171l74 10l9 -9v-687h-78q-111 181 -182 297q-128 205 -168 287h-1q6 -85 6 -237v-347h-75v531q0 78 -8 155l81 10q37 -61 102 -167.5t80 -130.5z" />
  63. <glyph unicode="O" horiz-adv-x="699" d="M632 345q0 -167 -82 -261t-206 -94q-121 0 -198.5 91.5t-77.5 251.5q0 165 82 264t207 99q123 0 199 -95t76 -256zM149 341q0 -131 53.5 -210t146.5 -79t147.5 76.5t54.5 213.5q0 132 -51 212t-144 80q-92 0 -149.5 -78.5t-57.5 -214.5z" />
  64. <glyph unicode="P" horiz-adv-x="557" d="M180 0h-77v531q0 87 -8 155h185q109 0 174 -58t65 -157q0 -104 -70.5 -161.5t-184.5 -57.5h-84v-252zM268 628h-88v-317h85q84 0 128.5 41t44.5 117q0 73 -42 116t-128 43z" />
  65. <glyph unicode="Q" horiz-adv-x="715" d="M632 345q0 -149 -65.5 -239.5t-169.5 -110.5q160 -93 336 -93l-16 -75q-95 0 -200.5 46t-191.5 118q-114 7 -185.5 97.5t-71.5 244.5q0 165 82 264t207 99q123 0 199 -95t76 -256zM149 341q0 -131 53.5 -210t146.5 -79t147.5 76.5t54.5 213.5q0 132 -51 212t-144 80 q-92 0 -149.5 -78.5t-57.5 -214.5z" />
  66. <glyph unicode="R" horiz-adv-x="587" d="M180 0h-77v531q0 87 -8 155h178q113 0 179.5 -56.5t66.5 -151.5q0 -70 -36.5 -117t-99.5 -68l167 -293l-83 -9q-76 137 -151 281h-136v-272zM268 628h-88v-298h85q84 0 128.5 37.5t44.5 108.5q0 69 -42 110.5t-128 41.5z" />
  67. <glyph unicode="S" horiz-adv-x="513" d="M455 171q0 -84 -61 -132.5t-162 -48.5t-173 36l8 70q73 -42 168 -42q66 0 103 30.5t37 80.5q0 24 -10 45.5t-20.5 35t-36.5 30.5t-38.5 24t-46.5 24q-38 20 -59 33.5t-48 36.5t-39.5 53t-12.5 67q0 84 62 133t162 49q92 0 154 -31l-11 -71q-65 39 -145 39 q-67 0 -104.5 -30t-37.5 -80q0 -12 3 -23.5t6 -20.5t11 -19t12.5 -16t17.5 -15.5t18 -13.5t21.5 -13t21 -11.5t23.5 -12t22 -11.5q34 -17 56.5 -32t47.5 -39t38 -55.5t13 -69.5z" />
  68. <glyph unicode="T" horiz-adv-x="537" d="M308 0h-78v626q-104 -2 -209 -6l5 66h485l5 -66q-105 5 -208 6v-626z" />
  69. <glyph unicode="U" horiz-adv-x="653" d="M89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5t-65.5 173.5v306z" />
  70. <glyph unicode="V" horiz-adv-x="608" d="M270 -4l-247 693l82 7l143 -412q47 -129 62 -201q13 59 69 219l137 394l63 -6l6 -8l-245 -686h-70z" />
  71. <glyph unicode="W" horiz-adv-x="980" d="M242 -4l-211 692l79 8l122 -408q41 -135 52 -203q12 66 59 220l115 386l74 5l122 -408q41 -130 53 -203q12 66 58 219l117 392l61 -6l6 -8l-210 -686h-70l-133 425q-28 99 -45 168h-1q-16 -69 -46 -169l-132 -424h-70z" />
  72. <glyph unicode="X" horiz-adv-x="565" d="M31 0l-4 9l207 333l-207 343l82 11l180 -303h2l174 303l69 -6l4 -9l-206 -337l206 -344h-88l-173 293h-2l-173 -293h-71z" />
  73. <glyph unicode="Y" horiz-adv-x="560" d="M241 246l-218 443l83 7l117 -243q43 -89 62 -141h2q33 76 65 142l115 242l64 -6l6 -8l-218 -439v-243h-78v246z" />
  74. <glyph unicode="Z" horiz-adv-x="520" d="M43 0l-13 49l364 573l-352 -4l5 68h417l19 -48l-362 -574l366 5l-5 -69h-439z" />
  75. <glyph unicode="[" horiz-adv-x="335" d="M90 756h213v-60h-139v-831h139v-61h-213v952z" />
  76. <glyph unicode="\" horiz-adv-x="361" d="M247 -4l-187 747l8 8l43 8l187 -747l-8 -8z" />
  77. <glyph unicode="]" horiz-adv-x="335" d="M245 756v-952h-214v61h140v831h-140v60h214z" />
  78. <glyph unicode="^" horiz-adv-x="525" d="M145 210h-57l144 336h58l148 -336h-57l-121 276z" />
  79. <glyph unicode="_" horiz-adv-x="373" d="M0 -197v38h373v-38h-373z" />
  80. <glyph unicode="`" horiz-adv-x="325" d="M209 577q-101 67 -160 155l5 14l69 14q32 -72 111 -171z" />
  81. <glyph unicode="a" horiz-adv-x="504" d="M405 144q0 -78 24 -144l-67 -10q-16 32 -24 70h-1q-22 -29 -63.5 -49.5t-89.5 -20.5q-60 0 -94.5 32.5t-34.5 85.5q0 80 78 122.5t198 49.5v66q0 101 -103 101q-76 0 -152 -47l-4 64q86 42 172 42q80 0 121.5 -38.5t41.5 -106.5q0 -37 -1 -116.5t-1 -100.5zM131 119 q0 -32 20.5 -54.5t58.5 -22.5q32 0 65.5 16t55.5 40v144q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  82. <glyph unicode="b" horiz-adv-x="562" d="M497 250q0 -125 -58.5 -192.5t-156.5 -67.5q-61 0 -116 19l-71 -19v599q0 79 -9 155l75 12l9 -8v-292q55 50 132 50q89 0 142 -68.5t53 -187.5zM280 452q-64 0 -110 -43v-351q47 -18 104 -18q68 0 106.5 53t38.5 152q0 97 -36 152t-103 55z" />
  83. <glyph unicode="c" horiz-adv-x="479" d="M432 473l-19 -63q-52 37 -116 37q-70 0 -111.5 -50.5t-41.5 -144.5t41 -149t115 -55q61 0 123 38l6 -55q-59 -41 -143 -41q-100 0 -160.5 67t-60.5 187q0 123 64 192.5t168 69.5q78 0 135 -33z" />
  84. <glyph unicode="d" horiz-adv-x="565" d="M384 744l75 12l9 -8v-609q0 -76 24 -139l-68 -10q-12 24 -24 69h-1q-48 -69 -138 -69q-87 0 -141.5 67t-54.5 181q0 127 67 197.5t171 70.5q47 0 90 -16v99q0 89 -9 155zM144 246q0 -95 38 -149.5t103 -54.5q64 0 108 54v345q-45 16 -87 16q-72 0 -117 -53.5t-45 -157.5z " />
  85. <glyph unicode="e" horiz-adv-x="511" d="M452 257l-15 -15h-293q3 -96 46 -145t114 -49q66 0 131 43l6 -55q-64 -46 -154 -46q-101 0 -161.5 66.5t-60.5 185.5q0 123 62.5 193.5t153.5 70.5q79 0 125.5 -52t46.5 -138q0 -40 -1 -59zM277 454q-53 0 -90.5 -45.5t-42.5 -129.5l233 7q0 5 0.5 17t0.5 19q0 60 -27 96 t-74 36z" />
  86. <glyph unicode="f" horiz-adv-x="321" d="M179 0h-75v445l-75 3v33l75 10q0 13 -1.5 47t-1.5 44q0 83 42.5 128.5t121.5 45.5q67 0 115 -28l-18 -62q-48 31 -98 31q-89 0 -89 -113q0 -39 2 -93h133l7 -8l-3 -41l-135 3v-445z" />
  87. <glyph unicode="g" horiz-adv-x="490" d="M115 76q1 46 41 81q-47 19 -74.5 61t-27.5 100q0 80 48.5 134t132.5 54q63 0 103 -31q18 19 49 30.5t62 11.5l11 -4l-2 -62h-96q48 -48 48 -124q0 -79 -48 -131.5t-130 -52.5q-18 0 -38 3q-16 -21 -16 -47q0 -23 13.5 -34.5t44.5 -14.5l85 -6q63 -4 104 -34t41 -89 q0 -74 -64 -125.5t-173 -51.5q-94 0 -150 37.5t-56 94.5q0 34 18.5 58.5t42.5 36.5l32 -15q-25 -29 -25 -60q0 -43 39 -74.5t107 -31.5q69 0 111 32t42 81q0 37 -25.5 58t-70.5 25l-76 6q-101 9 -103 84zM336 323q0 64 -26.5 100t-76.5 36q-52 0 -78.5 -35t-26.5 -99 q0 -63 27 -99t79 -36q50 0 76 34.5t26 98.5z" />
  88. <glyph unicode="h" horiz-adv-x="565" d="M170 0h-75v589q0 88 -9 155l75 12l9 -8v-313q77 71 164 71q64 0 99 -37.5t35 -108.5v-360h-75v344q0 105 -90 105q-64 0 -133 -58v-391z" />
  89. <glyph unicode="i" horiz-adv-x="269" d="M184 670q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39zM96 0v339q0 97 -9 155l76 12l8 -8v-498h-75z" />
  90. <glyph unicode="j" horiz-adv-x="270" d="M184 670q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -37 15.5t-14 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39zM42 -256l-26 33q81 67 81 189v373q0 77 -9 155l75 12l9 -8v-524q0 -87 -32 -141.5t-98 -88.5z" />
  91. <glyph unicode="k" horiz-adv-x="510" d="M95 589q0 89 -9 155l75 12l9 -8v-468h78q60 85 151 226l57 -12l6 -9l-151 -209q56 -90 180 -276l-83 -10q-62 91 -156 243h-82v-233h-75v589z" />
  92. <glyph unicode="l" horiz-adv-x="269" d="M171 0h-75v589q0 89 -9 155l76 12l8 -8v-748z" />
  93. <glyph unicode="m" horiz-adv-x="850" d="M175 0h-75v341q0 79 -20 148l70 17q13 -33 22 -74q76 74 161 74q96 0 122 -80q77 80 166 80q63 0 97 -36t34 -103v-367h-75v352q0 97 -86 97q-62 0 -129 -59q2 -14 2 -23v-367h-75v352q0 97 -87 97q-62 0 -127 -59v-390z" />
  94. <glyph unicode="n" horiz-adv-x="570" d="M175 0h-75v341q0 79 -20 148l69 17q14 -31 23 -74q77 74 167 74q64 0 99 -37.5t35 -108.5v-360h-75v344q0 105 -90 105q-65 0 -133 -59v-390z" />
  95. <glyph unicode="o" horiz-adv-x="559" d="M494 252q0 -125 -63.5 -193.5t-156.5 -68.5t-151 67.5t-58 185.5q0 124 63 193.5t157 69.5t151.5 -68.5t57.5 -185.5zM144 250q0 -95 34.5 -151.5t99.5 -56.5q63 0 100.5 53.5t37.5 150.5q0 95 -34.5 151.5t-99.5 56.5q-63 0 -100.5 -52.5t-37.5 -151.5z" />
  96. <glyph unicode="p" horiz-adv-x="568" d="M100 -248v589q0 79 -20 148l70 17q14 -35 18 -57q57 57 140 57q84 0 139.5 -67.5t55.5 -184.5q0 -118 -57 -191t-157 -73q-61 0 -114 24v-107q0 -73 9 -151l-75 -12zM283 452q-65 0 -108 -48v-338q50 -26 102 -26q71 0 109 55t38 154q0 100 -38 151.5t-103 51.5z" />
  97. <glyph unicode="q" horiz-adv-x="565" d="M393 -248v291q-55 -53 -132 -53q-88 0 -142 68.5t-54 185.5q0 125 68 193.5t177 68.5q48 0 96 -15l62 15v-595q0 -86 8 -155l-75 -12zM144 250q0 -95 36.5 -151.5t102.5 -56.5q65 0 110 45v360q-42 10 -73 10q-83 0 -129.5 -54t-46.5 -153z" />
  98. <glyph unicode="r" horiz-adv-x="384" d="M175 0h-75v341q0 79 -20 148l70 17q17 -40 24 -88q73 88 145 88q30 0 47 -13l-14 -69q-24 8 -45 8q-66 0 -132 -60v-372z" />
  99. <glyph unicode="s" horiz-adv-x="439" d="M370 476l-9 -64q-63 39 -123 39q-47 0 -74.5 -21t-27.5 -55q0 -31 25.5 -54t62 -39t73 -34t62 -48.5t25.5 -72.5q0 -61 -49.5 -99t-130.5 -38q-84 0 -149 34l9 63q67 -41 144 -41q48 0 75 20.5t27 53.5q0 30 -25.5 52.5t-62 38t-73.5 33.5t-62.5 48.5t-25.5 73.5 q0 63 49 101.5t130 38.5q67 0 130 -30z" />
  100. <glyph unicode="t" horiz-adv-x="361" d="M314 449l-139 1v-289q0 -60 19 -86.5t57 -26.5q42 0 80 25l10 -52q-49 -31 -111 -31q-130 0 -130 163v298l-73 1v34l74 10l18 117l50 5l9 -9l-3 -113h136l6 -8z" />
  101. <glyph unicode="u" horiz-adv-x="560" d="M96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75q-63 0 -97.5 35.5t-34.5 99.5v214z" />
  102. <glyph unicode="v" horiz-adv-x="470" d="M446 491l-177 -495h-67l-178 504l77 6l79 -240q50 -136 60 -200h1q11 57 62 200l79 240l58 -6z" />
  103. <glyph unicode="w" horiz-adv-x="759" d="M183 -4l-159 504l76 6l70 -235q33 -104 54 -197h1q16 76 53 191l70 239h75l68 -230q49 -160 55 -199h1q10 51 54 195l70 236l58 -6l6 -9l-157 -495h-73l-76 245q-41 133 -49 184h-1q-9 -55 -48 -183l-76 -246h-72z" />
  104. <glyph unicode="x" horiz-adv-x="471" d="M359 0l-131 210l-128 -210h-65l-4 9l156 239l-156 247l76 11l135 -222l131 222l64 -6l3 -9l-156 -243l156 -248h-81z" />
  105. <glyph unicode="y" horiz-adv-x="462" d="M446 491l-172 -481q-86 -248 -245 -266l-12 72q131 17 199 198h-21l-171 486l77 6l79 -240q50 -136 60 -200h1q11 54 62 200l79 240l58 -6z" />
  106. <glyph unicode="z" horiz-adv-x="434" d="M34 432l5 64h349l8 -47l-282 -390l138 2q101 2 151 6l-5 -67h-359l-8 48l285 389z" />
  107. <glyph unicode="{" horiz-adv-x="334" d="M160 127q0 115 -102 129v48q102 14 102 131q0 40 -15.5 104t-15.5 97q0 66 41 93t134 27l3 -47q-105 0 -105 -83q0 -28 16 -100t16 -107q0 -56 -28 -92t-73 -47q43 -10 72 -46.5t29 -90.5q0 -31 -16 -105.5t-16 -103.5q0 -83 105 -83l-3 -47q-94 0 -134.5 27t-40.5 93 q0 34 15.5 101t15.5 102z" />
  108. <glyph unicode="|" horiz-adv-x="321" d="M142 -256l-7 7v1002l44 3l7 -7v-1002z" />
  109. <glyph unicode="}" horiz-adv-x="334" d="M277 256l-102 -129q0 -35 15.5 -102t15.5 -101q0 -66 -41 -93t-134 -27l-3 47q105 0 105 83q0 29 -16.5 103.5t-16.5 105.5q0 54 29 90.5t72 46.5q-45 11 -73 47t-28 92q0 35 16.5 107t16.5 100q0 83 -105 83l3 47q93 0 134 -27t41 -93q0 -33 -15.5 -97t-15.5 -104 q0 -60 24 -92t78 -39v-48z" />
  110. <glyph unicode="~" d="M416 223q-26 0 -136.5 35t-122.5 35q-16 0 -67 -72q-5 -6 -7 -9l-32 22q61 113 109 113q25 0 135.5 -35t122.5 -35q4 0 8 2t9 7t9.5 9t11.5 13t11.5 14.5t13 17.5t13.5 18l30 -22q-61 -113 -108 -113z" />
  111. <glyph unicode="&#xa1;" horiz-adv-x="280" d="M92 446q0 24 15 42t39 18q21 0 34.5 -15t13.5 -37q0 -24 -16 -42t-40 -18q-21 0 -33.5 14.5t-12.5 37.5zM117 296h51q11 -373 17 -486l-74 -10l-9 9q3 197 15 487z" />
  112. <glyph unicode="&#xa2;" horiz-adv-x="491" d="M273 -140l-8 8v125q-91 10 -145.5 81t-54.5 188q0 119 56.5 195t148.5 87v133l32 3l8 -8v-126q81 -3 129 -37l-15 -63q-50 40 -118 40q-74 0 -118.5 -58.5t-44.5 -157.5q0 -101 45 -160t123 -59q66 0 124 40l6 -56q-50 -40 -136 -43v-129z" />
  113. <glyph unicode="&#xa3;" horiz-adv-x="529" d="M486 -140q-23 -11 -61 -9q-53 0 -107 22t-131.5 71t-94.5 58q-24 -13 -49 -13q-53 0 -53 36q0 17 13 26.5t33 9.5q19 0 49 -10q29 40 53 196l6 46l-111 3l7 35l110 10q10 69 19 115t25.5 95.5t38 78t55.5 47.5t79 19q74 0 118 -33l-28 -68q-43 41 -92 41q-60 0 -87.5 -62 t-53.5 -233h181l5 -8l-12 -40h-182l-7 -41q-28 -158 -80 -220q16 -8 66.5 -33.5t80 -39t74.5 -26.5t82 -13q45 0 79 13z" />
  114. <glyph unicode="&#xa4;" horiz-adv-x="581" d="M481 44l-82 84q-48 -40 -118 -40q-62 0 -108 32l-75 -74l-33 33l74 74q-38 47 -38 112q0 69 42 122l-75 77l31 31q21 -20 77 -76q48 33 110 33q68 0 115 -38l80 81l33 -33l-81 -82q32 -46 32 -106q0 -64 -34 -111q76 -76 85 -87v-5zM283 406q-60 0 -94.5 -40t-34.5 -95 t35 -95.5t98 -40.5q62 0 94 39t32 96q0 59 -36 97.5t-94 38.5z" />
  115. <glyph unicode="&#xa5;" horiz-adv-x="553" d="M72 124v39h167v93h-167v40h167l-216 393l80 7l115 -212q34 -67 63 -134h2q23 52 65 133l114 213l61 -6l7 -8l-214 -386h165v-40h-167v-93h167v-39h-167v-124h-75v124h-167z" />
  116. <glyph unicode="&#xa6;" horiz-adv-x="321" d="M186 370l-36 -3l-15 7v379l44 3l7 -7v-379zM186 -253l-36 -3l-15 7v378l44 3l7 -7v-378z" />
  117. <glyph unicode="&#xa7;" horiz-adv-x="552" d="M345 612q-47 0 -73 -25t-26 -68q0 -40 25.5 -83.5t62 -85t72.5 -85.5t61.5 -99.5t25.5 -112.5q0 -103 -76.5 -163t-197.5 -60q-82 0 -131 23l13 91q42 -30 97 -30q51 0 79.5 26.5t28.5 71.5q0 39 -25.5 82.5t-62 84t-72.5 83.5t-61.5 98t-25.5 112q0 101 73.5 162.5 t192.5 61.5q80 0 129 -23l-12 -91q-42 30 -97 30zM237 -123q55 2 96 19t63 43t32.5 55t10.5 60q0 49 -25.5 99t-62 92t-73 83t-62 88t-25.5 91q0 51 30 91t95 45l-2 6q-55 -2 -96 -18.5t-63 -43t-32 -55t-10 -59.5q0 -50 25.5 -100t62 -91.5t73 -82.5t62 -88t25.5 -91 q0 -51 -30.5 -91.5t-94.5 -45.5z" />
  118. <glyph unicode="&#xa8;" horiz-adv-x="400" d="M149 668q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 24 16 42.5t38 18.5q21 0 33.5 -14t12.5 -37zM350 668q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 15.5 43t38.5 18q21 0 33.5 -14t12.5 -37z" />
  119. <glyph unicode="&#xa9;" horiz-adv-x="689" d="M345 -40q-123 0 -206.5 83.5t-83.5 206.5q0 119 85.5 204.5t204.5 85.5q123 0 206 -85t83 -205q0 -119 -85 -204.5t-204 -85.5zM345 0q103 0 176.5 73.5t73.5 176.5q0 104 -73.5 177t-176.5 73t-176.5 -73.5t-73.5 -176.5q0 -106 71.5 -178t178.5 -72zM452 392l-14 -48 q-35 23 -73 23q-44 0 -71.5 -30t-27.5 -78q0 -55 26.5 -86.5t73.5 -31.5q40 0 78 23l6 -42q-38 -25 -94 -25q-67 0 -107.5 41t-40.5 115q0 70 44 114t113 44q51 0 87 -19z" />
  120. <glyph unicode="&#xaa;" horiz-adv-x="421" d="M337 402q0 -64 19 -112l-55 -8q-12 23 -20 55h-1q-17 -23 -51.5 -39t-74.5 -16q-49 0 -77 25.5t-28 66.5q0 63 64 96t163 39v49q0 78 -85 78q-64 0 -125 -36l-3 52q68 33 142 33q65 0 99.5 -30.5t34.5 -84.5q0 -29 -1 -90t-1 -78zM112 384q0 -25 17 -42t48 -18 q58 2 99 43v111q-72 -5 -118 -29t-46 -65z" />
  121. <glyph unicode="&#xab;" horiz-adv-x="455" d="M54 283v21q74 65 169 193l20 -11q-43 -102 -114 -193q71 -91 114 -193l-20 -11q-95 127 -169 194zM226 283v21q69 60 169 193l20 -11q-46 -106 -114 -193q68 -87 114 -193l-20 -11q-100 132 -169 194z" />
  122. <glyph unicode="&#xac;" d="M499 314l-1 -220h-52v175h-389v48q163 5 434 5z" />
  123. <glyph unicode="&#xae;" horiz-adv-x="689" d="M342 -40q-121 0 -204 83.5t-83 205.5q0 121 85.5 206t205.5 85q121 0 204.5 -84.5t83.5 -204.5t-85.5 -205.5t-206.5 -85.5zM343 0q105 0 178.5 73.5t73.5 176.5q0 104 -73.5 177t-176.5 73t-176.5 -73t-73.5 -178t71.5 -177t176.5 -72zM295 92h-49v224q0 67 -7 105h97 q61 0 96 -28.5t35 -79.5q0 -38 -21 -63t-51 -35l69 -123l-52 -5q-4 6 -59 117h-58v-112zM343 377h-48v-129h48q34 0 52.5 16.5t18.5 45.5q0 30 -19 48.5t-52 18.5z" />
  124. <glyph unicode="&#xaf;" horiz-adv-x="346" d="M49 639v50h272v-50h-272z" />
  125. <glyph unicode="&#xb0;" horiz-adv-x="335" d="M164 306q-50 0 -82.5 32t-32.5 84q0 53 36 88.5t87 35.5q49 0 81.5 -31.5t32.5 -82.5q0 -52 -36 -89t-86 -37zM168 508q-34 0 -55.5 -24.5t-21.5 -59.5q0 -34 21.5 -56.5t54.5 -22.5q34 0 55.5 24.5t21.5 60.5q0 34 -21 56t-55 22z" />
  126. <glyph unicode="&#xb1;" d="M493 415h-177v-160h-52l-1 160h-183v48q46 1 183 3l-1 159h54v-158q38 0 98.5 0.5t78.5 0.5l5 -6zM510 92h-450v48q170 5 450 5l5 -6z" />
  127. <glyph unicode="&#xb2;" horiz-adv-x="367" d="M44 352l-8 46q41 31 63 47.5t55.5 46.5t51 51t31 48t13.5 51q0 36 -24.5 58t-63.5 22q-59 0 -119 -44l-6 47q55 41 139 41q60 0 99 -31t39 -82q0 -34 -19 -69t-54.5 -69t-67.5 -59t-76 -56h119q54 0 105 6l-7 -54h-270z" />
  128. <glyph unicode="&#xb3;" horiz-adv-x="357" d="M48 733q54 33 125 33q53 0 88.5 -24.5t35.5 -64.5q0 -35 -29.5 -65.5t-82.5 -45.5q61 -5 96.5 -31t35.5 -72q0 -53 -46.5 -86t-122.5 -33q-59 0 -108 14l6 42q49 -14 100 -14q47 0 77 20.5t30 54.5q0 36 -33.5 52.5t-84.5 16.5q-27 0 -47 -4v42q68 12 106 38t38 60 q0 25 -20 40.5t-55 15.5q-55 0 -105 -31z" />
  129. <glyph unicode="&#xb4;" horiz-adv-x="247" d="M191 744l4 -14q-59 -89 -160 -156l-25 13q79 99 111 171z" />
  130. <glyph unicode="&#xb6;" horiz-adv-x="602" d="M239 -118q172 0 172 219v545h-73v-421h-29q-102 0 -169 63t-67 170q0 108 69 168t176 60h152v-596q0 -124 -59 -192.5t-165 -68.5q-71 0 -145 26l5 54q74 -27 133 -27z" />
  131. <glyph unicode="&#xb7;" horiz-adv-x="296" d="M205 283q0 -26 -17 -43.5t-41 -17.5t-40.5 16.5t-16.5 40.5q0 25 18 43t43 18q23 0 38.5 -16t15.5 -41z" />
  132. <glyph unicode="&#xb8;" horiz-adv-x="301" d="M231 -128q0 -42 -43.5 -66t-107.5 -30l-4 31q93 18 93 58q0 35 -66 39l-10 16l29 92l45 -1l-23 -70q38 -5 62.5 -22t24.5 -47z" />
  133. <glyph unicode="&#xb9;" horiz-adv-x="247" d="M102 703h-1l-72 -14l-10 36l137 41l7 -6v-408h-62v266q0 61 1 85z" />
  134. <glyph unicode="&#xba;" horiz-adv-x="473" d="M413 486q0 -97 -52.5 -150.5t-128.5 -53.5q-77 0 -124.5 53t-47.5 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM125 485q0 -73 28.5 -116.5t81.5 -43.5q51 0 81.5 41.5t30.5 115.5t-28 117.5t-81 43.5q-51 0 -82 -40.5t-31 -117.5z" />
  135. <glyph unicode="&#xbb;" horiz-adv-x="455" d="M401 283q-74 -67 -169 -194l-20 11q42 100 113 193q-72 93 -113 194l20 10q95 -128 169 -193v-21zM229 283q-69 -62 -169 -194l-20 11q42 102 114 193q-72 91 -114 194l20 10q100 -133 169 -193v-21z" />
  136. <glyph unicode="&#xbc;" horiz-adv-x="843" d="M132 643h-1l-72 -14l-10 36l137 41l7 -6v-408h-62v266q0 61 1 85zM620 700l-425 -710h-46l424 710h47zM449 137l181 261l67 6l6 -6v-257q22 1 64 5l-7 -50h-57v-106h-59v106h-187zM502 140v-1q39 1 131 1h11l1 110q0 72 2 102h-1z" />
  137. <glyph unicode="&#xbd;" horiz-adv-x="874" d="M132 643h-1l-72 -14l-10 36l137 41l7 -6v-408h-62v266q0 61 1 85zM620 700l-425 -710h-46l424 710h47zM521 -10l-8 46q41 31 63 47.5t55.5 46.5t51 51t31 48t13.5 51q0 36 -24.5 58t-63.5 22q-59 0 -119 -44l-6 47q55 41 139 41q60 0 99 -31t39 -82q0 -34 -19 -69 t-54.5 -69t-67.5 -59t-76 -56h119q54 0 105 6l-7 -54h-270z" />
  138. <glyph unicode="&#xbe;" horiz-adv-x="929" d="M78 673q54 33 125 33q54 0 89 -24.5t35 -65.5q0 -35 -29.5 -65t-82.5 -45q60 -5 96 -31.5t36 -71.5q0 -53 -46.5 -86t-122.5 -33q-59 0 -108 14l6 41q49 -14 100 -14q47 0 77 20.5t30 54.5q0 69 -118 69q-27 0 -47 -4v42q68 12 106 38.5t38 59.5q0 26 -19.5 41t-55.5 15 q-54 0 -105 -30zM705 700l-425 -710h-45l424 710h46zM535 137l180 261l67 6l7 -6v-257q25 1 63 5l-7 -50h-56v-106h-59v106h-187zM588 140v-1q39 1 130 1h12v110q0 72 2 102h-1z" />
  139. <glyph unicode="&#xbf;" horiz-adv-x="432" d="M192 446q0 24 15 42t39 18q21 0 34.5 -15t13.5 -37q0 -24 -16 -42t-40 -18q-21 0 -33.5 14.5t-12.5 37.5zM227 283l46 1q9 -21 9 -46q0 -27 -18 -52t-43 -46.5t-50.5 -44t-43.5 -54.5t-18 -68q0 -50 32 -82t85 -32q41 0 83.5 21.5t72.5 63.5l34 -40q-33 -48 -86.5 -76 t-117.5 -28q-82 0 -132 44.5t-50 117.5q0 44 20 83t48 65.5t56 49t48 44t20 40.5q0 7 -3 31z" />
  140. <glyph unicode="&#xc0;" horiz-adv-x="612" d="M425 777q-141 16 -242 74l-3 14l49 46q76 -57 204 -111zM98 0h-74l205 589q25 72 33 103l76 4l11 -10l239 -686h-79l-70 199h-271zM240 404l-51 -145h229l-50 145q-51 152 -63 209h-2q-12 -53 -63 -209z" />
  141. <glyph unicode="&#xc1;" horiz-adv-x="612" d="M433 865l-3 -14q-103 -58 -242 -74l-8 23q130 55 204 111zM98 0h-74l205 589q25 72 33 103l76 4l11 -10l239 -686h-79l-70 199h-271zM240 404l-51 -145h229l-50 145q-51 152 -63 209h-2q-12 -53 -63 -209z" />
  142. <glyph unicode="&#xc2;" horiz-adv-x="612" d="M177 771l-22 19q55 48 116 119l61 6q53 -62 124 -125l-21 -19q-61 34 -134 87q-70 -55 -124 -87zM98 0h-74l205 589q25 72 33 103l76 4l11 -10l239 -686h-79l-70 199h-271zM240 404l-51 -145h229l-50 145q-51 152 -63 209h-2q-12 -53 -63 -209z" />
  143. <glyph unicode="&#xc3;" horiz-adv-x="612" d="M237 903q31 0 76.5 -28t68.5 -28q39 0 66 54l23 -4q-4 -44 -28.5 -75.5t-65.5 -31.5q-30 0 -77.5 28t-69.5 28q-38 0 -66 -53l-23 4q4 41 28.5 73.5t67.5 32.5zM98 0h-74l205 589q25 72 33 103l76 4l11 -10l239 -686h-79l-70 199h-271zM240 404l-51 -145h229l-50 145 q-51 152 -63 209h-2q-12 -53 -63 -209z" />
  144. <glyph unicode="&#xc4;" horiz-adv-x="612" d="M459 846q0 -24 -15 -41t-39 -17q-22 0 -35 14t-13 34q0 23 16 40t39 17q21 0 34 -13.5t13 -33.5zM256 846q0 -24 -15 -41t-39 -17q-21 0 -34.5 14t-13.5 34q0 23 16 40t39 17q21 0 34 -13t13 -34zM98 0h-74l205 589q25 72 33 103l76 4l11 -10l239 -686h-79l-70 199h-271z M240 404l-51 -145h229l-50 145q-51 152 -63 209h-2q-12 -53 -63 -209z" />
  145. <glyph unicode="&#xc5;" horiz-adv-x="612" d="M397 847q0 -37 -28 -63t-67 -26q-36 0 -61 22t-25 55q0 37 28.5 63t68.5 26q37 0 60.5 -22t23.5 -55zM259 839q0 -20 13 -33.5t33 -13.5q21 0 34.5 15t13.5 36t-11.5 34t-32.5 13t-35.5 -15t-14.5 -36zM98 0h-74l205 589q25 72 33 103l76 4l11 -10l239 -686h-79l-70 199 h-271zM240 404l-51 -145h229l-50 145q-51 152 -63 209h-2q-12 -53 -63 -209z" />
  146. <glyph unicode="&#xc6;" horiz-adv-x="852" d="M98 0h-74l279 589q29 59 47 97h355l9 -8l-1 -56l-266 5l37 -258l224 2l-1 -61l-215 3l36 -254l284 5v-64h-354l-28 199h-238zM288 404l-68 -145h202l-20 145q-17 139 -20 209h-2q-12 -31 -92 -209z" />
  147. <glyph unicode="&#xc7;" horiz-adv-x="592" d="M448 -130q0 -42 -43.5 -66t-107.5 -30l-3 32q92 16 92 57q0 35 -66 39l-10 16l23 73q-121 8 -193 98t-72 244q0 166 82.5 264.5t213.5 98.5q105 0 173 -43l-15 -71q-66 48 -155 48q-96 0 -157 -77t-61 -214q0 -127 57.5 -205t160.5 -78q92 0 167 53l9 -65 q-65 -48 -164 -53l-17 -52q38 -5 62 -22t24 -47z" />
  148. <glyph unicode="&#xc8;" horiz-adv-x="521" d="M405 777q-141 16 -242 74l-3 14l49 46q76 -57 204 -111zM481 64v-64h-378v531q0 87 -8 155h369l8 -8l-1 -56l-291 6v-260l247 3l-1 -61l-246 3v-254z" />
  149. <glyph unicode="&#xc9;" horiz-adv-x="521" d="M413 865l-3 -14q-103 -58 -242 -74l-8 23q130 55 204 111zM481 64v-64h-378v531q0 87 -8 155h369l8 -8l-1 -56l-291 6v-260l247 3l-1 -61l-246 3v-254z" />
  150. <glyph unicode="&#xca;" horiz-adv-x="521" d="M157 771l-22 19q55 48 116 119l61 6q53 -62 124 -125l-21 -19q-61 34 -134 87q-70 -55 -124 -87zM481 64v-64h-378v531q0 87 -8 155h369l8 -8l-1 -56l-291 6v-260l247 3l-1 -61l-246 3v-254z" />
  151. <glyph unicode="&#xcb;" horiz-adv-x="521" d="M439 846q0 -24 -15 -41t-39 -17q-22 0 -35 14t-13 34q0 23 16 40t39 17q21 0 34 -13.5t13 -33.5zM236 846q0 -24 -15 -41t-39 -17q-21 0 -34.5 14t-13.5 34q0 23 16 40t39 17q21 0 34 -13t13 -34zM481 64v-64h-378v531q0 87 -8 155h369l8 -8l-1 -56l-291 6v-260l247 3 l-1 -61l-246 3v-254z" />
  152. <glyph unicode="&#xcc;" horiz-adv-x="283" d="M256 777q-141 16 -242 74l-3 14l49 46q76 -57 204 -111zM180 0h-77v529q0 80 -8 157l77 10l8 -8v-688z" />
  153. <glyph unicode="&#xcd;" horiz-adv-x="283" d="M264 865l-3 -14q-103 -58 -242 -74l-8 23q130 55 204 111zM180 0h-77v529q0 80 -8 157l77 10l8 -8v-688z" />
  154. <glyph unicode="&#xce;" horiz-adv-x="283" d="M8 771l-22 19q55 48 116 119l61 6q53 -62 124 -125l-21 -19q-61 34 -134 87q-70 -55 -124 -87zM180 0h-77v529q0 80 -8 157l77 10l8 -8v-688z" />
  155. <glyph unicode="&#xcf;" horiz-adv-x="283" d="M290 846q0 -24 -15 -41t-39 -17q-22 0 -35 14t-13 34q0 23 16 40t39 17q21 0 34 -13.5t13 -33.5zM87 846q0 -24 -15 -41t-39 -17q-21 0 -34.5 14t-13.5 34q0 23 16 40t39 17q21 0 34 -13t13 -34zM180 0h-77v529q0 80 -8 157l77 10l8 -8v-688z" />
  156. <glyph unicode="&#xd0;" horiz-adv-x="681" d="M613 346q0 -162 -94.5 -254t-248.5 -92h-167v321h-89v45h89v165q0 87 -8 155h188q144 0 237 -92t93 -248zM381 321h-201v-261h93q127 0 193 74t66 208q0 131 -69 208t-187 77h-96v-261h201v-45z" />
  157. <glyph unicode="&#xd1;" horiz-adv-x="703" d="M276 903q31 0 76.5 -28t68.5 -28q39 0 66 54l23 -4q-4 -44 -28.5 -75.5t-65.5 -31.5q-30 0 -77.5 28t-69.5 28q-38 0 -66 -53l-23 4q4 41 28.5 73.5t67.5 32.5zM358 398q10 -15 40 -64t40.5 -66t30.5 -51.5t34 -61t27 -55.5h2q-6 97 -6 415q0 86 -8 171l74 10l9 -9v-687 h-78q-111 181 -182 297q-128 205 -168 287h-1q6 -85 6 -237v-347h-75v531q0 78 -8 155l81 10q37 -61 102 -167.5t80 -130.5z" />
  158. <glyph unicode="&#xd2;" horiz-adv-x="699" d="M474 775q-139 16 -242 74l-3 13l49 46q76 -57 204 -110zM632 345q0 -167 -82 -261t-206 -94q-121 0 -198.5 91.5t-77.5 251.5q0 165 82 264t207 99q123 0 199 -95t76 -256zM149 341q0 -131 53.5 -210t146.5 -79t147.5 76.5t54.5 213.5q0 132 -51 212t-144 80 q-92 0 -149.5 -78.5t-57.5 -214.5z" />
  159. <glyph unicode="&#xd3;" horiz-adv-x="699" d="M482 862l-3 -13q-101 -58 -242 -74l-8 23q126 51 204 110zM632 345q0 -167 -82 -261t-206 -94q-121 0 -198.5 91.5t-77.5 251.5q0 165 82 264t207 99q123 0 199 -95t76 -256zM149 341q0 -131 53.5 -210t146.5 -79t147.5 76.5t54.5 213.5q0 132 -51 212t-144 80 q-92 0 -149.5 -78.5t-57.5 -214.5z" />
  160. <glyph unicode="&#xd4;" horiz-adv-x="699" d="M226 768l-21 20q61 54 115 119l61 6q55 -64 125 -125l-22 -20q-77 45 -133 87q-60 -48 -125 -87zM632 345q0 -167 -82 -261t-206 -94q-121 0 -198.5 91.5t-77.5 251.5q0 165 82 264t207 99q123 0 199 -95t76 -256zM149 341q0 -131 53.5 -210t146.5 -79t147.5 76.5 t54.5 213.5q0 132 -51 212t-144 80q-92 0 -149.5 -78.5t-57.5 -214.5z" />
  161. <glyph unicode="&#xd5;" horiz-adv-x="699" d="M286 901q31 0 76.5 -28t68.5 -28q38 0 67 53l23 -4q-5 -43 -29.5 -75t-65.5 -32q-30 0 -77 28.5t-69 28.5q-38 0 -67 -54l-23 4q5 42 29.5 74.5t66.5 32.5zM632 345q0 -167 -82 -261t-206 -94q-121 0 -198.5 91.5t-77.5 251.5q0 165 82 264t207 99q123 0 199 -95t76 -256 zM149 341q0 -131 53.5 -210t146.5 -79t147.5 76.5t54.5 213.5q0 132 -51 212t-144 80q-92 0 -149.5 -78.5t-57.5 -214.5z" />
  162. <glyph unicode="&#xd6;" horiz-adv-x="699" d="M508 844q0 -24 -15 -41t-39 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16 39t39 17q21 0 34 -13t13 -33zM305 844q0 -24 -14.5 -41t-39.5 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16.5 39t39.5 17q21 0 33.5 -13t12.5 -33zM632 345q0 -167 -82 -261t-206 -94 q-121 0 -198.5 91.5t-77.5 251.5q0 165 82 264t207 99q123 0 199 -95t76 -256zM149 341q0 -131 53.5 -210t146.5 -79t147.5 76.5t54.5 213.5q0 132 -51 212t-144 80q-92 0 -149.5 -78.5t-57.5 -214.5z" />
  163. <glyph unicode="&#xd7;" d="M452 148l-163 163l-164 -164l-34 35l163 164l-163 164l34 34l163 -163l163 163l35 -35l-163 -163q19 -19 52.5 -53t60 -60.5t49.5 -48.5l-1 -8z" />
  164. <glyph unicode="&#xd8;" horiz-adv-x="699" d="M632 345q0 -167 -82 -261t-206 -94q-122 0 -197 89l-71 -83l-35 31l78 91q-51 88 -51 215q0 165 82 264t207 99q117 0 191 -85l70 80l36 -30l-78 -89q56 -93 56 -227zM149 341q0 -93 27 -159l323 372q-52 80 -143 80q-92 0 -149.5 -78.5t-57.5 -214.5zM551 342 q0 98 -29 168l-324 -373q55 -85 151 -85q93 0 147.5 76.5t54.5 213.5z" />
  165. <glyph unicode="&#xd9;" horiz-adv-x="653" d="M445 775q-139 16 -242 74l-3 13l49 46q76 -57 204 -110zM89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5t-65.5 173.5v306z" />
  166. <glyph unicode="&#xda;" horiz-adv-x="653" d="M453 862l-3 -13q-101 -58 -242 -74l-8 23q126 51 204 110zM89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5t-65.5 173.5v306z" />
  167. <glyph unicode="&#xdb;" horiz-adv-x="653" d="M197 768l-21 20q61 54 115 119l61 6q55 -64 125 -125l-22 -20q-77 45 -133 87q-60 -48 -125 -87zM89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5 t-65.5 173.5v306z" />
  168. <glyph unicode="&#xdc;" horiz-adv-x="653" d="M479 844q0 -24 -15 -41t-39 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16 39t39 17q22 0 34.5 -13t12.5 -33zM276 844q0 -24 -14.5 -41t-39.5 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16.5 39t39.5 17q21 0 33.5 -13t12.5 -33zM89 531q0 83 -10 157l83 8l5 -5v-464 q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5t-65.5 173.5v306z" />
  169. <glyph unicode="&#xdd;" horiz-adv-x="560" d="M413 862l-4 -13q-101 -58 -242 -74l-8 23q126 51 204 110zM241 246l-218 443l83 7l117 -243q43 -89 62 -141h2q33 76 65 142l115 242l64 -6l6 -8l-218 -439v-243h-78v246z" />
  170. <glyph unicode="&#xde;" horiz-adv-x="557" d="M180 0h-77v531q0 87 -8 155h85v-115h100q109 0 174 -58t65 -157q0 -104 -70.5 -161.5t-184.5 -57.5h-84v-137zM268 512h-88v-317h85q84 0 128.5 41.5t44.5 117.5q0 73 -42 115.5t-128 42.5z" />
  171. <glyph unicode="&#xdf;" horiz-adv-x="601" d="M104 450l-75 3v33l75 10v25q0 123 58 179t143 56q77 0 125 -41.5t48 -106.5q-1 -59 -36 -104.5t-92 -67.5q83 -31 134.5 -97t51.5 -152q0 -88 -55 -142.5t-142 -54.5q-53 0 -97 17v55q44 -17 88 -17q62 0 96.5 39t34.5 102q0 76 -51.5 136t-136.5 88v46q131 43 131 143 q0 46 -28 75.5t-75 29.5q-51 0 -86.5 -39t-35.5 -134v-531h-75v450z" />
  172. <glyph unicode="&#xe0;" horiz-adv-x="504" d="M307 577q-102 66 -161 155l5 14l69 14q36 -78 112 -171zM405 144q0 -78 24 -144l-67 -10q-16 32 -24 70h-1q-22 -29 -63.5 -49.5t-89.5 -20.5q-60 0 -94.5 32.5t-34.5 85.5q0 80 78 122.5t198 49.5v66q0 101 -103 101q-76 0 -152 -47l-4 64q86 42 172 42 q80 0 121.5 -38.5t41.5 -106.5q0 -37 -1 -116.5t-1 -100.5zM131 119q0 -32 20.5 -54.5t58.5 -22.5q32 0 65.5 16t55.5 40v144q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  173. <glyph unicode="&#xe1;" horiz-adv-x="504" d="M327 744l5 -14q-58 -88 -161 -156l-25 13q78 98 112 171zM405 144q0 -78 24 -144l-67 -10q-16 32 -24 70h-1q-22 -29 -63.5 -49.5t-89.5 -20.5q-60 0 -94.5 32.5t-34.5 85.5q0 80 78 122.5t198 49.5v66q0 101 -103 101q-76 0 -152 -47l-4 64q86 42 172 42 q80 0 121.5 -38.5t41.5 -106.5q0 -37 -1 -116.5t-1 -100.5zM131 119q0 -32 20.5 -54.5t58.5 -22.5q32 0 65.5 16t55.5 40v144q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  174. <glyph unicode="&#xe2;" horiz-adv-x="504" d="M125 572l-24 19q63 84 104 156l61 6q55 -88 113 -162l-24 -19q-55 47 -119 118q-65 -75 -111 -118zM405 144q0 -78 24 -144l-67 -10q-16 32 -24 70h-1q-22 -29 -63.5 -49.5t-89.5 -20.5q-60 0 -94.5 32.5t-34.5 85.5q0 80 78 122.5t198 49.5v66q0 101 -103 101 q-76 0 -152 -47l-4 64q86 42 172 42q80 0 121.5 -38.5t41.5 -106.5q0 -37 -1 -116.5t-1 -100.5zM131 119q0 -32 20.5 -54.5t58.5 -22.5q32 0 65.5 16t55.5 40v144q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  175. <glyph unicode="&#xe3;" horiz-adv-x="504" d="M170 723q29 0 73 -28t64 -28q33 0 60 53l25 -4q-5 -44 -28.5 -77.5t-61.5 -33.5q-28 0 -73.5 28t-64.5 28q-34 0 -60 -54l-24 4q6 44 29 78t61 34zM405 144q0 -78 24 -144l-67 -10q-16 32 -24 70h-1q-22 -29 -63.5 -49.5t-89.5 -20.5q-60 0 -94.5 32.5t-34.5 85.5 q0 80 78 122.5t198 49.5v66q0 101 -103 101q-76 0 -152 -47l-4 64q86 42 172 42q80 0 121.5 -38.5t41.5 -106.5q0 -37 -1 -116.5t-1 -100.5zM131 119q0 -32 20.5 -54.5t58.5 -22.5q32 0 65.5 16t55.5 40v144q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  176. <glyph unicode="&#xe4;" horiz-adv-x="504" d="M188 669q0 -25 -14 -43.5t-38 -18.5q-21 0 -34.5 15t-13.5 37q0 25 16 43.5t39 18.5q21 0 33 -14.5t12 -37.5zM389 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t39 18.5q20 0 32.5 -14.5t12.5 -37.5zM405 144q0 -78 24 -144l-67 -10 q-16 32 -24 70h-1q-22 -29 -63.5 -49.5t-89.5 -20.5q-60 0 -94.5 32.5t-34.5 85.5q0 80 78 122.5t198 49.5v66q0 101 -103 101q-76 0 -152 -47l-4 64q86 42 172 42q80 0 121.5 -38.5t41.5 -106.5q0 -37 -1 -116.5t-1 -100.5zM131 119q0 -32 20.5 -54.5t58.5 -22.5 q32 0 65.5 16t55.5 40v144q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  177. <glyph unicode="&#xe5;" horiz-adv-x="504" d="M333 661q0 -36 -28 -62.5t-67 -26.5q-35 0 -60 22.5t-25 54.5q0 37 28.5 63t68.5 26q36 0 59.5 -22t23.5 -55zM196 653q0 -20 13 -33t33 -13q21 0 34.5 14.5t13.5 35.5t-11.5 34t-32.5 13t-35.5 -15t-14.5 -36zM405 144q0 -78 24 -144l-67 -10q-16 32 -24 70h-1 q-22 -29 -63.5 -49.5t-89.5 -20.5q-60 0 -94.5 32.5t-34.5 85.5q0 80 78 122.5t198 49.5v66q0 101 -103 101q-76 0 -152 -47l-4 64q86 42 172 42q80 0 121.5 -38.5t41.5 -106.5q0 -37 -1 -116.5t-1 -100.5zM131 119q0 -32 20.5 -54.5t58.5 -22.5q32 0 65.5 16t55.5 40v144 q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  178. <glyph unicode="&#xe6;" horiz-adv-x="777" d="M718 257l-15 -15h-293q3 -96 46 -145t114 -49q66 0 131 43l6 -55q-64 -46 -154 -46q-130 0 -188 103q-28 -42 -78 -72.5t-106 -30.5q-58 0 -92 33t-34 86q0 79 78 121.5t198 49.5v66q0 101 -104 101q-77 0 -151 -47l-4 64q86 42 173 42q110 0 146 -73q61 73 156 73 q79 0 125.5 -52t46.5 -138q0 -40 -1 -59zM543 454q-53 0 -90.5 -45.5t-42.5 -129.5l233 7q0 5 0.5 17t0.5 18q0 61 -26.5 97t-74.5 36zM131 119q0 -32 20.5 -54.5t58.5 -22.5q41 0 80 23.5t61 58.5q-20 51 -20 118q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  179. <glyph unicode="&#xe7;" horiz-adv-x="479" d="M372 -130q0 -42 -43.5 -66t-107.5 -30l-3 32q92 16 92 57q0 35 -66 39l-10 16l23 74q-88 9 -140 74.5t-52 177.5q0 123 64 192.5t168 69.5q78 0 135 -33l-19 -63q-52 37 -116 37q-70 0 -111.5 -50.5t-41.5 -144.5t41 -149t115 -55q61 0 123 38l6 -55q-53 -37 -127 -41 l-16 -51q38 -5 62 -22t24 -47z" />
  180. <glyph unicode="&#xe8;" horiz-adv-x="511" d="M337 577q-102 66 -161 155l5 14l69 14q36 -78 112 -171zM452 257l-15 -15h-293q3 -96 46 -145t114 -49q66 0 131 43l6 -55q-64 -46 -154 -46q-101 0 -161.5 66.5t-60.5 185.5q0 123 62.5 193.5t153.5 70.5q79 0 125.5 -52t46.5 -138q0 -40 -1 -59zM277 454 q-53 0 -90.5 -45.5t-42.5 -129.5l233 7q0 5 0.5 17t0.5 19q0 60 -27 96t-74 36z" />
  181. <glyph unicode="&#xe9;" horiz-adv-x="511" d="M357 744l5 -14q-58 -88 -161 -156l-25 13q78 98 112 171zM452 257l-15 -15h-293q3 -96 46 -145t114 -49q66 0 131 43l6 -55q-64 -46 -154 -46q-101 0 -161.5 66.5t-60.5 185.5q0 123 62.5 193.5t153.5 70.5q79 0 125.5 -52t46.5 -138q0 -40 -1 -59zM277 454 q-53 0 -90.5 -45.5t-42.5 -129.5l233 7q0 5 0.5 17t0.5 19q0 60 -27 96t-74 36z" />
  182. <glyph unicode="&#xea;" horiz-adv-x="511" d="M155 572l-24 19q63 84 104 156l61 6q55 -88 113 -162l-24 -19q-55 47 -119 118q-65 -75 -111 -118zM452 257l-15 -15h-293q3 -96 46 -145t114 -49q66 0 131 43l6 -55q-64 -46 -154 -46q-101 0 -161.5 66.5t-60.5 185.5q0 123 62.5 193.5t153.5 70.5q79 0 125.5 -52 t46.5 -138q0 -40 -1 -59zM277 454q-53 0 -90.5 -45.5t-42.5 -129.5l233 7q0 5 0.5 17t0.5 19q0 60 -27 96t-74 36z" />
  183. <glyph unicode="&#xeb;" horiz-adv-x="511" d="M218 669q0 -25 -14 -43.5t-38 -18.5q-21 0 -34.5 15t-13.5 37q0 25 16 43.5t39 18.5q21 0 33 -14.5t12 -37.5zM419 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t39 18.5q20 0 32.5 -14.5t12.5 -37.5zM452 257l-15 -15h-293q3 -96 46 -145 t114 -49q66 0 131 43l6 -55q-64 -46 -154 -46q-101 0 -161.5 66.5t-60.5 185.5q0 123 62.5 193.5t153.5 70.5q79 0 125.5 -52t46.5 -138q0 -40 -1 -59zM277 454q-53 0 -90.5 -45.5t-42.5 -129.5l233 7q0 5 0.5 17t0.5 19q0 60 -27 96t-74 36z" />
  184. <glyph unicode="&#xec;" horiz-adv-x="269" d="M199 577q-102 66 -161 155l5 14l69 14q36 -78 112 -171zM96 0v339q0 97 -9 155l76 12l8 -8v-498h-75z" />
  185. <glyph unicode="&#xed;" horiz-adv-x="269" d="M219 744l5 -14q-58 -88 -161 -156l-25 13q78 98 112 171zM96 0v339q0 97 -9 155l76 12l8 -8v-498h-75z" />
  186. <glyph unicode="&#xee;" horiz-adv-x="269" d="M46 580l-24 13q38 82 67 160l74 6q36 -86 76 -166l-24 -13q-39 42 -89 116q-45 -74 -80 -116zM96 0v339q0 97 -9 155l76 12l8 -8v-498h-75z" />
  187. <glyph unicode="&#xef;" horiz-adv-x="269" d="M103 672q0 -25 -13.5 -43.5t-36.5 -18.5q-20 0 -32.5 15t-12.5 37q0 24 15.5 42.5t36.5 18.5q19 0 31 -14t12 -37zM254 672q0 -25 -14 -43.5t-37 -18.5q-20 0 -32 15t-12 37q0 24 15 42.5t36 18.5q20 0 32 -14t12 -37zM96 0v339q0 97 -9 155l76 12l8 -8v-498h-75z" />
  188. <glyph unicode="&#xf0;" horiz-adv-x="574" d="M290 -10q-93 0 -151.5 68t-58.5 186q0 119 58.5 186t147.5 67q80 0 129 -54q-32 94 -103 168l-126 -74l-25 39l116 69q-41 35 -95 67l28 44q68 -31 124 -78l120 72l24 -39l-109 -65q142 -148 142 -378q0 -136 -62.5 -207t-158.5 -71zM298 443q-62 0 -100.5 -51 t-38.5 -147q0 -90 35 -144t99 -54q63 0 101.5 51.5t38.5 145.5q0 91 -35.5 145t-99.5 54z" />
  189. <glyph unicode="&#xf1;" horiz-adv-x="570" d="M209 723q29 0 73 -28t64 -28q33 0 60 53l25 -4q-5 -44 -28.5 -77.5t-61.5 -33.5q-28 0 -73.5 28t-64.5 28q-34 0 -60 -54l-24 4q6 44 29 78t61 34zM175 0h-75v341q0 79 -20 148l69 17q14 -31 23 -74q77 74 167 74q64 0 99 -37.5t35 -108.5v-360h-75v344q0 105 -90 105 q-65 0 -133 -59v-390z" />
  190. <glyph unicode="&#xf2;" horiz-adv-x="559" d="M347 577q-101 67 -160 155l5 14l69 14q32 -72 111 -171zM494 252q0 -125 -63.5 -193.5t-156.5 -68.5t-151 67.5t-58 185.5q0 124 63 193.5t157 69.5t151.5 -68.5t57.5 -185.5zM144 250q0 -95 34.5 -151.5t99.5 -56.5q63 0 100.5 53.5t37.5 150.5q0 95 -34.5 151.5 t-99.5 56.5q-63 0 -100.5 -52.5t-37.5 -151.5z" />
  191. <glyph unicode="&#xf3;" horiz-adv-x="559" d="M368 744l4 -14q-59 -89 -160 -156l-25 13q79 99 111 171zM494 252q0 -125 -63.5 -193.5t-156.5 -68.5t-151 67.5t-58 185.5q0 124 63 193.5t157 69.5t151.5 -68.5t57.5 -185.5zM144 250q0 -95 34.5 -151.5t99.5 -56.5q63 0 100.5 53.5t37.5 150.5q0 95 -34.5 151.5 t-99.5 56.5q-63 0 -100.5 -52.5t-37.5 -151.5z" />
  192. <glyph unicode="&#xf4;" horiz-adv-x="559" d="M166 572l-24 19q63 84 104 156l61 6q48 -80 113 -162l-24 -19q-52 44 -120 118q-60 -70 -110 -118zM494 252q0 -125 -63.5 -193.5t-156.5 -68.5t-151 67.5t-58 185.5q0 124 63 193.5t157 69.5t151.5 -68.5t57.5 -185.5zM144 250q0 -95 34.5 -151.5t99.5 -56.5 q63 0 100.5 53.5t37.5 150.5q0 95 -34.5 151.5t-99.5 56.5q-63 0 -100.5 -52.5t-37.5 -151.5z" />
  193. <glyph unicode="&#xf5;" horiz-adv-x="559" d="M211 723q28 0 72.5 -28t64.5 -28q33 0 60 53l24 -4q-5 -44 -28 -77.5t-61 -33.5q-28 0 -73.5 28t-64.5 28q-34 0 -60 -54l-24 4q6 45 28.5 78.5t61.5 33.5zM494 252q0 -125 -63.5 -193.5t-156.5 -68.5t-151 67.5t-58 185.5q0 124 63 193.5t157 69.5t151.5 -68.5 t57.5 -185.5zM144 250q0 -95 34.5 -151.5t99.5 -56.5q63 0 100.5 53.5t37.5 150.5q0 95 -34.5 151.5t-99.5 56.5q-63 0 -100.5 -52.5t-37.5 -151.5z" />
  194. <glyph unicode="&#xf6;" horiz-adv-x="559" d="M229 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t39 18.5q20 0 32.5 -14.5t12.5 -37.5zM430 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t38 18.5q21 0 33.5 -14.5t12.5 -37.5zM494 252q0 -125 -63.5 -193.5 t-156.5 -68.5t-151 67.5t-58 185.5q0 124 63 193.5t157 69.5t151.5 -68.5t57.5 -185.5zM144 250q0 -95 34.5 -151.5t99.5 -56.5q63 0 100.5 53.5t37.5 150.5q0 95 -34.5 151.5t-99.5 56.5q-63 0 -100.5 -52.5t-37.5 -151.5z" />
  195. <glyph unicode="&#xf7;" d="M340 540q0 -25 -15.5 -41.5t-40.5 -16.5q-20 0 -32.5 13.5t-12.5 32.5q0 24 16.5 41.5t40.5 17.5q19 0 31.5 -13t12.5 -34zM510 322h-450v47q170 5 450 5l5 -5zM341 168q0 -25 -15.5 -41.5t-40.5 -16.5q-20 0 -32.5 13.5t-12.5 32.5q0 24 16.5 41.5t40.5 17.5 q19 0 31.5 -13t12.5 -34z" />
  196. <glyph unicode="&#xf8;" horiz-adv-x="559" d="M494 252q0 -125 -63.5 -193.5t-156.5 -68.5q-90 0 -147 63l-55 -59l-32 31l61 65q-36 63 -36 153q0 124 63 193.5t157 69.5q89 0 146 -62l55 59l33 -30l-62 -66q37 -63 37 -155zM144 250q-1 -52 12 -100l228 243q-36 61 -102 61q-63 0 -100.5 -52.5t-37.5 -151.5z M416 246q0 55 -13 102l-228 -243q35 -63 103 -63q63 0 100.5 53.5t37.5 150.5z" />
  197. <glyph unicode="&#xf9;" horiz-adv-x="560" d="M347 577q-100 65 -160 155l4 14l70 14q32 -72 111 -171zM96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75q-63 0 -97.5 35.5t-34.5 99.5v214z" />
  198. <glyph unicode="&#xfa;" horiz-adv-x="560" d="M367 744l5 -14q-58 -87 -160 -156l-25 13q79 99 111 171zM96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75q-63 0 -97.5 35.5t-34.5 99.5v214z" />
  199. <glyph unicode="&#xfb;" horiz-adv-x="560" d="M166 572l-24 19q59 79 103 156l62 6q48 -80 113 -162l-25 -19q-60 53 -119 118q-60 -70 -110 -118zM96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75q-63 0 -97.5 35.5 t-34.5 99.5v214z" />
  200. <glyph unicode="&#xfc;" horiz-adv-x="560" d="M229 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t38 18.5q21 0 33.5 -14.5t12.5 -37.5zM430 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 15.5 43.5t38.5 18.5q21 0 33.5 -14.5t12.5 -37.5zM96 339q0 84 -7 155l74 12l8 -8 v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75q-63 0 -97.5 35.5t-34.5 99.5v214z" />
  201. <glyph unicode="&#xfd;" horiz-adv-x="462" d="M326 744l5 -14q-58 -88 -161 -156l-25 13q78 98 112 171zM446 491l-172 -481q-86 -248 -245 -266l-12 72q131 17 199 198h-21l-171 486l77 6l79 -240q50 -136 60 -200h1q11 54 62 200l79 240l58 -6z" />
  202. <glyph unicode="&#xfe;" horiz-adv-x="563" d="M95 589q0 79 -9 155l75 12l9 -8v-293q54 51 133 51q84 0 139.5 -67.5t55.5 -184.5q0 -118 -57 -191t-157 -73q-61 0 -114 24v-105q0 -73 9 -151l-75 -12l-9 9v834zM278 452q-64 0 -108 -48v-338q50 -26 102 -26q71 0 109 55t38 154q0 100 -38 151.5t-103 51.5z" />
  203. <glyph unicode="&#xff;" horiz-adv-x="462" d="M187 669q0 -25 -14 -43.5t-38 -18.5q-21 0 -34.5 15t-13.5 37q0 25 16 43.5t39 18.5q21 0 33 -14.5t12 -37.5zM388 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t39 18.5q20 0 32.5 -14.5t12.5 -37.5zM446 491l-172 -481q-86 -248 -245 -266 l-12 72q131 17 199 198h-21l-171 486l77 6l79 -240q50 -136 60 -200h1q11 54 62 200l79 240l58 -6z" />
  204. <glyph unicode="&#x100;" horiz-adv-x="612" d="M174 815v53h265v-53h-265zM98 0h-74l205 589q25 72 33 103l76 4l11 -10l239 -686h-79l-70 199h-271zM240 404l-51 -145h229l-50 145q-51 152 -63 209h-2q-12 -53 -63 -209z" />
  205. <glyph unicode="&#x101;" horiz-adv-x="504" d="M103 639v50h272v-50h-272zM405 144q0 -78 24 -144l-67 -10q-16 32 -24 70h-1q-22 -29 -63.5 -49.5t-89.5 -20.5q-60 0 -94.5 32.5t-34.5 85.5q0 80 78 122.5t198 49.5v66q0 101 -103 101q-76 0 -152 -47l-4 64q86 42 172 42q80 0 121.5 -38.5t41.5 -106.5 q0 -37 -1 -116.5t-1 -100.5zM131 119q0 -32 20.5 -54.5t58.5 -22.5q32 0 65.5 16t55.5 40v144q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  206. <glyph unicode="&#x102;" horiz-adv-x="612" d="M400 901h35q-10 -54 -45 -86t-87 -32q-50 0 -84 30.5t-41 82.5l34 5q21 -59 96 -59q33 0 57.5 16t34.5 43zM98 0h-74l205 589q25 72 33 103l76 4l11 -10l239 -686h-79l-70 199h-271zM240 404l-51 -145h229l-50 145q-51 152 -63 209h-2q-12 -53 -63 -209z" />
  207. <glyph unicode="&#x103;" horiz-adv-x="504" d="M332 737h35q-10 -65 -45 -103t-87 -38q-50 0 -84 36.5t-41 99.5l34 5q21 -81 96 -81q33 0 57.5 22t34.5 59zM405 144q0 -78 24 -144l-67 -10q-16 32 -24 70h-1q-22 -29 -63.5 -49.5t-89.5 -20.5q-60 0 -94.5 32.5t-34.5 85.5q0 80 78 122.5t198 49.5v66q0 101 -103 101 q-76 0 -152 -47l-4 64q86 42 172 42q80 0 121.5 -38.5t41.5 -106.5q0 -37 -1 -116.5t-1 -100.5zM131 119q0 -32 20.5 -54.5t58.5 -22.5q32 0 65.5 16t55.5 40v144q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  208. <glyph unicode="&#x104;" horiz-adv-x="612" d="M98 0h-74l205 589q25 72 33 103l76 4l11 -10l239 -686q-112 -62 -112 -126q0 -49 53 -49q24 0 55 12l13 -31q-39 -32 -91 -32q-45 0 -71 22t-26 61q0 80 119 143h-19l-70 199h-271zM240 404l-51 -145h229l-50 145q-51 152 -63 209h-2q-12 -53 -63 -209z" />
  209. <glyph unicode="&#x105;" horiz-adv-x="504" d="M429 0q-112 -62 -112 -126q0 -49 53 -49q24 0 55 12l13 -31q-39 -32 -91 -32q-45 0 -71 22t-26 61q0 78 110 138q-14 29 -22 65h-1q-22 -29 -63.5 -49.5t-89.5 -20.5q-60 0 -94.5 32.5t-34.5 85.5q0 80 78 122.5t198 49.5v66q0 101 -103 101q-76 0 -152 -47l-4 64 q86 42 172 42q80 0 121.5 -38.5t41.5 -106.5q0 -37 -1 -116.5t-1 -100.5q0 -78 24 -144zM131 119q0 -32 20.5 -54.5t58.5 -22.5q32 0 65.5 16t55.5 40v144q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  210. <glyph unicode="&#x106;" horiz-adv-x="592" d="M471 865l-3 -14q-101 -58 -242 -74l-8 23q128 54 204 111zM534 109l9 -65q-72 -54 -188 -54q-130 0 -208.5 90.5t-78.5 252.5q0 166 82.5 264.5t213.5 98.5q105 0 173 -43l-15 -71q-66 48 -155 48q-96 0 -157 -77t-61 -214q0 -127 57.5 -205t160.5 -78q92 0 167 53z" />
  211. <glyph unicode="&#x107;" horiz-adv-x="479" d="M368 744l5 -14q-58 -88 -161 -156l-25 13q78 98 112 171zM432 473l-19 -63q-52 37 -116 37q-70 0 -111.5 -50.5t-41.5 -144.5t41 -149t115 -55q61 0 123 38l6 -55q-59 -41 -143 -41q-100 0 -160.5 67t-60.5 187q0 123 64 192.5t168 69.5q78 0 135 -33z" />
  212. <glyph unicode="&#x108;" horiz-adv-x="592" d="M215 771l-21 19q55 49 115 119l61 6q55 -64 125 -125l-22 -19q-68 38 -133 87q-67 -53 -125 -87zM534 109l9 -65q-72 -54 -188 -54q-130 0 -208.5 90.5t-78.5 252.5q0 166 82.5 264.5t213.5 98.5q105 0 173 -43l-15 -71q-66 48 -155 48q-96 0 -157 -77t-61 -214 q0 -127 57.5 -205t160.5 -78q92 0 167 53z" />
  213. <glyph unicode="&#x109;" horiz-adv-x="479" d="M166 572l-24 19q63 84 104 156l61 6q55 -88 113 -162l-24 -19q-55 47 -119 118q-65 -75 -111 -118zM432 473l-19 -63q-52 37 -116 37q-70 0 -111.5 -50.5t-41.5 -144.5t41 -149t115 -55q61 0 123 38l6 -55q-59 -41 -143 -41q-100 0 -160.5 67t-60.5 187q0 123 64 192.5 t168 69.5q78 0 135 -33z" />
  214. <glyph unicode="&#x10a;" horiz-adv-x="592" d="M400 852q0 -24 -15.5 -41t-42.5 -17q-24 0 -38.5 14t-14.5 36q0 23 17.5 40t43.5 17q23 0 36.5 -13.5t13.5 -35.5zM534 109l9 -65q-72 -54 -188 -54q-130 0 -208.5 90.5t-78.5 252.5q0 166 82.5 264.5t213.5 98.5q105 0 173 -43l-15 -71q-66 48 -155 48q-96 0 -157 -77 t-61 -214q0 -127 57.5 -205t160.5 -78q92 0 167 53z" />
  215. <glyph unicode="&#x10b;" horiz-adv-x="479" d="M333 670q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39zM432 473l-19 -63q-52 37 -116 37q-70 0 -111.5 -50.5t-41.5 -144.5t41 -149t115 -55q61 0 123 38l6 -55q-59 -41 -143 -41q-100 0 -160.5 67t-60.5 187 q0 123 64 192.5t168 69.5q78 0 135 -33z" />
  216. <glyph unicode="&#x10c;" horiz-adv-x="592" d="M473 916l22 -19q-55 -48 -116 -119l-61 -6q-53 62 -124 125l21 19q68 -38 133 -87q67 53 125 87zM534 109l9 -65q-72 -54 -188 -54q-130 0 -208.5 90.5t-78.5 252.5q0 166 82.5 264.5t213.5 98.5q105 0 173 -43l-15 -71q-66 48 -155 48q-96 0 -157 -77t-61 -214 q0 -127 57.5 -205t160.5 -78q92 0 167 53z" />
  217. <glyph unicode="&#x10d;" horiz-adv-x="479" d="M396 759l24 -19q-63 -84 -104 -156l-61 -6q-48 80 -113 162l24 19q48 -41 119 -118q65 75 111 118zM432 473l-19 -63q-52 37 -116 37q-70 0 -111.5 -50.5t-41.5 -144.5t41 -149t115 -55q61 0 123 38l6 -55q-59 -41 -143 -41q-100 0 -160.5 67t-60.5 187q0 123 64 192.5 t168 69.5q78 0 135 -33z" />
  218. <glyph unicode="&#x10e;" horiz-adv-x="681" d="M456 916l22 -19q-55 -48 -116 -119l-61 -6q-53 62 -124 125l21 19q68 -38 133 -87q67 53 125 87zM613 346q0 -162 -94.5 -254t-248.5 -92h-167v531q0 87 -8 155h188q144 0 237 -92t93 -248zM276 627h-96v-567h93q127 0 193 74t66 208q0 131 -69 208t-187 77z" />
  219. <glyph unicode="&#x10f;" horiz-adv-x="565" d="M384 744l75 12l9 -8v-609q0 -76 24 -139l-68 -10q-12 24 -24 69h-1q-48 -69 -138 -69q-87 0 -141.5 67t-54.5 181q0 127 67 197.5t171 70.5q47 0 90 -16v99q0 89 -9 155zM650 756l7 -12q-16 -103 -76 -211l-26 4q28 126 29 215zM144 246q0 -95 38 -149.5t103 -54.5 q64 0 108 54v345q-45 16 -87 16q-72 0 -117 -53.5t-45 -157.5z" />
  220. <glyph unicode="&#x110;" horiz-adv-x="681" d="M613 346q0 -162 -94.5 -254t-248.5 -92h-167v321h-89v45h89v165q0 87 -8 155h188q144 0 237 -92t93 -248zM381 321h-201v-261h93q127 0 193 74t66 208q0 131 -69 208t-187 77h-96v-261h201v-45z" />
  221. <glyph unicode="&#x111;" horiz-adv-x="565" d="M566 589h-98v-450q0 -76 24 -139l-68 -10q-12 24 -24 69h-1q-48 -69 -138 -69q-87 0 -141.5 67t-54.5 181q0 127 67 197.5t171 70.5q47 0 90 -16v99h-194v45h193q-2 61 -8 110l75 12l9 -8v-114h98v-45zM144 246q0 -95 38 -149.5t103 -54.5q64 0 108 54v345q-45 16 -87 16 q-72 0 -117 -53.5t-45 -157.5z" />
  222. <glyph unicode="&#x112;" horiz-adv-x="521" d="M154 815v53h265v-53h-265zM481 64v-64h-378v531q0 87 -8 155h369l8 -8l-1 -56l-291 6v-260l247 3l-1 -61l-246 3v-254z" />
  223. <glyph unicode="&#x113;" horiz-adv-x="511" d="M133 639v50h272v-50h-272zM452 257l-15 -15h-293q3 -96 46 -145t114 -49q66 0 131 43l6 -55q-64 -46 -154 -46q-101 0 -161.5 66.5t-60.5 185.5q0 123 62.5 193.5t153.5 70.5q79 0 125.5 -52t46.5 -138q0 -40 -1 -59zM277 454q-53 0 -90.5 -45.5t-42.5 -129.5l233 7 q0 5 0.5 17t0.5 19q0 60 -27 96t-74 36z" />
  224. <glyph unicode="&#x114;" horiz-adv-x="521" d="M380 901h35q-10 -54 -45 -86t-87 -32q-50 0 -84 30.5t-41 82.5l34 5q21 -59 96 -59q33 0 57.5 16t34.5 43zM481 64v-64h-378v531q0 87 -8 155h369l8 -8l-1 -56l-291 6v-260l247 3l-1 -61l-246 3v-254z" />
  225. <glyph unicode="&#x115;" horiz-adv-x="511" d="M362 737h35q-10 -65 -45 -103t-87 -38q-50 0 -84 36.5t-41 99.5l34 5q21 -81 96 -81q33 0 57.5 22t34.5 59zM452 257l-15 -15h-293q3 -96 46 -145t114 -49q66 0 131 43l6 -55q-64 -46 -154 -46q-101 0 -161.5 66.5t-60.5 185.5q0 123 62.5 193.5t153.5 70.5 q79 0 125.5 -52t46.5 -138q0 -40 -1 -59zM277 454q-53 0 -90.5 -45.5t-42.5 -129.5l233 7q0 5 0.5 17t0.5 19q0 60 -27 96t-74 36z" />
  226. <glyph unicode="&#x116;" horiz-adv-x="521" d="M342 852q0 -24 -16 -41t-43 -17q-23 0 -37.5 14t-14.5 36q0 23 17.5 40t42.5 17q23 0 37 -13.5t14 -35.5zM481 64v-64h-378v531q0 87 -8 155h369l8 -8l-1 -56l-291 6v-260l247 3l-1 -61l-246 3v-254z" />
  227. <glyph unicode="&#x117;" horiz-adv-x="511" d="M322 670q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39zM452 257l-15 -15h-293q3 -96 46 -145t114 -49q66 0 131 43l6 -55q-64 -46 -154 -46q-101 0 -161.5 66.5t-60.5 185.5q0 123 62.5 193.5t153.5 70.5 q79 0 125.5 -52t46.5 -138q0 -40 -1 -59zM277 454q-53 0 -90.5 -45.5t-42.5 -129.5l233 7q0 5 0.5 17t0.5 19q0 60 -27 96t-74 36z" />
  228. <glyph unicode="&#x118;" horiz-adv-x="521" d="M481 0q-112 -62 -112 -126q0 -49 53 -49q24 0 56 12l13 -31q-40 -32 -92 -32q-45 0 -71 22t-26 61q0 80 119 143h-318v531q0 87 -8 155h369l8 -8l-1 -56l-291 6v-260l247 3l-1 -61l-246 3v-254l301 5v-64z" />
  229. <glyph unicode="&#x119;" horiz-adv-x="514" d="M452 257l-15 -15h-293q3 -96 46 -145t114 -49q66 0 131 43l5 -56l-2 -2q-127 -88 -127 -156q0 -50 53 -50q23 0 55 12l13 -31q-38 -32 -93 -32q-44 0 -70 22t-26 59q0 69 89 137q-19 -4 -45 -4q-101 0 -161.5 66.5t-60.5 185.5q0 123 62.5 193.5t153.5 70.5 q79 0 125.5 -52t46.5 -138q0 -40 -1 -59zM277 454q-53 0 -90.5 -45.5t-42.5 -129.5l233 7q0 5 0.5 17t0.5 19q0 60 -27 96t-74 36z" />
  230. <glyph unicode="&#x11a;" horiz-adv-x="521" d="M415 916l21 -19q-55 -49 -115 -119l-61 -6q-55 64 -125 125l22 19q61 -34 133 -87q67 53 125 87zM481 64v-64h-378v531q0 87 -8 155h369l8 -8l-1 -56l-291 6v-260l247 3l-1 -61l-246 3v-254z" />
  231. <glyph unicode="&#x11b;" horiz-adv-x="511" d="M385 759l24 -19q-63 -84 -104 -156l-61 -6q-48 80 -113 162l24 19q48 -41 119 -118q65 75 111 118zM452 257l-15 -15h-293q3 -96 46 -145t114 -49q66 0 131 43l6 -55q-64 -46 -154 -46q-101 0 -161.5 66.5t-60.5 185.5q0 123 62.5 193.5t153.5 70.5q79 0 125.5 -52 t46.5 -138q0 -40 -1 -59zM277 454q-53 0 -90.5 -45.5t-42.5 -129.5l233 7q0 5 0.5 17t0.5 19q0 60 -27 96t-74 36z" />
  232. <glyph unicode="&#x11c;" horiz-adv-x="648" d="M218 771l-22 19q62 55 115 119l62 6q53 -62 124 -125l-22 -19q-61 34 -133 87q-66 -53 -124 -87zM563 299l8 -8l-2 -253q-40 -22 -97.5 -35t-110.5 -13q-136 0 -214.5 90t-78.5 250q0 169 85.5 267.5t230.5 98.5q97 0 167 -38l-14 -70q-63 44 -149 44q-109 0 -174 -76.5 t-65 -216.5q0 -129 57.5 -207t165.5 -78q58 0 123 19v50q0 83 -9 166z" />
  233. <glyph unicode="&#x11d;" horiz-adv-x="490" d="M121 572l-24 19q58 76 104 156l62 6q51 -85 112 -162l-24 -19q-55 47 -119 118q-61 -72 -111 -118zM115 76q1 46 41 81q-47 19 -74.5 61t-27.5 100q0 80 48.5 134t132.5 54q63 0 103 -31q18 19 49 30.5t62 11.5l11 -4l-2 -62h-96q48 -48 48 -124q0 -79 -48 -131.5 t-130 -52.5q-18 0 -38 3q-16 -21 -16 -47q0 -23 13.5 -34.5t44.5 -14.5l85 -6q63 -4 104 -34t41 -89q0 -74 -64 -125.5t-173 -51.5q-94 0 -150 37.5t-56 94.5q0 34 18.5 58.5t42.5 36.5l32 -15q-25 -29 -25 -60q0 -43 39 -74.5t107 -31.5q69 0 111 32t42 81q0 37 -25.5 58 t-70.5 25l-76 6q-101 9 -103 84zM336 323q0 64 -26.5 100t-76.5 36q-52 0 -78.5 -35t-26.5 -99q0 -63 27 -99t79 -36q50 0 76 34.5t26 98.5z" />
  234. <glyph unicode="&#x11e;" horiz-adv-x="648" d="M441 901h35q-10 -55 -45 -86.5t-88 -31.5q-50 0 -84 30.5t-41 82.5l34 5q21 -59 97 -59q33 0 57.5 16t34.5 43zM563 299l8 -8l-2 -253q-40 -22 -97.5 -35t-110.5 -13q-136 0 -214.5 90t-78.5 250q0 169 85.5 267.5t230.5 98.5q97 0 167 -38l-14 -70q-63 44 -149 44 q-109 0 -174 -76.5t-65 -216.5q0 -129 57.5 -207t165.5 -78q58 0 123 19v50q0 83 -9 166z" />
  235. <glyph unicode="&#x11f;" horiz-adv-x="490" d="M329 737h34q-9 -65 -44.5 -103t-87.5 -38q-50 0 -84 36.5t-41 99.5l34 5q10 -38 35.5 -59.5t60.5 -21.5q33 0 57.5 22t35.5 59zM115 76q1 46 41 81q-47 19 -74.5 61t-27.5 100q0 80 48.5 134t132.5 54q63 0 103 -31q18 19 49 30.5t62 11.5l11 -4l-2 -62h-96 q48 -48 48 -124q0 -79 -48 -131.5t-130 -52.5q-18 0 -38 3q-16 -21 -16 -47q0 -23 13.5 -34.5t44.5 -14.5l85 -6q63 -4 104 -34t41 -89q0 -74 -64 -125.5t-173 -51.5q-94 0 -150 37.5t-56 94.5q0 34 18.5 58.5t42.5 36.5l32 -15q-25 -29 -25 -60q0 -43 39 -74.5t107 -31.5 q69 0 111 32t42 81q0 37 -25.5 58t-70.5 25l-76 6q-101 9 -103 84zM336 323q0 64 -26.5 100t-76.5 36q-52 0 -78.5 -35t-26.5 -99q0 -63 27 -99t79 -36q50 0 76 34.5t26 98.5z" />
  236. <glyph unicode="&#x120;" horiz-adv-x="648" d="M403 852q0 -24 -16 -41t-43 -17q-24 0 -38.5 14.5t-14.5 35.5q0 23 18 40t43 17q23 0 37 -13.5t14 -35.5zM563 299l8 -8l-2 -253q-40 -22 -97.5 -35t-110.5 -13q-136 0 -214.5 90t-78.5 250q0 169 85.5 267.5t230.5 98.5q97 0 167 -38l-14 -70q-63 44 -149 44 q-109 0 -174 -76.5t-65 -216.5q0 -129 57.5 -207t165.5 -78q58 0 123 19v50q0 83 -9 166z" />
  237. <glyph unicode="&#x121;" horiz-adv-x="490" d="M288 670q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39zM115 76q1 46 41 81q-47 19 -74.5 61t-27.5 100q0 80 48.5 134t132.5 54q63 0 103 -31q18 19 49 30.5t62 11.5l11 -4l-2 -62h-96q48 -48 48 -124 q0 -79 -48 -131.5t-130 -52.5q-18 0 -38 3q-16 -21 -16 -47q0 -23 13.5 -34.5t44.5 -14.5l85 -6q63 -4 104 -34t41 -89q0 -74 -64 -125.5t-173 -51.5q-94 0 -150 37.5t-56 94.5q0 34 18.5 58.5t42.5 36.5l32 -15q-25 -29 -25 -60q0 -43 39 -74.5t107 -31.5q69 0 111 32 t42 81q0 37 -25.5 58t-70.5 25l-76 6q-101 9 -103 84zM336 323q0 64 -26.5 100t-76.5 36q-52 0 -78.5 -35t-26.5 -99q0 -63 27 -99t79 -36q50 0 76 34.5t26 98.5z" />
  238. <glyph unicode="&#x122;" horiz-adv-x="648" d="M563 299l8 -8l-2 -253q-40 -22 -97.5 -35t-110.5 -13q-136 0 -214.5 90t-78.5 250q0 169 85.5 267.5t230.5 98.5q97 0 167 -38l-14 -70q-63 44 -149 44q-109 0 -174 -76.5t-65 -216.5q0 -129 57.5 -207t165.5 -78q58 0 123 19v50q0 83 -9 166zM321 -311q30 52 41 94 q-19 1 -31.5 16t-12.5 36q0 23 14.5 40t38.5 17q23 0 36.5 -16t13.5 -44q0 -68 -72 -162z" />
  239. <glyph unicode="&#x123;" horiz-adv-x="490" d="M281 776q-30 -50 -41 -94q19 -1 31.5 -15.5t12.5 -35.5q0 -23 -14.5 -40.5t-38.5 -17.5q-23 0 -37 16t-14 45q0 70 73 162zM115 76q1 46 41 81q-47 19 -74.5 61t-27.5 100q0 80 48.5 134t132.5 54q63 0 103 -31q18 19 49 30.5t62 11.5l11 -4l-2 -62h-96q48 -48 48 -124 q0 -79 -48 -131.5t-130 -52.5q-18 0 -38 3q-16 -21 -16 -47q0 -23 13.5 -34.5t44.5 -14.5l85 -6q63 -4 104 -34t41 -89q0 -74 -64 -125.5t-173 -51.5q-94 0 -150 37.5t-56 94.5q0 34 18.5 58.5t42.5 36.5l32 -15q-25 -29 -25 -60q0 -43 39 -74.5t107 -31.5q69 0 111 32 t42 81q0 37 -25.5 58t-70.5 25l-76 6q-101 9 -103 84zM336 323q0 64 -26.5 100t-76.5 36q-52 0 -78.5 -35t-26.5 -99q0 -63 27 -99t79 -36q50 0 76 34.5t26 98.5z" />
  240. <glyph unicode="&#x124;" horiz-adv-x="705" d="M223 771l-21 19q62 55 115 119l62 6q52 -62 124 -125l-22 -19q-61 34 -133 87q-67 -53 -125 -87zM180 0h-77v529q0 80 -8 157l77 10l8 -8v-317h344v158q0 90 -7 157l76 10l9 -8v-688h-78v312h-344v-312z" />
  241. <glyph unicode="&#x125;" horiz-adv-x="565" d="M2 804l-22 19q55 48 116 119l61 6q55 -64 125 -125l-22 -19q-68 38 -133 87q-67 -53 -125 -87zM170 0h-75v589q0 88 -9 155l75 12l9 -8v-313q77 71 164 71q64 0 99 -37.5t35 -108.5v-360h-75v344q0 105 -90 105q-64 0 -133 -58v-391z" />
  242. <glyph unicode="&#x126;" horiz-adv-x="705" d="M180 0h-77v496h-73v45h72q0 82 -7 145l77 10l8 -8v-147h344q0 82 -7 145l76 10l9 -8v-147h73v-45h-73v-496h-78v312h-344v-312zM180 371h344v125h-344v-125z" />
  243. <glyph unicode="&#x127;" horiz-adv-x="565" d="M170 0h-75v584h-93v45h93q-2 66 -9 115l75 12l9 -8v-119h199v-45h-199v-149q77 71 164 71q64 0 99 -37.5t35 -108.5v-360h-75v344q0 105 -90 105q-64 0 -133 -58v-391z" />
  244. <glyph unicode="&#x128;" horiz-adv-x="283" d="M68 903q31 0 76.5 -28t68.5 -28q39 0 66 54l23 -4q-4 -44 -28.5 -75.5t-65.5 -31.5q-30 0 -77.5 28t-69.5 28q-38 0 -66 -53l-23 4q4 41 28.5 73.5t67.5 32.5zM180 0h-77v529q0 80 -8 157l77 10l8 -8v-688z" />
  245. <glyph unicode="&#x129;" horiz-adv-x="269" d="M81 726q23 0 56.5 -28t47.5 -28q29 0 46 54l23 -4q-2 -42 -21.5 -77t-52.5 -35q-23 0 -57 28t-46 28q-29 0 -47 -53l-23 4q3 42 22.5 76.5t51.5 34.5zM96 0v339q0 97 -9 155l76 12l8 -8v-498h-75z" />
  246. <glyph unicode="&#x12a;" horiz-adv-x="283" d="M5 815v53h265v-53h-265zM180 0h-77v529q0 80 -8 157l77 10l8 -8v-688z" />
  247. <glyph unicode="&#x12b;" horiz-adv-x="269" d="M23 639v50h216v-50h-216zM96 0v339q0 97 -9 155l76 12l8 -8v-498h-75z" />
  248. <glyph unicode="&#x12c;" horiz-adv-x="283" d="M231 901h35q-10 -54 -45 -86t-87 -32q-50 0 -84 30.5t-41 82.5l34 5q21 -59 96 -59q33 0 57.5 16t34.5 43zM180 0h-77v529q0 80 -8 157l77 10l8 -8v-688z" />
  249. <glyph unicode="&#x12d;" horiz-adv-x="269" d="M209 736h35q-8 -65 -39.5 -103t-77.5 -38q-43 0 -73 36.5t-36 99.5l34 5q8 -38 29 -59.5t51 -21.5q28 0 48.5 22t28.5 59zM96 0v339q0 97 -9 155l76 12l8 -8v-498h-75z" />
  250. <glyph unicode="&#x12e;" horiz-adv-x="260" d="M169 0q-64 -66 -64 -125q0 -50 53 -50q24 0 55 12l13 -31q-39 -32 -93 -32q-44 0 -69.5 23t-25.5 64q0 73 80 139h-15v529q0 80 -8 157l77 10l8 -8v-688h-11z" />
  251. <glyph unicode="&#x12f;" horiz-adv-x="269" d="M184 670q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39zM96 0v339q0 97 -9 155l76 12l8 -8v-498q-67 -59 -67 -117q0 -26 15 -41t43 -15q23 0 50 12l13 -31q-38 -32 -92 -32q-44 0 -70 25t-26 66q0 68 83 133h-24 z" />
  252. <glyph unicode="&#x130;" horiz-adv-x="283" d="M193 852q0 -24 -16 -41t-43 -17q-24 0 -38 14t-14 36q0 23 17.5 40t42.5 17q23 0 37 -13.5t14 -35.5zM180 0h-77v529q0 80 -8 157l77 10l8 -8v-688z" />
  253. <glyph unicode="&#x131;" horiz-adv-x="269" d="M96 0v339q0 97 -9 155l76 12l8 -8v-498h-75z" />
  254. <glyph unicode="&#x132;" horiz-adv-x="556" d="M180 0h-77v529q0 80 -8 157l77 10l8 -8v-688zM314 -193l-25 38q87 69 87 222v462q0 79 -9 155l78 12l8 -8v-621q0 -102 -33 -162t-106 -98z" />
  255. <glyph unicode="&#x133;" horiz-adv-x="538" d="M184 670q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39zM453 670q0 -26 -15.5 -44.5t-41.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39zM96 0v339q0 97 -9 155l76 12l8 -8 v-498h-75zM311 -256l-26 33q81 68 81 189v373q0 77 -9 155l75 12l9 -8v-524q0 -87 -32 -141.5t-98 -88.5z" />
  256. <glyph unicode="&#x134;" horiz-adv-x="273" d="M2 771l-22 19q62 55 115 119l62 6q53 -62 124 -125l-21 -19q-61 34 -134 87q-66 -53 -124 -87zM31 -193l-25 38q87 69 87 222v462q0 79 -9 155l78 12l9 -8v-621q0 -102 -33.5 -162t-106.5 -98z" />
  257. <glyph unicode="&#x135;" horiz-adv-x="270" d="M45 580l-23 13q45 99 67 160l74 6q26 -66 75 -166l-23 -13q-39 42 -89 116q-45 -74 -81 -116zM42 -256l-26 33q81 67 81 189v373q0 77 -9 155l75 12l9 -8v-524q0 -87 -32 -141.5t-98 -88.5z" />
  258. <glyph unicode="&#x136;" horiz-adv-x="590" d="M103 529q0 88 -8 157l75 10l9 -8v-323h97q28 43 211 331l65 -12l6 -8l-219 -327l242 -349l-84 -9q-66 92 -219 315h-99v-306h-76v529zM257 -311q30 52 41 94q-19 2 -31.5 16.5t-12.5 35.5q0 23 14.5 40t38.5 17q23 0 37 -16t14 -44q0 -70 -73 -162z" />
  259. <glyph unicode="&#x137;" horiz-adv-x="510" d="M95 589q0 89 -9 155l75 12l9 -8v-468h78q60 85 151 226l57 -12l6 -9l-151 -209q56 -90 180 -276l-83 -10q-62 91 -156 243h-82v-233h-75v589zM218 -311q30 52 41 94q-19 1 -31.5 16t-12.5 36q0 23 14.5 40t38.5 17q23 0 36.5 -16t13.5 -44q0 -68 -72 -162z" />
  260. <glyph unicode="&#x138;" horiz-adv-x="510" d="M95 339q0 89 -9 155l75 12l9 -8v-218h78q60 85 151 226l57 -12l6 -9l-151 -209q56 -90 180 -276l-83 -10q-62 91 -156 243h-82v-233h-75v339z" />
  261. <glyph unicode="&#x139;" horiz-adv-x="492" d="M370 865l-3 -14q-101 -58 -242 -74l-8 23q128 54 204 111zM470 64v-64h-367v530q0 79 -8 156l77 10l8 -8v-629z" />
  262. <glyph unicode="&#x13a;" horiz-adv-x="269" d="M265 916l-3 -13q-103 -58 -242 -74l-8 23q128 53 204 110zM171 0h-75v589q0 89 -9 155l76 12l8 -8v-748z" />
  263. <glyph unicode="&#x13b;" horiz-adv-x="492" d="M470 64v-64h-367v530q0 79 -8 156l77 10l8 -8v-629zM242 -311q30 52 41 94q-19 2 -31.5 16.5t-12.5 35.5q0 22 14.5 39.5t38.5 17.5q23 0 37 -16t14 -44q0 -70 -73 -162z" />
  264. <glyph unicode="&#x13c;" horiz-adv-x="269" d="M171 0h-75v589q0 89 -9 155l76 12l8 -8v-748zM86 -311q30 52 41 94q-19 1 -31.5 16t-12.5 36q0 23 14.5 40t38.5 17q23 0 36.5 -16t13.5 -44q0 -68 -72 -162z" />
  265. <glyph unicode="&#x13d;" horiz-adv-x="492" d="M386 742l7 -12q-14 -101 -75 -212l-27 5q29 129 30 214zM470 64v-64h-367v530q0 79 -8 156l77 10l8 -8v-629z" />
  266. <glyph unicode="&#x13e;" horiz-adv-x="269" d="M331 763l7 -12q-14 -96 -75 -212l-27 5q29 130 29 214zM171 0h-75v589q0 89 -9 155l76 12l8 -8v-748z" />
  267. <glyph unicode="&#x13f;" horiz-adv-x="492" d="M422 355q0 -25 -17.5 -43t-41.5 -18q-23 0 -39.5 16t-16.5 41q0 26 17.5 44t42.5 18q24 0 39.5 -16.5t15.5 -41.5zM470 64v-64h-367v530q0 79 -8 156l77 10l8 -8v-629z" />
  268. <glyph unicode="&#x140;" horiz-adv-x="518" d="M171 0h-75v589q0 89 -9 155l76 12l8 -8v-748zM453 319q0 -26 -17.5 -43.5t-41.5 -17.5t-40 16t-16 41t17.5 43t42.5 18q24 0 39.5 -16t15.5 -41z" />
  269. <glyph unicode="&#x141;" horiz-adv-x="492" d="M470 64v-64h-367v287l-92 -50l-22 40l114 63v190q0 79 -8 156l77 10l8 -8v-305l135 75l23 -41l-158 -87v-271z" />
  270. <glyph unicode="&#x142;" horiz-adv-x="269" d="M171 0h-75v369l-111 -62l-22 41l133 73v168q0 89 -9 155l76 12l8 -8v-285l118 65l23 -40l-141 -78v-410z" />
  271. <glyph unicode="&#x143;" horiz-adv-x="703" d="M472 865l-3 -14q-103 -58 -242 -74l-8 23q130 55 204 111zM358 398q10 -15 40 -64t40.5 -66t30.5 -51.5t34 -61t27 -55.5h2q-6 97 -6 415q0 86 -8 171l74 10l9 -9v-687h-78q-111 181 -182 297q-128 205 -168 287h-1q6 -85 6 -237v-347h-75v531q0 78 -8 155l81 10 q37 -61 102 -167.5t80 -130.5z" />
  272. <glyph unicode="&#x144;" horiz-adv-x="570" d="M366 744l5 -14q-58 -88 -161 -156l-25 13q78 98 112 171zM175 0h-75v341q0 79 -20 148l69 17q14 -31 23 -74q77 74 167 74q64 0 99 -37.5t35 -108.5v-360h-75v344q0 105 -90 105q-65 0 -133 -59v-390z" />
  273. <glyph unicode="&#x145;" horiz-adv-x="703" d="M358 398q10 -15 40 -64t40.5 -66t30.5 -51.5t34 -61t27 -55.5h2q-6 97 -6 415q0 86 -8 171l74 10l9 -9v-687h-78q-111 181 -182 297q-128 205 -168 287h-1q6 -85 6 -237v-347h-75v531q0 78 -8 155l81 10q37 -61 102 -167.5t80 -130.5zM308 -311q30 52 41 94 q-19 1 -31.5 16t-12.5 36q0 23 14.5 40t38.5 17q23 0 36.5 -16t13.5 -44q0 -68 -72 -162z" />
  274. <glyph unicode="&#x146;" horiz-adv-x="570" d="M175 0h-75v341q0 79 -20 148l69 17q14 -31 23 -74q77 74 167 74q64 0 99 -37.5t35 -108.5v-360h-75v344q0 105 -90 105q-65 0 -133 -59v-390zM237 -311q30 52 41 94q-19 2 -31.5 16.5t-12.5 35.5q0 22 14.5 39.5t38.5 17.5q23 0 37 -16t14 -44q0 -70 -73 -162z" />
  275. <glyph unicode="&#x147;" horiz-adv-x="703" d="M474 916l21 -19q-55 -49 -115 -119l-61 -6q-55 64 -125 125l22 19q61 -34 133 -87q67 53 125 87zM358 398q10 -15 40 -64t40.5 -66t30.5 -51.5t34 -61t27 -55.5h2q-6 97 -6 415q0 86 -8 171l74 10l9 -9v-687h-78q-111 181 -182 297q-128 205 -168 287h-1q6 -85 6 -237 v-347h-75v531q0 78 -8 155l81 10q37 -61 102 -167.5t80 -130.5z" />
  276. <glyph unicode="&#x148;" horiz-adv-x="570" d="M394 759l24 -19q-63 -84 -104 -156l-61 -6q-48 80 -113 162l24 19q48 -41 119 -118q65 75 111 118zM175 0h-75v341q0 79 -20 148l69 17q14 -31 23 -74q77 74 167 74q64 0 99 -37.5t35 -108.5v-360h-75v344q0 105 -90 105q-65 0 -133 -59v-390z" />
  277. <glyph unicode="&#x149;" horiz-adv-x="670" d="M46 480q48 92 58 160q-21 1 -34.5 16.5t-13.5 38.5q0 26 18 44.5t43 18.5t39.5 -17t14.5 -49q0 -49 -31 -116t-67 -115zM275 0h-75v341q0 79 -20 148l70 17q13 -33 22 -74q77 74 168 74q63 0 98 -37.5t35 -108.5v-360h-75v344q0 105 -89 105q-66 0 -134 -59v-390z" />
  278. <glyph unicode="&#x14a;" horiz-adv-x="703" d="M460 -187l-24 35q78 56 86 154q-26 42 -88 143.5t-93 151.5q-128 205 -168 287h-1q6 -85 6 -237v-347h-75v531q0 78 -8 155l81 10q37 -61 102 -167.5t80 -130.5q10 -15 40 -64t40.5 -66t30.5 -51.5t34 -61t27 -55.5h2q-6 97 -6 415q0 86 -8 171l74 10l9 -9v-620 q0 -101 -33.5 -159.5t-107.5 -94.5z" />
  279. <glyph unicode="&#x14b;" horiz-adv-x="570" d="M175 0h-75v341q0 79 -20 148l69 17q14 -31 23 -74q77 74 167 74q64 0 99 -37.5t35 -108.5v-345q0 -77 -22.5 -131t-71.5 -99l-31 31q50 90 50 199v329q0 105 -90 105q-65 0 -133 -59v-390z" />
  280. <glyph unicode="&#x14c;" horiz-adv-x="699" d="M223 813v53h265v-53h-265zM632 345q0 -167 -82 -261t-206 -94q-121 0 -198.5 91.5t-77.5 251.5q0 165 82 264t207 99q123 0 199 -95t76 -256zM149 341q0 -131 53.5 -210t146.5 -79t147.5 76.5t54.5 213.5q0 132 -51 212t-144 80q-92 0 -149.5 -78.5t-57.5 -214.5z" />
  281. <glyph unicode="&#x14d;" horiz-adv-x="559" d="M143 639v50h273v-50h-273zM494 252q0 -125 -63.5 -193.5t-156.5 -68.5t-151 67.5t-58 185.5q0 124 63 193.5t157 69.5t151.5 -68.5t57.5 -185.5zM144 250q0 -95 34.5 -151.5t99.5 -56.5q63 0 100.5 53.5t37.5 150.5q0 95 -34.5 151.5t-99.5 56.5q-63 0 -100.5 -52.5 t-37.5 -151.5z" />
  282. <glyph unicode="&#x14e;" horiz-adv-x="699" d="M450 898h34q-9 -54 -44.5 -86t-87.5 -32q-50 0 -84 30.5t-41 83.5l34 5q21 -59 96 -59q33 0 57.5 15.5t35.5 42.5zM632 345q0 -167 -82 -261t-206 -94q-121 0 -198.5 91.5t-77.5 251.5q0 165 82 264t207 99q123 0 199 -95t76 -256zM149 341q0 -131 53.5 -210t146.5 -79 t147.5 76.5t54.5 213.5q0 132 -51 212t-144 80q-92 0 -149.5 -78.5t-57.5 -214.5z" />
  283. <glyph unicode="&#x14f;" horiz-adv-x="559" d="M373 737h35q-10 -65 -45 -103t-88 -38q-50 0 -84 36.5t-41 99.5l34 5q10 -38 35.5 -59.5t61.5 -21.5q33 0 57.5 22t34.5 59zM494 252q0 -125 -63.5 -193.5t-156.5 -68.5t-151 67.5t-58 185.5q0 124 63 193.5t157 69.5t151.5 -68.5t57.5 -185.5zM144 250 q0 -95 34.5 -151.5t99.5 -56.5q63 0 100.5 53.5t37.5 150.5q0 95 -34.5 151.5t-99.5 56.5q-63 0 -100.5 -52.5t-37.5 -151.5z" />
  284. <glyph unicode="&#x150;" horiz-adv-x="699" d="M356 863l-3 -13q-78 -59 -190 -75l-8 23q98 52 158 110zM556 863l-3 -13q-78 -59 -190 -75l-8 23q98 52 158 110zM632 345q0 -167 -82 -261t-206 -94q-121 0 -198.5 91.5t-77.5 251.5q0 165 82 264t207 99q123 0 199 -95t76 -256zM149 341q0 -131 53.5 -210t146.5 -79 t147.5 76.5t54.5 213.5q0 132 -51 212t-144 80q-92 0 -149.5 -78.5t-57.5 -214.5z" />
  285. <glyph unicode="&#x151;" horiz-adv-x="559" d="M293 748l5 -13q-57 -90 -148 -158l-25 12q74 88 111 171zM427 748l4 -13q-56 -90 -148 -158l-25 12q73 87 112 171zM494 252q0 -125 -63.5 -193.5t-156.5 -68.5t-151 67.5t-58 185.5q0 124 63 193.5t157 69.5t151.5 -68.5t57.5 -185.5zM144 250q0 -95 34.5 -151.5 t99.5 -56.5q63 0 100.5 53.5t37.5 150.5q0 95 -34.5 151.5t-99.5 56.5q-63 0 -100.5 -52.5t-37.5 -151.5z" />
  286. <glyph unicode="&#x152;" horiz-adv-x="931" d="M891 64v-64h-472q-34 -10 -75 -10q-121 0 -198.5 91.5t-77.5 251.5q0 165 82 264t207 99q40 0 73 -10h443l9 -8l-1 -56l-348 4q92 -89 98 -257l206 2l-1 -61l-205 3q-9 -164 -104 -253zM149 341q0 -131 53.5 -210t146.5 -79t147.5 76.5t54.5 213.5q0 132 -51 212t-144 80 q-92 0 -149.5 -78.5t-57.5 -214.5z" />
  287. <glyph unicode="&#x153;" horiz-adv-x="861" d="M802 257l-15 -15h-293q3 -96 46 -145t114 -49q68 0 132 43l5 -55q-23 -18 -64.5 -32t-87.5 -14q-129 0 -186 111q-29 -53 -76.5 -82t-104.5 -29q-91 0 -149 68t-58 185q0 124 63 193.5t156 69.5q119 0 173 -113q28 54 75 83.5t102 29.5q77 0 123 -52t46 -138 q0 -40 -1 -59zM144 250q0 -95 34.5 -151.5t99.5 -56.5q63 0 100.5 53.5t37.5 151.5q0 95 -34.5 151t-99.5 56q-63 0 -100.5 -52.5t-37.5 -151.5zM627 454q-53 0 -90.5 -46t-41.5 -129l232 7q1 11 1 35q0 61 -26.5 97t-74.5 36z" />
  288. <glyph unicode="&#x154;" horiz-adv-x="587" d="M424 862l-4 -13q-101 -58 -242 -74l-8 23q126 51 204 110zM180 0h-77v531q0 87 -8 155h178q113 0 179.5 -56.5t66.5 -151.5q0 -70 -36.5 -117t-99.5 -68l167 -293l-83 -9q-76 137 -151 281h-136v-272zM268 628h-88v-298h85q84 0 128.5 37.5t44.5 108.5q0 69 -42 110.5 t-128 41.5z" />
  289. <glyph unicode="&#x155;" horiz-adv-x="384" d="M298 744l4 -14q-59 -89 -160 -156l-25 13q79 99 111 171zM175 0h-75v341q0 79 -20 148l70 17q17 -40 24 -88q73 88 145 88q30 0 47 -13l-14 -69q-24 8 -45 8q-66 0 -132 -60v-372z" />
  290. <glyph unicode="&#x156;" horiz-adv-x="587" d="M180 0h-77v531q0 87 -8 155h178q113 0 179.5 -56.5t66.5 -151.5q0 -70 -36.5 -117t-99.5 -68l167 -293l-83 -9q-76 137 -151 281h-136v-272zM268 628h-88v-298h85q84 0 128.5 37.5t44.5 108.5q0 69 -42 110.5t-128 41.5zM252 -311q30 52 41 94q-19 1 -31.5 16t-12.5 36 q0 23 14.5 40t38.5 17q23 0 36.5 -16t13.5 -44q0 -68 -72 -162z" />
  291. <glyph unicode="&#x157;" horiz-adv-x="384" d="M175 0h-75v341q0 79 -20 148l70 17q17 -40 24 -88q73 88 145 88q30 0 47 -13l-14 -69q-24 8 -45 8q-66 0 -132 -60v-372zM86 -311q30 52 41 94q-19 2 -31.5 16.5t-12.5 35.5q0 22 14.5 39.5t38.5 17.5q23 0 37 -16t14 -44q0 -70 -73 -162z" />
  292. <glyph unicode="&#x158;" horiz-adv-x="587" d="M425 914l22 -20q-66 -59 -115 -119l-62 -6q-53 62 -124 125l21 20q69 -39 134 -87q64 50 124 87zM180 0h-77v531q0 87 -8 155h178q113 0 179.5 -56.5t66.5 -151.5q0 -70 -36.5 -117t-99.5 -68l167 -293l-83 -9q-76 137 -151 281h-136v-272zM268 628h-88v-298h85 q84 0 128.5 37.5t44.5 108.5q0 69 -42 110.5t-128 41.5z" />
  293. <glyph unicode="&#x159;" horiz-adv-x="384" d="M326 759l24 -19q-63 -84 -104 -156l-61 -6q-55 88 -113 162l24 19q48 -41 119 -118q61 72 111 118zM175 0h-75v341q0 79 -20 148l70 17q17 -40 24 -88q73 88 145 88q30 0 47 -13l-14 -69q-24 8 -45 8q-66 0 -132 -60v-372z" />
  294. <glyph unicode="&#x15a;" horiz-adv-x="513" d="M394 862l-3 -13q-101 -58 -242 -74l-8 23q126 51 204 110zM455 171q0 -84 -61 -132.5t-162 -48.5t-173 36l8 70q73 -42 168 -42q66 0 103 30.5t37 80.5q0 24 -10 45.5t-20.5 35t-36.5 30.5t-38.5 24t-46.5 24q-38 20 -59 33.5t-48 36.5t-39.5 53t-12.5 67q0 84 62 133 t162 49q92 0 154 -31l-11 -71q-65 39 -145 39q-67 0 -104.5 -30t-37.5 -80q0 -12 3 -23.5t6 -20.5t11 -19t12.5 -16t17.5 -15.5t18 -13.5t21.5 -13t21 -11.5t23.5 -12t22 -11.5q34 -17 56.5 -32t47.5 -39t38 -55.5t13 -69.5z" />
  295. <glyph unicode="&#x15b;" horiz-adv-x="439" d="M304 744l5 -14q-58 -87 -160 -156l-25 13q79 99 111 171zM370 476l-9 -64q-63 39 -123 39q-47 0 -74.5 -21t-27.5 -55q0 -31 25.5 -54t62 -39t73 -34t62 -48.5t25.5 -72.5q0 -61 -49.5 -99t-130.5 -38q-84 0 -149 34l9 63q67 -41 144 -41q48 0 75 20.5t27 53.5 q0 30 -25.5 52.5t-62 38t-73.5 33.5t-62.5 48.5t-25.5 73.5q0 63 49 101.5t130 38.5q67 0 130 -30z" />
  296. <glyph unicode="&#x15c;" horiz-adv-x="513" d="M138 768l-21 20q61 54 115 119l61 6q55 -64 125 -125l-22 -20q-76 45 -133 87q-60 -48 -125 -87zM455 171q0 -84 -61 -132.5t-162 -48.5t-173 36l8 70q73 -42 168 -42q66 0 103 30.5t37 80.5q0 24 -10 45.5t-20.5 35t-36.5 30.5t-38.5 24t-46.5 24q-38 20 -59 33.5 t-48 36.5t-39.5 53t-12.5 67q0 84 62 133t162 49q92 0 154 -31l-11 -71q-65 39 -145 39q-67 0 -104.5 -30t-37.5 -80q0 -12 3 -23.5t6 -20.5t11 -19t12.5 -16t17.5 -15.5t18 -13.5t21.5 -13t21 -11.5t23.5 -12t22 -11.5q34 -17 56.5 -32t47.5 -39t38 -55.5t13 -69.5z" />
  297. <glyph unicode="&#x15d;" horiz-adv-x="439" d="M103 572l-24 19q59 79 103 156l62 6q48 -80 113 -162l-24 -19q-60 51 -120 118q-60 -70 -110 -118zM370 476l-9 -64q-63 39 -123 39q-47 0 -74.5 -21t-27.5 -55q0 -31 25.5 -54t62 -39t73 -34t62 -48.5t25.5 -72.5q0 -61 -49.5 -99t-130.5 -38q-84 0 -149 34l9 63 q67 -41 144 -41q48 0 75 20.5t27 53.5q0 30 -25.5 52.5t-62 38t-73.5 33.5t-62.5 48.5t-25.5 73.5q0 63 49 101.5t130 38.5q67 0 130 -30z" />
  298. <glyph unicode="&#x15e;" horiz-adv-x="513" d="M358 -130q0 -42 -44 -66t-108 -30l-3 32q92 16 92 57q0 35 -65 39l-10 16l22 72h-10q-101 0 -173 36l8 70q73 -42 168 -42q66 0 103 30.5t37 80.5q0 24 -10 45.5t-20.5 35t-36.5 30.5t-38.5 24t-46.5 24q-38 20 -59 33.5t-48 36.5t-39.5 53t-12.5 67q0 84 62 133t162 49 q92 0 154 -31l-11 -71q-65 39 -145 39q-67 0 -104.5 -30t-37.5 -80q0 -12 3 -23.5t6 -20.5t11 -19t12.5 -16t17.5 -15.5t18 -13.5t21.5 -13t21 -11.5t23.5 -12t22 -11.5q34 -17 56.5 -32t47.5 -39t38 -55.5t13 -69.5q0 -71 -44.5 -117t-121.5 -59l-18 -56q38 -5 62.5 -22 t24.5 -47z" />
  299. <glyph unicode="&#x15f;" horiz-adv-x="439" d="M318 -130q0 -42 -43.5 -66t-107.5 -30l-3 32q92 16 92 57q0 35 -66 39l-10 16l23 72q-84 0 -148 34l9 63q67 -41 144 -41q48 0 75 20.5t27 53.5q0 30 -25.5 52.5t-62 38t-73.5 33.5t-62.5 48.5t-25.5 73.5q0 63 49 101.5t130 38.5q67 0 130 -30l-9 -64q-63 39 -123 39 q-47 0 -74.5 -21t-27.5 -55q0 -31 25.5 -54t62 -39t73 -34t62 -48.5t25.5 -72.5q0 -52 -36.5 -87.5t-98.5 -45.5l-17 -55q38 -5 62 -22t24 -47z" />
  300. <glyph unicode="&#x160;" horiz-adv-x="513" d="M396 914l22 -20q-61 -53 -116 -119l-61 -6q-53 62 -124 125l21 20q77 -45 133 -87q60 48 125 87zM455 171q0 -84 -61 -132.5t-162 -48.5t-173 36l8 70q73 -42 168 -42q66 0 103 30.5t37 80.5q0 24 -10 45.5t-20.5 35t-36.5 30.5t-38.5 24t-46.5 24q-38 20 -59 33.5 t-48 36.5t-39.5 53t-12.5 67q0 84 62 133t162 49q92 0 154 -31l-11 -71q-65 39 -145 39q-67 0 -104.5 -30t-37.5 -80q0 -12 3 -23.5t6 -20.5t11 -19t12.5 -16t17.5 -15.5t18 -13.5t21.5 -13t21 -11.5t23.5 -12t22 -11.5q34 -17 56.5 -32t47.5 -39t38 -55.5t13 -69.5z" />
  301. <glyph unicode="&#x161;" horiz-adv-x="439" d="M333 759l24 -19q-58 -76 -104 -156l-62 -6q-51 85 -112 162l24 19q52 -46 119 -118q61 72 111 118zM370 476l-9 -64q-63 39 -123 39q-47 0 -74.5 -21t-27.5 -55q0 -31 25.5 -54t62 -39t73 -34t62 -48.5t25.5 -72.5q0 -61 -49.5 -99t-130.5 -38q-84 0 -149 34l9 63 q67 -41 144 -41q48 0 75 20.5t27 53.5q0 30 -25.5 52.5t-62 38t-73.5 33.5t-62.5 48.5t-25.5 73.5q0 63 49 101.5t130 38.5q67 0 130 -30z" />
  302. <glyph unicode="&#x162;" horiz-adv-x="537" d="M308 0h-14l-20 -61q38 -5 62 -22t24 -47q0 -42 -43.5 -66t-107.5 -30l-3 32q92 16 92 57q0 35 -66 39l-10 16l26 82h-18v626q-104 -2 -209 -6l5 66h485l5 -66q-105 5 -208 6v-626z" />
  303. <glyph unicode="&#x163;" horiz-adv-x="361" d="M302 -130q0 -42 -44 -66t-107 -30l-4 32q93 16 93 57q0 35 -66 39l-10 16l24 77q-88 23 -88 158v298l-73 1v34l74 10l18 117l50 5l9 -9l-3 -113h136l6 -8l-3 -39l-139 1v-289q0 -60 19 -86.5t57 -26.5q42 0 80 25l10 -52q-49 -31 -109 -31l-17 -51q38 -5 62.5 -22 t24.5 -47z" />
  304. <glyph unicode="&#x164;" horiz-adv-x="537" d="M398 914l21 -20q-66 -59 -115 -119l-62 -6q-52 62 -124 125l22 20q70 -41 133 -87q60 48 125 87zM308 0h-78v626q-104 -2 -209 -6l5 66h485l5 -66q-105 5 -208 6v-626z" />
  305. <glyph unicode="&#x165;" horiz-adv-x="361" d="M322 764l7 -12q-15 -103 -75 -212l-27 5q29 129 30 214zM314 449l-139 1v-289q0 -60 19 -86.5t57 -26.5q42 0 80 25l10 -52q-49 -31 -111 -31q-130 0 -130 163v298l-73 1v34l74 10l18 117l50 5l9 -9l-3 -113h136l6 -8z" />
  306. <glyph unicode="&#x166;" horiz-adv-x="537" d="M308 0h-78v321h-144v45h144v260q-104 -2 -209 -6l5 66h485l5 -66q-105 5 -208 6v-260h144v-45h-144v-321z" />
  307. <glyph unicode="&#x167;" horiz-adv-x="361" d="M313 282h-138v-121q0 -60 19 -86.5t57 -26.5q42 0 80 25l10 -52q-49 -31 -111 -31q-130 0 -130 163v129h-72v45h72v124l-73 1v34l74 10l18 117l50 5l9 -9l-3 -113h136l6 -8l-3 -39l-139 1v-123h138v-45z" />
  308. <glyph unicode="&#x168;" horiz-adv-x="653" d="M257 901q31 0 76.5 -28t68.5 -28q38 0 67 53l23 -4q-5 -43 -29.5 -75t-65.5 -32q-31 0 -78 28.5t-68 28.5q-38 0 -67 -54l-23 4q5 42 29.5 74.5t66.5 32.5zM89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8 v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5t-65.5 173.5v306z" />
  309. <glyph unicode="&#x169;" horiz-adv-x="560" d="M211 723q28 0 72 -28t65 -28q33 0 60 53l24 -4q-5 -44 -28 -77.5t-61 -33.5q-29 0 -74 28t-65 28q-33 0 -59 -54l-24 4q5 44 28 78t62 34zM96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2 q-75 -75 -160 -75q-63 0 -97.5 35.5t-34.5 99.5v214z" />
  310. <glyph unicode="&#x16a;" horiz-adv-x="653" d="M194 813v53h265v-53h-265zM89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5t-65.5 173.5v306z" />
  311. <glyph unicode="&#x16b;" horiz-adv-x="560" d="M143 639v50h273v-50h-273zM96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75q-63 0 -97.5 35.5t-34.5 99.5v214z" />
  312. <glyph unicode="&#x16c;" horiz-adv-x="653" d="M421 898h34q-9 -54 -44.5 -86t-87.5 -32q-50 0 -84 30.5t-41 83.5l34 5q21 -59 96 -59q33 0 57.5 15.5t35.5 42.5zM89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61 q-102 0 -167.5 61.5t-65.5 173.5v306z" />
  313. <glyph unicode="&#x16d;" horiz-adv-x="560" d="M373 737h34q-9 -65 -44.5 -103t-87.5 -38q-50 0 -84 36.5t-41 99.5l34 5q10 -38 35.5 -59.5t60.5 -21.5q33 0 57.5 22t35.5 59zM96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75 q-63 0 -97.5 35.5t-34.5 99.5v214z" />
  314. <glyph unicode="&#x16e;" horiz-adv-x="653" d="M421 851q0 -36 -28 -62.5t-67 -26.5q-35 0 -60 22.5t-25 54.5q0 37 28.5 63t68.5 26q36 0 59.5 -22t23.5 -55zM284 843q0 -20 12.5 -33t33.5 -13q20 0 34 15t14 35q0 21 -11.5 34t-32.5 13t-35.5 -15t-14.5 -36zM89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128 t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5t-65.5 173.5v306z" />
  315. <glyph unicode="&#x16f;" horiz-adv-x="560" d="M374 661q0 -36 -28 -62.5t-67 -26.5q-35 0 -60.5 22.5t-25.5 54.5q0 37 29 63t68 26q37 0 60.5 -22t23.5 -55zM237 653q0 -20 12.5 -33t32.5 -13q21 0 35 14.5t14 35.5t-11.5 34t-32.5 13t-35.5 -15t-14.5 -36zM96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97 q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75q-63 0 -97.5 35.5t-34.5 99.5v214z" />
  316. <glyph unicode="&#x170;" horiz-adv-x="653" d="M327 863l-3 -13q-78 -59 -190 -75l-8 23q98 52 158 110zM527 863l-3 -13q-78 -59 -190 -75l-8 23q98 52 158 110zM89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61 q-102 0 -167.5 61.5t-65.5 173.5v306z" />
  317. <glyph unicode="&#x171;" horiz-adv-x="560" d="M293 748l4 -13q-56 -90 -148 -158l-25 12q73 87 112 171zM426 748l5 -13q-57 -90 -148 -158l-25 12q73 87 112 171zM96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75 q-63 0 -97.5 35.5t-34.5 99.5v214z" />
  318. <glyph unicode="&#x172;" horiz-adv-x="653" d="M460 25q-110 -78 -110 -146q0 -54 52 -54q24 0 56 12l13 -31q-40 -32 -92 -32q-45 0 -71 22.5t-26 63.5q0 68 81 133q-19 -3 -41 -3q-102 0 -167.5 61.5t-65.5 173.5v306q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147 l85 8v-471q0 -139 -104 -200z" />
  319. <glyph unicode="&#x173;" horiz-adv-x="560" d="M96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-9 -1l2 -1q-112 -62 -112 -126q0 -49 53 -49q24 0 55 12l13 -31q-39 -32 -92 -32q-44 0 -70 22t-26 61q0 80 117 142q-12 31 -19 66h-2q-75 -75 -160 -75q-63 0 -97.5 35.5 t-34.5 99.5v214z" />
  320. <glyph unicode="&#x174;" horiz-adv-x="980" d="M360 768l-21 20q66 59 115 119l62 6q52 -62 124 -125l-22 -20q-70 41 -133 87q-60 -48 -125 -87zM242 -4l-211 692l79 8l122 -408q41 -135 52 -203q12 66 59 220l115 386l74 5l122 -408q41 -130 53 -203q12 66 58 219l117 392l61 -6l6 -8l-210 -686h-70l-133 425 q-28 99 -45 168h-1q-16 -69 -46 -169l-132 -424h-70z" />
  321. <glyph unicode="&#x175;" horiz-adv-x="759" d="M268 572l-24 19q63 84 104 156l61 6q48 -80 113 -162l-24 -19q-52 44 -120 118q-60 -70 -110 -118zM183 -4l-159 504l76 6l70 -235q33 -104 54 -197h1q16 76 53 191l70 239h75l68 -230q49 -160 55 -199h1q10 51 54 195l70 236l58 -6l6 -9l-157 -495h-73l-76 245 q-41 133 -49 184h-1q-9 -55 -48 -183l-76 -246h-72z" />
  322. <glyph unicode="&#x176;" horiz-adv-x="560" d="M156 768l-21 20q66 59 115 119l62 6q52 -62 124 -125l-22 -20q-70 41 -133 87q-60 -48 -125 -87zM241 246l-218 443l83 7l117 -243q43 -89 62 -141h2q33 76 65 142l115 242l64 -6l6 -8l-218 -439v-243h-78v246z" />
  323. <glyph unicode="&#x177;" horiz-adv-x="462" d="M124 572l-24 19q63 84 104 156l61 6q55 -88 113 -162l-24 -19q-55 47 -119 118q-65 -75 -111 -118zM446 491l-172 -481q-86 -248 -245 -266l-12 72q131 17 199 198h-21l-171 486l77 6l79 -240q50 -136 60 -200h1q11 54 62 200l79 240l58 -6z" />
  324. <glyph unicode="&#x178;" horiz-adv-x="560" d="M438 844q0 -24 -14.5 -41t-39.5 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16.5 39t39.5 17q21 0 33.5 -13t12.5 -33zM236 844q0 -24 -15 -41t-40 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16.5 39t39.5 17q21 0 34 -13t13 -33zM241 246l-218 443l83 7l117 -243 q43 -89 62 -141h2q33 76 65 142l115 242l64 -6l6 -8l-218 -439v-243h-78v246z" />
  325. <glyph unicode="&#x179;" horiz-adv-x="520" d="M387 862l-4 -13q-101 -58 -242 -74l-8 23q126 51 204 110zM43 0l-13 49l364 573l-352 -4l5 68h417l19 -48l-362 -574l366 5l-5 -69h-439z" />
  326. <glyph unicode="&#x17a;" horiz-adv-x="434" d="M307 744l5 -14q-58 -88 -161 -156l-25 13q78 98 112 171zM34 432l5 64h349l8 -47l-282 -390l138 2q101 2 151 6l-5 -67h-359l-8 48l285 389z" />
  327. <glyph unicode="&#x17b;" horiz-adv-x="520" d="M316 850q0 -24 -16 -41.5t-43 -17.5q-24 0 -38.5 14.5t-14.5 35.5q0 23 17.5 40.5t43.5 17.5q23 0 37 -13.5t14 -35.5zM43 0l-13 49l364 573l-352 -4l5 68h417l19 -48l-362 -574l366 5l-5 -69h-439z" />
  328. <glyph unicode="&#x17c;" horiz-adv-x="434" d="M272 670q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39zM34 432l5 64h349l8 -47l-282 -390l138 2q101 2 151 6l-5 -67h-359l-8 48l285 389z" />
  329. <glyph unicode="&#x17d;" horiz-adv-x="520" d="M388 914l22 -20q-66 -59 -115 -119l-62 -6q-53 62 -124 125l21 20q69 -39 134 -87q64 50 124 87zM43 0l-13 49l364 573l-352 -4l5 68h417l19 -48l-362 -574l366 5l-5 -69h-439z" />
  330. <glyph unicode="&#x17e;" horiz-adv-x="434" d="M335 759l24 -19q-63 -84 -104 -156l-61 -6q-48 80 -113 162l24 19q48 -41 119 -118q65 75 111 118zM34 432l5 64h349l8 -47l-282 -390l138 2q101 2 151 6l-5 -67h-359l-8 48l285 389z" />
  331. <glyph unicode="&#x18f;" horiz-adv-x="648" d="M74 371l18 19h404q-12 123 -71 183.5t-153 60.5q-85 0 -167 -51l-4 62q27 20 77.5 35.5t110.5 15.5q135 0 213 -90t78 -261q0 -172 -76.5 -263.5t-196.5 -91.5q-106 0 -172.5 71.5t-66.5 201.5q0 44 6 108zM148 263q0 -103 45 -158t121 -55q89 0 137 74.5t48 207.5v11 l-348 -11q-3 -31 -3 -69z" />
  332. <glyph unicode="&#x192;" horiz-adv-x="531" d="M194 297l-113 3l7 35l111 10h2l11 86q15 127 61.5 196t141.5 69q67 0 112 -28l-28 -64q-42 33 -84 33q-57 0 -85 -48.5t-43 -165.5l-10 -78h177l5 -8l-11 -40h-178l-41 -326q-4 -33 -8 -53.5t-17 -57.5t-31 -59t-51.5 -39.5t-77.5 -17.5q-54 0 -100 23l20 64 q43 -28 84 -28q23 0 40.5 9.5t28 23t18 35.5t11 40.5t6.5 43.5l43 342h-1z" />
  333. <glyph unicode="&#x19d;" horiz-adv-x="694" d="M30 -187l-24 35q87 67 87 219v464q0 91 -8 155l81 10q37 -61 102 -167.5t80 -130.5q11 -18 40 -64.5t40 -65t31 -52t34 -60.5t28 -56h1q-6 97 -6 415q0 100 -8 171l74 10l9 -9v-687h-77q-43 69 -183 297q-128 205 -168 287h-1q6 -85 6 -237v-280q0 -100 -33 -159 t-105 -95z" />
  334. <glyph unicode="&#x1cd;" horiz-adv-x="612" d="M435 916l21 -19q-55 -49 -115 -119l-61 -6q-55 64 -125 125l22 19q61 -34 133 -87q67 53 125 87zM98 0h-74l205 589q25 72 33 103l76 4l11 -10l239 -686h-79l-70 199h-271zM240 404l-51 -145h229l-50 145q-51 152 -63 209h-2q-12 -53 -63 -209z" />
  335. <glyph unicode="&#x1ce;" horiz-adv-x="504" d="M355 759l24 -19q-63 -84 -104 -156l-61 -6q-48 80 -113 162l24 19q48 -41 119 -118q65 75 111 118zM405 144q0 -78 24 -144l-67 -10q-16 32 -24 70h-1q-22 -29 -63.5 -49.5t-89.5 -20.5q-60 0 -94.5 32.5t-34.5 85.5q0 80 78 122.5t198 49.5v66q0 101 -103 101 q-76 0 -152 -47l-4 64q86 42 172 42q80 0 121.5 -38.5t41.5 -106.5q0 -37 -1 -116.5t-1 -100.5zM131 119q0 -32 20.5 -54.5t58.5 -22.5q32 0 65.5 16t55.5 40v144q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  336. <glyph unicode="&#x1cf;" horiz-adv-x="283" d="M266 916l21 -19q-55 -49 -115 -119l-61 -6q-55 64 -125 125l22 19q61 -34 133 -87q67 53 125 87zM180 0h-77v529q0 80 -8 157l77 10l8 -8v-688z" />
  337. <glyph unicode="&#x1d0;" horiz-adv-x="269" d="M215 760l24 -13q-38 -82 -67 -160l-74 -6q-36 86 -76 166l24 13q45 -51 88 -116q42 69 81 116zM96 0v339q0 97 -9 155l76 12l8 -8v-498h-75z" />
  338. <glyph unicode="&#x1d1;" horiz-adv-x="699" d="M484 914l22 -20q-61 -53 -116 -119l-61 -6q-53 62 -124 125l21 20q77 -45 133 -87q60 48 125 87zM632 345q0 -167 -82 -261t-206 -94q-121 0 -198.5 91.5t-77.5 251.5q0 165 82 264t207 99q123 0 199 -95t76 -256zM149 341q0 -131 53.5 -210t146.5 -79t147.5 76.5 t54.5 213.5q0 132 -51 212t-144 80q-92 0 -149.5 -78.5t-57.5 -214.5z" />
  339. <glyph unicode="&#x1d2;" horiz-adv-x="559" d="M396 759l24 -19q-63 -84 -104 -156l-61 -6q-55 88 -113 162l24 19q48 -41 119 -118q61 72 111 118zM494 252q0 -125 -63.5 -193.5t-156.5 -68.5t-151 67.5t-58 185.5q0 124 63 193.5t157 69.5t151.5 -68.5t57.5 -185.5zM144 250q0 -95 34.5 -151.5t99.5 -56.5 q63 0 100.5 53.5t37.5 150.5q0 95 -34.5 151.5t-99.5 56.5q-63 0 -100.5 -52.5t-37.5 -151.5z" />
  340. <glyph unicode="&#x1d3;" horiz-adv-x="653" d="M455 914l22 -20q-61 -53 -116 -119l-61 -6q-53 62 -124 125l21 20q76 -45 133 -87q60 48 125 87zM89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5 t-65.5 173.5v306z" />
  341. <glyph unicode="&#x1d4;" horiz-adv-x="560" d="M396 759l24 -19q-58 -76 -104 -156l-62 -6q-51 85 -112 162l24 19q52 -46 119 -118q61 72 111 118zM96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75q-63 0 -97.5 35.5 t-34.5 99.5v214z" />
  342. <glyph unicode="&#x1d5;" horiz-adv-x="653" d="M194 1016v54h265v-54h-265zM479 844q0 -24 -15 -41t-39 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16 39t39 17q22 0 34.5 -13t12.5 -33zM276 844q0 -24 -14.5 -41t-39.5 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16.5 39t39.5 17q21 0 33.5 -13t12.5 -33zM89 531 q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5t-65.5 173.5v306z" />
  343. <glyph unicode="&#x1d6;" horiz-adv-x="560" d="M143 864v49h273v-49h-273zM229 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t38 18.5q21 0 33.5 -14.5t12.5 -37.5zM430 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 15.5 43.5t38.5 18.5q21 0 33.5 -14.5t12.5 -37.5zM96 339 q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75q-63 0 -97.5 35.5t-34.5 99.5v214z" />
  344. <glyph unicode="&#x1d7;" horiz-adv-x="653" d="M453 1066l-3 -13q-103 -59 -242 -75l-8 23q128 54 204 111zM479 844q0 -24 -15 -41t-39 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16 39t39 17q22 0 34.5 -13t12.5 -33zM276 844q0 -24 -14.5 -41t-39.5 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16.5 39t39.5 17 q21 0 33.5 -13t12.5 -33zM89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5t-65.5 173.5v306z" />
  345. <glyph unicode="&#x1d8;" horiz-adv-x="560" d="M367 968l5 -13q-60 -90 -160 -156l-25 12q81 103 111 171zM229 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t38 18.5q21 0 33.5 -14.5t12.5 -37.5zM430 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 15.5 43.5t38.5 18.5 q21 0 33.5 -14.5t12.5 -37.5zM96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75q-63 0 -97.5 35.5t-34.5 99.5v214z" />
  346. <glyph unicode="&#x1d9;" horiz-adv-x="653" d="M455 1118l22 -20q-55 -48 -116 -119l-61 -6q-53 62 -124 125l21 20q70 -41 133 -88q66 52 125 88zM479 844q0 -24 -15 -41t-39 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16 39t39 17q22 0 34.5 -13t12.5 -33zM276 844q0 -24 -14.5 -41t-39.5 -17q-21 0 -34.5 13.5 t-13.5 34.5q0 22 16.5 39t39.5 17q21 0 33.5 -13t12.5 -33zM89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5t-65.5 173.5v306z" />
  347. <glyph unicode="&#x1da;" horiz-adv-x="560" d="M396 983l24 -18q-59 -77 -104 -157l-62 -6q-46 78 -112 163l24 18q57 -50 119 -117q57 67 111 117zM229 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t38 18.5q21 0 33.5 -14.5t12.5 -37.5zM430 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15 t-13 37q0 25 15.5 43.5t38.5 18.5q21 0 33.5 -14.5t12.5 -37.5zM96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75q-63 0 -97.5 35.5t-34.5 99.5v214z" />
  348. <glyph unicode="&#x1db;" horiz-adv-x="653" d="M445 978q-137 15 -242 75l-3 13l49 46q74 -56 204 -111zM479 844q0 -24 -15 -41t-39 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16 39t39 17q22 0 34.5 -13t12.5 -33zM276 844q0 -24 -14.5 -41t-39.5 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16.5 39t39.5 17q21 0 33.5 -13 t12.5 -33zM89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5t-65.5 173.5v306z" />
  349. <glyph unicode="&#x1dc;" horiz-adv-x="560" d="M347 801q-101 67 -160 156l4 13l70 14q32 -70 111 -171zM229 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t38 18.5q21 0 33.5 -14.5t12.5 -37.5zM430 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 15.5 43.5t38.5 18.5 q21 0 33.5 -14.5t12.5 -37.5zM96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75q-63 0 -97.5 35.5t-34.5 99.5v214z" />
  350. <glyph unicode="&#x1e6;" horiz-adv-x="648" d="M476 916l21 -19q-62 -55 -115 -119l-62 -6q-52 62 -124 125l22 19q61 -34 133 -87q67 53 125 87zM563 299l8 -8l-2 -253q-40 -22 -97.5 -35t-110.5 -13q-136 0 -214.5 90t-78.5 250q0 169 85.5 267.5t230.5 98.5q97 0 167 -38l-14 -70q-63 44 -149 44q-109 0 -174 -76.5 t-65 -216.5q0 -129 57.5 -207t165.5 -78q58 0 123 19v50q0 83 -9 166z" />
  351. <glyph unicode="&#x1e7;" horiz-adv-x="490" d="M351 759l24 -19q-59 -79 -103 -156l-62 -6q-48 80 -113 162l24 19q43 -36 120 -118q60 70 110 118zM115 76q1 46 41 81q-47 19 -74.5 61t-27.5 100q0 80 48.5 134t132.5 54q63 0 103 -31q18 19 49 30.5t62 11.5l11 -4l-2 -62h-96q48 -48 48 -124q0 -79 -48 -131.5 t-130 -52.5q-18 0 -38 3q-16 -21 -16 -47q0 -23 13.5 -34.5t44.5 -14.5l85 -6q63 -4 104 -34t41 -89q0 -74 -64 -125.5t-173 -51.5q-94 0 -150 37.5t-56 94.5q0 34 18.5 58.5t42.5 36.5l32 -15q-25 -29 -25 -60q0 -43 39 -74.5t107 -31.5q69 0 111 32t42 81q0 37 -25.5 58 t-70.5 25l-76 6q-101 9 -103 84zM336 323q0 64 -26.5 100t-76.5 36q-52 0 -78.5 -35t-26.5 -99q0 -63 27 -99t79 -36q50 0 76 34.5t26 98.5z" />
  352. <glyph unicode="&#x1ea;" horiz-adv-x="699" d="M632 345q0 -113 -39 -193.5t-106 -121.5q-59 -46 -85 -80.5t-26 -70.5q0 -54 54 -54q24 0 55 12l13 -31q-40 -32 -94 -32q-43 0 -69 23.5t-26 65.5q0 69 84 131q-21 -4 -49 -4q-121 0 -198.5 91.5t-77.5 251.5q0 165 82 264t207 99q123 0 199 -95t76 -256zM149 341 q0 -131 53.5 -210t146.5 -79t147.5 76.5t54.5 213.5q0 132 -51 212t-144 80q-92 0 -149.5 -78.5t-57.5 -214.5z" />
  353. <glyph unicode="&#x1eb;" horiz-adv-x="559" d="M494 252q0 -156 -99 -225q-98 -78 -98 -146q0 -54 53 -54q24 0 55 12l13 -31q-37 -32 -93 -32q-43 0 -69 22.5t-26 61.5q0 68 77 132q-22 -2 -33 -2q-93 0 -151 67.5t-58 185.5q0 124 63 193.5t157 69.5t151.5 -68.5t57.5 -185.5zM144 250q0 -95 34.5 -151.5t99.5 -56.5 q63 0 100.5 53.5t37.5 150.5q0 95 -34.5 151.5t-99.5 56.5q-63 0 -100.5 -52.5t-37.5 -151.5z" />
  354. <glyph unicode="&#x1f4;" horiz-adv-x="648" d="M474 865l-3 -14q-102 -58 -242 -74l-9 23q127 53 205 111zM563 299l8 -8l-2 -253q-40 -22 -97.5 -35t-110.5 -13q-136 0 -214.5 90t-78.5 250q0 169 85.5 267.5t230.5 98.5q97 0 167 -38l-14 -70q-63 44 -149 44q-109 0 -174 -76.5t-65 -216.5q0 -129 57.5 -207 t165.5 -78q58 0 123 19v50q0 83 -9 166z" />
  355. <glyph unicode="&#x1f5;" horiz-adv-x="490" d="M323 744l5 -14q-58 -88 -161 -156l-25 13q76 93 112 171zM115 76q1 46 41 81q-47 19 -74.5 61t-27.5 100q0 80 48.5 134t132.5 54q63 0 103 -31q18 19 49 30.5t62 11.5l11 -4l-2 -62h-96q48 -48 48 -124q0 -79 -48 -131.5t-130 -52.5q-18 0 -38 3q-16 -21 -16 -47 q0 -23 13.5 -34.5t44.5 -14.5l85 -6q63 -4 104 -34t41 -89q0 -74 -64 -125.5t-173 -51.5q-94 0 -150 37.5t-56 94.5q0 34 18.5 58.5t42.5 36.5l32 -15q-25 -29 -25 -60q0 -43 39 -74.5t107 -31.5q69 0 111 32t42 81q0 37 -25.5 58t-70.5 25l-76 6q-101 9 -103 84zM336 323 q0 64 -26.5 100t-76.5 36q-52 0 -78.5 -35t-26.5 -99q0 -63 27 -99t79 -36q50 0 76 34.5t26 98.5z" />
  356. <glyph unicode="&#x1fa;" horiz-adv-x="612" d="M433 1100l-3 -14q-103 -58 -242 -74l-8 23q130 55 204 111zM397 847q0 -37 -28 -63t-67 -26q-36 0 -61 22t-25 55q0 37 28.5 63t68.5 26q37 0 60.5 -22t23.5 -55zM259 839q0 -20 13 -33.5t33 -13.5q21 0 34.5 15t13.5 36t-11.5 34t-32.5 13t-35.5 -15t-14.5 -36zM98 0 h-74l205 589q25 72 33 103l76 4l11 -10l239 -686h-79l-70 199h-271zM240 404l-51 -145h229l-50 145q-51 152 -63 209h-2q-12 -53 -63 -209z" />
  357. <glyph unicode="&#x1fb;" horiz-adv-x="504" d="M331 985l5 -13q-58 -88 -161 -156l-25 12q76 95 112 171zM333 661q0 -36 -28 -62.5t-67 -26.5q-35 0 -60 22.5t-25 54.5q0 37 28.5 63t68.5 26q36 0 59.5 -22t23.5 -55zM196 653q0 -20 13 -33t33 -13q21 0 34.5 14.5t13.5 35.5t-11.5 34t-32.5 13t-35.5 -15t-14.5 -36z M405 144q0 -78 24 -144l-67 -10q-16 32 -24 70h-1q-22 -29 -63.5 -49.5t-89.5 -20.5q-60 0 -94.5 32.5t-34.5 85.5q0 80 78 122.5t198 49.5v66q0 101 -103 101q-76 0 -152 -47l-4 64q86 42 172 42q80 0 121.5 -38.5t41.5 -106.5q0 -37 -1 -116.5t-1 -100.5zM131 119 q0 -32 20.5 -54.5t58.5 -22.5q32 0 65.5 16t55.5 40v144q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  358. <glyph unicode="&#x1fc;" horiz-adv-x="852" d="M587 862l-3 -13q-102 -58 -242 -74l-9 23q125 51 205 110zM98 0h-74l279 589q29 59 47 97h355l9 -8l-1 -56l-266 5l37 -258l224 2l-1 -61l-215 3l36 -254l284 5v-64h-354l-28 199h-238zM288 404l-68 -145h202l-20 145q-17 139 -20 209h-2q-12 -31 -92 -209z" />
  359. <glyph unicode="&#x1fd;" horiz-adv-x="777" d="M479 744l5 -14q-58 -88 -161 -156l-25 13q76 93 112 171zM718 257l-15 -15h-293q3 -96 46 -145t114 -49q66 0 131 43l6 -55q-64 -46 -154 -46q-130 0 -188 103q-28 -42 -78 -72.5t-106 -30.5q-58 0 -92 33t-34 86q0 79 78 121.5t198 49.5v66q0 101 -104 101 q-77 0 -151 -47l-4 64q86 42 173 42q110 0 146 -73q61 73 156 73q79 0 125.5 -52t46.5 -138q0 -40 -1 -59zM543 454q-53 0 -90.5 -45.5t-42.5 -129.5l233 7q0 5 0.5 17t0.5 18q0 61 -26.5 97t-74.5 36zM131 119q0 -32 20.5 -54.5t58.5 -22.5q41 0 80 23.5t61 58.5 q-20 51 -20 118q-87 -6 -143.5 -37.5t-56.5 -85.5z" />
  360. <glyph unicode="&#x1fe;" horiz-adv-x="699" d="M482 862l-3 -13q-101 -58 -242 -74l-8 23q126 51 204 110zM632 345q0 -167 -82 -261t-206 -94q-122 0 -197 89l-71 -83l-35 31l78 91q-51 88 -51 215q0 165 82 264t207 99q117 0 191 -85l70 80l36 -30l-78 -89q56 -93 56 -227zM149 341q0 -93 27 -159l323 372 q-52 80 -143 80q-92 0 -149.5 -78.5t-57.5 -214.5zM551 342q0 98 -29 168l-324 -373q55 -85 151 -85q93 0 147.5 76.5t54.5 213.5z" />
  361. <glyph unicode="&#x1ff;" horiz-adv-x="559" d="M368 744l4 -14q-59 -89 -160 -156l-25 13q79 99 111 171zM494 252q0 -125 -63.5 -193.5t-156.5 -68.5q-90 0 -147 63l-55 -59l-32 31l61 65q-36 63 -36 153q0 124 63 193.5t157 69.5q89 0 146 -62l55 59l33 -30l-62 -66q37 -63 37 -155zM144 250q-1 -52 12 -100l228 243 q-36 61 -102 61q-63 0 -100.5 -52.5t-37.5 -151.5zM416 246q0 55 -13 102l-228 -243q35 -63 103 -63q63 0 100.5 53.5t37.5 150.5z" />
  362. <glyph unicode="&#x218;" horiz-adv-x="513" d="M455 171q0 -84 -61 -132.5t-162 -48.5t-173 36l8 70q73 -42 168 -42q66 0 103 30.5t37 80.5q0 24 -10 45.5t-20.5 35t-36.5 30.5t-38.5 24t-46.5 24q-38 20 -59 33.5t-48 36.5t-39.5 53t-12.5 67q0 84 62 133t162 49q92 0 154 -31l-11 -71q-65 39 -145 39 q-67 0 -104.5 -30t-37.5 -80q0 -12 3 -23.5t6 -20.5t11 -19t12.5 -16t17.5 -15.5t18 -13.5t21.5 -13t21 -11.5t23.5 -12t22 -11.5q34 -17 56.5 -32t47.5 -39t38 -55.5t13 -69.5zM216 -311q32 58 41 94q-19 1 -32 16t-13 36q0 22 15 39.5t39 17.5q22 0 36 -16t14 -44 q0 -70 -73 -162z" />
  363. <glyph unicode="&#x219;" horiz-adv-x="439" d="M370 476l-9 -64q-63 39 -123 39q-47 0 -74.5 -21t-27.5 -55q0 -31 25.5 -54t62 -39t73 -34t62 -48.5t25.5 -72.5q0 -61 -49.5 -99t-130.5 -38q-84 0 -149 34l9 63q67 -41 144 -41q48 0 75 20.5t27 53.5q0 30 -25.5 52.5t-62 38t-73.5 33.5t-62.5 48.5t-25.5 73.5 q0 63 49 101.5t130 38.5q67 0 130 -30zM176 -311q30 52 41 94q-19 2 -31.5 16.5t-12.5 35.5q0 23 14.5 40t38.5 17q23 0 37 -16t14 -44q0 -70 -73 -162z" />
  364. <glyph unicode="&#x21a;" horiz-adv-x="537" d="M308 0h-78v626q-104 -2 -209 -6l5 66h485l5 -66q-105 5 -208 6v-626zM218 -311q30 52 41 94q-19 2 -31.5 16.5t-12.5 35.5q0 23 14.5 40t38.5 17q23 0 37 -16t14 -44q0 -70 -73 -162z" />
  365. <glyph unicode="&#x21b;" horiz-adv-x="361" d="M314 449l-139 1v-289q0 -60 19 -86.5t57 -26.5q42 0 80 25l10 -52q-49 -31 -111 -31q-130 0 -130 163v298l-73 1v34l74 10l18 117l50 5l9 -9l-3 -113h136l6 -8zM160 -311q30 52 41 94q-19 1 -31.5 16t-12.5 36q0 23 14.5 40t38.5 17q23 0 36.5 -16t13.5 -44 q0 -68 -72 -162z" />
  366. <glyph unicode="&#x232;" horiz-adv-x="560" d="M153 813v53h265v-53h-265zM241 246l-218 443l83 7l117 -243q43 -89 62 -141h2q33 76 65 142l115 242l64 -6l6 -8l-218 -439v-243h-78v246z" />
  367. <glyph unicode="&#x233;" horiz-adv-x="462" d="M102 639v50h272v-50h-272zM446 491l-172 -481q-86 -248 -245 -266l-12 72q131 17 199 198h-21l-171 486l77 6l79 -240q50 -136 60 -200h1q11 54 62 200l79 240l58 -6z" />
  368. <glyph unicode="&#x237;" horiz-adv-x="270" d="M42 -256l-26 33q81 67 81 189v373q0 77 -9 155l75 12l9 -8v-524q0 -87 -32 -141.5t-98 -88.5z" />
  369. <glyph unicode="&#x259;" horiz-adv-x="511" d="M59 239l15 15h293v1q0 95 -32.5 143.5t-105.5 48.5q-76 0 -153 -45l-6 58q25 17 74 31.5t100 14.5q102 0 152 -62.5t50 -176.5q0 -135 -61.5 -206t-154.5 -71q-78 0 -125 52t-47 139q0 39 1 58zM133 176q0 -62 27 -98t75 -36q52 0 88 43.5t43 132.5l-232 -7 q-1 -11 -1 -35z" />
  370. <glyph unicode="&#x272;" horiz-adv-x="567" d="M42 -256l-26 33q81 67 81 189v375q0 79 -20 148l69 17q14 -31 23 -74q77 74 167 74q64 0 99 -37.5t35 -108.5v-360h-75v344q0 105 -90 105q-65 0 -133 -59v-416q0 -87 -32 -141.5t-98 -88.5z" />
  371. <glyph unicode="&#x2c6;" horiz-adv-x="376" d="M73 573l-24 18q63 84 104 156l61 7q47 -80 113 -163l-24 -18q-42 35 -120 117q-61 -72 -110 -117z" />
  372. <glyph unicode="&#x2c7;" horiz-adv-x="376" d="M303 766l24 -18q-63 -84 -104 -156l-61 -7q-53 87 -113 163l24 18q47 -39 119 -117q57 67 111 117z" />
  373. <glyph unicode="&#x2d8;" horiz-adv-x="355" d="M272 739h34q-9 -65 -44.5 -103t-87.5 -38q-50 0 -84 36.5t-41 99.5l34 5q10 -38 35.5 -59.5t60.5 -21.5q33 0 57.5 22t35.5 59z" />
  374. <glyph unicode="&#x2d9;" horiz-adv-x="204" d="M155 668q0 -25 -15.5 -44t-40.5 -19q-23 0 -36.5 16t-13.5 39q0 25 17 44t41 19q22 0 35 -15.5t13 -39.5z" />
  375. <glyph unicode="&#x2da;" horiz-adv-x="278" d="M229 670q0 -37 -27.5 -63t-67.5 -26q-35 0 -60 22t-25 55q0 37 28.5 63t68.5 26q36 0 59.5 -22t23.5 -55zM92 662q0 -20 13 -33.5t33 -13.5q21 0 34.5 15t13.5 36t-11.5 34t-32.5 13t-35.5 -15t-14.5 -36z" />
  376. <glyph unicode="&#x2db;" horiz-adv-x="365" d="M278 0q-112 -62 -112 -126q0 -49 53 -49q24 0 55 12l13 -31q-39 -32 -91 -32q-45 0 -71 22t-26 61q0 90 144 155z" />
  377. <glyph unicode="&#x2dc;" horiz-adv-x="408" d="M139 723q28 0 72 -28t64 -28q34 0 61 53l24 -4q-5 -44 -28.5 -77.5t-61.5 -33.5q-28 0 -73 28t-65 28q-32 0 -60 -54l-24 4q6 44 29 78t62 34z" />
  378. <glyph unicode="&#x2dd;" horiz-adv-x="384" d="M217 748l5 -13q-57 -90 -148 -158l-25 12q74 88 111 171zM351 748l4 -13q-56 -90 -148 -158l-25 12q73 87 112 171z" />
  379. <glyph unicode="&#x394;" horiz-adv-x="598" d="M260 690h78l236 -670l-2 -20h-546l-2 20zM107 58h371l-185 530z" />
  380. <glyph unicode="&#x3a9;" horiz-adv-x="740" d="M305 0h-255l-10 58l9 9l208 -27q-73 48 -120 141t-47 196q0 135 81 227t201 92q121 0 199.5 -91.5t78.5 -226.5q0 -104 -47.5 -197t-120.5 -141l209 27l9 -9l-10 -58h-255l-7 37q64 56 102.5 144t38.5 185q0 113 -55.5 190.5t-142.5 77.5t-143.5 -76.5t-56.5 -192.5 q0 -95 39 -183t102 -145z" />
  381. <glyph unicode="&#x3bc;" horiz-adv-x="560" d="M96 341q0 82 -7 153l74 12l8 -8v-351q0 -97 83 -97q63 0 130 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-73 -73 -157 -75q-48 0 -77 25q9 -45 16 -140.5t10 -116.5l-75 -12l-9 9v586z" />
  382. <glyph unicode="&#x3c0;" horiz-adv-x="616" d="M122 0v447l-111 -1l13 55l566 5l6 -8l-13 -47l-91 -1v-347q0 -48 34 -48q16 0 41 7l-3 -62q-33 -10 -62 -10q-39 0 -62 23.5t-23 70.5v366l-220 -2v-448h-75z" />
  383. <glyph unicode="&#x1e0c;" horiz-adv-x="681" d="M613 346q0 -162 -94.5 -254t-248.5 -92h-167v531q0 87 -8 155h188q144 0 237 -92t93 -248zM276 627h-96v-567h93q127 0 193 74t66 208q0 131 -69 208t-187 77zM396 -158q0 -26 -15.5 -44.5t-41.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15 t13.5 -39z" />
  384. <glyph unicode="&#x1e0d;" horiz-adv-x="565" d="M384 744l75 12l9 -8v-609q0 -76 24 -139l-68 -10q-12 24 -24 69h-1q-48 -69 -138 -69q-87 0 -141.5 67t-54.5 181q0 127 67 197.5t171 70.5q47 0 90 -16v99q0 89 -9 155zM144 246q0 -95 38 -149.5t103 -54.5q64 0 108 54v345q-45 16 -87 16q-72 0 -117 -53.5t-45 -157.5z M335 -158q0 -26 -15.5 -44.5t-41.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39z" />
  385. <glyph unicode="&#x1e24;" horiz-adv-x="705" d="M180 0h-77v529q0 80 -8 157l77 10l8 -8v-317h344v158q0 90 -7 157l76 10l9 -8v-688h-78v312h-344v-312zM406 -158q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39z" />
  386. <glyph unicode="&#x1e25;" horiz-adv-x="565" d="M170 0h-75v589q0 88 -9 155l75 12l9 -8v-313q77 71 164 71q64 0 99 -37.5t35 -108.5v-360h-75v344q0 105 -90 105q-64 0 -133 -58v-391zM341 -158q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39z" />
  387. <glyph unicode="&#x1e44;" horiz-adv-x="703" d="M401 852q0 -24 -16 -41t-43 -17q-24 0 -38 14t-14 36q0 23 17.5 40t42.5 17q23 0 37 -13.5t14 -35.5zM358 398q10 -15 40 -64t40.5 -66t30.5 -51.5t34 -61t27 -55.5h2q-6 97 -6 415q0 86 -8 171l74 10l9 -9v-687h-78q-111 181 -182 297q-128 205 -168 287h-1 q6 -85 6 -237v-347h-75v531q0 78 -8 155l81 10q37 -61 102 -167.5t80 -130.5z" />
  388. <glyph unicode="&#x1e45;" horiz-adv-x="570" d="M331 670q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39zM175 0h-75v341q0 79 -20 148l69 17q14 -31 23 -74q77 74 167 74q64 0 99 -37.5t35 -108.5v-360h-75v344q0 105 -90 105q-65 0 -133 -59v-390z" />
  389. <glyph unicode="&#x1e5a;" horiz-adv-x="587" d="M180 0h-77v531q0 87 -8 155h178q113 0 179.5 -56.5t66.5 -151.5q0 -70 -36.5 -117t-99.5 -68l167 -293l-83 -9q-76 137 -151 281h-136v-272zM268 628h-88v-298h85q84 0 128.5 37.5t44.5 108.5q0 69 -42 110.5t-128 41.5zM358 -158q0 -26 -15.5 -44.5t-41.5 -18.5 q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39z" />
  390. <glyph unicode="&#x1e5b;" horiz-adv-x="384" d="M175 0h-75v341q0 79 -20 148l70 17q17 -40 24 -88q73 88 145 88q30 0 47 -13l-14 -69q-24 8 -45 8q-66 0 -132 -60v-372zM192 -158q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39z" />
  391. <glyph unicode="&#x1e62;" horiz-adv-x="513" d="M455 171q0 -84 -61 -132.5t-162 -48.5t-173 36l8 70q73 -42 168 -42q66 0 103 30.5t37 80.5q0 24 -10 45.5t-20.5 35t-36.5 30.5t-38.5 24t-46.5 24q-38 20 -59 33.5t-48 36.5t-39.5 53t-12.5 67q0 84 62 133t162 49q92 0 154 -31l-11 -71q-65 39 -145 39 q-67 0 -104.5 -30t-37.5 -80q0 -12 3 -23.5t6 -20.5t11 -19t12.5 -16t17.5 -15.5t18 -13.5t21.5 -13t21 -11.5t23.5 -12t22 -11.5q34 -17 56.5 -32t47.5 -39t38 -55.5t13 -69.5zM321 -158q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5 q22 0 35 -15t13 -39z" />
  392. <glyph unicode="&#x1e63;" horiz-adv-x="439" d="M370 476l-9 -64q-63 39 -123 39q-47 0 -74.5 -21t-27.5 -55q0 -31 25.5 -54t62 -39t73 -34t62 -48.5t25.5 -72.5q0 -61 -49.5 -99t-130.5 -38q-84 0 -149 34l9 63q67 -41 144 -41q48 0 75 20.5t27 53.5q0 30 -25.5 52.5t-62 38t-73.5 33.5t-62.5 48.5t-25.5 73.5 q0 63 49 101.5t130 38.5q67 0 130 -30zM282 -158q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -37 15.5t-14 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39z" />
  393. <glyph unicode="&#x1e6c;" horiz-adv-x="537" d="M308 0h-78v626q-104 -2 -209 -6l5 66h485l5 -66q-105 5 -208 6v-626zM324 -158q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -37 15.5t-14 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39z" />
  394. <glyph unicode="&#x1e6d;" horiz-adv-x="361" d="M314 449l-139 1v-289q0 -60 19 -86.5t57 -26.5q42 0 80 25l10 -52q-49 -31 -111 -31q-130 0 -130 163v298l-73 1v34l74 10l18 117l50 5l9 -9l-3 -113h136l6 -8zM266 -158q0 -26 -15.5 -44.5t-41.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15 t13.5 -39z" />
  395. <glyph unicode="&#x1e80;" horiz-adv-x="980" d="M608 775q-140 16 -242 74l-3 13l49 46q80 -59 205 -110zM242 -4l-211 692l79 8l122 -408q41 -135 52 -203q12 66 59 220l115 386l74 5l122 -408q41 -130 53 -203q12 66 58 219l117 392l61 -6l6 -8l-210 -686h-70l-133 425q-28 99 -45 168h-1q-16 -69 -46 -169l-132 -424 h-70z" />
  396. <glyph unicode="&#x1e81;" horiz-adv-x="759" d="M449 577q-101 67 -160 155l5 14l69 14q32 -72 111 -171zM183 -4l-159 504l76 6l70 -235q33 -104 54 -197h1q16 76 53 191l70 239h75l68 -230q49 -160 55 -199h1q10 51 54 195l70 236l58 -6l6 -9l-157 -495h-73l-76 245q-41 133 -49 184h-1q-9 -55 -48 -183l-76 -246h-72z " />
  397. <glyph unicode="&#x1e82;" horiz-adv-x="980" d="M617 862l-4 -13q-101 -58 -242 -74l-8 23q126 51 204 110zM242 -4l-211 692l79 8l122 -408q41 -135 52 -203q12 66 59 220l115 386l74 5l122 -408q41 -130 53 -203q12 66 58 219l117 392l61 -6l6 -8l-210 -686h-70l-133 425q-28 99 -45 168h-1q-16 -69 -46 -169 l-132 -424h-70z" />
  398. <glyph unicode="&#x1e83;" horiz-adv-x="759" d="M470 744l4 -14q-59 -89 -160 -156l-25 13q79 99 111 171zM183 -4l-159 504l76 6l70 -235q33 -104 54 -197h1q16 76 53 191l70 239h75l68 -230q49 -160 55 -199h1q10 51 54 195l70 236l58 -6l6 -9l-157 -495h-73l-76 245q-41 133 -49 184h-1q-9 -55 -48 -183l-76 -246h-72 z" />
  399. <glyph unicode="&#x1e84;" horiz-adv-x="980" d="M642 844q0 -24 -14.5 -41t-39.5 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16.5 39t39.5 17q21 0 33.5 -13t12.5 -33zM440 844q0 -24 -15 -41t-40 -17q-21 0 -34.5 13.5t-13.5 34.5q0 22 16.5 39t39.5 17q21 0 34 -13t13 -33zM242 -4l-211 692l79 8l122 -408 q41 -135 52 -203q12 66 59 220l115 386l74 5l122 -408q41 -130 53 -203q12 66 58 219l117 392l61 -6l6 -8l-210 -686h-70l-133 425q-28 99 -45 168h-1q-16 -69 -46 -169l-132 -424h-70z" />
  400. <glyph unicode="&#x1e85;" horiz-adv-x="759" d="M331 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t39 18.5q20 0 32.5 -14.5t12.5 -37.5zM532 669q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t38 18.5q21 0 33.5 -14.5t12.5 -37.5zM183 -4l-159 504l76 6l70 -235 q33 -104 54 -197h1q16 76 53 191l70 239h75l68 -230q49 -160 55 -199h1q10 51 54 195l70 236l58 -6l6 -9l-157 -495h-73l-76 245q-41 133 -49 184h-1q-9 -55 -48 -183l-76 -246h-72z" />
  401. <glyph unicode="&#x1e92;" horiz-adv-x="520" d="M43 0l-13 49l364 573l-352 -4l5 68h417l19 -48l-362 -574l366 5l-5 -69h-439zM322 -158q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39z" />
  402. <glyph unicode="&#x1e93;" horiz-adv-x="434" d="M34 432l5 64h349l8 -47l-282 -390l138 2q101 2 151 6l-5 -67h-359l-8 48l285 389zM271 -158q0 -26 -15.5 -44.5t-41.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39z" />
  403. <glyph unicode="&#x1e9e;" horiz-adv-x="630" d="M93 105v356q0 113 65.5 174t170.5 61q70 0 124 -29t79 -84l-167 -196q46 -18 79.5 -37t64 -45t46.5 -60.5t16 -76.5q0 -81 -54 -129.5t-140 -48.5q-69 0 -124 26v70q54 -32 117 -32q57 0 89 30.5t32 82.5q0 63 -49.5 103.5t-156.5 80.5v27l159 197q-37 58 -112 58 q-74 0 -117.5 -47t-43.5 -126v-372q0 -64 -20 -98l-72 10q14 44 14 105z" />
  404. <glyph unicode="&#x1ea0;" horiz-adv-x="612" d="M98 0h-74l205 589q25 72 33 103l76 4l11 -10l239 -686h-79l-70 199h-271zM240 404l-51 -145h229l-50 145q-51 152 -63 209h-2q-12 -53 -63 -209zM360 -158q0 -26 -15.5 -44.5t-41.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39z" />
  405. <glyph unicode="&#x1ea1;" horiz-adv-x="504" d="M405 144q0 -78 24 -144l-67 -10q-16 32 -24 70h-1q-22 -29 -63.5 -49.5t-89.5 -20.5q-60 0 -94.5 32.5t-34.5 85.5q0 80 78 122.5t198 49.5v66q0 101 -103 101q-76 0 -152 -47l-4 64q86 42 172 42q80 0 121.5 -38.5t41.5 -106.5q0 -37 -1 -116.5t-1 -100.5zM131 119 q0 -32 20.5 -54.5t58.5 -22.5q32 0 65.5 16t55.5 40v144q-87 -6 -143.5 -37.5t-56.5 -85.5zM303 -158q0 -26 -15.5 -44.5t-41.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39z" />
  406. <glyph unicode="&#x1eb8;" horiz-adv-x="521" d="M481 64v-64h-378v531q0 87 -8 155h369l8 -8l-1 -56l-291 6v-260l247 3l-1 -61l-246 3v-254zM359 -158q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39z" />
  407. <glyph unicode="&#x1eb9;" horiz-adv-x="511" d="M452 257l-15 -15h-293q3 -96 46 -145t114 -49q66 0 131 43l6 -55q-64 -46 -154 -46q-101 0 -161.5 66.5t-60.5 185.5q0 123 62.5 193.5t153.5 70.5q79 0 125.5 -52t46.5 -138q0 -40 -1 -59zM277 454q-53 0 -90.5 -45.5t-42.5 -129.5l233 7q0 5 0.5 17t0.5 19q0 60 -27 96 t-74 36zM332 -158q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39z" />
  408. <glyph unicode="&#x1ebc;" horiz-adv-x="521" d="M217 903q31 0 76.5 -28t68.5 -28q39 0 66 54l23 -4q-4 -44 -28.5 -75.5t-65.5 -31.5q-30 0 -77.5 28t-69.5 28q-38 0 -66 -53l-23 4q4 41 28.5 73.5t67.5 32.5zM481 64v-64h-378v531q0 87 -8 155h369l8 -8l-1 -56l-291 6v-260l247 3l-1 -61l-246 3v-254z" />
  409. <glyph unicode="&#x1ebd;" horiz-adv-x="511" d="M200 723q29 0 73 -28t64 -28q33 0 60 53l25 -4q-5 -44 -28.5 -77.5t-61.5 -33.5q-28 0 -73.5 28t-64.5 28q-34 0 -60 -54l-24 4q6 44 29 78t61 34zM452 257l-15 -15h-293q3 -96 46 -145t114 -49q66 0 131 43l6 -55q-64 -46 -154 -46q-101 0 -161.5 66.5t-60.5 185.5 q0 123 62.5 193.5t153.5 70.5q79 0 125.5 -52t46.5 -138q0 -40 -1 -59zM277 454q-53 0 -90.5 -45.5t-42.5 -129.5l233 7q0 5 0.5 17t0.5 19q0 60 -27 96t-74 36z" />
  410. <glyph unicode="&#x1eca;" horiz-adv-x="283" d="M180 0h-77v529q0 80 -8 157l77 10l8 -8v-688zM195 -158q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39z" />
  411. <glyph unicode="&#x1ecb;" horiz-adv-x="269" d="M184 670q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39zM96 0v339q0 97 -9 155l76 12l8 -8v-498h-75zM190 -158q0 -26 -15.5 -44.5t-41.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15 t13.5 -39z" />
  412. <glyph unicode="&#x1ecc;" horiz-adv-x="699" d="M632 345q0 -167 -82 -261t-206 -94q-121 0 -198.5 91.5t-77.5 251.5q0 165 82 264t207 99q123 0 199 -95t76 -256zM149 341q0 -131 53.5 -210t146.5 -79t147.5 76.5t54.5 213.5q0 132 -51 212t-144 80q-92 0 -149.5 -78.5t-57.5 -214.5zM411 -158q0 -26 -15.5 -44.5 t-40.5 -18.5q-23 0 -37 15.5t-14 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39z" />
  413. <glyph unicode="&#x1ecd;" horiz-adv-x="559" d="M494 252q0 -125 -63.5 -193.5t-156.5 -68.5t-151 67.5t-58 185.5q0 124 63 193.5t157 69.5t151.5 -68.5t57.5 -185.5zM144 250q0 -95 34.5 -151.5t99.5 -56.5q63 0 100.5 53.5t37.5 150.5q0 95 -34.5 151.5t-99.5 56.5q-63 0 -100.5 -52.5t-37.5 -151.5zM333 -158 q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -37 15.5t-14 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39z" />
  414. <glyph unicode="&#x1ee4;" horiz-adv-x="653" d="M89 531q0 83 -10 157l83 8l5 -5v-464q0 -82 45 -128t116 -46q72 0 116.5 45t44.5 129v314q0 80 -10 147l85 8v-471q0 -113 -68.5 -174t-173.5 -61q-102 0 -167.5 61.5t-65.5 173.5v306zM380 -158q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -37 15.5t-14 39.5q0 25 17 43.5 t41 18.5q22 0 35.5 -15t13.5 -39z" />
  415. <glyph unicode="&#x1ee5;" horiz-adv-x="560" d="M96 339q0 84 -7 155l74 12l8 -8v-351q0 -97 86 -97q60 0 127 59v387l75 10v-365q0 -76 19 -139l-64 -12q-14 29 -24 75h-2q-75 -75 -160 -75q-63 0 -97.5 35.5t-34.5 99.5v214zM333 -158q0 -26 -15.5 -44.5t-41.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5 t41 18.5q22 0 35.5 -15t13.5 -39z" />
  416. <glyph unicode="&#x1ef2;" horiz-adv-x="560" d="M404 775q-140 16 -242 74l-3 13l49 46q80 -59 205 -110zM241 246l-218 443l83 7l117 -243q43 -89 62 -141h2q33 76 65 142l115 242l64 -6l6 -8l-218 -439v-243h-78v246z" />
  417. <glyph unicode="&#x1ef3;" horiz-adv-x="462" d="M306 577q-102 66 -161 155l5 14l69 14q36 -78 112 -171zM446 491l-172 -481q-86 -248 -245 -266l-12 72q131 17 199 198h-21l-171 486l77 6l79 -240q50 -136 60 -200h1q11 54 62 200l79 240l58 -6z" />
  418. <glyph unicode="&#x1ef8;" horiz-adv-x="560" d="M216 901q31 0 76.5 -28t68.5 -28q38 0 67 53l23 -4q-4 -43 -29 -75t-66 -32q-30 0 -77 28.5t-69 28.5q-39 0 -66 -54l-23 4q4 42 28.5 74.5t66.5 32.5zM241 246l-218 443l83 7l117 -243q43 -89 62 -141h2q33 76 65 142l115 242l64 -6l6 -8l-218 -439v-243h-78v246z" />
  419. <glyph unicode="&#x1ef9;" horiz-adv-x="462" d="M169 723q29 0 73 -28t64 -28q33 0 60 53l25 -4q-5 -44 -28.5 -77.5t-61.5 -33.5q-28 0 -73.5 28t-64.5 28q-34 0 -60 -54l-24 4q6 44 29 78t61 34zM446 491l-172 -481q-86 -248 -245 -266l-12 72q131 17 199 198h-21l-171 486l77 6l79 -240q50 -136 60 -200h1 q11 54 62 200l79 240l58 -6z" />
  420. <glyph unicode="&#x2007;" />
  421. <glyph unicode="&#x2013;" horiz-adv-x="516" d="M30 272v39h456v-39h-456z" />
  422. <glyph unicode="&#x2014;" horiz-adv-x="797" d="M30 272v39h737v-39h-737z" />
  423. <glyph unicode="&#x2018;" horiz-adv-x="231" d="M184 741q-46 -88 -58 -160q21 -2 34.5 -17.5t13.5 -37.5q0 -26 -17.5 -44.5t-42.5 -18.5t-40 17.5t-15 48.5q0 49 31 116t68 115z" />
  424. <glyph unicode="&#x2019;" horiz-adv-x="231" d="M46 480q48 92 58 160q-21 1 -34.5 16.5t-13.5 38.5q0 26 18 44.5t43 18.5t39.5 -17t14.5 -49q0 -49 -31 -116t-67 -115z" />
  425. <glyph unicode="&#x201a;" horiz-adv-x="231" d="M46 -170q48 92 58 160q-21 2 -34.5 17.5t-13.5 37.5q0 26 18 44.5t43 18.5t39.5 -17t14.5 -49q0 -49 -31 -116t-67 -115z" />
  426. <glyph unicode="&#x201c;" horiz-adv-x="416" d="M184 741q-46 -88 -58 -160q21 -2 34.5 -17.5t13.5 -37.5q0 -26 -17.5 -44.5t-42.5 -18.5t-40 17.5t-15 48.5q0 49 31 116t68 115zM369 741q-46 -88 -58 -160q21 -2 35 -17.5t14 -37.5q0 -26 -18 -44.5t-43 -18.5t-39.5 17t-14.5 49q0 49 31 116t67 115z" />
  427. <glyph unicode="&#x201d;" horiz-adv-x="416" d="M232 481q46 88 58 160q-21 1 -34.5 16.5t-13.5 37.5q0 26 17.5 45t42.5 19t40 -17.5t15 -49.5q0 -48 -31 -115t-68 -116zM46 481q48 92 58 160q-21 1 -34.5 16.5t-13.5 37.5q0 26 18 45t43 19t39.5 -17.5t14.5 -49.5q0 -48 -30.5 -115t-67.5 -116z" />
  428. <glyph unicode="&#x201e;" horiz-adv-x="414" d="M46 -170q48 92 58 160q-21 2 -34.5 17.5t-13.5 37.5q0 26 18 44.5t43 18.5t39.5 -17t14.5 -49q0 -49 -31 -116t-67 -115zM230 -170q48 92 58 160q-21 2 -34.5 17.5t-13.5 37.5q0 26 17.5 44.5t43.5 18.5q25 0 39.5 -17t14.5 -49q0 -49 -31 -116.5t-68 -114.5z" />
  429. <glyph unicode="&#x2020;" horiz-adv-x="505" d="M272 0l-37 -2l-7 9l-17 159l20 297l-166 -9l-3 3q-4 28 -4 50l9 7l163 -9l-15 184l3 3q27 4 64 4l7 -7l-16 -184l166 9l4 -3q4 -28 4 -50l-9 -7l-165 9l20 -297l-17 -160z" />
  430. <glyph unicode="&#x2021;" horiz-adv-x="505" d="M219 -5l-7 8l19 187l-164 -15l-9 7q0 30 4 58l3 3l166 -16q-12 98 -12 123q0 12 13 116l-167 -15l-3 3q-4 28 -4 58l9 7l165 -16l-20 186l3 3q31 4 70 4l7 -7l-20 -187l167 17l4 -3q4 -28 4 -58l-9 -7l-165 15q12 -96 12 -116q0 -25 -12 -123l165 16l9 -7q0 -30 -4 -58 l-4 -3l-167 15l20 -187l-3 -4q-19 -2 -70 -4z" />
  431. <glyph unicode="&#x2022;" horiz-adv-x="427" d="M210 142q-48 0 -78.5 31.5t-31.5 77.5q-1 52 34.5 91t88.5 39q46 0 74.5 -30.5t29.5 -78.5q1 -52 -31 -91t-86 -39z" />
  432. <glyph unicode="&#x2026;" horiz-adv-x="628" d="M175 51q0 -26 -17.5 -43.5t-41.5 -17.5t-40 16t-16 41t17.5 43t42.5 18q24 0 39.5 -16t15.5 -41zM371 51q0 -26 -17 -43.5t-41 -17.5t-40.5 16.5t-16.5 40.5q0 25 18 43t43 18q23 0 38.5 -16t15.5 -41zM568 51q0 -26 -17.5 -43.5t-41.5 -17.5q-23 0 -39.5 16t-16.5 41 t18 43t43 18q23 0 38.5 -16t15.5 -41z" />
  433. <glyph unicode="&#x2030;" horiz-adv-x="1435" d="M418 498q0 -97 -52.5 -150.5t-128.5 -53.5t-124 53t-48 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM737 696l-423 -706h-46l421 706h48zM131 497q0 -73 28.5 -116.5t81.5 -43.5q51 0 81.5 41.5t30.5 115.5t-28.5 117.5t-80.5 43.5t-82.5 -40.5t-30.5 -117.5z M904 126q0 -97 -52.5 -150.5t-128.5 -53.5q-77 0 -124.5 53t-47.5 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM1370 126q0 -97 -52.5 -150.5t-128.5 -53.5q-77 0 -124.5 53t-47.5 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM616 125q0 -73 28.5 -117 t81.5 -44q51 0 81.5 41.5t30.5 116.5q0 74 -28 117.5t-81 43.5q-51 0 -82 -40.5t-31 -117.5zM1082 125q0 -73 28.5 -117t81.5 -44q51 0 81.5 41.5t30.5 116.5q0 74 -28 117.5t-81 43.5q-51 0 -82 -40.5t-31 -117.5z" />
  434. <glyph unicode="&#x2039;" horiz-adv-x="283" d="M54 282v21q70 62 169 193l20 -10q-41 -99 -114 -194q73 -93 114 -193l-20 -11q-98 131 -169 194z" />
  435. <glyph unicode="&#x203a;" horiz-adv-x="283" d="M229 282q-66 -58 -169 -194l-20 11q41 100 114 193q-73 95 -114 194l20 10q104 -136 169 -193v-21z" />
  436. <glyph unicode="&#x2044;" horiz-adv-x="581" d="M526 700l-425 -710h-46l424 710h47z" />
  437. <glyph unicode="&#x2070;" horiz-adv-x="466" d="M405 556q0 -101 -50.5 -156.5t-125.5 -55.5t-121.5 55t-46.5 152q0 101 50.5 158t125.5 57t121.5 -57t46.5 -153zM126 556q0 -80 27 -126.5t79 -46.5q51 0 79.5 44.5t28.5 126.5q0 80 -27 126.5t-79 46.5q-50 0 -79 -44t-29 -127z" />
  438. <glyph unicode="&#x2074;" horiz-adv-x="403" d="M39 499l180 261l67 6l7 -6v-257q25 1 63 5l-7 -50h-56v-106h-59v106h-187zM92 502v-1q39 1 130 1h12v110q0 72 2 102h-1z" />
  439. <glyph unicode="&#x2075;" horiz-adv-x="378" d="M56 358l7 44q43 -15 95 -15q48 0 77.5 23.5t29.5 63.5t-27.5 60.5t-70.5 20.5q-48 0 -85 -14l-10 7v210h140q64 0 104 6l-4 -54h-188v-120q31 7 65 7q60 0 100 -31t40 -88q0 -62 -47 -98t-123 -36q-54 0 -103 14z" />
  440. <glyph unicode="&#x2076;" horiz-adv-x="409" d="M214 344q-70 0 -111.5 47.5t-41.5 133.5q0 109 60 175t157 66q37 0 55 -8l-6 -45q-20 9 -48 9q-61 0 -104.5 -43.5t-48.5 -126.5h2q38 37 106 37q57 0 92 -31.5t35 -84.5q0 -59 -42.5 -94t-104.5 -35zM217 551q-27 0 -53.5 -11.5t-37.5 -30.5q6 -124 87 -124q38 0 61 23 t23 61q0 37 -21 59.5t-59 22.5z" />
  441. <glyph unicode="&#x2077;" horiz-adv-x="351" d="M38 702l7 56h270l7 -7v-34q-74 -78 -123 -173.5t-54 -191.5h-64q6 92 60 191.5t121 165.5v1h-107q-70 0 -117 -8z" />
  442. <glyph unicode="&#x2078;" horiz-adv-x="399" d="M197 344q-65 0 -107 28.5t-42 72.5q0 39 30 68t75 44v1q-90 46 -90 106q0 43 40.5 72.5t99.5 29.5t96 -29t37 -70q0 -32 -25 -60t-66 -45v-2q107 -42 107 -108q0 -45 -43.5 -76.5t-111.5 -31.5zM202 728q-33 0 -56.5 -16.5t-23.5 -44.5q0 -51 85 -85q71 36 71 85 q0 27 -22 44t-54 17zM191 534q-35 -14 -59 -37.5t-24 -50.5q0 -28 25.5 -46.5t64.5 -18.5q40 0 65.5 18.5t27.5 47.5q1 28 -24.5 48t-75.5 39z" />
  443. <glyph unicode="&#x2079;" horiz-adv-x="409" d="M48 629q0 61 42.5 99t104.5 38q68 0 110.5 -47t42.5 -131q0 -104 -60.5 -174t-156.5 -70q-27 0 -49 5v43q24 -4 45 -4q64 0 105.5 42.5t50.5 117.5q-37 -38 -102 -38q-60 0 -96.5 32t-36.5 87zM113 633q0 -38 21.5 -61t61.5 -23q62 0 87 43q-3 61 -26 96.5t-64 35.5 q-35 0 -57.5 -25.5t-22.5 -65.5z" />
  444. <glyph unicode="&#x207f;" horiz-adv-x="475" d="M148 290h-62v265q0 57 -16 116l57 14q11 -24 18 -59q64 59 138 59q52 0 80.5 -29.5t28.5 -84.5v-281h-62v267q0 81 -73 81q-53 0 -109 -45v-303z" />
  445. <glyph unicode="&#x2080;" horiz-adv-x="466" d="M405 132q0 -101 -50.5 -156.5t-125.5 -55.5t-121.5 55t-46.5 152q0 101 50.5 158t125.5 57t121.5 -57t46.5 -153zM126 132q0 -80 27 -126.5t79 -46.5q51 0 79.5 44.5t28.5 126.5q0 80 -27 126.5t-79 46.5q-50 0 -79 -44t-29 -127z" />
  446. <glyph unicode="&#x2081;" horiz-adv-x="247" d="M102 281h-1l-72 -14l-10 36l137 41l7 -6v-408h-62v266q0 61 1 85z" />
  447. <glyph unicode="&#x2082;" horiz-adv-x="367" d="M44 -70l-8 45q53 40 79 61.5t64 57t54.5 66t16.5 60.5q0 36 -24.5 58t-63.5 22q-59 0 -119 -44l-6 47q55 41 139 41q60 0 99 -31t39 -82q0 -34 -19 -69t-54.5 -69.5t-67 -59.5t-76.5 -56h119q54 0 105 6l-7 -53h-270z" />
  448. <glyph unicode="&#x2083;" horiz-adv-x="357" d="M48 309q54 33 125 33q53 0 88.5 -24.5t35.5 -64.5q0 -35 -29.5 -65.5t-82.5 -45.5q61 -5 96.5 -31t35.5 -72q0 -53 -46.5 -86t-122.5 -33q-59 0 -108 14l6 42q49 -14 100 -14q47 0 77 20t30 55q0 36 -33.5 52.5t-84.5 16.5q-27 0 -47 -4v42q68 12 106 38t38 60 q0 25 -20 40.5t-55 15.5q-55 0 -105 -31z" />
  449. <glyph unicode="&#x2084;" horiz-adv-x="403" d="M39 77l180 261l67 6l7 -6v-257q25 1 63 5l-7 -50h-56v-106h-59v106h-187zM92 80v-1q39 1 130 1h12v110q0 72 2 102h-1z" />
  450. <glyph unicode="&#x2085;" horiz-adv-x="378" d="M56 -66l7 43q45 -14 95 -14q48 0 77.5 23.5t29.5 63.5t-27.5 60.5t-70.5 20.5q-48 0 -85 -14l-10 7v210h140q64 0 104 6l-4 -54h-188v-120q31 7 65 7q60 0 100 -31t40 -88q0 -62 -47 -98t-123 -36q-54 0 -103 14z" />
  451. <glyph unicode="&#x2086;" horiz-adv-x="409" d="M214 -80q-70 0 -111.5 47.5t-41.5 133.5q0 109 60 175t157 66q37 0 55 -8l-6 -45q-20 9 -48 9q-61 0 -104.5 -43.5t-48.5 -126.5h2q38 37 106 37q57 0 92 -31.5t35 -84.5q0 -59 -42.5 -94t-104.5 -35zM217 127q-27 0 -53.5 -11.5t-37.5 -30.5q6 -124 87 -124q38 0 61 23 t23 61q0 37 -21 59.5t-59 22.5z" />
  452. <glyph unicode="&#x2087;" horiz-adv-x="351" d="M38 280l7 56h270l7 -7v-34q-74 -78 -123 -173.5t-54 -191.5h-64q6 92 60 191.5t121 165.5v1h-107q-70 0 -117 -8z" />
  453. <glyph unicode="&#x2088;" horiz-adv-x="399" d="M197 -80q-66 0 -107.5 28t-41.5 73q0 39 30 68t75 44v1q-90 46 -90 106q0 43 40.5 72.5t99.5 29.5t96 -29t37 -70q0 -32 -25 -60t-66 -45v-2q107 -42 107 -108q0 -46 -43 -77t-112 -31zM202 304q-33 0 -56.5 -16.5t-23.5 -44.5q0 -51 85 -85q71 36 71 85q0 27 -22 44 t-54 17zM191 110q-35 -14 -59 -37.5t-24 -50.5q0 -29 25.5 -47t64.5 -18q40 0 65.5 18.5t27.5 47.5q1 28 -24.5 48t-75.5 39z" />
  454. <glyph unicode="&#x2089;" horiz-adv-x="409" d="M48 205q0 61 42.5 99t104.5 38q68 0 110.5 -47t42.5 -131q0 -104 -60.5 -174t-156.5 -70q-27 0 -49 5v43q24 -4 45 -4q64 0 105.5 42.5t50.5 117.5q-37 -38 -102 -38q-60 0 -96.5 32t-36.5 87zM113 209q0 -38 21.5 -61t61.5 -23q62 0 87 43q-3 61 -26 96.5t-64 35.5 q-35 0 -57.5 -25.5t-22.5 -65.5z" />
  455. <glyph unicode="&#x20ac;" horiz-adv-x="593" d="M48 249l4 38h61q-2 28 -2 45q0 19 2 53h-51l5 38h51q20 127 91 200t176 73q92 0 153 -43l-15 -71q-61 48 -135 48q-73 0 -124 -54t-66 -153h245l-3 -38h-246q-2 -28 -2 -44q0 -29 3 -54h233l-3 -38h-225q17 -91 65 -142t121 -51q83 0 148 53l10 -65q-67 -54 -169 -54 q-104 0 -172.5 68t-85.5 191h-69z" />
  456. <glyph unicode="&#x2122;" horiz-adv-x="590" d="M491 689l5 -4l26 -225h-39l-9 85q-7 53 -10 100h-1q-9 -44 -27 -101l-25 -84h-45l-25 84q-19 60 -28 102h-1q-6 -72 -9 -102l-11 -84h-33l27 227l51 2l32 -96q17 -64 22 -95h1q15 77 22 95l31 94zM167 460h-41v196q-24 0 -68 -2l2 32h173l3 -32q-44 2 -69 2v-196z" />
  457. <glyph unicode="&#x2202;" horiz-adv-x="628" d="M284 756q129 0 199 -110t70 -279q0 -74 -14.5 -138.5t-44.5 -119.5t-84 -87t-126 -32q-102 0 -159 60.5t-57 156.5q0 108 70 174t187 66q77 0 146 -33q-9 129 -63.5 205.5t-136.5 76.5q-37 0 -75 -14.5t-64 -36.5l-29 53q77 58 181 58zM147 212q0 -74 37.5 -117.5 t102.5 -43.5q85 0 135.5 75t50.5 216v6q-64 38 -140 38q-92 0 -139 -46.5t-47 -127.5z" />
  458. <glyph unicode="&#x220f;" horiz-adv-x="742" d="M683 678l-4 -55h-115v-763h-75v763h-239v-763h-75v763h-115l-1 60l616 3z" />
  459. <glyph unicode="&#x2211;" horiz-adv-x="568" d="M58 -70l252 354l-252 354l15 48h455l9 -8l-4 -55l-393 6l242 -334v-22l-242 -334l394 5l-1 -63h-460z" />
  460. <glyph unicode="&#x2212;" d="M510 322h-450v47q170 5 450 5l5 -5z" />
  461. <glyph unicode="&#x221a;" horiz-adv-x="602" d="M577 742l-224 -742h-85l-165 438h-87v58h141l155 -436l198 696l61 -6z" />
  462. <glyph unicode="&#x221e;" horiz-adv-x="843" d="M765 272q0 -76 -46.5 -124.5t-119.5 -48.5q-60 0 -101 32t-78 89q-76 -121 -181 -121q-72 0 -116.5 47t-44.5 122q0 77 46.5 125t118.5 48q57 0 99 -31.5t80 -88.5q74 120 182 120q71 0 116 -47t45 -122zM595 392q-86 0 -147 -114q19 -33 30 -49t30.5 -38.5t41.5 -32 t49 -9.5q50 0 81 33.5t31 86.5q0 54 -33 88.5t-83 34.5zM132 274q0 -55 33 -89.5t83 -34.5q84 0 147 110l-1 2q-26 43 -42.5 66t-46 43.5t-62.5 20.5q-49 0 -80 -33t-31 -85z" />
  463. <glyph unicode="&#x222b;" horiz-adv-x="478" d="M181 -201q83 0 83 91q0 49 -61 359q-58 280 -58 349q0 77 42 117.5t116 40.5q61 0 123 -30l-9 -64q-60 39 -116 39q-83 0 -83 -91q0 -47 59 -347q60 -288 60 -359q0 -79 -42 -119.5t-116 -40.5q-61 0 -123 30l8 64q60 -39 117 -39z" />
  464. <glyph unicode="&#x2248;" d="M416 321q-26 0 -136.5 35t-122.5 35q-3 0 -6 -1.5t-6.5 -4t-7 -6t-8 -8.5t-8 -9.5t-9 -12t-9.5 -12.5t-10 -13.5t-10 -13.5l-32 22q61 113 109 113q25 0 135.5 -35t122.5 -35q4 0 8 2t9 6.5t9.5 9.5t11.5 13t11.5 14.5t13 17t13.5 17.5l30 -21q-61 -113 -108 -113z M416 120q-26 0 -136.5 34.5t-122.5 34.5q-16 0 -67 -72q-2 -2 -2.5 -3t-2 -3t-2.5 -3l-32 22q61 113 109 113q25 0 135.5 -34.5t122.5 -34.5q3 0 6 1t7 4t7 6t8 8.5t8.5 9.5t9 11.5t9 12l10.5 13.5t11 14l30 -21q-61 -113 -108 -113z" />
  465. <glyph unicode="&#x2260;" d="M144 121l53 112h-137v47q59 3 162 3l65 138h-227v47q112 4 252 4l61 128l8 2l38 -20l-52 -109q31 0 79 0.5t64 0.5l5 -6l-5 -47h-168l-66 -137q178 2 234 2l5 -6l-5 -47h-258l-62 -129l-8 -2z" />
  466. <glyph unicode="&#x2264;" d="M137 437l372 -139v-52l-452 173v32l5 8q194 74 446 158v-53zM509 96h-450v48q170 5 449 5l6 -6z" />
  467. <glyph unicode="&#x2265;" d="M66 246v52l372 139l-371 127v53q252 -84 446 -158l5 -8v-32zM511 96h-450v48q170 5 450 5l6 -6z" />
  468. <glyph unicode="&#x25ca;" horiz-adv-x="611" d="M73 327v31l214 332l60 10l222 -343v-31l-218 -326l-59 -10zM316 649l-190 -307l191 -299h6l194 299l-194 307h-7z" />
  469. <glyph unicode="&#x25fc;" horiz-adv-x="505" d="M0 505h505v-505h-505v505z" />
  470. <glyph unicode="&#xfb00;" horiz-adv-x="585" d="M179 0h-75v445l-75 3v33l75 10q0 13 -1 32t-1.5 33t-0.5 20q0 75 45 117.5t121 42.5q72 0 134 -32q43 52 128 52q67 0 115 -28l-18 -62q-48 31 -99 31q-88 0 -88 -113q0 -39 2 -93h133l7 -8l-3 -41l-135 3v-445h-75v445h-189v-445zM175 573q0 -32 2 -82h191q-3 53 -3 91 q0 40 8 67q-48 32 -104 32q-94 0 -94 -108z" />
  471. <glyph unicode="&#xfb01;" horiz-adv-x="542" d="M179 0h-75v445l-75 3v33l75 10q0 15 -1.5 48t-1.5 43q0 82 45.5 128t129.5 46q95 0 160 -52l-37 -52q-58 45 -124 45q-100 0 -100 -116q0 -36 2 -90h182l75 15l9 -8v-498h-75v339q0 60 -4 103l-185 3v-445z" />
  472. <glyph unicode="&#xfb02;" horiz-adv-x="540" d="M179 0h-75v445l-75 3v33l75 10q0 14 -1.5 47.5t-1.5 44.5q0 82 48.5 127.5t139.5 45.5q43 0 82 -11l70 11l9 -8v-748h-75v442l-196 3v-445zM175 584q0 -39 2 -93h195l3 -3v101q0 48 -3 90q-41 18 -87 18q-110 0 -110 -113z" />
  473. <glyph unicode="&#xfb03;" horiz-adv-x="806" d="M179 0h-75v445l-75 3v33l75 10q0 16 -1.5 46.5t-1.5 38.5q0 74 48 117t126 43q73 0 129 -33q45 53 136 53q94 0 160 -52l-37 -52q-58 45 -124 45q-53 0 -76.5 -29t-23.5 -87q0 -36 2 -90h181l76 15l8 -8v-498h-75v339q0 55 -3 103l-185 3v-445h-75v445h-189v-445z M175 573q0 -32 2 -82h191q-3 54 -3 91q0 35 8 65q-42 30 -97 30q-101 0 -101 -104z" />
  474. <glyph unicode="&#xfb04;" horiz-adv-x="804" d="M179 0h-75v445l-75 3v33l75 10q0 16 -1.5 46.5t-1.5 38.5q0 74 48 117t126 43q73 0 130 -34q48 54 148 54q43 0 82 -11l70 11l9 -8v-748h-75v442l-196 3v-445h-75v445h-189v-445zM439 584q0 -39 2 -93h195l3 -3v101q0 48 -3 90q-43 18 -88 18q-109 0 -109 -113zM175 573 q0 -32 2 -82h191q-3 54 -3 92q0 35 9 64q-44 30 -98 30q-101 0 -101 -104z" />
  475. <glyph unicode="&#xfb06;" horiz-adv-x="781" d="M370 476l-9 -64q-63 39 -123 39q-47 0 -74.5 -21t-27.5 -55q0 -31 25.5 -54t62 -39t73 -34t62 -48.5t25.5 -72.5q0 -61 -49.5 -99t-130.5 -38q-84 0 -149 34l9 63q67 -41 144 -41q48 0 75 20.5t27 53.5q0 30 -25.5 52.5t-62 38t-73.5 33.5t-62.5 48.5t-25.5 73.5 q0 63 49 101.5t130 38.5q38 0 71 -9q-22 43 -22 93q0 69 46.5 112.5t117.5 43.5q69 0 113.5 -41t44.5 -114q0 -40 -15 -95h135l7 -8l-4 -39l-138 1v-289q0 -113 77 -113q39 0 79 25l9 -52q-49 -31 -110 -31q-40 0 -67.5 15.5t-40 42.5t-17.5 52t-5 53v298l-71 1v34l72 10 q13 35 13 83q0 114 -92 114q-45 0 -73 -29t-28 -83q0 -53 28 -105z" />
  476. <glyph horiz-adv-x="273" d="M258 865l-3 -14q-102 -58 -242 -74l-9 23q127 53 205 111zM31 -193l-25 38q87 69 87 222v462q0 79 -9 155l78 12l9 -8v-621q0 -102 -33.5 -162t-106.5 -98z" />
  477. <glyph horiz-adv-x="421" d="M337 42q0 -64 19 -112l-55 -8q-10 20 -20 54h-1q-17 -22 -51.5 -38t-74.5 -16q-49 0 -77 25.5t-28 66.5q0 63 64 96t163 39v49q0 78 -85 78q-64 0 -125 -36l-3 52q68 33 142 33q65 0 99.5 -30.5t34.5 -84.5q0 -29 -1 -90t-1 -78zM112 24q0 -25 17 -42.5t48 -17.5 q56 0 99 43v111q-72 -5 -118 -29t-46 -65z" />
  478. <glyph horiz-adv-x="473" d="M412 125q0 -97 -48 -150t-128 -53q-50 0 -98 16l-56 -16v466q0 58 -8 122l63 10l7 -7v-228q43 40 108 40q73 0 116.5 -53.5t43.5 -146.5zM234 281q-53 0 -90 -34v-270q38 -15 85 -15q56 0 87 41t31 118q0 75 -29 117.5t-84 42.5z" />
  479. <glyph horiz-adv-x="405" d="M362 299l-16 -53q-42 30 -95 30q-58 0 -92 -38.5t-34 -110.5t33.5 -114.5t94.5 -42.5q51 0 101 30l6 -46q-51 -32 -119 -32q-81 0 -131 52.5t-50 145.5q0 96 52.5 150.5t138.5 54.5q62 0 111 -26z" />
  480. <glyph horiz-adv-x="475" d="M322 510l62 10l7 -7v-475q0 -57 20 -108l-56 -8q-9 16 -20 54h-1q-39 -54 -113 -54q-72 0 -116.5 52t-44.5 141q0 100 55.5 155t139.5 55q40 0 73 -12v75q0 74 -6 122zM125 122q0 -73 31.5 -115.5t84.5 -42.5q52 0 87 41v268q-38 12 -70 12q-59 0 -96 -41.5t-37 -121.5z " />
  481. <glyph horiz-adv-x="430" d="M378 130l-12 -12h-240q3 -73 38 -110.5t93 -37.5q54 0 107 33l5 -45q-52 -36 -126 -36q-83 0 -133 52t-50 145q0 96 51.5 151t126.5 55q64 0 102.5 -41t38.5 -109q0 -30 -1 -45zM234 283q-43 0 -73.5 -35.5t-34.5 -99.5l189 5q1 9 1 28q0 46 -22 74t-60 28z" />
  482. <glyph horiz-adv-x="278" d="M151 -70h-62v345l-61 3v27l61 8q-2 54 -2 70q0 65 35 101t100 36q55 0 94 -22l-14 -52q-40 25 -82 25q-72 0 -72 -87q0 -8 1 -34t1 -37h109l5 -7l-2 -33l-111 2v-345z" />
  483. <glyph horiz-adv-x="411" d="M99 -12q0 36 33 64q-38 15 -60.5 47.5t-22.5 77.5q0 63 39.5 105.5t108.5 42.5q52 0 84 -25q33 35 92 35l8 -4l-1 -50h-79q40 -38 40 -95q0 -62 -39.5 -103.5t-106.5 -41.5q-22 0 -32 2q-12 -15 -12 -34q0 -18 10.5 -27.5t36.5 -11.5l69 -5q53 -2 86.5 -25.5t33.5 -69.5 q0 -57 -52.5 -97.5t-143.5 -40.5q-76 0 -122 28.5t-46 72.5q0 26 15 45.5t34 28.5l27 -12q-20 -24 -20 -45q0 -33 32 -56.5t88 -23.5t90.5 24t34.5 61q0 56 -79 63l-63 5q-83 6 -83 65zM279 182q0 50 -21.5 77t-62.5 27q-85 0 -85 -103q0 -49 22 -76.5t64 -27.5q83 0 83 103 z" />
  484. <glyph horiz-adv-x="471" d="M144 -70h-62v458q0 67 -8 122l63 10l7 -7v-244q62 56 135 56q52 0 80.5 -29.5t28.5 -84.5v-281h-62v267q0 81 -73 81q-54 0 -109 -44v-304z" />
  485. <glyph horiz-adv-x="229" d="M155 479q0 -21 -13 -36.5t-33 -15.5q-18 0 -29.5 12.5t-11.5 31.5q0 20 14 35.5t33 15.5t29.5 -11.5t10.5 -31.5zM83 -70v263q0 67 -8 122l63 10l7 -7v-388h-62z" />
  486. <glyph horiz-adv-x="229" d="M154 479q0 -21 -12.5 -36.5t-32.5 -15.5q-19 0 -30 12.5t-11 31.5q0 21 13.5 36t33.5 15q39 0 39 -43zM69 -269l-27 26q41 66 41 157v279q0 65 -7 122l62 10l8 -7v-404q0 -61 -18.5 -103.5t-58.5 -79.5z" />
  487. <glyph horiz-adv-x="426" d="M82 388q0 58 -8 122l63 10l7 -7v-364h63q27 35 124 176l47 -9l5 -7l-123 -163q50 -76 147 -216l-69 -8q-54 75 -127 188h-67v-180h-62v458z" />
  488. <glyph horiz-adv-x="223" d="M139 -70h-62v458q0 58 -8 122l63 10l7 -7v-583z" />
  489. <glyph horiz-adv-x="705" d="M148 -70h-62v265q0 57 -16 116l57 14q11 -25 18 -58q63 58 132 58q78 0 100 -63q65 63 137 63q52 0 80 -28.5t28 -80.5v-286h-63v273q0 75 -70 75q-51 0 -106 -46q1 -5 1 -16v-286h-62v273q0 75 -70 75q-52 0 -104 -45v-303z" />
  490. <glyph horiz-adv-x="475" d="M148 -70h-62v265q0 57 -16 116l57 14q11 -24 18 -59q64 59 138 59q52 0 80.5 -29.5t28.5 -84.5v-281h-62v267q0 81 -73 81q-53 0 -109 -45v-303z" />
  491. <glyph horiz-adv-x="473" d="M413 126q0 -97 -52.5 -150.5t-128.5 -53.5q-77 0 -124.5 53t-47.5 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM125 125q0 -73 28.5 -117t81.5 -44q51 0 81.5 41.5t30.5 116.5q0 74 -28 117.5t-81 43.5q-51 0 -82 -40.5t-31 -117.5z" />
  492. <glyph horiz-adv-x="477" d="M86 -260v455q0 54 -16 116l57 14q11 -26 15 -45q45 45 115 45q69 0 114 -52.5t45 -144.5q0 -93 -46.5 -149.5t-128.5 -56.5q-50 0 -93 19v-80q0 -62 7 -119l-62 -10zM236 281q-53 0 -88 -37v-261q42 -21 83 -21q58 0 89.5 43t31.5 119q0 77 -31.5 117t-84.5 40z" />
  493. <glyph horiz-adv-x="475" d="M328 -260v223q-44 -41 -107 -41q-72 0 -116.5 53t-44.5 145q0 98 55.5 151.5t145.5 53.5q38 0 79 -12l51 12v-461q0 -65 7 -122l-62 -10zM125 125q0 -73 30 -117t84 -44q52 0 89 35v279q-35 7 -58 7q-69 0 -107 -41.5t-38 -118.5z" />
  494. <glyph horiz-adv-x="323" d="M148 -70h-62v265q0 57 -16 116l57 14q15 -38 20 -70q62 70 119 70q23 0 39 -10l-12 -59q-23 7 -37 7q-53 0 -108 -45v-288z" />
  495. <glyph horiz-adv-x="369" d="M307 302l-7 -53q-49 30 -101 30q-38 0 -60.5 -16t-22.5 -42q0 -24 21 -41.5t51 -30t60 -26.5t51 -37.5t21 -56.5q0 -48 -41 -77.5t-108 -29.5q-70 0 -122 26l7 53q57 -33 119 -33q39 0 61 15.5t22 40.5q0 23 -21 40.5t-51 30t-60 26.5t-51 38t-21 57q0 48 40.5 78.5 t107.5 30.5q54 0 105 -23z" />
  496. <glyph horiz-adv-x="304" d="M262 279l-114 1v-223q0 -47 15.5 -67t47.5 -20q33 0 65 20l8 -43q-39 -25 -91 -25q-107 0 -107 130v228l-60 1v28l61 8l15 92l41 4l8 -8l-3 -88h111l6 -7z" />
  497. <glyph horiz-adv-x="468" d="M83 193q0 42 -6 122l61 10l7 -7v-271q0 -75 70 -75q50 0 103 45v300l62 8v-285q0 -56 16 -109l-53 -9q-15 31 -19 58h-3q-61 -58 -130 -58q-52 0 -80 28t-28 78v165z" />
  498. <glyph horiz-adv-x="394" d="M370 313l-145 -386h-56l-145 393l64 5l65 -189q40 -104 48 -153h1q11 50 50 153l65 189l48 -5z" />
  499. <glyph horiz-adv-x="631" d="M153 -73l-129 393l63 5l57 -184q28 -82 44 -151h1q12 55 43 147l57 186h63l55 -180q39 -116 45 -152h1q9 45 44 149l57 185l48 -5l5 -7l-128 -386h-61l-62 190q-33 100 -40 142h-2q-5 -40 -38 -142l-62 -190h-61z" />
  500. <glyph horiz-adv-x="395" d="M298 -70l-107 163l-105 -163h-53l-3 7l126 186l-126 193l62 9l111 -173l107 173l53 -5l2 -7l-127 -189l127 -194h-67z" />
  501. <glyph horiz-adv-x="388" d="M370 313l-141 -372q-70 -196 -201 -209l-11 60q109 12 164 147l-18 1l-139 380l64 5l65 -189q40 -104 48 -153h1q11 50 50 153l65 189l48 -5z" />
  502. <glyph horiz-adv-x="364" d="M32 264l4 53h286l7 -39l-230 -298l112 1q73 0 124 5l-5 -56h-294l-6 40l232 298z" />
  503. <glyph horiz-adv-x="421" d="M337 402q0 -64 19 -112l-55 -8q-12 23 -20 55h-1q-17 -23 -51.5 -39t-74.5 -16q-49 0 -77 25.5t-28 66.5q0 63 64 96t163 39v49q0 78 -85 78q-64 0 -125 -36l-3 52q68 33 142 33q65 0 99.5 -30.5t34.5 -84.5q0 -29 -1 -90t-1 -78zM112 384q0 -25 17 -42t48 -18 q58 2 99 43v111q-72 -5 -118 -29t-46 -65z" />
  504. <glyph horiz-adv-x="473" d="M412 485q0 -97 -48 -150t-128 -53q-50 0 -98 16l-56 -16v466q0 58 -8 122l63 10l7 -7v-228q43 40 108 40q73 0 116.5 -53.5t43.5 -146.5zM234 641q-53 0 -90 -34v-270q36 -14 85 -14q56 0 87 40.5t31 117.5q0 75 -29 117.5t-84 42.5z" />
  505. <glyph horiz-adv-x="405" d="M362 659l-16 -53q-42 30 -95 30q-58 0 -92 -38.5t-34 -110.5t33.5 -114t94.5 -42q53 0 101 29l6 -46q-51 -32 -119 -32q-81 0 -131 52.5t-50 145.5q0 96 52.5 150.5t138.5 54.5q62 0 111 -26z" />
  506. <glyph horiz-adv-x="475" d="M322 870l62 10l7 -7v-475q0 -57 20 -108l-56 -8q-8 14 -20 54h-1q-39 -54 -113 -54q-71 0 -116 52.5t-45 140.5q0 100 55.5 155t139.5 55q40 0 73 -12v75q0 74 -6 122zM125 482q0 -73 31.5 -115t84.5 -42t87 40v268q-38 12 -70 12q-59 0 -96 -41.5t-37 -121.5z" />
  507. <glyph horiz-adv-x="430" d="M378 490l-12 -12h-240q3 -73 38 -110t93 -37q55 0 107 32l5 -45q-52 -36 -126 -36q-83 0 -133 52.5t-50 144.5q0 96 51.5 151t126.5 55q64 0 102.5 -41t38.5 -109q0 -30 -1 -45zM234 643q-43 0 -73.5 -35.5t-34.5 -99.5l189 5q1 9 1 28q0 46 -22 74t-60 28z" />
  508. <glyph horiz-adv-x="278" d="M151 290h-62v345l-61 3v27l61 8q-2 54 -2 70q0 65 35 101t100 36q55 0 94 -22l-14 -52q-40 25 -82 25q-72 0 -72 -87q0 -8 1 -34t1 -37h109l5 -7l-2 -33l-111 2v-345z" />
  509. <glyph horiz-adv-x="411" d="M99 347q0 37 33 65q-38 15 -60.5 47.5t-22.5 77.5q0 63 39.5 105.5t108.5 42.5q52 0 84 -25q33 35 92 35l8 -4l-1 -50h-79q40 -38 40 -95q0 -62 -39.5 -103.5t-106.5 -42.5q-31 3 -32 3q-12 -15 -12 -34q0 -18 10.5 -27.5t36.5 -10.5l69 -5q53 -3 86.5 -26t33.5 -69 q0 -57 -52 -98t-144 -41q-76 0 -122 29t-46 73q0 25 15 44.5t34 28.5l27 -12q-20 -22 -20 -45q0 -33 32 -56.5t88 -23.5q55 0 90 24t35 61q0 56 -79 63l-63 5q-83 7 -83 64zM279 542q0 50 -21.5 77t-62.5 27q-85 0 -85 -103q0 -49 22 -76.5t64 -27.5q83 0 83 103z" />
  510. <glyph horiz-adv-x="471" d="M144 290h-62v458q0 67 -8 122l63 10l7 -7v-244q62 56 135 56q52 0 80.5 -29.5t28.5 -84.5v-281h-62v267q0 81 -73 81q-54 0 -109 -44v-304z" />
  511. <glyph horiz-adv-x="229" d="M155 839q0 -21 -13 -36.5t-33 -15.5q-18 0 -29.5 12.5t-11.5 31.5q0 20 14 35.5t33 15.5t29.5 -11.5t10.5 -31.5zM83 290v263q0 67 -8 122l63 10l7 -7v-388h-62z" />
  512. <glyph horiz-adv-x="229" d="M154 839q0 -21 -12.5 -36.5t-32.5 -15.5q-19 0 -30 12.5t-11 31.5q0 21 13.5 36t33.5 15q39 0 39 -43zM69 92l-27 25q41 66 41 158v278q0 65 -7 122l62 10l8 -7v-403q0 -62 -18.5 -104.5t-58.5 -78.5z" />
  513. <glyph horiz-adv-x="426" d="M82 748q0 58 -8 122l63 10l7 -7v-364h63q27 35 124 176l47 -9l5 -7l-123 -163q50 -76 147 -216l-69 -8q-54 75 -127 188h-67v-180h-62v458z" />
  514. <glyph horiz-adv-x="223" d="M139 290h-62v458q0 58 -8 122l63 10l7 -7v-583z" />
  515. <glyph horiz-adv-x="705" d="M148 290h-62v265q0 57 -16 116l57 14q11 -25 18 -58q63 58 132 58q78 0 100 -63q65 63 137 63q52 0 80 -28.5t28 -80.5v-286h-63v273q0 75 -70 75q-51 0 -106 -46q1 -5 1 -16v-286h-62v273q0 75 -70 75q-52 0 -104 -45v-303z" />
  516. <glyph horiz-adv-x="473" d="M413 486q0 -97 -52.5 -150.5t-128.5 -53.5q-77 0 -124.5 53t-47.5 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM125 485q0 -73 28.5 -116.5t81.5 -43.5q51 0 81.5 41.5t30.5 115.5t-28 117.5t-81 43.5q-51 0 -82 -40.5t-31 -117.5z" />
  517. <glyph horiz-adv-x="477" d="M86 100v455q0 54 -16 116l57 14q11 -26 15 -45q45 45 115 45q69 0 114 -52.5t45 -144.5q0 -93 -46.5 -149.5t-128.5 -56.5q-50 0 -93 19v-80q0 -62 7 -119l-62 -10zM236 641q-53 0 -88 -37v-261q40 -20 83 -20q58 0 89.5 42.5t31.5 118.5q0 77 -31.5 117t-84.5 40z" />
  518. <glyph horiz-adv-x="475" d="M328 100v223q-44 -41 -107 -41q-72 0 -116.5 53t-44.5 145q0 98 55.5 151.5t145.5 53.5q38 0 79 -12l51 12v-461q0 -65 7 -122l-62 -10zM125 485q0 -73 30 -116.5t84 -43.5q53 0 89 34v279q-35 7 -58 7q-69 0 -107 -41.5t-38 -118.5z" />
  519. <glyph horiz-adv-x="323" d="M148 290h-62v265q0 57 -16 116l57 14q15 -38 20 -70q62 70 119 70q23 0 39 -10l-12 -59q-23 7 -37 7q-53 0 -108 -45v-288z" />
  520. <glyph horiz-adv-x="369" d="M307 662l-7 -53q-49 30 -101 30q-38 0 -60.5 -16t-22.5 -42q0 -24 21 -41.5t51 -30t60 -26.5t51 -37.5t21 -56.5q0 -48 -41 -77.5t-108 -29.5q-71 0 -122 27l7 52q57 -33 119 -33q39 0 61 15.5t22 40.5q0 23 -21 40.5t-51 30t-60 26.5t-51 38t-21 57q0 48 40.5 78.5 t107.5 30.5q54 0 105 -23z" />
  521. <glyph horiz-adv-x="304" d="M262 639l-114 1v-223q0 -86 63 -86q35 0 65 19l8 -43q-42 -25 -91 -25q-107 0 -107 130v228l-60 1v28l61 8l15 92l41 4l8 -8l-3 -88h111l6 -7z" />
  522. <glyph horiz-adv-x="468" d="M83 553q0 42 -6 122l61 10l7 -7v-271q0 -75 70 -75q50 0 103 45v300l62 8v-285q0 -57 16 -108l-53 -10q-15 32 -19 59h-3q-61 -59 -130 -59q-52 0 -80 28t-28 78v165z" />
  523. <glyph horiz-adv-x="394" d="M370 673l-145 -386h-56l-145 393l64 5l65 -189q40 -104 48 -152h1q11 50 50 152l65 189l48 -5z" />
  524. <glyph horiz-adv-x="631" d="M153 287l-129 393l63 5l57 -184q28 -82 44 -151h1q12 55 43 147l57 186h63l55 -180q39 -116 45 -152h1q9 45 44 149l57 185l48 -5l5 -7l-128 -386h-61l-62 190q-33 100 -40 142h-2q-5 -40 -38 -142l-62 -190h-61z" />
  525. <glyph horiz-adv-x="395" d="M298 290l-107 163l-105 -163h-53l-3 7l126 186l-126 193l62 9l111 -173l107 173l53 -5l2 -7l-127 -189l127 -194h-67z" />
  526. <glyph horiz-adv-x="388" d="M370 673l-141 -372q-70 -195 -201 -209l-11 60q109 12 164 148h-18l-139 380l64 5l65 -189q40 -104 48 -152h1q11 50 50 152l65 189l48 -5z" />
  527. <glyph horiz-adv-x="364" d="M32 624l4 53h286l7 -39l-230 -298l112 2q83 0 124 4l-5 -56h-294l-6 40l232 298z" />
  528. <glyph horiz-adv-x="270" d="M219 744l4 -14q-59 -89 -160 -156l-25 13q79 99 111 171zM42 -256l-26 33q81 67 81 189v373q0 77 -9 155l75 12l9 -8v-524q0 -87 -32 -141.5t-98 -88.5z" />
  529. <glyph horiz-adv-x="1044" d="M649 0h-75v589q0 69 -3 101q-19 3 -39 3q-69 0 -110 -29t-41 -79q0 -64 51 -112l-19 -63q-52 37 -116 37q-70 0 -111.5 -50.5t-41.5 -144.5t41 -149t115 -55q61 0 123 38l6 -55q-59 -41 -143 -41q-100 0 -160.5 67t-60.5 187q0 123 64 192.5t168 69.5q27 0 59 -5 q-35 44 -35 98q0 69 64.5 113t172.5 44q41 0 91 -8v-313q77 71 165 71q63 0 98 -37.5t35 -108.5v-360h-75v344q0 105 -90 105q-64 0 -133 -58v-391z" />
  530. <glyph horiz-adv-x="830" d="M571 496q13 35 13 83q0 54 -23.5 84t-67.5 30q-46 0 -74 -29t-28 -80q0 -58 41 -111l-19 -63q-52 37 -116 37q-71 0 -112 -50.5t-41 -145.5q0 -93 41 -148t114 -55q62 0 124 38l6 -55q-59 -41 -142 -41q-101 0 -161.5 66.5t-60.5 186.5q0 124 64 193.5t169 69.5 q32 0 62 -6q-22 41 -22 91q0 69 46.5 112t118.5 43q69 0 113 -41t44 -115q0 -44 -16 -94h136l7 -8l-4 -39l-139 1v-289q0 -113 78 -113q39 0 79 25l9 -52q-49 -31 -110 -31q-40 0 -68 15.5t-40.5 42.5t-17.5 52t-5 53v298l-70 1v34z" />
  531. <glyph horiz-adv-x="994" d="M599 0h-75v589q0 53 -3 101q-21 3 -39 3q-69 0 -110.5 -29t-41.5 -81q0 -61 40 -107l-9 -64q-63 39 -123 39q-47 0 -74.5 -21t-27.5 -55q0 -31 25.5 -54t62 -39t73 -34t62 -48.5t25.5 -72.5q0 -61 -49.5 -99t-130.5 -38q-84 0 -149 34l9 63q67 -41 144 -41q48 0 75 20.5 t27 53.5q0 30 -25.5 52.5t-62 38t-73.5 33.5t-62.5 48.5t-25.5 73.5q0 63 49 101.5t130 38.5q36 0 64 -7q-34 46 -34 98q0 71 64.5 115t172.5 44q42 0 92 -8v-313q76 71 164 71q63 0 98 -37.5t35 -108.5v-360h-75v344q0 105 -89 105q-64 0 -133 -58v-391z" />
  532. <glyph horiz-adv-x="526" d="M92 0h-72l171 462q5 14 14.5 41.5t13.5 39.5l77 4l11 -10l199 -537h-76l-56 148h-227zM207 305l-39 -102h185l-38 102q-40 112 -53 168h-2q-13 -55 -53 -168z" />
  533. <glyph horiz-adv-x="526" d="M352 784l4 -13q-59 -89 -160 -156l-25 12q79 101 111 171zM92 0h-72l171 462q5 14 14.5 41.5t13.5 39.5l77 4l11 -10l199 -537h-76l-56 148h-227zM207 305l-39 -102h185l-38 102q-40 112 -53 168h-2q-13 -55 -53 -168z" />
  534. <glyph horiz-adv-x="526" d="M357 777h35q-10 -65 -45 -102.5t-88 -37.5q-50 0 -84 36.5t-41 99.5l34 5q10 -38 35.5 -60t61.5 -22q33 0 57.5 22t34.5 59zM92 0h-72l171 462q5 14 14.5 41.5t13.5 39.5l77 4l11 -10l199 -537h-76l-56 148h-227zM207 305l-39 -102h185l-38 102q-40 112 -53 168h-2 q-13 -55 -53 -168z" />
  535. <glyph horiz-adv-x="526" d="M380 799l24 -18q-63 -84 -104 -156l-61 -7q-53 87 -113 163l24 18q47 -39 119 -117q57 67 111 117zM92 0h-72l171 462q5 14 14.5 41.5t13.5 39.5l77 4l11 -10l199 -537h-76l-56 148h-227zM207 305l-39 -102h185l-38 102q-40 112 -53 168h-2q-13 -55 -53 -168z" />
  536. <glyph horiz-adv-x="526" d="M150 613l-24 18q64 85 104 157l61 6q47 -78 113 -163l-24 -18q-48 41 -120 117q-56 -65 -110 -117zM92 0h-72l171 462q5 14 14.5 41.5t13.5 39.5l77 4l11 -10l199 -537h-76l-56 148h-227zM207 305l-39 -102h185l-38 102q-40 112 -53 168h-2q-13 -55 -53 -168z" />
  537. <glyph horiz-adv-x="526" d="M213 710q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t39 18.5q20 0 32.5 -14.5t12.5 -37.5zM414 710q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t38 18.5q21 0 33.5 -14.5t12.5 -37.5zM92 0h-72l171 462q5 14 14.5 41.5 t13.5 39.5l77 4l11 -10l199 -537h-76l-56 148h-227zM207 305l-39 -102h185l-38 102q-40 112 -53 168h-2q-13 -55 -53 -168z" />
  538. <glyph horiz-adv-x="526" d="M92 0h-72l171 462q5 14 14.5 41.5t13.5 39.5l77 4l11 -10l199 -537h-76l-56 148h-227zM207 305l-39 -102h185l-38 102q-40 112 -53 168h-2q-13 -55 -53 -168zM317 -159q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -37 15.5t-14 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15 t13.5 -39z" />
  539. <glyph horiz-adv-x="526" d="M331 617q-102 69 -160 156l5 14l69 14q32 -72 111 -171zM92 0h-72l171 462q5 14 14.5 41.5t13.5 39.5l77 4l11 -10l199 -537h-76l-56 148h-227zM207 305l-39 -102h185l-38 102q-40 112 -53 168h-2q-13 -55 -53 -168z" />
  540. <glyph horiz-adv-x="526" d="M127 680v49h273v-49h-273zM92 0h-72l171 462q5 14 14.5 41.5t13.5 39.5l77 4l11 -10l199 -537h-76l-56 148h-227zM207 305l-39 -102h185l-38 102q-40 112 -53 168h-2q-13 -55 -53 -168z" />
  541. <glyph horiz-adv-x="526" d="M92 0h-72l171 462q5 14 14.5 41.5t13.5 39.5l77 4l11 -10l199 -537q-112 -62 -112 -126q0 -49 53 -49q24 0 55 12l13 -31q-39 -32 -92 -32q-44 0 -70 22t-26 61q0 81 119 143h-16l-56 148h-227zM207 305l-39 -102h185l-38 102q-40 112 -53 168h-2q-13 -55 -53 -168z" />
  542. <glyph horiz-adv-x="526" d="M358 702q0 -37 -27.5 -63t-67.5 -26q-35 0 -60 22t-25 55q0 37 28.5 63t68.5 26q36 0 59.5 -22t23.5 -55zM221 694q0 -21 12.5 -34t33.5 -13q20 0 34 15t14 36t-11.5 34t-32.5 13t-35.5 -15t-14.5 -36zM92 0h-72l171 462q5 14 14.5 41.5t13.5 39.5l77 4l11 -10l199 -537 h-76l-56 148h-227zM207 305l-39 -102h185l-38 102q-40 112 -53 168h-2q-13 -55 -53 -168z" />
  543. <glyph horiz-adv-x="526" d="M356 1026l5 -13q-60 -90 -161 -156l-25 12q80 102 112 171zM358 702q0 -37 -27.5 -63t-67.5 -26q-35 0 -60 22t-25 55q0 37 28.5 63t68.5 26q36 0 59.5 -22t23.5 -55zM221 694q0 -21 12.5 -34t33.5 -13q20 0 34 15t14 36t-11.5 34t-32.5 13t-35.5 -15t-14.5 -36zM92 0 h-72l171 462q5 14 14.5 41.5t13.5 39.5l77 4l11 -10l199 -537h-76l-56 148h-227zM207 305l-39 -102h185l-38 102q-40 112 -53 168h-2q-13 -55 -53 -168z" />
  544. <glyph horiz-adv-x="526" d="M195 764q28 0 72.5 -28t64.5 -28q33 0 60 53l24 -4q-5 -44 -28.5 -78t-60.5 -34q-28 0 -73.5 28.5t-64.5 28.5q-33 0 -60 -54l-24 4q6 45 28.5 78.5t61.5 33.5zM92 0h-72l171 462q5 14 14.5 41.5t13.5 39.5l77 4l11 -10l199 -537h-76l-56 148h-227zM207 305l-39 -102h185 l-38 102q-40 112 -53 168h-2q-13 -55 -53 -168z" />
  545. <glyph horiz-adv-x="680" d="M92 0h-72l202 461q20 47 29 78h337l9 -8l-2 -52l-231 5l26 -191l191 3l-2 -56l-182 2l25 -187l222 5v-60h-290q-15 121 -18 148h-178q-7 -16 -66 -148zM294 472q-26 -76 -111 -269h146q-22 189 -28 270z" />
  546. <glyph horiz-adv-x="680" d="M440 784l5 -13q-58 -88 -161 -156l-25 12q76 95 112 171zM92 0h-72l202 461q20 47 29 78h337l9 -8l-2 -52l-231 5l26 -191l191 3l-2 -56l-182 2l25 -187l222 5v-60h-290q-15 121 -18 148h-178q-7 -16 -66 -148zM294 472q-26 -76 -111 -269h146q-22 189 -28 270z" />
  547. <glyph horiz-adv-x="497" d="M231 0h-155v415q0 67 -7 124h166q88 0 140 -38t52 -101q0 -86 -97 -119q59 -13 90.5 -48t31.5 -85q0 -68 -60 -108t-161 -40zM225 485h-74v-183h72q62 0 95 23.5t33 65.5q0 43 -32.5 68.5t-93.5 25.5zM228 249h-77v-194h80q69 0 106 25.5t37 71.5q0 97 -146 97z" />
  548. <glyph horiz-adv-x="508" d="M460 94l9 -61q-64 -41 -161 -41q-113 0 -180.5 72t-67.5 198q0 129 71.5 207t184.5 78q89 0 148 -34l-15 -65q-56 37 -130 37q-80 0 -130.5 -58t-50.5 -161q0 -95 48 -153t134 -58q79 0 140 39z" />
  549. <glyph horiz-adv-x="508" d="M377 784l5 -13q-58 -87 -160 -156l-25 12q79 101 111 171zM460 94l9 -61q-64 -41 -161 -41q-113 0 -180.5 72t-67.5 198q0 129 71.5 207t184.5 78q89 0 148 -34l-15 -65q-56 37 -130 37q-80 0 -130.5 -58t-50.5 -161q0 -95 48 -153t134 -58q79 0 140 39z" />
  550. <glyph horiz-adv-x="508" d="M406 799l24 -18q-58 -76 -104 -156l-62 -7q-50 85 -112 163l24 18q51 -44 119 -117q57 67 111 117zM460 94l9 -61q-64 -41 -161 -41q-113 0 -180.5 72t-67.5 198q0 129 71.5 207t184.5 78q89 0 148 -34l-15 -65q-56 37 -130 37q-80 0 -130.5 -58t-50.5 -161 q0 -95 48 -153t134 -58q79 0 140 39z" />
  551. <glyph horiz-adv-x="508" d="M400 -131q0 -42 -44 -66t-107 -30l-4 32q93 16 93 57q0 35 -66 39l-10 16l24 76q-104 7 -165 77.5t-61 191.5q0 129 71.5 207t184.5 78q89 0 148 -34l-15 -65q-56 37 -130 37q-80 0 -130.5 -58t-50.5 -161q0 -95 48 -153t134 -58q79 0 140 39l9 -61q-54 -35 -138 -40 l-18 -55q38 -5 62.5 -22t24.5 -47z" />
  552. <glyph horiz-adv-x="508" d="M176 613l-24 18q60 80 103 157l62 6q47 -78 113 -163l-25 -18q-57 50 -119 117q-56 -65 -110 -117zM460 94l9 -61q-64 -41 -161 -41q-113 0 -180.5 72t-67.5 198q0 129 71.5 207t184.5 78q89 0 148 -34l-15 -65q-56 37 -130 37q-80 0 -130.5 -58t-50.5 -161 q0 -95 48 -153t134 -58q79 0 140 39z" />
  553. <glyph horiz-adv-x="508" d="M343 711q0 -26 -15.5 -44.5t-41.5 -18.5q-23 0 -36.5 15.5t-13.5 38.5q0 25 17 44t41 19q22 0 35.5 -15t13.5 -39zM460 94l9 -61q-64 -41 -161 -41q-113 0 -180.5 72t-67.5 198q0 129 71.5 207t184.5 78q89 0 148 -34l-15 -65q-56 37 -130 37q-80 0 -130.5 -58 t-50.5 -161q0 -95 48 -153t134 -58q79 0 140 39z" />
  554. <glyph horiz-adv-x="573" d="M513 272q0 -126 -82.5 -199t-206.5 -73h-148v415q0 67 -7 124h162q124 0 203 -72t79 -195zM224 484h-73v-428h76q97 0 152 57t55 156q0 98 -56 156.5t-154 58.5z" />
  555. <glyph horiz-adv-x="573" d="M513 272q0 -126 -82.5 -199t-206.5 -73h-148v243h-80v45h80v127q0 67 -7 124h162q124 0 203 -72t79 -195zM308 243h-157v-187h76q97 0 152 57t55 156q0 98 -56 156.5t-154 58.5h-73v-196h157v-45z" />
  556. <glyph horiz-adv-x="573" d="M392 799l24 -18q-63 -84 -104 -156l-61 -7q-53 87 -113 163l24 18q47 -39 119 -117q57 67 111 117zM513 272q0 -126 -82.5 -199t-206.5 -73h-148v415q0 67 -7 124h162q124 0 203 -72t79 -195zM224 484h-73v-428h76q97 0 152 57t55 156q0 98 -56 156.5t-154 58.5z" />
  557. <glyph horiz-adv-x="573" d="M513 272q0 -126 -82.5 -199t-206.5 -73h-148v243h-80v45h80v127q0 67 -7 124h162q124 0 203 -72t79 -195zM308 243h-157v-187h76q97 0 152 57t55 156q0 98 -56 156.5t-154 58.5h-73v-196h157v-45z" />
  558. <glyph horiz-adv-x="573" d="M513 272q0 -126 -82.5 -199t-206.5 -73h-148v415q0 67 -7 124h162q124 0 203 -72t79 -195zM224 484h-73v-428h76q97 0 152 57t55 156q0 98 -56 156.5t-154 58.5zM333 -159q0 -26 -15.5 -44.5t-41.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5 q22 0 35.5 -15t13.5 -39z" />
  559. <glyph horiz-adv-x="441" d="M405 60v-60h-329v415q0 67 -7 124h320l9 -8l-2 -52l-245 6v-192l207 3l-1 -56l-206 3v-188z" />
  560. <glyph horiz-adv-x="441" d="M321 784l5 -13q-58 -87 -160 -156l-25 12q79 101 111 171zM405 60v-60h-329v415q0 67 -7 124h320l9 -8l-2 -52l-245 6v-192l207 3l-1 -56l-206 3v-188z" />
  561. <glyph horiz-adv-x="441" d="M327 777h34q-9 -65 -44.5 -102.5t-87.5 -37.5q-50 0 -84 36.5t-41 99.5l34 5q10 -38 35.5 -60t60.5 -22q33 0 57.5 22t35.5 59zM405 60v-60h-329v415q0 67 -7 124h320l9 -8l-2 -52l-245 6v-192l207 3l-1 -56l-206 3v-188z" />
  562. <glyph horiz-adv-x="441" d="M350 799l24 -18q-58 -76 -104 -156l-62 -7q-50 85 -112 163l24 18q51 -44 119 -117q57 67 111 117zM405 60v-60h-329v415q0 67 -7 124h320l9 -8l-2 -52l-245 6v-192l207 3l-1 -56l-206 3v-188z" />
  563. <glyph horiz-adv-x="441" d="M120 613l-24 18q60 80 103 157l62 6q46 -78 113 -163l-24 -18q-57 49 -120 117q-56 -65 -110 -117zM405 60v-60h-329v415q0 67 -7 124h320l9 -8l-2 -52l-245 6v-192l207 3l-1 -56l-206 3v-188z" />
  564. <glyph horiz-adv-x="441" d="M183 710q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t38 18.5q21 0 33.5 -14.5t12.5 -37.5zM384 710q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 15.5 43.5t38.5 18.5q21 0 33.5 -14.5t12.5 -37.5zM405 60v-60h-329v415q0 67 -7 124 h320l9 -8l-2 -52l-245 6v-192l207 3l-1 -56l-206 3v-188z" />
  565. <glyph horiz-adv-x="441" d="M287 711q0 -26 -15.5 -44.5t-41.5 -18.5q-23 0 -36.5 15.5t-13.5 38.5q0 25 17 44t41 19q22 0 35.5 -15t13.5 -39zM405 60v-60h-329v415q0 67 -7 124h320l9 -8l-2 -52l-245 6v-192l207 3l-1 -56l-206 3v-188z" />
  566. <glyph horiz-adv-x="441" d="M405 60v-60h-329v415q0 67 -7 124h320l9 -8l-2 -52l-245 6v-192l207 3l-1 -56l-206 3v-188zM300 -159q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -37 15.5t-14 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39z" />
  567. <glyph horiz-adv-x="441" d="M301 617q-101 67 -160 156l4 14l70 14q32 -72 111 -171zM405 60v-60h-329v415q0 67 -7 124h320l9 -8l-2 -52l-245 6v-192l207 3l-1 -56l-206 3v-188z" />
  568. <glyph horiz-adv-x="441" d="M97 680v49h273v-49h-273zM405 60v-60h-329v415q0 67 -7 124h320l9 -8l-2 -52l-245 6v-192l207 3l-1 -56l-206 3v-188z" />
  569. <glyph horiz-adv-x="441" d="M405 0q-112 -61 -112 -126q0 -49 52 -49q24 0 56 12l13 -31q-40 -32 -92 -32q-45 0 -71 22t-26 61q0 81 120 143h-269v415q0 67 -7 124h320l9 -8l-2 -52l-245 6v-192l207 3l-1 -56l-206 3v-188l254 5v-60z" />
  570. <glyph horiz-adv-x="441" d="M165 764q28 0 72 -28t65 -28q33 0 60 53l24 -4q-5 -44 -28.5 -78t-60.5 -34q-29 0 -74 28.5t-65 28.5q-32 0 -59 -54l-24 4q5 44 28 78t62 34zM405 60v-60h-329v415q0 67 -7 124h320l9 -8l-2 -52l-245 6v-192l207 3l-1 -56l-206 3v-188z" />
  571. <glyph horiz-adv-x="563" d="M64 239l15 15h345v8q0 112 -53.5 169.5t-144.5 57.5q-78 0 -148 -42l-5 55q69 46 169 46q119 0 190 -72t71 -201q0 -128 -71 -206.5t-182 -78.5q-89 0 -139.5 52.5t-50.5 153.5q0 24 4 43zM136 186q0 -70 31 -107t88 -37q65 0 111 46t56 130l-285 -8q-1 -7 -1 -24z" />
  572. <glyph horiz-adv-x="415" d="M151 0h-75v415q0 67 -7 124h314l9 -8l-1 -52l-240 6v-202l202 2l-1 -57l-201 4v-232z" />
  573. <glyph horiz-adv-x="555" d="M486 239l8 -8l-2 -202q-76 -37 -177 -37q-119 0 -187 70.5t-68 196.5q0 132 74 210t200 78q83 0 143 -30l-13 -66q-58 36 -127 36q-91 0 -145 -57.5t-54 -163.5q0 -97 48 -155.5t138 -58.5q49 0 97 13v28q0 64 -8 138z" />
  574. <glyph horiz-adv-x="555" d="M370 784l4 -13q-59 -89 -160 -156l-25 12q79 101 111 171zM486 239l8 -8l-2 -202q-76 -37 -177 -37q-119 0 -187 70.5t-68 196.5q0 132 74 210t200 78q83 0 143 -30l-13 -66q-58 36 -127 36q-91 0 -145 -57.5t-54 -163.5q0 -97 48 -155.5t138 -58.5q49 0 97 13v28 q0 64 -8 138z" />
  575. <glyph horiz-adv-x="555" d="M375 777h35q-10 -65 -45 -102.5t-88 -37.5q-50 0 -84 36.5t-41 99.5l34 5q10 -38 35.5 -60t61.5 -22q33 0 57.5 22t34.5 59zM486 239l8 -8l-2 -202q-76 -37 -177 -37q-119 0 -187 70.5t-68 196.5q0 132 74 210t200 78q83 0 143 -30l-13 -66q-58 36 -127 36 q-91 0 -145 -57.5t-54 -163.5q0 -97 48 -155.5t138 -58.5q49 0 97 13v28q0 64 -8 138z" />
  576. <glyph horiz-adv-x="555" d="M398 799l24 -18q-63 -84 -104 -156l-61 -7q-53 87 -113 163l24 18q47 -39 119 -117q57 67 111 117zM486 239l8 -8l-2 -202q-76 -37 -177 -37q-119 0 -187 70.5t-68 196.5q0 132 74 210t200 78q83 0 143 -30l-13 -66q-58 36 -127 36q-91 0 -145 -57.5t-54 -163.5 q0 -97 48 -155.5t138 -58.5q49 0 97 13v28q0 64 -8 138z" />
  577. <glyph horiz-adv-x="555" d="M168 613l-24 18q64 85 104 157l61 6q47 -78 113 -163l-24 -18q-48 41 -120 117q-56 -65 -110 -117zM486 239l8 -8l-2 -202q-76 -37 -177 -37q-119 0 -187 70.5t-68 196.5q0 132 74 210t200 78q83 0 143 -30l-13 -66q-58 36 -127 36q-91 0 -145 -57.5t-54 -163.5 q0 -97 48 -155.5t138 -58.5q49 0 97 13v28q0 64 -8 138z" />
  578. <glyph horiz-adv-x="555" d="M486 239l8 -8l-2 -202q-76 -37 -177 -37q-119 0 -187 70.5t-68 196.5q0 132 74 210t200 78q83 0 143 -30l-13 -66q-58 36 -127 36q-91 0 -145 -57.5t-54 -163.5q0 -97 48 -155.5t138 -58.5q49 0 97 13v28q0 64 -8 138zM273 -312q30 52 41 94q-19 2 -31.5 16.5t-12.5 35.5 q0 23 14.5 40t38.5 17q23 0 37 -16t14 -44q0 -70 -73 -162z" />
  579. <glyph horiz-adv-x="555" d="M335 711q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -37 15.5t-14 38.5q0 25 17 44t41 19q22 0 35.5 -15t13.5 -39zM486 239l8 -8l-2 -202q-76 -37 -177 -37q-119 0 -187 70.5t-68 196.5q0 132 74 210t200 78q83 0 143 -30l-13 -66q-58 36 -127 36q-91 0 -145 -57.5 t-54 -163.5q0 -97 48 -155.5t138 -58.5q49 0 97 13v28q0 64 -8 138z" />
  580. <glyph horiz-adv-x="583" d="M151 0h-75v412q0 60 -7 127l73 8l9 -8v-243h281v116q0 70 -6 127l73 8l8 -8v-539h-75v240h-281v-240z" />
  581. <glyph horiz-adv-x="583" d="M151 0h-75v397h-75v45h74q-1 52 -6 97l73 8l9 -8v-97h281q-1 52 -6 97l73 8l8 -8v-97h75v-45h-75v-397h-75v240h-281v-240zM151 296h281v101h-281v-101z" />
  582. <glyph horiz-adv-x="583" d="M178 613l-24 18q64 85 104 157l61 6q47 -78 113 -163l-24 -18q-48 41 -120 117q-56 -65 -110 -117zM151 0h-75v412q0 60 -7 127l73 8l9 -8v-243h281v116q0 70 -6 127l73 8l8 -8v-539h-75v240h-281v-240z" />
  583. <glyph horiz-adv-x="583" d="M151 0h-75v412q0 60 -7 127l73 8l9 -8v-243h281v116q0 70 -6 127l73 8l8 -8v-539h-75v240h-281v-240zM345 -159q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -37 15.5t-14 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39z" />
  584. <glyph horiz-adv-x="226" d="M151 0h-75v412q0 60 -7 127l73 8l9 -8v-539z" />
  585. <glyph horiz-adv-x="226" d="M151 0h-75v412q0 60 -7 127l73 8l9 -8v-539z" />
  586. <glyph horiz-adv-x="226" d="M199 784l5 -13q-58 -88 -161 -156l-25 12q79 101 112 171zM151 0h-75v412q0 60 -7 127l73 8l9 -8v-539z" />
  587. <glyph horiz-adv-x="226" d="M189 777h35q-8 -65 -39.5 -103t-77.5 -38q-43 0 -73 36.5t-36 99.5l34 5q7 -38 28.5 -59.5t51.5 -21.5q28 0 48.5 22t28.5 59zM151 0h-75v412q0 60 -7 127l73 8l9 -8v-539z" />
  588. <glyph horiz-adv-x="226" d="M195 801l24 -13q-38 -82 -67 -160l-74 -6q-36 86 -76 166l23 13q45 -49 89 -116q42 69 81 116zM151 0h-75v412q0 60 -7 127l73 8l9 -8v-539z" />
  589. <glyph horiz-adv-x="226" d="M26 621l-24 13q38 82 67 160l74 6q36 -86 76 -166l-24 -13q-36 40 -89 115q-50 -79 -80 -115zM151 0h-75v412q0 60 -7 127l73 8l9 -8v-539z" />
  590. <glyph horiz-adv-x="226" d="M83 713q0 -26 -13.5 -44.5t-36.5 -18.5q-20 0 -32.5 15.5t-12.5 37.5q0 24 15.5 42.5t36.5 18.5q19 0 31 -14t12 -37zM234 713q0 -25 -14 -44t-37 -19q-20 0 -32 15.5t-12 37.5q0 24 15 42.5t36 18.5q20 0 32 -14t12 -37zM151 0h-75v412q0 60 -7 127l73 8l9 -8v-539z" />
  591. <glyph horiz-adv-x="226" d="M164 711q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 38.5q0 25 17 44t41 19q22 0 35 -15t13 -39zM151 0h-75v412q0 60 -7 127l73 8l9 -8v-539z" />
  592. <glyph horiz-adv-x="226" d="M151 0h-75v412q0 60 -7 127l73 8l9 -8v-539zM164 -159q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39z" />
  593. <glyph horiz-adv-x="226" d="M179 617q-103 68 -161 156l5 14l69 14q36 -78 112 -171zM151 0h-75v412q0 60 -7 127l73 8l9 -8v-539z" />
  594. <glyph horiz-adv-x="453" d="M151 0h-75v412q0 60 -7 127l73 8l9 -8v-539zM252 -149l-22 31q73 60 73 180v350q0 62 -9 125l75 10l9 -8v-477q0 -83 -29 -131t-97 -80z" />
  595. <glyph horiz-adv-x="226" d="M11 680v49h201v-49h-201zM151 0h-75v412q0 60 -7 127l73 8l9 -8v-539z" />
  596. <glyph horiz-adv-x="226" d="M151 0q-66 -63 -66 -118t53 -55q24 0 55 12l13 -31q-37 -32 -91 -32q-45 0 -71 23.5t-27 64.5q0 73 83 136h-24v412q0 60 -7 127l73 8l9 -8v-539z" />
  597. <glyph horiz-adv-x="226" d="M61 767q23 0 56.5 -28t47.5 -28q28 0 46 53l23 -4q-2 -42 -21.5 -76.5t-52.5 -34.5q-23 0 -57 28t-46 28q-30 0 -47 -54l-23 4q3 42 22.5 77t51.5 35zM151 0h-75v412q0 60 -7 127l73 8l9 -8v-539z" />
  598. <glyph horiz-adv-x="227" d="M27 -149l-23 31q73 60 73 180v350q0 71 -9 125l76 10l8 -8v-477q0 -83 -29 -131t-96 -80z" />
  599. <glyph horiz-adv-x="227" d="M27 -149l-23 31q73 60 73 180v350q0 71 -9 125l76 10l8 -8v-477q0 -83 -29 -131t-96 -80z" />
  600. <glyph horiz-adv-x="227" d="M25 621l-23 13q45 100 66 160l74 6q28 -68 76 -166l-23 -13q-43 48 -89 115q-47 -75 -81 -115zM27 -149l-23 31q73 60 73 180v350q0 71 -9 125l76 10l8 -8v-477q0 -83 -29 -131t-96 -80z" />
  601. <glyph horiz-adv-x="499" d="M76 412q0 68 -7 127l72 8l8 -8v-250h79q64 93 174 258l64 -9l6 -8l-182 -253l201 -277l-82 -7q-84 111 -179 241h-81v-234h-73v412z" />
  602. <glyph horiz-adv-x="499" d="M76 412q0 68 -7 127l72 8l8 -8v-250h79q64 93 174 258l64 -9l6 -8l-182 -253l201 -277l-82 -7q-84 111 -179 241h-81v-234h-73v412zM214 -312q30 52 41 94q-19 1 -31.5 16t-12.5 36q0 23 14.5 40t38.5 17q23 0 36.5 -16t13.5 -44q0 -68 -72 -162z" />
  603. <glyph horiz-adv-x="499" d="M76 412q0 68 -7 127l72 8l8 -8v-250h79q64 93 174 258l64 -9l6 -8l-182 -253l201 -277l-82 -7q-84 111 -179 241h-81v-234h-73v412z" />
  604. <glyph horiz-adv-x="414" d="M395 60v-60h-319v413q0 59 -7 126l73 8l9 -8v-484z" />
  605. <glyph horiz-adv-x="414" d="M249 784l5 -13q-58 -87 -160 -156l-25 12q79 101 111 171zM395 60v-60h-319v413q0 59 -7 126l73 8l9 -8v-484z" />
  606. <glyph horiz-adv-x="414" d="M355 585l7 -12q-16 -103 -76 -211l-26 4q28 126 29 215zM395 60v-60h-319v413q0 59 -7 126l73 8l9 -8v-484z" />
  607. <glyph horiz-adv-x="414" d="M395 60v-60h-319v413q0 59 -7 126l73 8l9 -8v-484zM185 -312q30 52 41 94q-19 2 -31.5 16.5t-12.5 35.5q0 22 14.5 39.5t38.5 17.5q23 0 37 -16t14 -44q0 -70 -73 -162z" />
  608. <glyph horiz-adv-x="414" d="M317 274q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39zM395 60v-60h-319v413q0 59 -7 126l73 8l9 -8v-484z" />
  609. <glyph horiz-adv-x="414" d="M395 60v-60h-319v213l-99 -55l-22 41l121 66v148q0 59 -7 126l73 8l9 -8v-232l130 72l23 -40l-153 -85v-199z" />
  610. <glyph horiz-adv-x="735" d="M606 547l9 -8l70 -539h-74l-27 204q-17 123 -27 251h-2q-22 -83 -80 -251l-69 -204h-84l-69 204q-54 152 -80 251h-2q-4 -53 -29 -251l-27 -204h-65l72 542l89 5l98 -265q39 -120 59 -213h1q23 95 59 213l96 260z" />
  611. <glyph horiz-adv-x="582" d="M297 318q106 -152 141 -221h2q-6 68 -6 299q0 66 -7 143l71 8l8 -9v-538h-74q-119 179 -152 227q-91 131 -137 214h-1q6 -67 6 -181v-260h-72v415q0 57 -7 124l77 8q29 -44 79.5 -120.5t71.5 -108.5z" />
  612. <glyph horiz-adv-x="582" d="M381 784l5 -13q-58 -88 -161 -156l-25 12q76 95 112 171zM297 318q106 -152 141 -221h2q-6 68 -6 299q0 66 -7 143l71 8l8 -9v-538h-74q-119 179 -152 227q-91 131 -137 214h-1q6 -67 6 -181v-260h-72v415q0 57 -7 124l77 8q29 -44 79.5 -120.5t71.5 -108.5z" />
  613. <glyph horiz-adv-x="582" d="M409 799l24 -18q-59 -79 -103 -156l-62 -7q-47 80 -113 163l24 18q42 -35 120 -117q56 65 110 117zM297 318q106 -152 141 -221h2q-6 68 -6 299q0 66 -7 143l71 8l8 -9v-538h-74q-119 179 -152 227q-91 131 -137 214h-1q6 -67 6 -181v-260h-72v415q0 57 -7 124l77 8 q29 -44 79.5 -120.5t71.5 -108.5z" />
  614. <glyph horiz-adv-x="582" d="M297 318q106 -152 141 -221h2q-6 68 -6 299q0 66 -7 143l71 8l8 -9v-538h-74q-119 179 -152 227q-91 131 -137 214h-1q6 -67 6 -181v-260h-72v415q0 57 -7 124l77 8q29 -44 79.5 -120.5t71.5 -108.5zM253 -312q30 52 41 94q-19 2 -31.5 16.5t-12.5 35.5q0 22 14.5 39.5 t38.5 17.5q23 0 37 -16t14 -44q0 -70 -73 -162z" />
  615. <glyph horiz-adv-x="582" d="M346 711q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 38.5q0 25 17 44t41 19q22 0 35 -15t13 -39zM297 318q106 -152 141 -221h2q-6 68 -6 299q0 66 -7 143l71 8l8 -9v-538h-74q-119 179 -152 227q-91 131 -137 214h-1q6 -67 6 -181v-260h-72v415q0 57 -7 124 l77 8q29 -44 79.5 -120.5t71.5 -108.5z" />
  616. <glyph horiz-adv-x="582" d="M148 0h-72v415q0 57 -7 124l77 8q29 -44 79.5 -120.5t71.5 -108.5q106 -152 141 -221h2q-6 76 -6 299q0 66 -7 143l71 8l8 -9v-476q0 -83 -29 -131t-96 -80l-23 31q59 44 70 123q-101 154 -148 222q-91 131 -137 214h-1q6 -67 6 -181v-260z" />
  617. <glyph horiz-adv-x="583" d="M27 -149l-23 31q73 60 73 180v353q0 71 -7 124l77 8q29 -44 79.5 -120t72.5 -109q108 -157 141 -221h1q-6 76 -6 299q0 81 -7 143l71 8l8 -9v-538h-74q-119 179 -152 227q-98 142 -136 214h-2q6 -67 6 -181v-198q0 -83 -28 -131t-94 -80z" />
  618. <glyph horiz-adv-x="582" d="M225 764q28 0 72 -28t64 -28q34 0 61 53l24 -4q-5 -44 -28.5 -78t-61.5 -34q-28 0 -73 28.5t-65 28.5q-31 0 -60 -54l-24 4q6 44 29 78t62 34zM297 318q106 -152 141 -221h2q-6 68 -6 299q0 66 -7 143l71 8l8 -9v-538h-74q-119 179 -152 227q-91 131 -137 214h-1 q6 -67 6 -181v-260h-72v415q0 57 -7 124l77 8q29 -44 79.5 -120.5t71.5 -108.5z" />
  619. <glyph horiz-adv-x="602" d="M542 271q0 -132 -70 -205.5t-176 -73.5q-104 0 -170 71.5t-66 197.5q0 130 70 208t178 78q104 0 169 -74.5t65 -201.5zM138 269q0 -98 43.5 -158.5t119.5 -60.5q75 0 118.5 58.5t43.5 160.5q0 100 -41 160t-116 60t-121.5 -59.5t-46.5 -160.5z" />
  620. <glyph horiz-adv-x="602" d="M389 784l5 -13q-58 -88 -161 -156l-25 12q76 95 112 171zM542 271q0 -132 -70 -205.5t-176 -73.5q-104 0 -170 71.5t-66 197.5q0 130 70 208t178 78q104 0 169 -74.5t65 -201.5zM138 269q0 -98 43.5 -158.5t119.5 -60.5q75 0 118.5 58.5t43.5 160.5q0 100 -41 160 t-116 60t-121.5 -59.5t-46.5 -160.5z" />
  621. <glyph horiz-adv-x="602" d="M395 777h34q-9 -65 -44.5 -102.5t-87.5 -37.5q-50 0 -84 36.5t-41 99.5l34 5q10 -38 35.5 -60t60.5 -22q32 0 57 22t36 59zM542 271q0 -132 -70 -205.5t-176 -73.5q-104 0 -170 71.5t-66 197.5q0 130 70 208t178 78q104 0 169 -74.5t65 -201.5zM138 269 q0 -98 43.5 -158.5t119.5 -60.5q75 0 118.5 58.5t43.5 160.5q0 100 -41 160t-116 60t-121.5 -59.5t-46.5 -160.5z" />
  622. <glyph horiz-adv-x="602" d="M417 799l24 -18q-59 -79 -103 -156l-62 -7q-47 80 -113 163l24 18q42 -35 120 -117q56 65 110 117zM542 271q0 -132 -70 -205.5t-176 -73.5q-104 0 -170 71.5t-66 197.5q0 130 70 208t178 78q104 0 169 -74.5t65 -201.5zM138 269q0 -98 43.5 -158.5t119.5 -60.5 q75 0 118.5 58.5t43.5 160.5q0 100 -41 160t-116 60t-121.5 -59.5t-46.5 -160.5z" />
  623. <glyph horiz-adv-x="602" d="M187 613l-24 18q59 77 104 157l62 6q50 -83 112 -163l-24 -18q-52 45 -119 117q-57 -67 -111 -117zM542 271q0 -132 -70 -205.5t-176 -73.5q-104 0 -170 71.5t-66 197.5q0 130 70 208t178 78q104 0 169 -74.5t65 -201.5zM138 269q0 -98 43.5 -158.5t119.5 -60.5 q75 0 118.5 58.5t43.5 160.5q0 100 -41 160t-116 60t-121.5 -59.5t-46.5 -160.5z" />
  624. <glyph horiz-adv-x="602" d="M251 710q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 15.5 43.5t38.5 18.5q21 0 33.5 -14.5t12.5 -37.5zM451 710q0 -25 -14 -43.5t-38 -18.5q-21 0 -34.5 15t-13.5 37q0 25 16 43.5t39 18.5q21 0 33 -14.5t12 -37.5zM542 271q0 -132 -70 -205.5t-176 -73.5 q-104 0 -170 71.5t-66 197.5q0 130 70 208t178 78q104 0 169 -74.5t65 -201.5zM138 269q0 -98 43.5 -158.5t119.5 -60.5q75 0 118.5 58.5t43.5 160.5q0 100 -41 160t-116 60t-121.5 -59.5t-46.5 -160.5z" />
  625. <glyph horiz-adv-x="602" d="M542 271q0 -132 -70 -205.5t-176 -73.5q-104 0 -170 71.5t-66 197.5q0 130 70 208t178 78q104 0 169 -74.5t65 -201.5zM138 269q0 -98 43.5 -158.5t119.5 -60.5q75 0 118.5 58.5t43.5 160.5q0 100 -41 160t-116 60t-121.5 -59.5t-46.5 -160.5zM354 -159 q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39z" />
  626. <glyph horiz-adv-x="602" d="M369 617q-103 68 -161 156l5 14l69 14q34 -73 112 -171zM542 271q0 -132 -70 -205.5t-176 -73.5q-104 0 -170 71.5t-66 197.5q0 130 70 208t178 78q104 0 169 -74.5t65 -201.5zM138 269q0 -98 43.5 -158.5t119.5 -60.5q75 0 118.5 58.5t43.5 160.5q0 100 -41 160t-116 60 t-121.5 -59.5t-46.5 -160.5z" />
  627. <glyph horiz-adv-x="602" d="M314 789l5 -14q-57 -90 -148 -158l-25 13q73 87 112 171zM448 789l5 -14q-57 -90 -148 -158l-25 13q74 88 111 171zM542 271q0 -132 -70 -205.5t-176 -73.5q-104 0 -170 71.5t-66 197.5q0 130 70 208t178 78q104 0 169 -74.5t65 -201.5zM138 269q0 -98 43.5 -158.5 t119.5 -60.5q75 0 118.5 58.5t43.5 160.5q0 100 -41 160t-116 60t-121.5 -59.5t-46.5 -160.5z" />
  628. <glyph horiz-adv-x="602" d="M165 680v49h272v-49h-272zM542 271q0 -132 -70 -205.5t-176 -73.5q-104 0 -170 71.5t-66 197.5q0 130 70 208t178 78q104 0 169 -74.5t65 -201.5zM138 269q0 -98 43.5 -158.5t119.5 -60.5q75 0 118.5 58.5t43.5 160.5q0 100 -41 160t-116 60t-121.5 -59.5t-46.5 -160.5z " />
  629. <glyph horiz-adv-x="602" d="M542 271q0 -173 -120 -246q-115 -73 -115 -145q0 -53 53 -53q23 0 55 12l13 -31q-38 -32 -93 -32q-44 0 -70 22.5t-26 63.5q0 70 87 132q-20 -2 -30 -2q-104 0 -170 71.5t-66 197.5q0 130 70 208t178 78q104 0 169 -74.5t65 -201.5zM138 269q0 -98 43.5 -158.5 t119.5 -60.5q75 0 118.5 58.5t43.5 160.5q0 100 -41 160t-116 60t-121.5 -59.5t-46.5 -160.5z" />
  630. <glyph horiz-adv-x="602" d="M542 271q0 -132 -70 -205.5t-176 -73.5q-101 0 -165 66l-65 -69l-32 30l69 75q-43 68 -43 167q0 130 70 208t178 78q97 0 160 -65l67 70l33 -30l-72 -76q46 -71 46 -175zM138 269q0 -66 20 -117l263 279q-42 58 -115 58q-75 0 -121.5 -59.5t-46.5 -160.5zM463 269 q0 69 -20 121l-262 -279q45 -61 120 -61t118.5 58.5t43.5 160.5z" />
  631. <glyph horiz-adv-x="602" d="M389 784l5 -13q-58 -88 -161 -156l-25 12q76 95 112 171zM542 271q0 -132 -70 -205.5t-176 -73.5q-101 0 -165 66l-65 -69l-32 30l69 75q-43 68 -43 167q0 130 70 208t178 78q97 0 160 -65l67 70l33 -30l-72 -76q46 -71 46 -175zM138 269q0 -66 20 -117l263 279 q-42 58 -115 58q-75 0 -121.5 -59.5t-46.5 -160.5zM463 269q0 69 -20 121l-262 -279q45 -61 120 -61t118.5 58.5t43.5 160.5z" />
  632. <glyph horiz-adv-x="602" d="M233 764q28 0 72 -28t64 -28q34 0 61 53l24 -4q-5 -44 -28.5 -78t-61.5 -34q-28 0 -73 28.5t-65 28.5q-31 0 -60 -54l-24 4q6 44 29 78t62 34zM542 271q0 -132 -70 -205.5t-176 -73.5q-104 0 -170 71.5t-66 197.5q0 130 70 208t178 78q104 0 169 -74.5t65 -201.5z M138 269q0 -98 43.5 -158.5t119.5 -60.5q75 0 118.5 58.5t43.5 160.5q0 100 -41 160t-116 60t-121.5 -59.5t-46.5 -160.5z" />
  633. <glyph horiz-adv-x="780" d="M744 60v-60h-379v1q-33 -9 -69 -9q-104 0 -170 71.5t-66 197.5q0 130 70 208t178 78q35 0 62 -8h358l9 -8l-2 -52l-268 4q68 -70 74 -190l156 3l-1 -56l-155 2q-9 -119 -79 -186zM138 269q0 -98 43.5 -158.5t119.5 -60.5q75 0 118.5 58.5t43.5 160.5q0 100 -41 160 t-116 60t-121.5 -59.5t-46.5 -160.5z" />
  634. <glyph horiz-adv-x="459" d="M151 0h-75v415q0 67 -7 124h154q95 0 150.5 -46t55.5 -125q0 -83 -61 -129.5t-159 -46.5h-58v-192zM211 485h-60v-237h58q69 0 105 30t36 87q0 55 -34 87.5t-105 32.5z" />
  635. <glyph horiz-adv-x="466" d="M151 0h-75v415q0 67 -7 124h82v-89h79q95 0 150.5 -46.5t55.5 -125.5q0 -83 -61 -129t-158 -46h-66v-103zM218 395h-67v-237h65q69 0 105.5 30.5t36.5 87.5q0 55 -34.5 87t-105.5 32z" />
  636. <glyph horiz-adv-x="612" d="M542 271q0 -115 -54 -186t-141 -88q130 -56 284 -56l-12 -72q-171 0 -338 123q-99 6 -160 77t-61 192q0 130 70 208t178 78q104 0 169 -74.5t65 -201.5zM138 269q0 -98 43.5 -158.5t119.5 -60.5q75 0 118.5 58.5t43.5 160.5q0 100 -41 160t-116 60t-121.5 -59.5 t-46.5 -160.5z" />
  637. <glyph horiz-adv-x="490" d="M151 0h-75v415q0 67 -7 124h146q100 0 157 -44.5t57 -120.5q0 -56 -32 -93.5t-86 -54.5l153 -226l-82 -7q-103 158 -138 215h-93v-208zM211 485h-60v-223h58q69 0 105 28t36 81q0 52 -34 83t-105 31z" />
  638. <glyph horiz-adv-x="490" d="M330 784l5 -13q-58 -88 -161 -156l-25 12q79 101 112 171zM151 0h-75v415q0 67 -7 124h146q100 0 157 -44.5t57 -120.5q0 -56 -32 -93.5t-86 -54.5l153 -226l-82 -7q-103 158 -138 215h-93v-208zM211 485h-60v-223h58q69 0 105 28t36 81q0 52 -34 83t-105 31z" />
  639. <glyph horiz-adv-x="490" d="M358 799l24 -18q-63 -84 -104 -156l-61 -7q-47 80 -113 163l24 18q47 -39 119 -117q60 69 111 117zM151 0h-75v415q0 67 -7 124h146q100 0 157 -44.5t57 -120.5q0 -56 -32 -93.5t-86 -54.5l153 -226l-82 -7q-103 158 -138 215h-93v-208zM211 485h-60v-223h58q69 0 105 28 t36 81q0 52 -34 83t-105 31z" />
  640. <glyph horiz-adv-x="490" d="M151 0h-75v415q0 67 -7 124h146q100 0 157 -44.5t57 -120.5q0 -56 -32 -93.5t-86 -54.5l153 -226l-82 -7q-103 158 -138 215h-93v-208zM211 485h-60v-223h58q69 0 105 28t36 81q0 52 -34 83t-105 31zM208 -312q32 58 41 94q-19 1 -32 16t-13 36q0 22 15 39.5t39 17.5 q22 0 36 -16t14 -44q0 -70 -73 -162z" />
  641. <glyph horiz-adv-x="490" d="M151 0h-75v415q0 67 -7 124h146q100 0 157 -44.5t57 -120.5q0 -56 -32 -93.5t-86 -54.5l153 -226l-82 -7q-103 158 -138 215h-93v-208zM211 485h-60v-223h58q69 0 105 28t36 81q0 52 -34 83t-105 31zM313 -159q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5 t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39z" />
  642. <glyph horiz-adv-x="439" d="M391 136q0 -66 -53.5 -105t-140.5 -39t-149 29l8 65q64 -34 146 -34q53 0 82.5 21.5t29.5 59.5q0 32 -27 56t-65 42t-76.5 37.5t-65.5 53.5t-27 79q0 67 54 106.5t138 39.5q79 0 135 -24l-11 -65q-56 30 -126 30q-52 0 -82.5 -22t-30.5 -61q0 -32 27 -57t65 -42.5 t76.5 -37.5t65.5 -53.5t27 -78.5z" />
  643. <glyph horiz-adv-x="439" d="M310 784l5 -13q-58 -88 -161 -156l-25 12q76 95 112 171zM391 136q0 -66 -53.5 -105t-140.5 -39t-149 29l8 65q64 -34 146 -34q53 0 82.5 21.5t29.5 59.5q0 32 -27 56t-65 42t-76.5 37.5t-65.5 53.5t-27 79q0 67 54 106.5t138 39.5q79 0 135 -24l-11 -65q-56 30 -126 30 q-52 0 -82.5 -22t-30.5 -61q0 -32 27 -57t65 -42.5t76.5 -37.5t65.5 -53.5t27 -78.5z" />
  644. <glyph horiz-adv-x="439" d="M338 799l24 -18q-59 -79 -103 -156l-62 -7q-47 80 -113 163l24 18q42 -35 120 -117q56 65 110 117zM391 136q0 -66 -53.5 -105t-140.5 -39t-149 29l8 65q64 -34 146 -34q53 0 82.5 21.5t29.5 59.5q0 32 -27 56t-65 42t-76.5 37.5t-65.5 53.5t-27 79q0 67 54 106.5 t138 39.5q79 0 135 -24l-11 -65q-56 30 -126 30q-52 0 -82.5 -22t-30.5 -61q0 -32 27 -57t65 -42.5t76.5 -37.5t65.5 -53.5t27 -78.5z" />
  645. <glyph horiz-adv-x="439" d="M314 -131q0 -42 -43.5 -66t-107.5 -30l-3 32q92 16 92 57q0 35 -66 39l-10 16l24 75h-3q-87 0 -149 29l8 65q64 -34 146 -34q53 0 82.5 21.5t29.5 59.5q0 32 -27 56t-65 42t-76.5 37.5t-65.5 53.5t-27 79q0 67 54 106.5t138 39.5q79 0 135 -24l-11 -65q-56 30 -126 30 q-52 0 -82.5 -22t-30.5 -61q0 -32 27 -57t65 -42.5t76.5 -37.5t65.5 -53.5t27 -78.5q0 -55 -39 -92t-105 -48l-19 -58q38 -5 62 -22t24 -47z" />
  646. <glyph horiz-adv-x="439" d="M108 613l-24 18q59 77 104 157l62 6q50 -83 112 -163l-24 -18q-52 45 -119 117q-57 -67 -111 -117zM391 136q0 -66 -53.5 -105t-140.5 -39t-149 29l8 65q64 -34 146 -34q53 0 82.5 21.5t29.5 59.5q0 32 -27 56t-65 42t-76.5 37.5t-65.5 53.5t-27 79q0 67 54 106.5 t138 39.5q79 0 135 -24l-11 -65q-56 30 -126 30q-52 0 -82.5 -22t-30.5 -61q0 -32 27 -57t65 -42.5t76.5 -37.5t65.5 -53.5t27 -78.5z" />
  647. <glyph horiz-adv-x="439" d="M391 136q0 -66 -53.5 -105t-140.5 -39t-149 29l8 65q64 -34 146 -34q53 0 82.5 21.5t29.5 59.5q0 32 -27 56t-65 42t-76.5 37.5t-65.5 53.5t-27 79q0 67 54 106.5t138 39.5q79 0 135 -24l-11 -65q-56 30 -126 30q-52 0 -82.5 -22t-30.5 -61q0 -32 27 -57t65 -42.5 t76.5 -37.5t65.5 -53.5t27 -78.5zM172 -312q30 52 41 94q-19 2 -31.5 16.5t-12.5 35.5q0 23 14.5 40t38.5 17q23 0 37 -16t14 -44q0 -70 -73 -162z" />
  648. <glyph horiz-adv-x="439" d="M391 136q0 -66 -53.5 -105t-140.5 -39t-149 29l8 65q64 -34 146 -34q53 0 82.5 21.5t29.5 59.5q0 32 -27 56t-65 42t-76.5 37.5t-65.5 53.5t-27 79q0 67 54 106.5t138 39.5q79 0 135 -24l-11 -65q-56 30 -126 30q-52 0 -82.5 -22t-30.5 -61q0 -32 27 -57t65 -42.5 t76.5 -37.5t65.5 -53.5t27 -78.5zM278 -159q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -37 15.5t-14 39.5q0 25 17 43.5t41 18.5q22 0 35.5 -15t13.5 -39z" />
  649. <glyph horiz-adv-x="588" d="M135 -10l-71 10q24 56 24 136v225q0 89 59.5 137.5t156.5 48.5q107 0 178 -58v-22l-138 -150q91 -37 143.5 -79.5t52.5 -106.5q0 -59 -47.5 -99t-135.5 -40q-77 0 -111 18v62q43 -20 104 -20q50 0 81.5 20t31.5 58q0 48 -49 83.5t-143 70.5v22l125 143q-40 38 -101 38 q-62 0 -98 -33.5t-36 -95.5v-226q0 -88 -26 -142z" />
  650. <glyph horiz-adv-x="461" d="M268 0h-75v483q-58 -1 -176 -5l5 61h417l4 -61q-115 4 -175 5v-483z" />
  651. <glyph horiz-adv-x="461" d="M268 0h-75v249h-145v45h145v189q-58 -1 -176 -5l5 61h417l4 -61q-115 4 -175 5v-189h146v-45h-146v-249z" />
  652. <glyph horiz-adv-x="461" d="M347 799l24 -18q-63 -84 -104 -156l-61 -7q-47 80 -113 163l24 18q47 -39 119 -117q60 69 111 117zM268 0h-75v483q-58 -1 -176 -5l5 61h417l4 -61q-115 4 -175 5v-483z" />
  653. <glyph horiz-adv-x="461" d="M268 0h-12l-20 -62q38 -5 62.5 -22t24.5 -47q0 -42 -44 -66t-108 -30l-3 32q92 16 92 57q0 35 -65 39l-10 16l25 83h-17v483q-58 -1 -176 -5l5 61h417l4 -61q-115 4 -175 5v-483z" />
  654. <glyph horiz-adv-x="461" d="M268 0h-75v483q-58 -1 -176 -5l5 61h417l4 -61q-115 4 -175 5v-483zM180 -312q30 52 41 94q-19 2 -31.5 16.5t-12.5 35.5q0 22 14.5 39.5t38.5 17.5q23 0 37 -16t14 -44q0 -70 -73 -162z" />
  655. <glyph horiz-adv-x="461" d="M268 0h-75v483q-58 -1 -176 -5l5 61h417l4 -61q-115 4 -175 5v-483zM286 -159q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39z" />
  656. <glyph horiz-adv-x="557" d="M73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5t-56.5 137.5v236z" />
  657. <glyph horiz-adv-x="557" d="M368 784l5 -13q-58 -88 -161 -156l-25 12q76 95 112 171zM73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5t-56.5 137.5v236z" />
  658. <glyph horiz-adv-x="557" d="M374 777h34q-9 -65 -44.5 -102.5t-87.5 -37.5q-50 0 -84 36.5t-41 99.5l34 5q10 -38 35.5 -60t60.5 -22q32 0 57 22t36 59zM73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5 q-89 0 -145.5 48.5t-56.5 137.5v236z" />
  659. <glyph horiz-adv-x="557" d="M396 799l24 -18q-59 -79 -103 -156l-62 -7q-47 80 -113 163l24 18q42 -35 120 -117q56 65 110 117zM73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5 t-56.5 137.5v236z" />
  660. <glyph horiz-adv-x="557" d="M166 613l-24 18q59 77 104 157l62 6q50 -83 112 -163l-24 -18q-52 45 -119 117q-57 -67 -111 -117zM73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5 t-56.5 137.5v236z" />
  661. <glyph horiz-adv-x="557" d="M230 710q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 15.5 43.5t38.5 18.5q21 0 33.5 -14.5t12.5 -37.5zM430 710q0 -25 -14 -43.5t-38 -18.5q-21 0 -34.5 15t-13.5 37q0 25 16 43.5t39 18.5q21 0 33 -14.5t12 -37.5zM73 414q0 62 -9 127l78 6l6 -6v-359 q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5t-56.5 137.5v236z" />
  662. <glyph horiz-adv-x="557" d="M368 1009l5 -14q-59 -89 -161 -155l-25 12q76 93 112 171zM230 710q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 15.5 43.5t38.5 18.5q21 0 33.5 -14.5t12.5 -37.5zM430 710q0 -25 -14 -43.5t-38 -18.5q-21 0 -34.5 15t-13.5 37q0 25 16 43.5t39 18.5 q21 0 33 -14.5t12 -37.5zM73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5t-56.5 137.5v236z" />
  663. <glyph horiz-adv-x="557" d="M396 1024l24 -18q-60 -80 -103 -157l-62 -6q-47 78 -113 163l24 18q52 -44 120 -118q60 70 110 118zM230 710q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 15.5 43.5t38.5 18.5q21 0 33.5 -14.5t12.5 -37.5zM430 710q0 -25 -14 -43.5t-38 -18.5 q-21 0 -34.5 15t-13.5 37q0 25 16 43.5t39 18.5q21 0 33 -14.5t12 -37.5zM73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5t-56.5 137.5v236z" />
  664. <glyph horiz-adv-x="557" d="M348 842q-101 66 -161 156l5 13l69 14q32 -69 112 -171zM230 710q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 15.5 43.5t38.5 18.5q21 0 33.5 -14.5t12.5 -37.5zM430 710q0 -25 -14 -43.5t-38 -18.5q-21 0 -34.5 15t-13.5 37q0 25 16 43.5t39 18.5 q21 0 33 -14.5t12 -37.5zM73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5t-56.5 137.5v236z" />
  665. <glyph horiz-adv-x="557" d="M144 904v50h272v-50h-272zM230 710q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 15.5 43.5t38.5 18.5q21 0 33.5 -14.5t12.5 -37.5zM430 710q0 -25 -14 -43.5t-38 -18.5q-21 0 -34.5 15t-13.5 37q0 25 16 43.5t39 18.5q21 0 33 -14.5t12 -37.5zM73 414 q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5t-56.5 137.5v236z" />
  666. <glyph horiz-adv-x="557" d="M73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5t-56.5 137.5v236zM333 -159q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5 t41 18.5q22 0 35 -15t13 -39z" />
  667. <glyph horiz-adv-x="557" d="M348 617q-103 68 -161 156l5 14l69 14q34 -73 112 -171zM73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5t-56.5 137.5v236z" />
  668. <glyph horiz-adv-x="557" d="M293 789l5 -14q-57 -90 -148 -158l-25 13q73 87 112 171zM427 789l5 -14q-57 -90 -148 -158l-25 13q74 88 111 171zM73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5 q-89 0 -145.5 48.5t-56.5 137.5v236z" />
  669. <glyph horiz-adv-x="557" d="M144 680v49h272v-49h-272zM73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5t-56.5 137.5v236z" />
  670. <glyph horiz-adv-x="557" d="M400 23q-110 -67 -110 -144q0 -52 53 -52q24 0 55 12l13 -31q-37 -32 -94 -32q-43 0 -68.5 22.5t-25.5 60.5q0 73 86 135q-22 -2 -34 -2q-89 0 -145.5 48.5t-56.5 137.5v236q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116 l81 6v-369q0 -105 -85 -155z" />
  671. <glyph horiz-adv-x="557" d="M375 702q0 -37 -28 -63t-67 -26q-36 0 -61 22t-25 55q0 37 28.5 63t68.5 26q37 0 60.5 -22t23.5 -55zM237 694q0 -20 13 -33.5t33 -13.5q21 0 34.5 15t13.5 36t-11.5 34t-32.5 13t-35.5 -15t-14.5 -36zM73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5 q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5t-56.5 137.5v236z" />
  672. <glyph horiz-adv-x="557" d="M212 764q28 0 72 -28t64 -28q34 0 61 53l24 -4q-5 -44 -28.5 -78t-61.5 -34q-28 0 -73 28.5t-65 28.5q-31 0 -60 -54l-24 4q6 44 29 78t62 34zM73 414q0 62 -9 127l78 6l6 -6v-359q0 -62 36.5 -95.5t95.5 -33.5q60 0 96 33t36 96v243q0 67 -8 116l81 6v-369 q0 -89 -59 -137.5t-151 -48.5q-89 0 -145.5 48.5t-56.5 137.5v236z" />
  673. <glyph horiz-adv-x="521" d="M226 -3l-207 543l79 7l118 -318q37 -94 50 -151q14 57 57 163l113 306l61 -5l5 -8l-205 -537h-71z" />
  674. <glyph horiz-adv-x="832" d="M201 -3l-176 542l77 8l100 -313q31 -97 41 -155q9 47 49 166l94 297l71 5l100 -313q33 -95 44 -155q11 56 47 166l95 302l59 -5l6 -8l-176 -537h-70l-106 309q-14 46 -38 138h-1q-19 -73 -40 -139l-105 -308h-71z" />
  675. <glyph horiz-adv-x="832" d="M508 784l5 -13q-58 -88 -161 -156l-25 12q76 95 112 171zM201 -3l-176 542l77 8l100 -313q31 -97 41 -155q9 47 49 166l94 297l71 5l100 -313q33 -95 44 -155q11 56 47 166l95 302l59 -5l6 -8l-176 -537h-70l-106 309q-14 46 -38 138h-1q-19 -73 -40 -139l-105 -308h-71z " />
  676. <glyph horiz-adv-x="832" d="M306 613l-24 18q59 77 104 157l62 6q50 -83 112 -163l-24 -18q-52 45 -119 117q-57 -67 -111 -117zM201 -3l-176 542l77 8l100 -313q31 -97 41 -155q9 47 49 166l94 297l71 5l100 -313q33 -95 44 -155q11 56 47 166l95 302l59 -5l6 -8l-176 -537h-70l-106 309 q-14 46 -38 138h-1q-19 -73 -40 -139l-105 -308h-71z" />
  677. <glyph horiz-adv-x="832" d="M370 710q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 15.5 43.5t38.5 18.5q21 0 33.5 -14.5t12.5 -37.5zM570 710q0 -25 -14 -43.5t-38 -18.5q-21 0 -34.5 15t-13.5 37q0 25 16 43.5t39 18.5q21 0 33 -14.5t12 -37.5zM201 -3l-176 542l77 8l100 -313 q31 -97 41 -155q9 47 49 166l94 297l71 5l100 -313q33 -95 44 -155q11 56 47 166l95 302l59 -5l6 -8l-176 -537h-70l-106 309q-14 46 -38 138h-1q-19 -73 -40 -139l-105 -308h-71z" />
  678. <glyph horiz-adv-x="832" d="M488 617q-103 68 -161 156l5 14l69 14q34 -73 112 -171zM201 -3l-176 542l77 8l100 -313q31 -97 41 -155q9 47 49 166l94 297l71 5l100 -313q33 -95 44 -155q11 56 47 166l95 302l59 -5l6 -8l-176 -537h-70l-106 309q-14 46 -38 138h-1q-19 -73 -40 -139l-105 -308h-71z " />
  679. <glyph horiz-adv-x="484" d="M25 0l-4 9l174 257l-174 272l78 9l149 -233h2l144 233l65 -5l3 -9l-172 -264l172 -269h-83l-143 222h-1l-143 -222h-67z" />
  680. <glyph horiz-adv-x="468" d="M197 190l-178 350l78 7l91 -185q51 -114 52 -118h1q8 25 54 119l89 184l60 -5l6 -8l-178 -346v-188h-75v190z" />
  681. <glyph horiz-adv-x="468" d="M323 784l4 -13q-59 -89 -160 -156l-25 12q79 101 111 171zM197 190l-178 350l78 7l91 -185q51 -114 52 -118h1q8 25 54 119l89 184l60 -5l6 -8l-178 -346v-188h-75v190z" />
  682. <glyph horiz-adv-x="468" d="M121 613l-24 18q64 85 104 157l61 6q47 -78 113 -163l-24 -18q-48 41 -120 117q-56 -65 -110 -117zM197 190l-178 350l78 7l91 -185q51 -114 52 -118h1q8 25 54 119l89 184l60 -5l6 -8l-178 -346v-188h-75v190z" />
  683. <glyph horiz-adv-x="468" d="M184 710q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t39 18.5q20 0 32.5 -14.5t12.5 -37.5zM385 710q0 -25 -14.5 -43.5t-38.5 -18.5q-21 0 -34 15t-13 37q0 25 16 43.5t38 18.5q21 0 33.5 -14.5t12.5 -37.5zM197 190l-178 350l78 7l91 -185 q51 -114 52 -118h1q8 25 54 119l89 184l60 -5l6 -8l-178 -346v-188h-75v190z" />
  684. <glyph horiz-adv-x="468" d="M302 617q-102 69 -160 156l5 14l69 14q32 -72 111 -171zM197 190l-178 350l78 7l91 -185q51 -114 52 -118h1q8 25 54 119l89 184l60 -5l6 -8l-178 -346v-188h-75v190z" />
  685. <glyph horiz-adv-x="468" d="M98 680v49h273v-49h-273zM197 190l-178 350l78 7l91 -185q51 -114 52 -118h1q8 25 54 119l89 184l60 -5l6 -8l-178 -346v-188h-75v190z" />
  686. <glyph horiz-adv-x="468" d="M166 764q28 0 72.5 -28t64.5 -28q33 0 60 53l24 -4q-5 -44 -28.5 -78t-60.5 -34q-28 0 -73.5 28.5t-64.5 28.5q-33 0 -60 -54l-24 4q6 45 28.5 78.5t61.5 33.5zM197 190l-178 350l78 7l91 -185q51 -114 52 -118h1q8 25 54 119l89 184l60 -5l6 -8l-178 -346v-188h-75v190z " />
  687. <glyph horiz-adv-x="453" d="M38 0l-12 47l310 431l-300 -4l5 65h362l19 -46l-308 -431l310 4l-5 -66h-381z" />
  688. <glyph horiz-adv-x="453" d="M323 784l5 -13q-58 -87 -160 -156l-25 12q79 101 111 171zM38 0l-12 47l310 431l-300 -4l5 65h362l19 -46l-308 -431l310 4l-5 -66h-381z" />
  689. <glyph horiz-adv-x="453" d="M352 799l24 -18q-58 -76 -104 -156l-62 -7q-50 85 -112 163l24 18q51 -44 119 -117q57 67 111 117zM38 0l-12 47l310 431l-300 -4l5 65h362l19 -46l-308 -431l310 4l-5 -66h-381z" />
  690. <glyph horiz-adv-x="453" d="M289 711q0 -26 -15.5 -44.5t-41.5 -18.5q-23 0 -36.5 15.5t-13.5 38.5q0 25 17 44t41 19q22 0 35.5 -15t13.5 -39zM38 0l-12 47l310 431l-300 -4l5 65h362l19 -46l-308 -431l310 4l-5 -66h-381z" />
  691. <glyph horiz-adv-x="453" d="M38 0l-12 47l310 431l-300 -4l5 65h362l19 -46l-308 -431l310 4l-5 -66h-381zM307 -159q0 -26 -15.5 -44.5t-40.5 -18.5q-23 0 -36.5 15.5t-13.5 39.5q0 25 17 43.5t41 18.5q22 0 35 -15t13 -39z" />
  692. <glyph horiz-adv-x="227" d="M198 784l5 -13q-58 -87 -160 -156l-25 12q79 101 111 171zM27 -149l-23 31q73 60 73 180v350q0 71 -9 125l76 10l8 -8v-477q0 -83 -29 -131t-96 -80z" />
  693. <glyph horiz-adv-x="466" d="M405 194q0 -101 -50.5 -156.5t-125.5 -55.5t-121.5 55t-46.5 152q0 101 50.5 158t125.5 57t121.5 -57t46.5 -153zM126 194q0 -80 27 -126.5t79 -46.5q51 0 79.5 44.5t28.5 126.5q0 80 -27 126.5t-79 46.5q-50 0 -79 -44t-29 -127z" />
  694. <glyph horiz-adv-x="247" d="M102 341h-1l-72 -14l-10 36l137 41l7 -6v-408h-62v266q0 61 1 85z" />
  695. <glyph horiz-adv-x="367" d="M44 -10l-8 46q41 31 63 47.5t55.5 46.5t51 51t31 48t13.5 51q0 36 -24.5 58t-63.5 22q-59 0 -119 -44l-6 47q55 41 139 41q60 0 99 -31t39 -82q0 -34 -19 -69t-54.5 -69t-67.5 -59t-76 -56h119q54 0 105 6l-7 -54h-270z" />
  696. <glyph horiz-adv-x="357" d="M48 371q54 33 125 33q53 0 88.5 -24.5t35.5 -64.5q0 -35 -29.5 -65.5t-82.5 -45.5q61 -5 96.5 -31t35.5 -72q0 -53 -46.5 -86t-122.5 -33q-59 0 -108 14l6 42q49 -14 100 -14q47 0 77 20.5t30 54.5q0 36 -33.5 52.5t-84.5 16.5q-27 0 -47 -4v42q68 12 106 38t38 60 q0 25 -20 40.5t-55 15.5q-55 0 -105 -31z" />
  697. <glyph horiz-adv-x="403" d="M39 137l180 261l67 6l7 -6v-257q25 1 63 5l-7 -50h-56v-106h-59v106h-187zM92 140v-1q39 1 130 1h12v110q0 72 2 102h-1z" />
  698. <glyph horiz-adv-x="378" d="M56 -4l7 44q43 -15 95 -15q48 0 77.5 23.5t29.5 63.5t-27.5 60.5t-70.5 20.5q-48 0 -85 -14l-10 7v210h140q64 0 104 6l-4 -54h-188v-120q31 7 65 7q60 0 100 -31t40 -88q0 -62 -47 -98t-123 -36q-54 0 -103 14z" />
  699. <glyph horiz-adv-x="409" d="M214 -18q-70 0 -111.5 47.5t-41.5 133.5q0 109 60 175t157 66q37 0 55 -8l-6 -45q-20 9 -48 9q-61 0 -104.5 -43.5t-48.5 -126.5h2q38 37 106 37q57 0 92 -31.5t35 -84.5q0 -59 -42.5 -94t-104.5 -35zM217 189q-27 0 -53.5 -11.5t-37.5 -30.5q6 -124 87 -124q38 0 61 23 t23 61q0 37 -21 59.5t-59 22.5z" />
  700. <glyph horiz-adv-x="351" d="M38 340l7 56h270l7 -7v-34q-74 -78 -123 -173.5t-54 -191.5h-64q6 92 60 191.5t121 165.5v1h-107q-70 0 -117 -8z" />
  701. <glyph horiz-adv-x="399" d="M197 -18q-65 0 -107 28.5t-42 72.5q0 39 30 68t75 44v1q-90 46 -90 106q0 43 40.5 72.5t99.5 29.5t96 -29t37 -70q0 -32 -25 -60t-66 -45v-2q107 -42 107 -108q0 -45 -43.5 -76.5t-111.5 -31.5zM202 366q-33 0 -56.5 -16.5t-23.5 -44.5q0 -51 85 -85q71 36 71 85 q0 27 -22 44t-54 17zM191 172q-35 -14 -59 -37.5t-24 -50.5q0 -28 25.5 -46.5t64.5 -18.5q40 0 65.5 18.5t27.5 47.5q1 28 -24.5 48t-75.5 39z" />
  702. <glyph horiz-adv-x="409" d="M48 267q0 61 42.5 99t104.5 38q68 0 110.5 -47t42.5 -131q0 -104 -60.5 -174t-156.5 -70q-27 0 -49 5v43q24 -4 45 -4q64 0 105.5 42.5t50.5 117.5q-37 -38 -102 -38q-60 0 -96.5 32t-36.5 87zM113 271q0 -38 21.5 -61t61.5 -23q62 0 87 43q-3 61 -26 96.5t-64 35.5 q-35 0 -57.5 -25.5t-22.5 -65.5z" />
  703. <glyph horiz-adv-x="651" d="M583 347q0 -170 -76 -263.5t-187 -93.5q-113 0 -182.5 93t-69.5 255q0 169 75 263.5t188 94.5t182.5 -94t69.5 -255zM146 345q0 -137 46 -218.5t132 -81.5q83 0 132 78t49 219q0 137 -46 218.5t-132 81.5q-82 0 -131.5 -76.5t-49.5 -220.5z" />
  704. <glyph horiz-adv-x="335" d="M140 609h-1l-116 -27l-12 45l194 69l9 -9v-687h-75v464q0 104 1 145z" />
  705. <glyph horiz-adv-x="578" d="M77 0l-10 64q156 135 249 248t93 200q0 55 -39 90t-107 35q-81 0 -188 -58l-8 62q102 55 212 55q93 0 150.5 -48t57.5 -123q0 -175 -345 -461h200q87 0 160 10l-10 -74h-415z" />
  706. <glyph horiz-adv-x="510" d="M60 642q37 22 90.5 38t104.5 16q78 0 127.5 -39t49.5 -104q0 -60 -46 -111.5t-132 -80.5q97 -7 153.5 -50.5t56.5 -122.5q0 -88 -69.5 -143t-184.5 -55q-86 0 -164 24l8 57q75 -24 154 -24t128 37.5t49 100.5q0 66 -54 96.5t-137 30.5q-36 0 -70 -7v57q111 23 170.5 71 t59.5 107q0 44 -30.5 70.5t-86.5 26.5q-78 0 -172 -53z" />
  707. <glyph horiz-adv-x="594" d="M33 242l305 442l79 11l9 -9v-439q55 0 131 9l-10 -70h-121v-186h-72v186h-310zM99 246v-2q74 2 230 2h25v209q0 115 3 163h-2z" />
  708. <glyph horiz-adv-x="541" d="M73 14l7 58q72 -24 147 -24q78 0 127 42.5t49 115.5q0 72 -45.5 109t-116.5 37q-81 0 -130 -22l-14 12v344h206q87 0 160 10l-5 -73h-296v-226q49 13 104 13q92 0 154 -51t62 -148q0 -100 -70.5 -160.5t-184.5 -60.5q-80 0 -154 24z" />
  709. <glyph horiz-adv-x="592" d="M308 -10q-107 0 -167.5 80.5t-60.5 226.5q0 182 90 290.5t233 108.5q59 0 84 -13l-8 -60q-28 14 -74 14q-101 0 -170.5 -79t-75.5 -231h2q32 35 79.5 53.5t95.5 18.5q87 0 140 -52.5t53 -141.5q0 -99 -63.5 -157t-157.5 -58zM318 345q-48 0 -94 -23t-63 -60 q10 -217 148 -217q63 0 102.5 41.5t39.5 111.5q0 66 -35 106.5t-98 40.5z" />
  710. <glyph horiz-adv-x="529" d="M48 610l10 76h413l9 -8v-46q-113 -132 -191 -300t-88 -332h-78q10 156 95.5 329.5t186.5 291.5v2h-185q-95 0 -172 -13z" />
  711. <glyph horiz-adv-x="579" d="M287 -10q-96 0 -159.5 46.5t-63.5 119.5q0 62 47 112t117 78v2q-142 74 -142 180q0 71 60.5 119.5t147.5 48.5q86 0 143 -47.5t57 -115.5q0 -56 -39.5 -104t-105.5 -77v-1q166 -73 166 -186q0 -74 -64.5 -124.5t-163.5 -50.5zM293 644q-55 0 -95 -31.5t-40 -79.5 q0 -91 141 -153q54 27 88 67.5t34 85.5q0 48 -36.5 79.5t-91.5 31.5zM278 315q-59 -26 -99.5 -67.5t-40.5 -90.5q0 -51 43 -83t107 -32q66 0 109 34t44 85q1 49 -40 84.5t-123 69.5z" />
  712. <glyph horiz-adv-x="592" d="M63 467q0 102 64 165.5t157 63.5q101 0 164.5 -80t63.5 -221q0 -173 -91.5 -289t-232.5 -116q-45 0 -74 8l-2 59q25 -7 68 -7q105 0 174 79t80 215h-2q-25 -38 -70.5 -57.5t-97.5 -19.5q-91 0 -146 54.5t-55 145.5zM141 472q0 -68 37 -109.5t104 -41.5q47 0 88 21t62 65 q-2 108 -43 170t-109 62q-60 0 -99.5 -46.5t-39.5 -120.5z" />
  713. <glyph horiz-adv-x="466" d="M405 496q0 -101 -50.5 -156.5t-125.5 -55.5t-121.5 55t-46.5 152q0 100 50.5 157.5t125.5 57.5t121.5 -57t46.5 -153zM126 495q0 -79 27 -125.5t79 -46.5q51 0 79.5 44.5t28.5 125.5q0 80 -27 126.5t-79 46.5q-50 0 -79 -44t-29 -127z" />
  714. <glyph horiz-adv-x="247" d="M102 643h-1l-72 -14l-10 36l137 41l7 -6v-408h-62v266q0 61 1 85z" />
  715. <glyph horiz-adv-x="367" d="M44 292l-8 46q41 31 63 47.5t55.5 46.5t51 51t31 48t13.5 51q0 36 -24.5 58t-63.5 22q-59 0 -119 -44l-6 47q55 41 139 41q60 0 99 -31t39 -82q0 -34 -19 -69t-54.5 -69t-67.5 -59t-76 -56h119q54 0 105 6l-7 -54h-270z" />
  716. <glyph horiz-adv-x="357" d="M48 673q54 33 125 33q54 0 89 -24.5t35 -65.5q0 -35 -29.5 -65t-82.5 -45q60 -5 96 -31.5t36 -71.5q0 -53 -46.5 -86t-122.5 -33q-59 0 -108 14l6 41q49 -14 100 -14q47 0 77 20.5t30 54.5q0 69 -118 69q-27 0 -47 -4v42q68 12 106 38.5t38 59.5q0 26 -19.5 41t-55.5 15 q-54 0 -105 -30z" />
  717. <glyph horiz-adv-x="403" d="M39 439l180 261l67 6l7 -6v-257q25 1 63 5l-7 -50h-56v-106h-59v106h-187zM92 442v-1q39 1 130 1h12v110q0 72 2 102h-1z" />
  718. <glyph horiz-adv-x="378" d="M56 298l7 43q43 -15 95 -15q48 0 77.5 23.5t29.5 63.5t-27.5 60.5t-70.5 20.5q-48 0 -85 -14l-10 7v211h140q64 0 104 6l-4 -54h-188v-121q25 7 65 7q60 0 100 -30.5t40 -87.5q0 -62 -47 -98t-123 -36q-54 0 -103 14z" />
  719. <glyph horiz-adv-x="409" d="M214 284q-70 0 -111.5 47t-41.5 134q0 109 60 175t157 66q38 0 55 -9l-6 -44q-22 8 -48 8q-61 0 -104.5 -43t-48.5 -126h2q40 37 106 37q57 0 92 -31.5t35 -85.5q0 -59 -42.5 -93.5t-104.5 -34.5zM217 490q-27 0 -53.5 -11.5t-37.5 -29.5q6 -125 87 -125q38 0 61 23 t23 62q0 37 -21 59t-59 22z" />
  720. <glyph horiz-adv-x="351" d="M38 642l7 56h270l7 -7v-34q-74 -78 -123 -173.5t-54 -191.5h-64q6 92 60 191.5t121 165.5v1h-107q-70 0 -117 -8z" />
  721. <glyph horiz-adv-x="399" d="M197 284q-65 0 -107 28.5t-42 72.5q0 39 30 68t75 44v1q-90 46 -90 106q0 43 40.5 72.5t99.5 29.5t96 -29t37 -70q0 -32 -25 -60t-66 -45v-2q107 -42 107 -108q0 -45 -43.5 -76.5t-111.5 -31.5zM202 668q-33 0 -56.5 -16.5t-23.5 -44.5q0 -51 85 -85q71 36 71 85 q0 27 -22 44t-54 17zM191 474q-35 -14 -59 -37.5t-24 -50.5q0 -28 25.5 -46.5t64.5 -18.5q40 0 65.5 18.5t27.5 47.5q1 28 -24.5 48t-75.5 39z" />
  722. <glyph horiz-adv-x="409" d="M48 569q0 61 42.5 99t104.5 38q68 0 110.5 -47t42.5 -131q0 -104 -60.5 -174t-156.5 -70q-27 0 -49 5v43q24 -4 45 -4q64 0 105.5 42.5t50.5 117.5q-37 -38 -102 -38q-60 0 -96.5 32t-36.5 87zM113 573q0 -38 21.5 -61t61.5 -23q62 0 87 43q-3 61 -26 96.5t-64 35.5 q-35 0 -57.5 -25.5t-22.5 -65.5z" />
  723. <glyph horiz-adv-x="576" d="M518 269q0 -133 -68 -206t-168 -73t-162 72.5t-62 198.5q0 132 67.5 206.5t168.5 74.5q100 0 162 -73.5t62 -199.5zM136 267q0 -101 39 -161.5t111 -60.5q70 0 112 57t42 162q0 103 -38.5 163t-111.5 60q-70 0 -112 -57t-42 -163z" />
  724. <glyph horiz-adv-x="395" d="M190 455h-1l-116 -28l-12 46l194 69l9 -9v-533h-75v310q0 104 1 145z" />
  725. <glyph horiz-adv-x="534" d="M77 0l-10 64q119 69 209 158.5t90 165.5q0 43 -30.5 68.5t-83.5 25.5q-77 0 -170 -58l-8 63q95 55 194 55q78 0 127.5 -37.5t49.5 -102.5q0 -88 -87.5 -180.5t-202.5 -157.5h142q89 0 163 10l-10 -74h-373z" />
  726. <glyph horiz-adv-x="510" d="M60 487q92 55 195 55q78 0 127.5 -38t49.5 -102q0 -60 -45.5 -111.5t-130.5 -79.5q96 -7 152 -50t56 -120q0 -86 -69.5 -140.5t-184.5 -54.5q-86 0 -164 24l8 57q75 -24 154 -24t128 36.5t49 97.5q0 64 -54 94t-137 30q-36 0 -70 -7v57q111 23 170.5 71t59.5 107 q0 43 -30.5 68t-86.5 25q-77 0 -172 -52z" />
  727. <glyph horiz-adv-x="564" d="M23 89l303 440l79 10l9 -8v-437q63 2 120 9l-10 -71h-110v-176h-72v176h-308zM89 93v-2q74 2 228 2h25v207q0 115 3 162h-2z" />
  728. <glyph horiz-adv-x="521" d="M61 -130l8 58q74 -23 147 -23q78 0 127 41.5t49 112.5q0 69 -46 106t-116 37q-78 0 -130 -22l-14 11v341h206q87 0 160 10l-6 -74h-295v-221q56 13 104 13q91 0 153 -51t62 -145q0 -99 -70 -158.5t-184 -59.5q-79 0 -155 24z" />
  729. <glyph horiz-adv-x="557" d="M293 -10q-107 0 -167.5 80.5t-60.5 226.5q0 182 90 290.5t233 108.5q59 0 84 -13l-8 -60q-28 14 -74 14q-101 0 -170.5 -79t-75.5 -231h2q32 35 79.5 53.5t95.5 18.5q87 0 140 -52.5t53 -141.5q0 -99 -63.5 -157t-157.5 -58zM303 345q-48 0 -94 -23t-63 -60 q10 -217 148 -217q63 0 102.5 41.5t39.5 111.5q0 66 -35 106.5t-98 40.5z" />
  730. <glyph horiz-adv-x="529" d="M48 463l10 76h413l9 -9v-46q-113 -132 -191 -298.5t-88 -329.5h-78q10 155 95.5 327.5t186.5 290.5v2h-185q-95 0 -172 -13z" />
  731. <glyph horiz-adv-x="579" d="M287 -11q-96 0 -159.5 47t-63.5 119q0 63 47 112.5t117 77.5v2q-142 74 -142 180q0 71 60.5 119.5t147.5 48.5q86 0 143 -47.5t57 -115.5q0 -56 -39.5 -104t-105.5 -77v-1q166 -71 166 -185q0 -75 -64 -125.5t-164 -50.5zM293 643q-55 0 -95 -32t-40 -80 q0 -46 38.5 -85.5t102.5 -67.5q54 28 88 68.5t34 85.5q0 48 -37 79.5t-91 31.5zM278 314q-59 -26 -99.5 -67.5t-40.5 -90.5q0 -50 43 -82.5t107 -32.5q66 0 109 34t44 85q1 50 -40 85.5t-123 68.5z" />
  732. <glyph horiz-adv-x="557" d="M43 318q0 100 64 162t157 62q101 0 164.5 -78.5t63.5 -217.5q0 -170 -91.5 -285t-232.5 -115q-45 0 -74 8l-2 59q32 -7 68 -7q105 0 174 78t80 211h-2q-25 -38 -70.5 -57.5t-97.5 -19.5q-91 0 -146 54t-55 146zM121 323q0 -69 37 -110t104 -41q47 0 88 21t62 64 q-2 106 -43 167t-109 61q-60 0 -99.5 -45t-39.5 -117z" />
  733. <glyph d="M531 347q0 -170 -71.5 -263.5t-177.5 -93.5t-172 93t-66 255q0 169 71.5 263.5t177.5 94.5q107 0 172.5 -94t65.5 -255zM123 345q0 -137 42 -218.5t121 -81.5q76 0 121 77.5t45 218.5q0 138 -42 219.5t-121 81.5q-76 0 -121 -76.5t-45 -220.5z" />
  734. <glyph d="M103 0v57h158v407q0 104 1 145h-1l-116 -27l-12 45l194 69l9 -9v-630h157v-57h-390z" />
  735. <glyph d="M75 0l-10 64q158 143 248.5 254.5t90.5 196.5q0 54 -39.5 88t-107.5 34q-79 0 -182 -58l-8 62q98 55 205 55q94 0 152 -48t58 -126q0 -54 -29 -115t-82.5 -123t-105.5 -112t-120 -108h197q87 0 160 10l-10 -74h-417z" />
  736. <glyph d="M101 642q78 54 176 54q75 0 124.5 -39t49.5 -104q0 -60 -43 -111.5t-123 -80.5q91 -7 144 -50t53 -120q0 -89 -69 -145t-179 -56q-81 0 -147 24l8 57q63 -24 136 -24q76 0 124 37.5t48 100.5q0 64 -48.5 95.5t-128.5 31.5q-25 0 -61 -4v54q101 23 154 71t53 107 q0 44 -30 70.5t-83 26.5q-72 0 -153 -53z" />
  737. <glyph d="M26 242l306 442l79 11l9 -9v-438q46 1 97 8l-10 -70h-87v-186h-73l1 186h-311zM93 246v-2q73 2 230 2h25v209q0 115 3 163h-2z" />
  738. <glyph d="M93 14l8 58q70 -24 142 -24q76 0 122 43t46 116q0 71 -43 108t-109 37q-80 0 -127 -22l-14 12v344h193q87 0 160 10l-6 -73h-282v-226q49 13 104 13q86 0 144 -51t58 -147q0 -101 -66 -161.5t-176 -60.5q-78 0 -154 24z" />
  739. <glyph d="M287 -10q-103 0 -160.5 80t-57.5 226q0 183 86 291.5t223 108.5q59 0 84 -13l-8 -60q-28 14 -74 14q-95 0 -160.5 -79t-71.5 -231h2q29 35 73.5 53.5t90.5 18.5q85 0 137.5 -53t52.5 -141q0 -98 -63 -156.5t-154 -58.5zM297 345q-46 0 -88 -22.5t-59 -60.5 q10 -217 139 -217q60 0 98 41.5t38 111.5q0 66 -34 106.5t-94 40.5z" />
  740. <glyph d="M104 610l11 76h397l9 -8v-46q-108 -130 -181 -298.5t-82 -333.5h-79q10 157 90.5 332t176.5 289v2h-169q-95 0 -173 -13z" />
  741. <glyph d="M285 -10q-93 0 -154 46.5t-61 119.5q0 62 45 112t111 78v2q-134 74 -134 180q0 71 58.5 119.5t141.5 48.5t137 -47.5t54 -115.5q0 -56 -37 -104t-99 -77v-1q158 -73 158 -186q0 -74 -62 -124.5t-158 -50.5zM291 644q-51 0 -88.5 -31.5t-37.5 -79.5q0 -91 132 -153 q50 27 82 67.5t32 85.5q0 48 -34.5 79.5t-85.5 31.5zM276 315q-55 -26 -93.5 -67.5t-38.5 -90.5q0 -50 40.5 -82.5t101.5 -32.5q62 0 103 34t42 85q1 49 -38 84.5t-117 69.5z" />
  742. <glyph d="M68 468q0 101 61 164.5t152 63.5q99 0 160.5 -80t61.5 -221q0 -171 -87 -288t-223 -117q-45 0 -74 8l-1 59q25 -7 68 -7q99 0 164 79t75 215h-1q-25 -38 -69 -57.5t-94 -19.5q-87 0 -140 54.5t-53 146.5zM147 474q0 -70 34.5 -111.5t97.5 -41.5q45 0 84.5 21t59.5 65 q-2 108 -41.5 170t-105.5 62q-56 0 -92.5 -46.5t-36.5 -118.5z" />
  743. <glyph d="M513 269q0 -133 -66.5 -206t-164.5 -73q-97 0 -158 72.5t-61 198.5q0 132 66 206.5t165 74.5q98 0 158.5 -73.5t60.5 -199.5zM141 267q0 -101 37.5 -161.5t107.5 -60.5q68 0 108 57t40 162q0 103 -37 163t-107 60q-67 0 -108 -57t-41 -163z" />
  744. <glyph d="M103 0v57h171v253q0 104 1 145h-1l-152 -39l-12 45l230 81l9 -9v-476h144v-57h-390z" />
  745. <glyph d="M100 0l-10 64q115 69 201.5 158.5t86.5 165.5q0 43 -30.5 68.5t-84.5 25.5q-73 0 -157 -58l-8 63q87 55 184 55q76 0 125 -37.5t49 -102.5q0 -88 -84.5 -180.5t-194.5 -157.5h132q88 0 162 10l-10 -74h-361z" />
  746. <glyph d="M101 491q78 54 176 54q75 0 124.5 -39t49.5 -104q0 -60 -43 -111.5t-123 -80.5q91 -7 144 -50t53 -120q0 -90 -69 -145.5t-179 -55.5q-81 0 -147 24l8 57q63 -24 136 -24q76 0 124 37.5t48 100.5q0 64 -48.5 95.5t-128.5 31.5q-25 0 -61 -4v54q101 23 154 71t53 107 q0 44 -30 70.5t-83 26.5q-72 0 -153 -53z" />
  747. <glyph d="M26 90l306 442l79 10l9 -9v-438q66 4 97 9l-10 -71h-87v-186h-73l1 186h-311zM93 93v-1q73 2 230 2h25v209q0 115 3 162h-2z" />
  748. <glyph d="M93 -136l8 58q70 -24 142 -24q76 0 122 43t46 116q0 71 -43 108t-109 37q-80 0 -127 -22l-14 12v344h193q87 0 160 10l-6 -73h-282v-226q49 13 104 13q86 0 144 -51t58 -147q0 -101 -66 -161.5t-176 -60.5q-78 0 -154 24z" />
  749. <glyph d="M287 -10q-103 0 -160.5 80t-57.5 226q0 183 86 291.5t223 108.5q59 0 84 -13l-8 -60q-28 14 -74 14q-95 0 -160.5 -79t-71.5 -231h2q29 35 73.5 53.5t90.5 18.5q85 0 137.5 -53t52.5 -141q0 -98 -63 -156.5t-154 -58.5zM297 345q-46 0 -88 -22.5t-59 -60.5 q10 -217 139 -217q60 0 98 41.5t38 111.5q0 66 -34 106.5t-94 40.5z" />
  750. <glyph d="M104 460l11 76h397l9 -9v-46q-107 -129 -180.5 -297.5t-82.5 -333.5h-79q10 157 90.5 331.5t176.5 289.5v2h-169q-95 0 -173 -13z" />
  751. <glyph d="M285 -10q-93 0 -154 46.5t-61 119.5q0 62 45 112t111 78v2q-134 74 -134 180q0 71 58.5 119.5t141.5 48.5t137 -47.5t54 -115.5q0 -56 -37 -104t-99 -77v-1q158 -73 158 -186q0 -74 -62 -124.5t-158 -50.5zM291 644q-51 0 -88.5 -31.5t-37.5 -79.5q0 -91 132 -153 q50 27 82 67.5t32 85.5q0 48 -34.5 79.5t-85.5 31.5zM276 315q-55 -26 -93.5 -67.5t-38.5 -90.5q0 -50 40.5 -82.5t101.5 -32.5q62 0 103 34t42 85q1 49 -38 84.5t-117 69.5z" />
  752. <glyph d="M68 318q0 101 61 164.5t152 63.5q99 0 160.5 -80t61.5 -221q0 -171 -87 -288t-223 -117q-45 0 -74 8l-1 59q29 -8 68 -8q99 0 164 79.5t75 215.5h-1q-25 -38 -69 -57.5t-94 -19.5q-87 0 -140 54.5t-53 146.5zM147 324q0 -70 34.5 -111.5t97.5 -41.5q45 0 84.5 21t59.5 65 q-2 108 -41.5 170t-105.5 62q-56 0 -92.5 -46.5t-36.5 -118.5z" />
  753. <glyph horiz-adv-x="578" d="M511 272q0 -133 -65.5 -206.5t-161.5 -73.5t-156 73t-60 200q0 132 64.5 207t161.5 75t157 -74t60 -201zM143 271q0 -105 37 -167t108 -62q68 0 107.5 59.5t39.5 166.5q0 106 -37 167.5t-108 61.5q-67 0 -107 -58t-40 -168z" />
  754. <glyph horiz-adv-x="313" d="M120 467h-1l-96 -19l-12 44l172 55l9 -8v-539h-73v355q0 81 1 112z" />
  755. <glyph horiz-adv-x="515" d="M76 0l-9 58q82 65 138 116.5t101 114t45 109.5q0 42 -31.5 68t-86.5 26q-69 0 -158 -47l-8 59q86 43 181 43q80 0 129.5 -38t49.5 -98q0 -80 -84.5 -172.5t-204.5 -179.5h164q66 0 136 8l-9 -67h-353z" />
  756. <glyph horiz-adv-x="451" d="M57 505q76 42 167 42q68 0 111 -31.5t43 -82.5q0 -46 -38.5 -86.5t-109.5 -61.5q80 -5 127 -40t47 -96q0 -70 -60 -113.5t-158 -43.5q-78 0 -140 19l7 52q61 -18 131 -18q65 0 105 27t40 74q0 49 -44.5 71.5t-113.5 22.5q-35 0 -61 -5v52q92 16 142 51.5t50 81.5 q0 33 -24.5 52.5t-70.5 19.5q-67 0 -145 -41z" />
  757. <glyph horiz-adv-x="479" d="M33 193l240 345l77 8l8 -8v-339q44 2 84 6l-9 -64h-75v-141h-70v141h-245zM96 198v-2q54 2 175 2h17l1 150q0 92 2 131h-1z" />
  758. <glyph horiz-adv-x="484" d="M73 11l7 54q60 -19 124 -19q65 0 105 31.5t40 84.5q0 54 -37.5 81.5t-95.5 27.5q-69 0 -110 -19l-13 10v277h180q77 0 136 8l-6 -67h-248v-166q44 11 87 11q78 0 130 -40.5t52 -116.5q0 -80 -60.5 -128t-158.5 -48q-72 0 -132 19z" />
  759. <glyph horiz-adv-x="529" d="M277 -8q-91 0 -144 63t-53 178q0 142 77.5 228t201.5 86q52 0 71 -10l-6 -56q-27 11 -63 11q-83 0 -141 -58t-64 -169h2q53 50 144 50q74 0 119.5 -41t45.5 -112q0 -78 -55 -124t-135 -46zM283 266q-38 0 -75 -16t-51 -42q8 -166 120 -166q51 0 82.5 31t31.5 83 q0 50 -28 80t-80 30z" />
  760. <glyph horiz-adv-x="472" d="M48 470l9 69h357l9 -8v-43q-96 -104 -160.5 -232t-72.5 -256h-76q9 122 80.5 256t157.5 223v1h-155q-74 0 -149 -10z" />
  761. <glyph horiz-adv-x="518" d="M256 -8q-83 0 -137.5 37t-54.5 95q0 50 40 89t99 60v1q-120 61 -120 140q0 57 52.5 95t128.5 38q75 0 123 -37.5t48 -90.5q0 -43 -33 -80.5t-87 -59.5v-1q140 -59 140 -145q0 -59 -56 -100t-143 -41zM262 501q-45 0 -77 -23.5t-32 -59.5q0 -68 114 -114q44 21 71.5 51 t27.5 64q0 36 -30 59t-74 23zM249 243q-48 -19 -81 -50t-33 -68t35 -61.5t87 -24.5q55 0 90.5 25t35.5 63q1 37 -33 64t-101 52z" />
  762. <glyph horiz-adv-x="529" d="M63 367q0 81 55 130.5t135 49.5q87 0 141.5 -61.5t54.5 -173.5q0 -136 -78 -228t-200 -92q-41 0 -64 6l-1 55q25 -5 57 -5q88 0 144.5 57t66.5 159q-42 -55 -139 -55q-78 0 -125 42.5t-47 115.5zM138 371q0 -51 30 -82t85 -31q87 0 120 62q-4 83 -35 129t-88 46 q-48 0 -80 -35t-32 -89z" />
  763. <glyph d="M503 272q0 -133 -63.5 -206.5t-157.5 -73.5t-152 73t-58 200q0 132 63 207t158 75q94 0 152 -74.5t58 -200.5zM148 271q0 -105 35 -167t103 -62q66 0 104 59.5t38 166.5q0 106 -35.5 167.5t-103.5 61.5q-65 0 -103 -58t-38 -168z" />
  764. <glyph d="M112 0v57h171v257q0 104 2 145h-2l-152 -39l-11 46l228 80l8 -9v-480h144v-57h-388z" />
  765. <glyph d="M113 0l-9 58q80 66 134 117t98 113.5t44 109.5q0 42 -31.5 68t-87.5 26q-64 0 -149 -47l-8 59q82 43 173 43q80 0 129.5 -38t49.5 -98q0 -80 -82 -173t-198 -179h154q66 0 136 8l-9 -67h-344z" />
  766. <glyph d="M113 505q78 42 168 42q67 0 110.5 -31.5t43.5 -82.5q0 -46 -39 -86.5t-109 -61.5q79 -5 126.5 -40t47.5 -96q0 -69 -60.5 -113t-158.5 -44q-77 0 -139 19l7 52q61 -18 131 -18q64 0 104.5 27.5t40.5 73.5q0 49 -44.5 71.5t-113.5 22.5q-36 0 -61 -5v52q92 16 142 51.5 t50 81.5q0 33 -25 52.5t-71 19.5q-67 0 -145 -41z" />
  767. <glyph d="M66 193l240 345l78 8l7 -8v-339q43 1 84 6l-8 -64h-76v-141h-69v141h-245zM130 198v-2q53 2 174 2h18v150q0 92 3 131h-2z" />
  768. <glyph d="M113 11l8 54q55 -19 114 -19q65 0 105 31.5t40 84.5q0 54 -37.5 81.5t-94.5 27.5q-63 0 -101 -19l-13 10v277h169q77 0 136 8l-5 -67h-239v-165q46 10 82 10q75 0 126.5 -41t51.5 -116q0 -81 -59.5 -128.5t-155.5 -47.5q-68 0 -127 19z" />
  769. <glyph d="M289 -8q-87 0 -137 63t-50 178q0 142 73.5 228t191.5 86q51 0 71 -10l-7 -56q-26 11 -63 11q-77 0 -130.5 -58t-59.5 -169h2q49 50 134 50q72 0 116 -41t44 -112q0 -78 -53.5 -124t-131.5 -46zM296 266q-36 0 -69.5 -16t-47.5 -42q8 -166 110 -166q49 0 79.5 31.5 t30.5 82.5q0 49 -27 79.5t-76 30.5z" />
  770. <glyph d="M113 470l9 69h357l9 -8v-43q-96 -104 -160.5 -232t-72.5 -256h-76q9 122 80.5 256t157.5 223v1h-155q-74 0 -149 -10z" />
  771. <glyph d="M285 -8q-81 0 -134 37t-53 95q0 50 38 88.5t94 60.5v1q-112 60 -112 140q0 57 50 95t124 38q73 0 119.5 -37.5t46.5 -90.5q0 -43 -31.5 -80.5t-83.5 -59.5v-1q134 -58 134 -145q0 -60 -53.5 -100.5t-138.5 -40.5zM290 501q-42 0 -72.5 -23.5t-30.5 -59.5q0 -68 108 -115 q42 21 68 51.5t26 64.5q0 36 -28.5 59t-70.5 23zM278 243q-46 -19 -77.5 -50t-31.5 -68t33.5 -61.5t84.5 -24.5q50 0 84 24.5t35 63.5q1 37 -31.5 64t-96.5 52z" />
  772. <glyph d="M101 366q0 82 53.5 131.5t131.5 49.5q86 0 136.5 -63t50.5 -172q0 -136 -74.5 -228t-191.5 -92q-39 0 -61 6l-2 55q27 -5 58 -5q82 0 134.5 57t61.5 158q-41 -54 -128 -54q-77 0 -123 42.5t-46 114.5zM177 372q0 -52 28.5 -83t81.5 -31q81 0 110 61q-3 83 -32 129.5 t-81 46.5q-48 0 -77.5 -34.5t-29.5 -88.5z" />
  773. <glyph horiz-adv-x="280" d="M163 201h-50q-14 416 -17 485l74 10l9 -8q-5 -265 -16 -487zM188 50q0 -25 -14.5 -42.5t-38.5 -17.5q-22 0 -35 15t-13 38q0 24 16 42t39 18q21 0 33.5 -15t12.5 -38z" />
  774. <glyph horiz-adv-x="280" d="M87 636q0 24 14.5 42t38.5 18q22 0 35 -15t13 -37q0 -25 -15.5 -42.5t-39.5 -17.5q-21 0 -33.5 14.5t-12.5 37.5zM112 486h51q10 -320 16 -486l-74 -10l-8 9q3 196 15 487z" />
  775. <glyph horiz-adv-x="432" d="M206 213l-47 -1q-9 25 -9 47q0 27 18 52t43.5 46.5t51 44t43.5 54t18 67.5q0 51 -32 82.5t-85 31.5q-42 0 -84.5 -21.5t-71.5 -63.5l-35 40q33 48 87 76t117 28q83 0 132.5 -44t49.5 -118q0 -44 -19.5 -83t-48 -65.5t-56.5 -49t-47.5 -43.5t-19.5 -40t3 -32zM240 50 q0 -25 -14.5 -42.5t-38.5 -17.5q-22 0 -35 15t-13 38q0 24 16 42t39 18q21 0 33.5 -15t12.5 -38z" />
  776. <glyph horiz-adv-x="432" d="M192 636q0 24 15 42t39 18q21 0 34.5 -15t13.5 -37q0 -24 -16 -42t-40 -18q-21 0 -33.5 14.5t-12.5 37.5zM227 473l46 1q9 -21 9 -46q0 -27 -18 -52t-43 -46.5t-50.5 -44t-43.5 -54t-18 -67.5q0 -51 32 -83t85 -32q41 0 83.5 21.5t72.5 63.5l34 -40q-33 -48 -86.5 -76 t-117.5 -28q-82 0 -132 44.5t-50 118.5q0 44 20 83t48 65.5t56 48.5t48 43.5t20 40.5q0 7 -3 31z" />
  777. <glyph horiz-adv-x="311" d="M213 357q0 -26 -17.5 -43.5t-41.5 -17.5t-40 16t-16 41t17.5 43t42.5 18q24 0 39.5 -16t15.5 -41z" />
  778. <glyph horiz-adv-x="427" d="M210 222q-48 0 -78.5 31.5t-31.5 77.5q-1 52 34.5 91t88.5 39q46 0 74.5 -30.5t29.5 -78.5q1 -52 -31 -91t-86 -39z" />
  779. <glyph horiz-adv-x="487" d="M222 366l-6 9l15 152l-131 -93l-25 43l4 9l142 63l-149 67l24 43l11 1l124 -89l-15 161h50l5 -9l-16 -155l133 97l25 -43l-5 -10l-140 -63l148 -67l-25 -43l-11 -1l-125 91l16 -163h-49z" />
  780. <glyph horiz-adv-x="353" d="M293 722l8 -8l-187 -747l-43 8l-8 8l187 747z" />
  781. <glyph horiz-adv-x="361" d="M247 -33l-187 747l8 8l43 8l187 -748l-8 -8z" />
  782. <glyph horiz-adv-x="729" d="M183 -10l-42 5l-8 8l46 184h-127l-8 8l7 42h140l53 215h-127l-8 8l6 41h142l48 195l42 -5l8 -8l-46 -182h191l48 195l42 -5l8 -8l-45 -182h125l8 -8l-6 -41h-140l-53 -215h131l8 -8l-6 -42h-145l-49 -197l-42 5l-8 8l46 184h-191zM244 237h190l54 215h-191z" />
  783. <glyph horiz-adv-x="730" d="M65 197h147l37 146h-141l-8 8l7 42h154l38 153l42 -5l8 -8l-35 -140h168l38 153l42 -5l8 -8l-35 -140h129l8 -8l-6 -42h-143l-37 -146h141l8 -8l-6 -41h-155l-39 -158l-41 5l-8 8l35 145h-168l-39 -158l-42 5l-8 8l36 145h-134l-8 8zM265 197h169l36 146h-169z" />
  784. <glyph horiz-adv-x="373" d="M307 -10q-92 54 -148 147t-56 207t56 206.5t148 145.5l31 -37q-155 -126 -155 -315q0 -190 155 -316z" />
  785. <glyph horiz-adv-x="373" d="M270 344q0 -114 -56.5 -207t-147.5 -147l-31 38q155 127 155 316q0 188 -155 315l31 37q91 -53 147.5 -146t56.5 -206z" />
  786. <glyph horiz-adv-x="334" d="M58 319v48q53 4 76.5 25.5t23.5 61.5q0 27 -14.5 73.5t-14.5 74.5q0 53 40.5 73.5t134.5 20.5l3 -47q-105 0 -105 -61q0 -18 13.5 -69t13.5 -76q0 -40 -25.5 -65.5t-67.5 -34.5q42 -9 67.5 -34.5t25.5 -66.5q0 -25 -13.5 -75.5t-13.5 -68.5q0 -61 105 -61l-3 -48 q-94 0 -134.5 21t-40.5 74q0 27 14.5 73.5t14.5 74.5q0 40 -23.5 61t-76.5 26z" />
  787. <glyph horiz-adv-x="334" d="M277 319q-53 -5 -77 -26t-24 -61q0 -28 15 -74t15 -74q0 -53 -41 -74t-134 -21l-3 48q105 0 105 61q0 18 -14 68.5t-14 75.5q0 41 25.5 66.5t67.5 34.5q-42 9 -67.5 34.5t-25.5 65.5q0 25 14 76t14 69q0 61 -105 61l3 47q94 0 134.5 -20.5t40.5 -73.5q0 -28 -15 -74.5 t-15 -73.5q0 -40 24 -61.5t77 -25.5v-48z" />
  788. <glyph horiz-adv-x="335" d="M90 686h213v-60h-139v-565h139v-61h-213v686z" />
  789. <glyph horiz-adv-x="335" d="M245 686v-686h-214v61h140v565h-140v60h214z" />
  790. <glyph horiz-adv-x="363" d="M30 344v39h303v-39h-303z" />
  791. <glyph horiz-adv-x="518" d="M30 344v39h456v-39h-456z" />
  792. <glyph horiz-adv-x="797" d="M30 344v39h737v-39h-737z" />
  793. <glyph horiz-adv-x="231" d="M46 -170q48 92 58 160q-21 2 -34.5 17.5t-13.5 37.5q0 26 18 44.5t43 18.5t39.5 -17t14.5 -49q0 -49 -31 -116t-67 -115z" />
  794. <glyph horiz-adv-x="414" d="M46 -170q48 92 58 160q-21 2 -34.5 17.5t-13.5 37.5q0 26 18 44.5t43 18.5t39.5 -17t14.5 -49q0 -49 -31 -116t-67 -115zM230 -170q48 92 58 160q-21 2 -34.5 17.5t-13.5 37.5q0 26 17.5 44.5t43.5 18.5q25 0 39.5 -17t14.5 -49q0 -49 -31 -116.5t-68 -114.5z" />
  795. <glyph horiz-adv-x="410" d="M171 741q-46 -88 -58 -160q21 -2 34.5 -17.5t13.5 -37.5q0 -26 -17.5 -44.5t-42.5 -18.5t-40 17.5t-15 48.5q0 49 31 116t68 115zM356 741q-46 -88 -58 -160q21 -2 35 -17.5t14 -37.5q0 -26 -18 -44.5t-43 -18.5t-39.5 17t-14.5 49q0 49 31 116t67 115z" />
  796. <glyph horiz-adv-x="416" d="M232 481q46 88 58 160q-21 1 -34.5 16.5t-13.5 37.5q0 26 17.5 45t42.5 19t40 -17.5t15 -49.5q0 -48 -31 -115t-68 -116zM46 481q48 92 58 160q-21 1 -34.5 16.5t-13.5 37.5q0 26 18 45t43 19t39.5 -17.5t14.5 -49.5q0 -48 -30.5 -115t-67.5 -116z" />
  797. <glyph horiz-adv-x="231" d="M171 740q-46 -88 -58 -160q21 -2 34.5 -17.5t13.5 -37.5q0 -26 -17.5 -44.5t-42.5 -18.5t-40 17.5t-15 48.5q0 49 31 116t68 115z" />
  798. <glyph horiz-adv-x="231" d="M46 485q48 92 58 160q-21 1 -34.5 16.5t-13.5 38.5q0 26 18 44.5t43 18.5t39.5 -17t14.5 -49q0 -49 -31 -116t-67 -115z" />
  799. <glyph horiz-adv-x="455" d="M54 375v21q71 63 169 194l20 -11q-41 -100 -114 -193q73 -95 114 -194l-20 -10q-99 131 -169 193zM226 375v21q66 58 169 194l20 -11q-44 -104 -114 -193q70 -91 114 -194l-20 -10q-104 136 -169 193z" />
  800. <glyph horiz-adv-x="455" d="M401 375q-70 -62 -169 -193l-20 10q41 99 113 193q-73 97 -113 194l20 11q98 -131 169 -194v-21zM229 375q-65 -57 -169 -193l-20 10q41 100 114 193q-73 95 -114 194l20 11q103 -136 169 -194v-21z" />
  801. <glyph horiz-adv-x="283" d="M54 375v21q71 63 169 194l20 -11q-41 -100 -114 -193q73 -95 114 -194l-20 -10q-99 131 -169 193z" />
  802. <glyph horiz-adv-x="283" d="M229 375q-65 -57 -169 -193l-20 10q41 100 114 193q-73 95 -114 194l20 11q103 -136 169 -194v-21z" />
  803. <glyph horiz-adv-x="330" d="M108 756l6 -11l-23 -243h-29l-21 254h67zM283 756l6 -11l-23 -243h-29l-21 254h67z" />
  804. <glyph horiz-adv-x="202" d="M58 763l3 4q32 4 73 4l10 -13l-33 -268h-25l-10 131z" />
  805. <glyph horiz-adv-x="363" d="M30 269v39h303v-39h-303z" />
  806. <glyph horiz-adv-x="516" d="M30 269v39h456v-39h-456z" />
  807. <glyph horiz-adv-x="797" d="M30 270v39h737v-39h-737z" />
  808. <glyph horiz-adv-x="373" d="M307 -85q-91 53 -147.5 146.5t-56.5 207.5t56 206.5t148 145.5l31 -37q-155 -126 -155 -315t155 -317z" />
  809. <glyph horiz-adv-x="373" d="M66 625q91 -53 147.5 -146t56.5 -207t-56.5 -207t-147.5 -146l-31 37q155 127 155 316q0 187 -155 316z" />
  810. <glyph horiz-adv-x="334" d="M58 242v48q53 4 76.5 25.5t23.5 61.5q0 27 -14.5 73.5t-14.5 74.5q0 53 40.5 73.5t134.5 20.5l3 -47q-105 0 -105 -61q0 -19 13.5 -70t13.5 -75q0 -40 -25.5 -65.5t-67.5 -34.5q42 -9 67.5 -34.5t25.5 -66.5q0 -25 -13.5 -75.5t-13.5 -68.5q0 -61 105 -61l-3 -48 q-94 0 -134.5 20.5t-40.5 74.5q0 27 14.5 74t14.5 74q0 40 -23.5 61t-76.5 26z" />
  811. <glyph horiz-adv-x="334" d="M277 242q-53 -5 -77 -26t-24 -61q0 -28 15 -74.5t15 -73.5q0 -54 -40.5 -74.5t-134.5 -20.5l-3 48q105 0 105 61q0 18 -14 68.5t-14 75.5q0 41 25.5 66.5t67.5 34.5q-42 9 -67.5 34.5t-25.5 65.5q0 24 14 75t14 70q0 61 -105 61l3 47q94 0 134.5 -20.5t40.5 -73.5 q0 -28 -15 -74.5t-15 -73.5q0 -40 24 -61.5t77 -25.5v-48z" />
  812. <glyph horiz-adv-x="335" d="M90 609h213v-60h-139v-566h139v-60h-213v686z" />
  813. <glyph horiz-adv-x="335" d="M245 609v-686h-214v60h140v566h-140v60h214z" />
  814. <glyph horiz-adv-x="282" d="M164 201h-51q-4 74 -8 152t-6.5 119t-4.5 64l78 10l9 -8q-4 -159 -17 -337zM189 50q0 -25 -14.5 -42.5t-38.5 -17.5q-21 0 -34.5 15.5t-13.5 37.5q0 24 16 42t39 18q21 0 33.5 -14.5t12.5 -38.5z" />
  815. <glyph horiz-adv-x="282" d="M87 482q0 24 14.5 42t38.5 18q22 0 35 -15t13 -38q0 -24 -16 -42t-39 -18q-21 0 -33.5 15t-12.5 38zM112 331h52q4 -73 8 -152t6 -119.5t5 -64.5l-78 -10l-9 9q3 150 16 337z" />
  816. <glyph horiz-adv-x="409" d="M203 164l-49 -2q-7 16 -7 35q0 26 25.5 53.5t55.5 48t55.5 50t25.5 58.5q0 34 -27.5 56.5t-71.5 22.5q-43 0 -90 -22.5t-82 -61.5l-29 41q39 46 96 72.5t117 26.5q70 0 116.5 -36t46.5 -94q0 -42 -28 -79.5t-61 -59.5t-61 -44.5t-28 -38.5q0 -3 0.5 -10t0.5 -9zM233 48 q0 -24 -14 -41t-37 -17q-21 0 -33.5 14.5t-12.5 36.5q0 23 15.5 40t37.5 17q20 0 32 -13.5t12 -36.5z" />
  817. <glyph horiz-adv-x="409" d="M176 485q0 23 14 40.5t37 17.5q21 0 33.5 -14.5t12.5 -36.5q0 -23 -15.5 -40.5t-37.5 -17.5q-20 0 -32 14t-12 37zM206 369l48 1q8 -14 8 -34q0 -26 -25.5 -53.5t-55.5 -48t-55.5 -50t-25.5 -58.5q0 -34 27.5 -56.5t71.5 -22.5q43 0 90 22.5t82 61.5l29 -41 q-39 -46 -96 -72.5t-117 -26.5q-70 0 -116.5 36t-46.5 93q0 42 28 80t61 59.5t61 44.5t28 39q0 3 -0.5 9.5t-0.5 8.5z" />
  818. <glyph horiz-adv-x="303" d="M205 278q0 -26 -17 -43.5t-41 -17.5t-40.5 16.5t-16.5 40.5q0 25 18 43t43 18q23 0 38.5 -16t15.5 -41z" />
  819. <glyph horiz-adv-x="427" d="M210 139q-48 0 -78.5 31.5t-31.5 77.5q-1 52 34.5 91t88.5 39q46 0 74.5 -30.5t29.5 -78.5q1 -52 -31 -91t-86 -39z" />
  820. <glyph horiz-adv-x="231" d="M46 -170q48 92 58 160q-21 2 -34.5 17.5t-13.5 37.5q0 26 18 44.5t43 18.5t39.5 -17t14.5 -49q0 -49 -31 -116t-67 -115z" />
  821. <glyph horiz-adv-x="414" d="M46 -170q48 92 58 160q-21 2 -34.5 17.5t-13.5 37.5q0 26 18 44.5t43 18.5t39.5 -17t14.5 -49q0 -49 -31 -116t-67 -115zM230 -170q48 92 58 160q-21 2 -34.5 17.5t-13.5 37.5q0 26 17.5 44.5t43.5 18.5q25 0 39.5 -17t14.5 -49q0 -49 -31 -116.5t-68 -114.5z" />
  822. <glyph horiz-adv-x="421" d="M380 585q-55 -65 -69 -122q22 -2 35 -17t13 -37q0 -25 -17.5 -43t-43.5 -18t-42 18.5t-16 47.5q0 44 36 96.5t87 92.5zM195 585q-55 -65 -69 -122q22 -2 35 -17t13 -37q0 -25 -17.5 -43t-43.5 -18t-42 18.5t-16 47.5q0 44 36 96.5t87 92.5z" />
  823. <glyph horiz-adv-x="421" d="M41 366q55 65 69 122q-22 2 -35 17t-13 37q0 26 17.5 43.5t44.5 17.5q25 0 41 -18.5t16 -47.5q0 -43 -36 -96.5t-87 -92.5zM226 366q55 65 69 122q-22 2 -35 17t-13 37q0 26 17.5 43.5t44.5 17.5q25 0 41 -18.5t16 -47.5q0 -43 -36 -96.5t-87 -92.5z" />
  824. <glyph horiz-adv-x="236" d="M195 585q-55 -65 -69 -122q22 -2 35 -17t13 -37q0 -25 -17.5 -43t-43.5 -18t-42 18.5t-16 47.5q0 44 36 96.5t87 92.5z" />
  825. <glyph horiz-adv-x="236" d="M41 366q55 65 69 122q-22 2 -35 17t-13 37q0 26 17.5 43.5t44.5 17.5q25 0 41 -18.5t16 -47.5q0 -43 -36 -96.5t-87 -92.5z" />
  826. <glyph horiz-adv-x="487" d="M222 366l-6 9l15 152l-131 -93l-25 43l4 9l142 63l-149 67l24 43l11 1l124 -89l-15 161h50l5 -9l-16 -155l133 97l25 -43l-5 -10l-140 -63l148 -67l-25 -43l-11 -1l-125 91l16 -163h-49z" />
  827. <glyph horiz-adv-x="455" d="M54 233v21q74 65 169 193l20 -10q-42 -103 -114 -194q71 -91 114 -193l-20 -11q-95 127 -169 194zM226 233v21q69 60 169 193l20 -10q-45 -106 -114 -194q68 -87 114 -193l-20 -11q-100 132 -169 194z" />
  828. <glyph horiz-adv-x="455" d="M401 233q-74 -67 -169 -194l-20 10q41 101 113 194q-72 93 -113 194l20 10q95 -128 169 -193v-21zM229 233q-69 -62 -169 -194l-20 10q42 103 114 194q-72 91 -114 194l20 10q100 -133 169 -193v-21z" />
  829. <glyph horiz-adv-x="283" d="M54 233v21q74 65 169 193l20 -10q-42 -103 -114 -194q71 -91 114 -193l-20 -11q-95 127 -169 194z" />
  830. <glyph horiz-adv-x="283" d="M229 233q-69 -62 -169 -194l-20 10q42 103 114 194q-72 91 -114 194l20 10q100 -133 169 -193v-21z" />
  831. <glyph horiz-adv-x="694" d="M196 -10l-42 5l-8 8l36 145h-134l-8 8l7 41h147l37 146h-141l-8 8l7 42h154l38 153l42 -5l8 -8l-35 -140h168l38 153l42 -5l8 -8l-35 -140h129l8 -8l-6 -42h-143l-37 -146h141l8 -8l-6 -41h-155l-39 -158l-41 5l-8 8l35 145h-168zM247 197h169l36 146h-169z" />
  832. <glyph horiz-adv-x="309" d="M63 -26l141 566l10 4l43 -13l-140 -566l-11 -3z" />
  833. <glyph horiz-adv-x="329" d="M261 -26l-42 -12l-11 3l-140 566l43 13l10 -4z" />
  834. <glyph horiz-adv-x="294" d="M113 610l6 -11l-25 -244h-30l-23 255h72zM246 610l7 -11l-26 -244h-29l-23 255h71z" />
  835. <glyph horiz-adv-x="160" d="M113 610l6 -11l-25 -244h-30l-23 255h72z" />
  836. <glyph horiz-adv-x="491" d="M273 -140l-8 8v125q-91 10 -145.5 81t-54.5 188q0 119 56.5 195t148.5 87v133l32 3l8 -8v-126q81 -3 129 -37l-15 -63q-50 40 -118 40q-74 0 -118.5 -58.5t-44.5 -157.5q0 -101 45 -160t123 -59q66 0 124 40l6 -56q-50 -40 -136 -43v-129z" />
  837. <glyph horiz-adv-x="581" d="M481 119l-82 84q-48 -40 -118 -40q-62 0 -108 32l-75 -74l-33 33l74 74q-38 47 -38 112q0 69 42 122l-75 77l31 31q21 -20 77 -76q48 33 110 33q68 0 115 -38l80 81l33 -33l-81 -82q32 -46 32 -106q0 -64 -34 -111q76 -76 85 -87v-5zM283 481q-60 0 -94.5 -40t-34.5 -95 t35 -95.5t98 -40.5q62 0 94 39t32 96q0 59 -36 97.5t-94 38.5z" />
  838. <glyph horiz-adv-x="479" d="M222 -140l-8 8v122q-93 0 -155 36l7 70q66 -42 153 -42q58 0 90 30.5t32 80.5q0 24 -8.5 45t-18.5 35t-33 31t-35 24t-41 24q-27 16 -42 25.5t-37 28t-33.5 36t-20.5 43.5t-9 57q0 73 44.5 120.5t118.5 58.5v130l32 3l8 -8v-122h3q84 0 139 -31l-10 -71q-58 39 -131 39 q-58 0 -91 -30t-33 -80q0 -27 10.5 -50t29 -39.5t40 -31t46.5 -28.5q9 -5 13 -7q30 -17 50.5 -32t43 -39t34 -55t11.5 -70q0 -75 -45.5 -122t-121.5 -57v-129z" />
  839. <glyph horiz-adv-x="593" d="M48 249l4 38h61q-2 28 -2 45q0 19 2 53h-51l5 38h51q20 127 91 200t176 73q92 0 153 -43l-15 -71q-61 48 -135 48q-73 0 -124 -54t-66 -153h245l-3 -38h-246q-2 -28 -2 -44q0 -29 3 -54h233l-3 -38h-225q17 -91 65 -142t121 -51q83 0 148 53l10 -65q-67 -54 -169 -54 q-104 0 -172.5 68t-85.5 191h-69z" />
  840. <glyph horiz-adv-x="531" d="M194 297l-113 3l7 35l111 10h2l11 86q15 127 61.5 196t141.5 69q67 0 112 -28l-28 -64q-42 33 -84 33q-57 0 -85 -48.5t-43 -165.5l-10 -78h177l5 -8l-11 -40h-178l-41 -326q-4 -33 -8 -53.5t-17 -57.5t-31 -59t-51.5 -39.5t-77.5 -17.5q-54 0 -100 23l20 64 q43 -28 84 -28q23 0 40.5 9.5t28 23t18 35.5t11 40.5t6.5 43.5l43 342h-1z" />
  841. <glyph horiz-adv-x="529" d="M486 -140q-23 -11 -61 -9q-53 0 -107 22t-131.5 71t-94.5 58q-24 -13 -49 -13q-53 0 -53 36q0 17 13 26.5t33 9.5q19 0 49 -10q29 40 53 196l6 46l-111 3l7 35l110 10q10 69 19 115t25.5 95.5t38 78t55.5 47.5t79 19q74 0 118 -33l-28 -68q-43 41 -92 41q-60 0 -87.5 -62 t-53.5 -233h181l5 -8l-12 -40h-182l-7 -41q-28 -158 -80 -220q16 -8 66.5 -33.5t80 -39t74.5 -26.5t82 -13q45 0 79 13z" />
  842. <glyph horiz-adv-x="553" d="M72 124v39h167v93h-167v40h167l-216 393l80 7l115 -212q34 -67 63 -134h2q23 52 65 133l114 213l61 -6l7 -8l-214 -386h165v-40h-167v-93h167v-39h-167v-124h-75v124h-167z" />
  843. <glyph horiz-adv-x="483" d="M273 -140l-8 8v125q-91 10 -145.5 81t-54.5 188q0 119 56.5 195t148.5 87v133l32 3l8 -8v-126q81 -3 129 -37l-15 -63q-50 40 -118 40q-74 0 -118.5 -58.5t-44.5 -157.5q0 -101 45 -160t123 -59q66 0 124 40l6 -56q-50 -40 -136 -43v-129z" />
  844. <glyph horiz-adv-x="581" d="M481 44l-82 84q-48 -40 -118 -40q-62 0 -108 32l-75 -74l-33 33l74 74q-38 47 -38 112q0 69 42 122l-75 77l31 31q21 -20 77 -76q48 33 110 33q68 0 115 -38l80 81l33 -33l-81 -82q32 -46 32 -106q0 -64 -34 -111q76 -76 85 -87v-5zM283 406q-60 0 -94.5 -40t-34.5 -95 t35 -95.5t98 -40.5q62 0 94 39t32 96q0 59 -36 97.5t-94 38.5z" />
  845. <glyph horiz-adv-x="439" d="M203 -140l-8 8v124q-86 0 -147 29l8 65q64 -34 146 -34q53 0 82.5 21.5t29.5 59.5q0 32 -27 56t-65 42t-76.5 37.5t-65.5 53.5t-27 79q0 60 44.5 99t117.5 46v133l32 3l8 -8v-127q72 -2 125 -24l-11 -65q-56 30 -126 30q-52 0 -82.5 -22t-30.5 -61q0 -32 27 -57t65 -42.5 t76.5 -37.5t65.5 -53.5t27 -78.5q0 -58 -42.5 -96t-113.5 -46v-131z" />
  846. <glyph horiz-adv-x="564" d="M45 198l5 38h68q-1 8 -1 26q0 24 3 45h-60l5 38h61q21 94 87.5 148t159.5 54q90 0 147 -34l-14 -65q-56 37 -131 37q-62 0 -107.5 -36.5t-63.5 -103.5h224l-5 -38h-226q-2 -26 -2 -41q0 -20 1 -30h217l-5 -38h-206q15 -67 60 -105t114 -38q78 0 141 39l9 -61 q-64 -41 -161 -41q-98 0 -162.5 54t-80.5 152h-77z" />
  847. <glyph horiz-adv-x="562" d="M295 345l-3 -15h179l5 -8l-11 -40h-179l-25 -191q-4 -27 -7 -43t-11 -47.5t-20.5 -51.5t-31.5 -41.5t-49 -32.5t-67 -11q-53 0 -99 23l20 64q43 -28 84 -28q28 0 48 12.5t31 37.5t16 47t9 55l26 207l-112 3l7 35l111 10l3 23q33 263 204 263q67 0 112 -28l-28 -64 q-42 33 -88 33q-23 0 -41.5 -9t-31 -27t-21 -36.5t-14.5 -46.5t-9 -46.5t-7 -46.5z" />
  848. <glyph horiz-adv-x="526" d="M366 487q-25 0 -44 -12t-31 -28.5t-21.5 -48t-14.5 -56.5t-12 -69h173l5 -8l-11 -40h-173l-2 -15q-16 -119 -71 -177q13 -6 50 -26t58 -30t53 -23.5t60 -19.5t55 -6q46 0 78 15l-28 -70q-18 -10 -52 -10q-53 0 -104 20t-125.5 65.5t-88.5 53.5q-24 -12 -55 -12 q-57 0 -57 39q0 19 12.5 29.5t34.5 10.5q21 0 60 -14q33 43 48 159l2 11l-100 3l7 35l100 10q6 47 12 79t20.5 72t34 64t53.5 41t78 17q76 0 125 -38l-29 -62q-43 41 -100 41z" />
  849. <glyph horiz-adv-x="478" d="M60 94v38h142v75h-142v37h132l-173 296l78 7l90 -160q36 -66 57 -108h2q14 28 59 108l89 160l60 -5l6 -8l-171 -290h131v-37h-143v-75h143v-38h-143v-94h-75v94h-142z" />
  850. <glyph d="M290 -140l-8 8v125q-91 10 -145.5 81t-54.5 188q0 119 56.5 195t148.5 87v133l32 3l8 -8v-126q81 -3 129 -37l-15 -63q-50 40 -118 40q-74 0 -118.5 -58.5t-44.5 -157.5q0 -101 45 -160t123 -59q66 0 124 40l6 -56q-50 -40 -136 -43v-129z" />
  851. <glyph d="M474 206l-82 84q-48 -40 -118 -40q-62 0 -108 32l-75 -74l-33 33l74 74q-38 47 -38 112q0 69 42 122l-75 77l31 31q21 -20 77 -76q48 33 110 33q68 0 115 -38l80 81l33 -33l-81 -82q32 -46 32 -106q0 -64 -34 -111q76 -76 85 -87v-5zM276 568q-60 0 -94.5 -40t-34.5 -95 t35 -95.5t98 -40.5q62 0 94 39t32 96q0 59 -36 97.5t-94 38.5z" />
  852. <glyph d="M254 -140l-8 8v122q-93 0 -155 36l8 70q66 -42 153 -42q57 0 89 30.5t32 80.5q0 30 -10 53.5t-33.5 44t-40 31t-51.5 30.5q-27 16 -42 25.5t-37 28t-33.5 36t-20.5 43.5t-9 57q0 73 44 120.5t119 58.5v130l32 3l8 -8v-122h2q85 0 140 -31l-10 -71q-58 39 -131 39 q-58 0 -91 -30t-33 -80q0 -27 9.5 -49t31.5 -41.5t37.5 -30t47.5 -28.5q4 -2 6.5 -3.5t5.5 -3.5q30 -17 50.5 -32t43 -39t34 -55t11.5 -70q0 -75 -45 -122t-122 -57v-129z" />
  853. <glyph d="M35 249l4 38h60q0 7 -0.5 21.5t-0.5 22.5q0 20 2 54h-51l5 38h50q19 127 86.5 200t165.5 73q86 0 143 -43l-14 -71q-58 48 -126 48q-66 0 -113 -54t-61 -153h228l-3 -38h-229q-2 -28 -2 -44q0 -29 3 -54h217l-4 -38h-209q15 -91 60 -142t111 -51q77 0 137 53l9 -65 q-61 -54 -158 -54t-161 67.5t-81 191.5h-68z" />
  854. <glyph d="M239 297l-106 3l7 35l104 10h3l14 116q5 41 11.5 71.5t19.5 63t31 53t47.5 34t67.5 13.5q63 0 103 -28l-29 -64q-35 33 -78 33q-18 0 -32.5 -6t-24 -20t-16 -26t-11 -34t-6 -33.5l-4.5 -34.5l-18 -138h171l5 -8l-12 -40h-170l-42 -326q-3 -26 -5 -37.5t-8 -40 t-12.5 -44.5t-19.5 -39t-28.5 -35t-39 -21.5t-52.5 -9.5q-49 0 -89 23l20 64q35 -28 73 -28q23 0 39 13t25 39t13 46.5t8 53.5l43 342h-2z" />
  855. <glyph d="M379 637q-52 0 -76.5 -62.5t-47.5 -233.5h161l5 -8l-12 -40h-160l-11 -73q-18 -130 -69 -190q12 -6 59.5 -32.5t72 -38.5t65 -25t74.5 -13q42 0 70 13l-24 -74q-20 -9 -55 -9q-48 0 -96 22.5t-116 71.5t-83 58q-24 -13 -50 -13q-54 0 -54 36q0 17 12.5 26.5t33.5 9.5 q20 0 48 -11q25 40 41 159l9 83l-101 3l7 35l99 10h1q9 76 18 126.5t24 97.5t35.5 73.5t51 42t72.5 15.5q71 0 109 -28l-28 -68q-39 37 -85 37z" />
  856. <glyph d="M83 124v39h167v93h-167v40h167l-187 393l80 7l99 -214q31 -69 51 -122h1q20 52 52 121l99 215l61 -6l6 -8l-186 -386h166v-40h-167v-93h167v-39h-167v-124h-75v124h-167z" />
  857. <glyph d="M298 -140l-8 8v125q-91 10 -145.5 81t-54.5 188q0 119 56.5 195t148.5 87v133l32 3l8 -8v-126q80 -3 130 -37l-16 -63q-50 40 -117 40q-75 0 -119.5 -58t-44.5 -158q0 -101 45 -160t123 -59q66 0 124 40l7 -56q-52 -40 -137 -43v-129z" />
  858. <glyph d="M493 44l-82 84q-48 -40 -118 -40q-62 0 -108 32l-75 -74l-33 33l73 74q-37 48 -37 112q0 71 42 122l-75 77l31 31q50 -50 77 -76q48 33 110 33q68 0 115 -38l80 81l33 -33l-81 -82q32 -46 32 -106q0 -64 -34 -111q76 -76 85 -87v-5zM295 406q-61 0 -95.5 -40t-34.5 -95 t35.5 -95.5t97.5 -40.5q63 0 95 39t32 96q0 59 -36 97.5t-94 38.5z" />
  859. <glyph d="M248 -140l-8 8v124q-78 2 -129 29l7 65q56 -34 130 -34q48 0 74.5 21.5t26.5 57.5q0 33 -24 58t-58.5 42.5t-69 37.5t-58.5 53t-24 78q0 60 39.5 98.5t105.5 46.5v131l32 3l8 -8v-124q67 0 115 -24l-10 -65q-50 30 -109 30q-48 0 -76 -22t-28 -60q0 -33 24 -58t58.5 -43 t69 -37.5t58.5 -52.5t24 -77q0 -60 -39.5 -98t-106.5 -46v-131z" />
  860. <glyph d="M37 198l5 38h67v24q0 17 2 47h-59l4 38h61q19 95 80.5 148.5t148.5 53.5q82 0 135 -34l-14 -65q-51 37 -117 37q-58 0 -99 -36.5t-56 -103.5h204l-5 -38h-205q-2 -12 -2 -40q0 -21 1 -31h196l-5 -38h-186q13 -67 53 -105t103 -38q71 0 129 39l9 -61q-59 -41 -148 -41 q-92 0 -151.5 54t-74.5 152h-76z" />
  861. <glyph d="M316 345l-3 -15h177l5 -8l-12 -40h-176l-25 -191q-14 -107 -40 -153q-42 -74 -126 -74q-48 0 -91 23l20 64q37 -28 74 -28q19 0 33.5 9.5t22.5 22.5t14.5 36.5t9 39.5t6.5 44l26 207l-109 3l7 35l108 10l3 23q33 263 187 263q61 0 103 -28l-29 -64q-37 33 -77 33 q-20 0 -36 -8.5t-27 -28t-18 -35.5t-13 -47t-8 -46t-6 -47z" />
  862. <glyph d="M366 487q-22 0 -39 -11.5t-27.5 -28.5t-19 -47.5t-13 -57t-10.5 -69.5h159l5 -8l-11 -40h-160l-2 -16q-20 -122 -67 -177q11 -6 45 -25t53 -28t49.5 -22t58.5 -19t56 -6q40 0 72 15l-24 -73q-16 -10 -54 -10q-50 0 -97 20t-114.5 65.5t-79.5 52.5q-26 -12 -50 -12 q-51 0 -51 36q0 18 12 28t32 10q17 0 48 -11q26 41 43 157l2 15l-100 2l7 36l99 10q6 47 11.5 79t19 72t31.5 64t49 41t71 17q64 0 109 -28l-29 -62q-37 31 -84 31z" />
  863. <glyph d="M108 94v38h142v75h-142v37h133l-151 296l78 7l79 -159q27 -54 45 -108h2q15 46 46 108l79 159l60 -5l6 -8l-150 -290h133v-37h-143v-75h143v-38h-143v-94h-75v94h-142z" />
  864. <glyph d="M510 322h-193v-197h-52l-1 197h-204v47q48 2 204 4l-1 192h54v-192q75 1 193 1l5 -5z" />
  865. <glyph d="M510 322h-450v47q170 5 450 5l5 -5z" />
  866. <glyph d="M452 148l-163 163l-164 -164l-34 35l163 164l-163 164l34 34l163 -163l163 163l35 -35l-163 -163q19 -19 52.5 -53t60 -60.5t49.5 -48.5l-1 -8z" />
  867. <glyph d="M340 540q0 -25 -15.5 -41.5t-40.5 -16.5q-20 0 -32.5 13.5t-12.5 32.5q0 24 16.5 41.5t40.5 17.5q19 0 31.5 -13t12.5 -34zM510 322h-450v47q170 5 450 5l5 -5zM341 168q0 -25 -15.5 -41.5t-40.5 -16.5q-20 0 -32.5 13.5t-12.5 32.5q0 24 16.5 41.5t40.5 17.5 q19 0 31.5 -13t12.5 -34z" />
  868. <glyph d="M510 417h-450v47q170 5 450 5l5 -6zM510 229h-450v47q170 5 450 5l5 -6z" />
  869. <glyph d="M144 121l53 112h-137v47q59 3 162 3l65 138h-227v47q112 4 252 4l61 128l8 2l38 -20l-52 -109q31 0 79 0.5t64 0.5l5 -6l-5 -47h-168l-66 -137q178 2 234 2l5 -6l-5 -47h-258l-62 -129l-8 -2z" />
  870. <glyph d="M85 121v54l349 175l-348 163v53q74 -31 213.5 -95.5t207.5 -99.5l4 -7v-32z" />
  871. <glyph d="M490 121l-426 211v32l4 7q68 35 207.5 99.5t213.5 95.5v-53l-348 -163l349 -175v-54z" />
  872. <glyph d="M66 246v52l372 139l-371 127v53q252 -84 446 -158l5 -8v-32zM511 96h-450v48q170 5 450 5l6 -6z" />
  873. <glyph d="M137 437l372 -139v-52l-452 173v32l5 8q194 74 446 158v-53zM509 96h-450v48q170 5 449 5l6 -6z" />
  874. <glyph d="M493 415h-177v-160h-52l-1 160h-183v48q46 1 183 3l-1 159h54v-158q38 0 98.5 0.5t78.5 0.5l5 -6zM510 92h-450v48q170 5 450 5l5 -6z" />
  875. <glyph d="M416 363q-26 0 -136.5 35t-122.5 35q-3 0 -6 -1.5t-6.5 -4t-7 -6t-8 -8.5t-8 -9.5t-9 -12t-9.5 -12.5t-10 -13.5t-10 -13.5l-32 22q61 113 109 113q25 0 135.5 -35t122.5 -35q4 0 8 2t9 6.5t9.5 9.5t11.5 13t11.5 14.5t13 17t13.5 17.5l30 -21q-61 -113 -108 -113z M416 162q-26 0 -136.5 34.5t-122.5 34.5q-16 0 -67 -72q-5 -6 -7 -9l-32 22q61 113 109 113q25 0 135.5 -34.5t122.5 -34.5q3 0 6 1t7 4t7 6t8 8.5t8.5 9.5t9 11.5t9 12l10.5 13.5t11 14l30 -21q-61 -113 -108 -113z" />
  876. <glyph d="M499 390l-1 -220h-52v175h-389v48q163 5 434 5z" />
  877. <glyph horiz-adv-x="843" d="M765 347q0 -76 -46.5 -124.5t-119.5 -48.5q-60 0 -101 32t-78 89q-76 -121 -181 -121q-72 0 -116.5 47t-44.5 122q0 77 46.5 125t118.5 48q57 0 99 -31.5t80 -88.5q74 120 182 120q71 0 116 -47t45 -122zM595 467q-86 0 -147 -114q19 -33 30 -49t30.5 -38.5t41.5 -32 t49 -9.5q50 0 81 33.5t31 86.5q0 54 -33 88.5t-83 34.5zM132 349q0 -55 33 -89.5t83 -34.5q84 0 147 110l-1 2q-26 43 -42.5 66t-46 43.5t-62.5 20.5q-49 0 -80 -33t-31 -85z" />
  878. <glyph horiz-adv-x="969" d="M418 498q0 -97 -52.5 -150.5t-128.5 -53.5t-124 53t-48 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM737 696l-423 -706h-46l421 706h48zM131 497q0 -73 28.5 -116.5t81.5 -43.5q51 0 81.5 41.5t30.5 115.5t-28.5 117.5t-80.5 43.5t-82.5 -40.5t-30.5 -117.5z M904 126q0 -97 -52.5 -150.5t-128.5 -53.5q-77 0 -124.5 53t-47.5 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM616 125q0 -73 28.5 -117t81.5 -44q51 0 81.5 41.5t30.5 116.5q0 74 -28 117.5t-81 43.5q-51 0 -82 -40.5t-31 -117.5z" />
  879. <glyph horiz-adv-x="1435" d="M418 498q0 -97 -52.5 -150.5t-128.5 -53.5t-124 53t-48 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM737 696l-423 -706h-46l421 706h48zM131 497q0 -73 28.5 -116.5t81.5 -43.5q51 0 81.5 41.5t30.5 115.5t-28.5 117.5t-80.5 43.5t-82.5 -40.5t-30.5 -117.5z M904 126q0 -97 -52.5 -150.5t-128.5 -53.5q-77 0 -124.5 53t-47.5 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM1370 126q0 -97 -52.5 -150.5t-128.5 -53.5q-77 0 -124.5 53t-47.5 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM616 125q0 -73 28.5 -117 t81.5 -44q51 0 81.5 41.5t30.5 116.5q0 74 -28 117.5t-81 43.5q-51 0 -82 -40.5t-31 -117.5zM1082 125q0 -73 28.5 -117t81.5 -44q51 0 81.5 41.5t30.5 116.5q0 74 -28 117.5t-81 43.5q-51 0 -82 -40.5t-31 -117.5z" />
  880. <glyph d="M510 247h-193v-197h-52l-1 197h-204v47q48 2 204 4l-1 192h54v-192q75 1 193 1l5 -5z" />
  881. <glyph d="M510 242h-450v47q170 5 450 5l5 -6z" />
  882. <glyph d="M452 72l-163 163l-164 -164l-34 35l163 164l-163 163l34 34q78 -76 163 -163l163 164l35 -36l-163 -163q19 -19 52.5 -53t60 -60.5t49.5 -48.5l-1 -8z" />
  883. <glyph d="M340 465q0 -25 -15.5 -41.5t-40.5 -16.5q-20 0 -32.5 13.5t-12.5 32.5q0 24 16.5 41.5t40.5 17.5q19 0 31.5 -13t12.5 -34zM510 247h-450v47q170 5 450 5l5 -5zM341 93q0 -25 -15.5 -41.5t-40.5 -16.5q-20 0 -32.5 13.5t-12.5 32.5q0 24 16.5 41.5t40.5 17.5 q19 0 31.5 -13t12.5 -34z" />
  884. <glyph d="M510 341h-450v47q170 5 450 5l5 -5zM510 153h-450v47q170 5 450 5l5 -5z" />
  885. <glyph d="M144 41l53 112h-137v47q50 1 162 3l65 138h-227v47q54 2 252 4l61 128l8 2l38 -21l-52 -108h143l5 -5l-5 -47h-168l-66 -137q89 1 234 1l5 -5l-5 -47h-258l-62 -129l-8 -3z" />
  886. <glyph d="M85 44v54l349 176l-348 162v54q71 -29 210.5 -94t210.5 -101l4 -7v-33z" />
  887. <glyph d="M141 274l349 -176v-54l-426 211v33l4 7q72 36 211.5 101t209.5 94v-54z" />
  888. <glyph d="M66 159v53l372 139l-371 127v53q269 -90 446 -159l5 -7v-32zM511 66h-450v48q170 5 450 5l6 -6z" />
  889. <glyph d="M137 351l372 -139v-53l-452 174v32l5 7q177 69 446 159v-53zM509 66h-450v48q170 5 449 5l6 -6z" />
  890. <glyph d="M504 337h-177v-161h-52l-1 161h-183v47q126 3 183 3l-1 159h54v-158q69 1 177 1l6 -6zM510 70h-450v47q170 5 450 5l5 -5z" />
  891. <glyph d="M416 321q-26 0 -136.5 35t-122.5 35q-3 0 -6 -1.5t-6.5 -4t-7 -6t-8 -8.5t-8 -9.5t-9 -12t-9.5 -12.5t-10 -13.5t-10 -13.5l-32 22q61 113 109 113q25 0 135.5 -35t122.5 -35q4 0 8 2t9 6.5t9.5 9.5t11.5 13t11.5 14.5t13 17t13.5 17.5l30 -21q-61 -113 -108 -113z M416 120q-26 0 -136.5 34.5t-122.5 34.5q-16 0 -67 -72q-2 -2 -2.5 -3t-2 -3t-2.5 -3l-32 22q61 113 109 113q25 0 135.5 -34.5t122.5 -34.5q3 0 6 1t7 4t7 6t8 8.5t8.5 9.5t9 11.5t9 12l10.5 13.5t11 14l30 -21q-61 -113 -108 -113z" />
  892. <glyph d="M499 314l-1 -220h-52v175h-389v48q163 5 434 5z" />
  893. <glyph horiz-adv-x="843" d="M765 272q0 -76 -46.5 -124.5t-119.5 -48.5q-60 0 -101 32t-78 89q-76 -121 -181 -121q-72 0 -116.5 47t-44.5 122q0 77 46.5 125t118.5 48q57 0 99 -31.5t80 -88.5q74 120 182 120q71 0 116 -47t45 -122zM595 392q-86 0 -147 -114q19 -33 30 -49t30.5 -38.5t41.5 -32 t49 -9.5q50 0 81 33.5t31 86.5q0 54 -33 88.5t-83 34.5zM132 274q0 -55 33 -89.5t83 -34.5q84 0 147 110l-1 2q-26 43 -42.5 66t-46 43.5t-62.5 20.5q-49 0 -80 -33t-31 -85z" />
  894. <glyph horiz-adv-x="915" d="M646 546l-333 -556h-45l332 556h46zM380 396q0 -65 -43 -113t-116 -48q-72 0 -114 46t-42 110q0 65 43.5 110t115.5 45t114 -43.5t42 -106.5zM130 391q0 -51 23.5 -86.5t67.5 -35.5q46 0 70 37t24 89q0 49 -23.5 81.5t-67.5 32.5q-46 0 -70 -33t-24 -85zM850 151 q0 -65 -43 -113t-116 -48q-72 0 -114 46t-42 110q0 65 43.5 110.5t115.5 45.5q71 0 113.5 -44t42.5 -107zM600 147q0 -50 23.5 -85t67.5 -35q47 0 70.5 36.5t23.5 86.5q0 48 -23.5 81.5t-67.5 33.5q-45 0 -69.5 -33.5t-24.5 -84.5z" />
  895. <glyph horiz-adv-x="1283" d="M646 546l-333 -556h-45l332 556h46zM380 396q0 -65 -43 -113t-116 -48q-72 0 -114 46t-42 110q0 65 43.5 110t115.5 45t114 -43.5t42 -106.5zM130 391q0 -51 23.5 -86.5t67.5 -35.5q46 0 70 37t24 89q0 49 -23.5 81.5t-67.5 32.5q-46 0 -70 -33t-24 -85zM1218 151 q0 -65 -43 -113t-116 -48q-72 0 -113.5 46t-41.5 110q0 66 43 111t115 45q71 0 113.5 -44t42.5 -107zM850 151q0 -65 -43 -113t-116 -48q-72 0 -114 46t-42 110q0 65 43.5 110.5t115.5 45.5q71 0 113.5 -44t42.5 -107zM968 147q0 -50 23.5 -85t68.5 -35q46 0 69.5 36.5 t23.5 86.5q0 49 -23 82t-68 33t-69.5 -33.5t-24.5 -84.5zM600 147q0 -50 23.5 -85t67.5 -35q47 0 70.5 36.5t23.5 86.5q0 48 -23.5 81.5t-67.5 33.5q-45 0 -69.5 -33.5t-24.5 -84.5z" />
  896. <glyph horiz-adv-x="751" d="M334 635q-46 0 -78 -27t-32 -71q0 -31 20 -70t38 -62t49 -59l147 -175q8 -11 26 -31q49 68 49 162q0 41 -6 71l75 12l13 -14q6 -160 -94 -270q55 -52 97 -52q30 0 57 18l10 -51q-33 -26 -86 -26q-66 0 -133 62q-88 -62 -192 -62q-96 0 -153.5 52t-58.5 132 q1 59 36.5 110.5t96.5 82.5q-70 88 -70 165q0 71 53 117.5t138 46.5q64 0 112 -30t71 -82l-43 -59q-51 110 -142 110zM161 189q0 -61 42.5 -103t116.5 -43q74 0 132 44q-21 22 -51 59l-144 170q-8 10 -15 17q-40 -26 -60.5 -65t-20.5 -79z" />
  897. <glyph horiz-adv-x="335" d="M164 457q-50 0 -82.5 32t-32.5 84q0 53 36 88.5t87 35.5q49 0 81.5 -31.5t32.5 -82.5q0 -52 -36 -89t-86 -37zM168 659q-34 0 -55.5 -24.5t-21.5 -59.5q0 -34 21.5 -56.5t54.5 -22.5q34 0 55.5 24.5t21.5 60.5q0 34 -21 56t-55 22z" />
  898. <glyph horiz-adv-x="335" d="M164 306q-50 0 -82.5 32t-32.5 84q0 53 36 88.5t87 35.5q49 0 81.5 -31.5t32.5 -82.5q0 -52 -36 -89t-86 -37zM168 508q-34 0 -55.5 -24.5t-21.5 -59.5q0 -34 21.5 -56.5t54.5 -22.5q34 0 55.5 24.5t21.5 60.5q0 34 -21 56t-55 22z" />
  899. <glyph horiz-adv-x="646" d="M288 490q-36 0 -60 -18.5t-24 -51.5q0 -23 16.5 -53t29 -44t38.5 -43l127 -142q10 -12 18 -20q38 52 38 123q0 36 -5 61l68 10l12 -13q0 -127 -79 -214q42 -37 81 -37q28 0 48 14l9 -49q-30 -21 -78 -21q-60 0 -114 49q-73 -49 -163 -49q-82 0 -131.5 41.5t-49.5 106.5 q0 49 31.5 89t84.5 58q-58 68 -58 128q0 57 45 94.5t119 37.5q53 0 94 -22t62 -59l-40 -58q-46 82 -119 82zM143 153q0 -49 35.5 -80t95.5 -31q62 0 108 30q-14 15 -44 49l-125 136l-2 2q-33 -17 -50.5 -46t-17.5 -60z" />
  900. <glyph horiz-adv-x="335" d="M164 306q-50 0 -82.5 32t-32.5 84q0 53 36 88.5t87 35.5q49 0 81.5 -31.5t32.5 -82.5q0 -52 -36 -89t-86 -37zM168 508q-34 0 -55.5 -24.5t-21.5 -59.5q0 -34 21.5 -56.5t54.5 -22.5q34 0 55.5 24.5t21.5 60.5q0 34 -21 56t-55 22z" />
  901. <glyph horiz-adv-x="508" d="M270 -140l-8 8v127q-94 14 -148 84t-54 183q0 114 56.5 189t150.5 92v134l32 3l8 -8v-125h9q89 0 148 -34l-15 -65q-56 37 -130 37q-80 0 -130.5 -58t-50.5 -161q0 -95 48 -153t134 -58q79 0 140 39l9 -61q-64 -41 -161 -41h-6v-129z" />
  902. <glyph horiz-adv-x="581" d="M481 44l-82 84q-48 -40 -118 -40q-62 0 -108 32l-75 -74l-33 33l74 74q-38 47 -38 112q0 69 42 122l-75 77l31 31q21 -20 77 -76q48 33 110 33q68 0 115 -38l80 81l33 -33l-81 -82q32 -46 32 -106q0 -64 -34 -111q76 -76 85 -87v-5zM283 406q-60 0 -94.5 -40t-34.5 -95 t35 -95.5t98 -40.5q62 0 94 39t32 96q0 59 -36 97.5t-94 38.5z" />
  903. <glyph horiz-adv-x="461" d="M214 -140l-8 8v124q-86 0 -147 29l7 65q65 -34 147 -34q53 0 82.5 21.5t29.5 59.5q0 32 -27 56t-65.5 42t-77 37.5t-65.5 53.5t-27 79q0 60 45 99t118 46v133l32 3l8 -8v-127q72 -2 125 -24l-11 -65q-57 30 -126 30q-52 0 -83 -22t-31 -61q0 -32 27 -57t65.5 -42.5 t77 -37.5t65.5 -53.5t27 -78.5q0 -58 -42.5 -96t-113.5 -46v-131z" />
  904. <glyph horiz-adv-x="606" d="M37 198l5 38h67q0 17 -1 26q0 24 3 45h-59l4 38h61q22 94 88 148t159 54q89 0 148 -34l-15 -65q-55 37 -130 37q-62 0 -108 -36.5t-63 -103.5h223l-4 -38h-226q-3 -20 -3 -41q0 -10 2 -30h217l-5 -38h-207q15 -67 60 -105t115 -38q79 0 140 39l9 -61q-64 -41 -160 -41 q-98 0 -162.5 54t-80.5 152h-77z" />
  905. <glyph d="M510 322h-193v-197h-52l-1 197h-204v47q48 2 204 4l-1 192h54v-192q75 1 193 1l5 -5z" />
  906. <glyph d="M510 322h-450v47q170 5 450 5l5 -5z" />
  907. <glyph d="M452 148l-163 163l-164 -164l-34 35l163 164l-163 164l34 34l163 -163l163 163l35 -35l-163 -163q19 -19 52.5 -53t60 -60.5t49.5 -48.5l-1 -8z" />
  908. <glyph d="M340 540q0 -25 -15.5 -41.5t-40.5 -16.5q-20 0 -32.5 13.5t-12.5 32.5q0 24 16.5 41.5t40.5 17.5q19 0 31.5 -13t12.5 -34zM510 322h-450v47q170 5 450 5l5 -5zM341 168q0 -25 -15.5 -41.5t-40.5 -16.5q-20 0 -32.5 13.5t-12.5 32.5q0 24 16.5 41.5t40.5 17.5 q19 0 31.5 -13t12.5 -34z" />
  909. <glyph d="M510 417h-450v47q170 5 450 5l5 -6zM510 229h-450v47q170 5 450 5l5 -6z" />
  910. <glyph d="M144 121l53 112h-137v47q59 3 162 3l65 138h-227v47q112 4 252 4l61 128l8 2l38 -20l-52 -109q31 0 79 0.5t64 0.5l5 -6l-5 -47h-168l-66 -137q178 2 234 2l5 -6l-5 -47h-258l-62 -129l-8 -2z" />
  911. <glyph d="M85 121v54l349 175l-348 163v53q74 -31 213.5 -95.5t207.5 -99.5l4 -7v-32z" />
  912. <glyph d="M490 121l-426 211v32l4 7q68 35 207.5 99.5t213.5 95.5v-53l-348 -163l349 -175v-54z" />
  913. <glyph d="M66 246v52l372 139l-371 127v53q252 -84 446 -158l5 -8v-32zM511 96h-450v48q170 5 450 5l6 -6z" />
  914. <glyph d="M137 437l372 -139v-52l-452 173v32l5 8q194 74 446 158v-53zM509 96h-450v48q170 5 449 5l6 -6z" />
  915. <glyph d="M493 415h-177v-160h-52l-1 160h-183v48q46 1 183 3l-1 159h54v-158q38 0 98.5 0.5t78.5 0.5l5 -6zM510 92h-450v48q170 5 450 5l5 -6z" />
  916. <glyph d="M416 323q-26 0 -136.5 35t-122.5 35q-16 0 -67 -72q-5 -6 -7 -9l-32 22q61 113 109 113q25 0 135.5 -35t122.5 -35q4 0 8 2t9 7t9.5 9t11.5 13t11.5 14.5t13 17.5t13.5 18l30 -22q-61 -113 -108 -113zM416 120q-26 0 -136.5 35t-122.5 35q-16 0 -67 -72q-2 -2 -2.5 -3 t-2 -3t-2.5 -3l-32 22q61 113 109 113q25 0 135.5 -35t122.5 -35q4 0 8 2t9 7t9.5 9t11.5 13t11.5 14.5t13 17.5t13.5 18l30 -22q-61 -113 -108 -113z" />
  917. <glyph d="M499 314l-1 -220h-52v175h-389v48q163 5 434 5z" />
  918. <glyph horiz-adv-x="843" d="M765 272q0 -76 -46.5 -124.5t-119.5 -48.5q-60 0 -101 32t-78 89q-76 -121 -181 -121q-72 0 -116.5 47t-44.5 122q0 77 46.5 125t118.5 48q57 0 99 -31.5t80 -88.5q74 120 182 120q71 0 116 -47t45 -122zM595 392q-86 0 -147 -114q19 -33 30 -49t30.5 -38.5t41.5 -32 t49 -9.5q50 0 81 33.5t31 86.5q0 54 -33 88.5t-83 34.5zM132 274q0 -55 33 -89.5t83 -34.5q84 0 147 110l-1 2q-26 43 -42.5 66t-46 43.5t-62.5 20.5q-49 0 -80 -33t-31 -85z" />
  919. <glyph horiz-adv-x="969" d="M418 498q0 -97 -52.5 -150.5t-128.5 -53.5t-124 53t-48 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM737 696l-423 -706h-46l421 706h48zM131 497q0 -73 28.5 -116.5t81.5 -43.5q51 0 81.5 41.5t30.5 115.5t-28.5 117.5t-80.5 43.5t-82.5 -40.5t-30.5 -117.5z M904 126q0 -97 -52.5 -150.5t-128.5 -53.5q-77 0 -124.5 53t-47.5 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM616 125q0 -73 28.5 -117t81.5 -44q51 0 81.5 41.5t30.5 116.5q0 74 -28 117.5t-81 43.5q-51 0 -82 -40.5t-31 -117.5z" />
  920. <glyph horiz-adv-x="1435" d="M418 498q0 -97 -52.5 -150.5t-128.5 -53.5t-124 53t-48 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM737 696l-423 -706h-46l421 706h48zM131 497q0 -73 28.5 -116.5t81.5 -43.5q51 0 81.5 41.5t30.5 115.5t-28.5 117.5t-80.5 43.5t-82.5 -40.5t-30.5 -117.5z M904 126q0 -97 -52.5 -150.5t-128.5 -53.5q-77 0 -124.5 53t-47.5 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM1370 126q0 -97 -52.5 -150.5t-128.5 -53.5q-77 0 -124.5 53t-47.5 144q0 97 52 151.5t129 54.5t124.5 -53.5t47.5 -145.5zM616 125q0 -73 28.5 -117 t81.5 -44q51 0 81.5 41.5t30.5 116.5q0 74 -28 117.5t-81 43.5q-51 0 -82 -40.5t-31 -117.5zM1082 125q0 -73 28.5 -117t81.5 -44q51 0 81.5 41.5t30.5 116.5q0 74 -28 117.5t-81 43.5q-51 0 -82 -40.5t-31 -117.5z" />
  921. <glyph horiz-adv-x="526" d="M366 487q-25 0 -44 -12t-31 -28.5t-21.5 -48t-14.5 -56.5t-12 -69h173l5 -8l-11 -40h-173l-2 -15q-16 -119 -71 -177q13 -6 50 -26t58 -30t53 -23.5t60 -19.5t55 -6q46 0 78 15l-28 -70q-18 -10 -52 -10q-53 0 -104 20t-125.5 65.5t-88.5 53.5q-24 -12 -55 -12 q-57 0 -57 39q0 19 12.5 29.5t34.5 10.5q21 0 60 -14q33 43 48 159l2 11l-100 3l7 35l100 10q6 47 12 79t20.5 72t34 64t53.5 41t78 17q76 0 125 -38l-29 -62q-43 41 -100 41z" />
  922. <glyph d="M304 -140l-8 8v125q-91 10 -145.5 81t-54.5 188q0 119 56.5 195t148.5 87v133l32 3l8 -8v-126q79 -3 129 -37l-15 -63q-51 40 -118 40q-74 0 -118.5 -58.5t-44.5 -157.5q0 -101 45 -160t123 -59q66 0 124 40l6 -56q-52 -40 -136 -43v-129z" />
  923. <glyph d="M493 44l-82 84q-48 -40 -118 -40q-62 0 -108 32l-75 -74l-33 33l73 74q-37 48 -37 112q0 71 42 122l-75 77l31 31q50 -50 77 -76q48 33 110 33q68 0 115 -38l80 81l33 -33l-81 -82q32 -46 32 -106q0 -64 -34 -111q76 -76 85 -87v-5zM295 406q-61 0 -95.5 -40t-34.5 -95 t35.5 -95.5t97.5 -40.5q63 0 95 39t32 96q0 59 -36 97.5t-94 38.5z" />
  924. <glyph d="M256 -140l-8 8v124q-86 0 -147 29l7 65q65 -34 147 -34q53 0 82.5 21.5t29.5 59.5q0 32 -27 56t-65.5 42t-77 37.5t-65.5 53.5t-27 79q0 60 45 99t118 46v133l32 3l8 -8v-127q72 -2 125 -24l-11 -65q-57 30 -126 30q-52 0 -83 -22t-31 -61q0 -32 27 -57t65.5 -42.5 t77 -37.5t65.5 -53.5t27 -78.5q0 -58 -42.5 -96t-113.5 -46v-131z" />
  925. <glyph horiz-adv-x="550" d="M31 198l5 38h68q-1 8 -1 26q0 24 3 45h-60l5 38h61q21 94 87.5 148t159.5 54q90 0 147 -34l-14 -65q-56 37 -131 37q-62 0 -107.5 -36.5t-63.5 -103.5h224l-5 -38h-226q-2 -26 -2 -41q0 -20 1 -30h217l-5 -38h-206q15 -67 60 -105t114 -38q78 0 141 39l9 -61 q-64 -41 -161 -41q-98 0 -162.5 54t-80.5 152h-77z" />
  926. <glyph d="M358 487q-22 0 -39 -11.5t-27.5 -28.5t-19 -47.5t-13 -57t-10.5 -69.5h159l5 -8l-11 -40h-160l-2 -16q-20 -122 -67 -177q11 -6 45 -25t53 -28t49.5 -22t58.5 -19t56 -6q40 0 72 15l-24 -73q-16 -10 -54 -10q-50 0 -97 20t-114.5 65.5t-79.5 52.5q-26 -12 -50 -12 q-51 0 -51 36q0 18 12 28t32 10q17 0 48 -11q26 41 43 157l2 15l-100 2l7 36l99 10q6 47 11.5 79t19 72t31.5 64t49 41t71 17q64 0 109 -28l-29 -62q-37 31 -84 31z" />
  927. <glyph d="M108 94v38h142v75h-142v37h133l-151 296l78 7l79 -159q27 -54 45 -108h2q15 46 46 108l79 159l60 -5l6 -8l-150 -290h133v-37h-143v-75h143v-38h-143v-94h-75v94h-142z" />
  928. <glyph horiz-adv-x="489" d="M65 94v38h142v75h-142v37h132l-173 296l78 7l90 -160q36 -66 57 -108h2q14 28 59 108l89 160l60 -5l6 -8l-171 -290h131v-37h-143v-75h143v-38h-143v-94h-75v94h-142z" />
  929. <glyph horiz-adv-x="562" d="M295 345l-3 -15h179l5 -8l-11 -40h-179l-25 -191q-4 -27 -7 -43t-11 -47.5t-20.5 -51.5t-31.5 -41.5t-49 -32.5t-67 -11q-53 0 -99 23l20 64q43 -28 84 -28q28 0 48 12.5t31 37.5t16 47t9 55l26 207l-112 3l7 35l111 10l3 23q33 263 204 263q67 0 112 -28l-28 -64 q-42 33 -88 33q-23 0 -41.5 -9t-31 -27t-21 -36.5t-14.5 -46.5t-9 -46.5t-7 -46.5z" />
  930. <glyph d="M316 345l-3 -15h177l5 -8l-12 -40h-176l-25 -191q-14 -107 -40 -153q-42 -74 -126 -74q-48 0 -91 23l20 64q37 -28 74 -28q19 0 33.5 9.5t22.5 22.5t14.5 36.5t9 39.5t6.5 44l26 207l-109 3l7 35l108 10l3 23q33 263 187 263q61 0 103 -28l-29 -64q-37 33 -77 33 q-20 0 -36 -8.5t-27 -28t-18 -35.5t-13 -47t-8 -46t-6 -47z" />
  931. <glyph horiz-adv-x="556" d="M264 865l-3 -14q-103 -58 -242 -74l-8 23q130 55 204 111zM541 865l-4 -14q-101 -58 -242 -74l-8 23q128 54 204 111zM180 0h-77v529q0 80 -8 157l77 10l8 -8v-688zM314 -193l-25 38q87 69 87 222v462q0 79 -9 155l78 12l8 -8v-621q0 -102 -33 -162t-106 -98z" />
  932. <glyph horiz-adv-x="538" d="M219 744l5 -14q-58 -88 -161 -156l-25 13q78 98 112 171zM487 744l5 -14q-58 -87 -160 -156l-25 13q79 99 111 171zM96 0v339q0 97 -9 155l76 12l8 -8v-498h-75zM311 -256l-26 33q81 68 81 189v373q0 77 -9 155l75 12l9 -8v-524q0 -87 -32 -141.5t-98 -88.5z" />
  933. <glyph horiz-adv-x="453" d="M199 784l5 -13q-58 -88 -161 -156l-25 12q79 101 112 171zM424 784l5 -13q-58 -88 -161 -156l-25 12q76 95 112 171zM151 0h-75v412q0 60 -7 127l73 8l9 -8v-539zM252 -149l-22 31q73 60 73 180v350q0 62 -9 125l75 10l9 -8v-477q0 -83 -29 -131t-97 -80z" />
  934. <hkern u1="&#x21;" u2="&#x1ef9;" k="5" />
  935. <hkern u1="&#x21;" u2="&#x1ef3;" k="5" />
  936. <hkern u1="&#x21;" u2="&#x1ee5;" k="8" />
  937. <hkern u1="&#x21;" u2="&#x233;" k="5" />
  938. <hkern u1="&#x21;" u2="&#x1dc;" k="8" />
  939. <hkern u1="&#x21;" u2="&#x1da;" k="8" />
  940. <hkern u1="&#x21;" u2="&#x1d8;" k="8" />
  941. <hkern u1="&#x21;" u2="&#x1d6;" k="8" />
  942. <hkern u1="&#x21;" u2="&#x1d4;" k="8" />
  943. <hkern u1="&#x21;" u2="&#x177;" k="5" />
  944. <hkern u1="&#x21;" u2="&#x173;" k="8" />
  945. <hkern u1="&#x21;" u2="&#x171;" k="8" />
  946. <hkern u1="&#x21;" u2="&#x16f;" k="8" />
  947. <hkern u1="&#x21;" u2="&#x16d;" k="8" />
  948. <hkern u1="&#x21;" u2="&#x16b;" k="8" />
  949. <hkern u1="&#x21;" u2="&#x169;" k="8" />
  950. <hkern u1="&#x21;" u2="&#xff;" k="5" />
  951. <hkern u1="&#x21;" u2="&#xfd;" k="5" />
  952. <hkern u1="&#x21;" u2="&#xfc;" k="8" />
  953. <hkern u1="&#x21;" u2="&#xfb;" k="8" />
  954. <hkern u1="&#x21;" u2="&#xfa;" k="8" />
  955. <hkern u1="&#x21;" u2="&#xf9;" k="8" />
  956. <hkern u1="&#x21;" u2="y" k="5" />
  957. <hkern u1="&#x21;" u2="u" k="8" />
  958. <hkern u1="&#x22;" g2="s_h" k="28" />
  959. <hkern u1="&#x22;" g2="c_t" k="48" />
  960. <hkern u1="&#x22;" g2="c_h" k="48" />
  961. <hkern u1="&#x22;" u2="&#xfb02;" k="3" />
  962. <hkern u1="&#x22;" u2="&#xfb01;" k="3" />
  963. <hkern u1="&#x22;" u2="&#x1ecd;" k="48" />
  964. <hkern u1="&#x22;" u2="&#x1ebd;" k="48" />
  965. <hkern u1="&#x22;" u2="&#x1eb9;" k="48" />
  966. <hkern u1="&#x22;" u2="&#x1e9e;" k="3" />
  967. <hkern u1="&#x22;" u2="&#x1e63;" k="28" />
  968. <hkern u1="&#x22;" u2="&#x1e0d;" k="48" />
  969. <hkern u1="&#x22;" u2="&#x259;" k="48" />
  970. <hkern u1="&#x22;" u2="&#x219;" k="28" />
  971. <hkern u1="&#x22;" u2="&#x1ff;" k="48" />
  972. <hkern u1="&#x22;" u2="&#x1eb;" k="48" />
  973. <hkern u1="&#x22;" u2="&#x1d2;" k="48" />
  974. <hkern u1="&#x22;" u2="&#x161;" k="28" />
  975. <hkern u1="&#x22;" u2="&#x15f;" k="28" />
  976. <hkern u1="&#x22;" u2="&#x15d;" k="28" />
  977. <hkern u1="&#x22;" u2="&#x15b;" k="28" />
  978. <hkern u1="&#x22;" u2="&#x153;" k="48" />
  979. <hkern u1="&#x22;" u2="&#x151;" k="48" />
  980. <hkern u1="&#x22;" u2="&#x14f;" k="48" />
  981. <hkern u1="&#x22;" u2="&#x14d;" k="48" />
  982. <hkern u1="&#x22;" u2="&#x11b;" k="48" />
  983. <hkern u1="&#x22;" u2="&#x119;" k="48" />
  984. <hkern u1="&#x22;" u2="&#x117;" k="48" />
  985. <hkern u1="&#x22;" u2="&#x115;" k="48" />
  986. <hkern u1="&#x22;" u2="&#x113;" k="48" />
  987. <hkern u1="&#x22;" u2="&#x111;" k="48" />
  988. <hkern u1="&#x22;" u2="&#x10f;" k="48" />
  989. <hkern u1="&#x22;" u2="&#x10d;" k="48" />
  990. <hkern u1="&#x22;" u2="&#x10b;" k="48" />
  991. <hkern u1="&#x22;" u2="&#x109;" k="48" />
  992. <hkern u1="&#x22;" u2="&#x107;" k="48" />
  993. <hkern u1="&#x22;" u2="&#xf8;" k="48" />
  994. <hkern u1="&#x22;" u2="&#xf6;" k="48" />
  995. <hkern u1="&#x22;" u2="&#xf5;" k="48" />
  996. <hkern u1="&#x22;" u2="&#xf4;" k="48" />
  997. <hkern u1="&#x22;" u2="&#xf3;" k="48" />
  998. <hkern u1="&#x22;" u2="&#xf2;" k="48" />
  999. <hkern u1="&#x22;" u2="&#xf0;" k="48" />
  1000. <hkern u1="&#x22;" u2="&#xeb;" k="48" />
  1001. <hkern u1="&#x22;" u2="&#xea;" k="48" />
  1002. <hkern u1="&#x22;" u2="&#xe9;" k="48" />
  1003. <hkern u1="&#x22;" u2="&#xe8;" k="48" />
  1004. <hkern u1="&#x22;" u2="&#xe7;" k="48" />
  1005. <hkern u1="&#x22;" u2="&#xdf;" k="3" />
  1006. <hkern u1="&#x22;" u2="s" k="28" />
  1007. <hkern u1="&#x22;" u2="q" k="48" />
  1008. <hkern u1="&#x22;" u2="o" k="48" />
  1009. <hkern u1="&#x22;" u2="f" k="3" />
  1010. <hkern u1="&#x22;" u2="e" k="48" />
  1011. <hkern u1="&#x22;" u2="d" k="48" />
  1012. <hkern u1="&#x22;" u2="c" k="48" />
  1013. <hkern u1="&#x2d;" g2="x.sc" k="15" />
  1014. <hkern u1="&#x2d;" u2="&#x222b;" k="18" />
  1015. <hkern u1="&#x2d;" u2="&#x2211;" k="35" />
  1016. <hkern u1="&#x2d;" u2="&#x220f;" k="10" />
  1017. <hkern u1="&#x2d;" u2="&#x394;" k="10" />
  1018. <hkern u1="&#x2d;" u2="x" k="20" />
  1019. <hkern u1="&#x2d;" u2="X" k="20" />
  1020. <hkern u1="A" g2="ampersand.caps" k="13" />
  1021. <hkern u1="A" g2="quotesingle.caps" k="75" />
  1022. <hkern u1="A" g2="quotedbl.caps" k="80" />
  1023. <hkern u1="A" g2="parenleft.caps" k="38" />
  1024. <hkern u1="A" g2="asterisk.caps" k="75" />
  1025. <hkern u1="A" g2="questiondown.caps" k="-15" />
  1026. <hkern u1="A" g2="question.caps" k="45" />
  1027. <hkern u1="A" u2="V" k="38" />
  1028. <hkern u1="B" g2="quotesingle.caps" k="23" />
  1029. <hkern u1="B" g2="quotedbl.caps" k="23" />
  1030. <hkern u1="B" g2="parenleft.caps" k="38" />
  1031. <hkern u1="B" g2="asterisk.caps" k="28" />
  1032. <hkern u1="B" g2="question.caps" k="15" />
  1033. <hkern u1="B" g2="exclam.caps" k="18" />
  1034. <hkern u1="B" u2="&#x2122;" k="23" />
  1035. <hkern u1="B" u2="&#x2021;" k="8" />
  1036. <hkern u1="B" u2="&#x2020;" k="8" />
  1037. <hkern u1="B" u2="_" k="20" />
  1038. <hkern u1="B" u2="X" k="14" />
  1039. <hkern u1="B" u2="M" k="5" />
  1040. <hkern u1="C" g2="parenleft.sc" k="30" />
  1041. <hkern u1="C" g2="parenleft.caps" k="23" />
  1042. <hkern u1="C" g2="asterisk.caps" k="23" />
  1043. <hkern u1="C" g2="question.caps" k="5" />
  1044. <hkern u1="C" g2="exclam.caps" k="10" />
  1045. <hkern u1="D" g2="ampersand.caps" k="25" />
  1046. <hkern u1="D" g2="parenleft.sc" k="30" />
  1047. <hkern u1="D" g2="quotesingle.caps" k="18" />
  1048. <hkern u1="D" g2="quotedbl.caps" k="10" />
  1049. <hkern u1="D" g2="bracketright.caps" k="28" />
  1050. <hkern u1="D" g2="asterisk.caps" k="25" />
  1051. <hkern u1="D" g2="periodcentered.caps" k="15" />
  1052. <hkern u1="D" g2="question.caps" k="18" />
  1053. <hkern u1="E" g2="ampersand.caps" k="38" />
  1054. <hkern u1="E" g2="parenleft.sc" k="23" />
  1055. <hkern u1="E" g2="quotesingle.caps" k="8" />
  1056. <hkern u1="E" g2="quotedbl.caps" k="30" />
  1057. <hkern u1="E" g2="parenleft.caps" k="38" />
  1058. <hkern u1="F" g2="ampersand.caps" k="23" />
  1059. <hkern u1="F" g2="parenleft.sc" k="30" />
  1060. <hkern u1="F" g2="question.caps" k="3" />
  1061. <hkern u1="F" g2="exclam.caps" k="10" />
  1062. <hkern u1="F" g2="x.sc" k="8" />
  1063. <hkern u1="F" g2="m.sc" k="29" />
  1064. <hkern u1="F" u2="M" k="19" />
  1065. <hkern u1="G" g2="ampersand.caps" k="8" />
  1066. <hkern u1="G" g2="parenleft.sc" k="30" />
  1067. <hkern u1="G" g2="quotesingle.caps" k="8" />
  1068. <hkern u1="G" g2="quotedbl.caps" k="8" />
  1069. <hkern u1="G" g2="parenleft.caps" k="15" />
  1070. <hkern u1="G" g2="asterisk.caps" k="30" />
  1071. <hkern u1="G" g2="question.caps" k="5" />
  1072. <hkern u1="G" g2="exclam.caps" k="10" />
  1073. <hkern u1="H" g2="parenleft.sc" k="23" />
  1074. <hkern u1="H" g2="parenleft.caps" k="30" />
  1075. <hkern u1="H" g2="question.caps" k="13" />
  1076. <hkern u1="H" g2="exclam.caps" k="5" />
  1077. <hkern u1="I" g2="parenleft.sc" k="23" />
  1078. <hkern u1="I" g2="parenleft.caps" k="30" />
  1079. <hkern u1="I" g2="question.caps" k="13" />
  1080. <hkern u1="I" g2="exclam.caps" k="5" />
  1081. <hkern u1="J" g2="parenleft.caps" k="15" />
  1082. <hkern u1="J" g2="asterisk.caps" k="15" />
  1083. <hkern u1="J" g2="question.caps" k="8" />
  1084. <hkern u1="J" g2="exclam.caps" k="5" />
  1085. <hkern u1="K" g2="ampersand.caps" k="21" />
  1086. <hkern u1="K" g2="quotesingle.caps" k="-8" />
  1087. <hkern u1="K" g2="quotedbl.caps" k="-15" />
  1088. <hkern u1="K" g2="question.caps" k="10" />
  1089. <hkern u1="K" g2="exclam.caps" k="5" />
  1090. <hkern u1="L" g2="quotesingle.caps" k="90" />
  1091. <hkern u1="L" g2="quotedbl.caps" k="105" />
  1092. <hkern u1="L" g2="asterisk.caps" k="110" />
  1093. <hkern u1="L" g2="periodcentered.caps" k="65" />
  1094. <hkern u1="L" g2="question.caps" k="35" />
  1095. <hkern u1="L" g2="exclam.caps" k="10" />
  1096. <hkern u1="M" g2="parenleft.sc" k="45" />
  1097. <hkern u1="M" g2="parenleft.caps" k="23" />
  1098. <hkern u1="M" g2="asterisk.caps" k="15" />
  1099. <hkern u1="M" g2="questiondown.caps" k="-23" />
  1100. <hkern u1="M" g2="question.caps" k="13" />
  1101. <hkern u1="M" g2="exclam.caps" k="10" />
  1102. <hkern u1="M" g2="x.sc" k="8" />
  1103. <hkern u1="M" u2="&#x2122;" k="30" />
  1104. <hkern u1="M" u2="&#x2020;" k="8" />
  1105. <hkern u1="N" g2="parenleft.sc" k="23" />
  1106. <hkern u1="N" g2="parenleft.caps" k="30" />
  1107. <hkern u1="N" g2="question.caps" k="13" />
  1108. <hkern u1="N" g2="exclam.caps" k="5" />
  1109. <hkern u1="O" g2="ampersand.caps" k="25" />
  1110. <hkern u1="O" g2="parenleft.sc" k="30" />
  1111. <hkern u1="O" g2="quotesingle.caps" k="18" />
  1112. <hkern u1="O" g2="quotedbl.caps" k="10" />
  1113. <hkern u1="O" g2="bracketright.caps" k="28" />
  1114. <hkern u1="O" g2="asterisk.caps" k="25" />
  1115. <hkern u1="O" g2="periodcentered.caps" k="15" />
  1116. <hkern u1="O" g2="question.caps" k="18" />
  1117. <hkern u1="P" g2="ampersand.caps" k="23" />
  1118. <hkern u1="P" g2="parenleft.sc" k="38" />
  1119. <hkern u1="P" g2="quotesingle.caps" k="8" />
  1120. <hkern u1="P" g2="parenleft.caps" k="30" />
  1121. <hkern u1="P" g2="asterisk.caps" k="23" />
  1122. <hkern u1="P" g2="questiondown.caps" k="3" />
  1123. <hkern u1="P" g2="question.caps" k="10" />
  1124. <hkern u1="P" g2="exclam.caps" k="8" />
  1125. <hkern u1="P" g2="x.sc" k="8" />
  1126. <hkern u1="P" g2="m.sc" k="25" />
  1127. <hkern u1="P" u2="_" k="83" />
  1128. <hkern u1="P" u2="X" k="23" />
  1129. <hkern u1="P" u2="M" k="20" />
  1130. <hkern u1="Q" g2="ampersand.caps" k="25" />
  1131. <hkern u1="Q" g2="parenleft.sc" k="30" />
  1132. <hkern u1="Q" g2="quotesingle.caps" k="18" />
  1133. <hkern u1="Q" g2="quotedbl.caps" k="10" />
  1134. <hkern u1="Q" g2="bracketright.caps" k="28" />
  1135. <hkern u1="Q" g2="asterisk.caps" k="25" />
  1136. <hkern u1="Q" g2="periodcentered.caps" k="15" />
  1137. <hkern u1="Q" g2="question.caps" k="18" />
  1138. <hkern u1="R" g2="ampersand.caps" k="3" />
  1139. <hkern u1="R" g2="parenleft.sc" k="38" />
  1140. <hkern u1="R" g2="quotesingle.caps" k="23" />
  1141. <hkern u1="R" g2="parenleft.caps" k="30" />
  1142. <hkern u1="R" g2="question.caps" k="10" />
  1143. <hkern u1="R" g2="exclam.caps" k="13" />
  1144. <hkern u1="S" g2="parenleft.sc" k="38" />
  1145. <hkern u1="S" g2="parenleft.caps" k="38" />
  1146. <hkern u1="S" g2="question.caps" k="28" />
  1147. <hkern u1="S" g2="exclam.caps" k="15" />
  1148. <hkern u1="T" g2="ampersand.caps" k="31" />
  1149. <hkern u1="T" g2="parenleft.sc" k="60" />
  1150. <hkern u1="T" g2="parenleft.caps" k="45" />
  1151. <hkern u1="T" g2="exclam.caps" k="8" />
  1152. <hkern u1="U" g2="ampersand.caps" k="8" />
  1153. <hkern u1="U" g2="parenleft.sc" k="23" />
  1154. <hkern u1="U" g2="parenleft.caps" k="23" />
  1155. <hkern u1="U" g2="question.caps" k="8" />
  1156. <hkern u1="V" g2="ampersand.caps" k="36" />
  1157. <hkern u1="V" g2="parenleft.sc" k="38" />
  1158. <hkern u1="V" g2="parenleft.caps" k="38" />
  1159. <hkern u1="V" g2="question.caps" k="5" />
  1160. <hkern u1="V" u2="&#x1ebd;" k="54" />
  1161. <hkern u1="V" u2="&#x1eb9;" k="54" />
  1162. <hkern u1="V" u2="&#x1ea1;" k="34" />
  1163. <hkern u1="V" u2="&#x1ea0;" k="45" />
  1164. <hkern u1="V" u2="&#x1fb;" k="34" />
  1165. <hkern u1="V" u2="&#x1fa;" k="45" />
  1166. <hkern u1="V" u2="&#x1ce;" k="34" />
  1167. <hkern u1="V" u2="&#x1cd;" k="45" />
  1168. <hkern u1="V" u2="&#x11b;" k="54" />
  1169. <hkern u1="V" u2="&#x119;" k="54" />
  1170. <hkern u1="V" u2="&#x117;" k="54" />
  1171. <hkern u1="V" u2="&#x115;" k="54" />
  1172. <hkern u1="V" u2="&#x113;" k="54" />
  1173. <hkern u1="V" u2="&#x105;" k="34" />
  1174. <hkern u1="V" u2="&#x104;" k="45" />
  1175. <hkern u1="V" u2="&#x103;" k="34" />
  1176. <hkern u1="V" u2="&#x102;" k="45" />
  1177. <hkern u1="V" u2="&#x101;" k="34" />
  1178. <hkern u1="V" u2="&#x100;" k="45" />
  1179. <hkern u1="V" u2="&#xeb;" k="54" />
  1180. <hkern u1="V" u2="&#xea;" k="54" />
  1181. <hkern u1="V" u2="&#xe9;" k="54" />
  1182. <hkern u1="V" u2="&#xe8;" k="54" />
  1183. <hkern u1="V" u2="&#xe5;" k="34" />
  1184. <hkern u1="V" u2="&#xe4;" k="34" />
  1185. <hkern u1="V" u2="&#xe3;" k="34" />
  1186. <hkern u1="V" u2="&#xe2;" k="34" />
  1187. <hkern u1="V" u2="&#xe1;" k="34" />
  1188. <hkern u1="V" u2="&#xe0;" k="34" />
  1189. <hkern u1="V" u2="&#xc5;" k="45" />
  1190. <hkern u1="V" u2="&#xc4;" k="45" />
  1191. <hkern u1="V" u2="&#xc3;" k="45" />
  1192. <hkern u1="V" u2="&#xc2;" k="45" />
  1193. <hkern u1="V" u2="&#xc1;" k="45" />
  1194. <hkern u1="V" u2="&#xc0;" k="45" />
  1195. <hkern u1="V" u2="e" k="54" />
  1196. <hkern u1="V" u2="a" k="34" />
  1197. <hkern u1="V" u2="A" k="38" />
  1198. <hkern u1="W" g2="ampersand.caps" k="36" />
  1199. <hkern u1="W" g2="parenleft.sc" k="38" />
  1200. <hkern u1="W" g2="parenleft.caps" k="38" />
  1201. <hkern u1="W" g2="question.caps" k="5" />
  1202. <hkern u1="X" g2="ampersand.caps" k="13" />
  1203. <hkern u1="X" g2="parenleft.sc" k="23" />
  1204. <hkern u1="X" g2="hyphen.caps" k="15" />
  1205. <hkern u1="X" g2="parenleft.caps" k="30" />
  1206. <hkern u1="X" g2="periodcentered.caps" k="33" />
  1207. <hkern u1="X" g2="exclam.caps" k="8" />
  1208. <hkern u1="X" g2="x.sc" k="8" />
  1209. <hkern u1="X" g2="m.sc" k="8" />
  1210. <hkern u1="X" u2="&#x2013;" k="11" />
  1211. <hkern u1="X" u2="x" k="8" />
  1212. <hkern u1="X" u2="&#x2d;" k="20" />
  1213. <hkern u1="Y" g2="ampersand.caps" k="30" />
  1214. <hkern u1="Y" g2="parenleft.caps" k="30" />
  1215. <hkern u1="Y" g2="question.caps" k="5" />
  1216. <hkern u1="Z" g2="ampersand.caps" k="11" />
  1217. <hkern u1="Z" g2="parenleft.sc" k="23" />
  1218. <hkern u1="Z" g2="parenleft.caps" k="23" />
  1219. <hkern u1="Z" g2="question.caps" k="8" />
  1220. <hkern u1="_" u2="&#x220f;" k="15" />
  1221. <hkern u1="_" u2="&#x2202;" k="30" />
  1222. <hkern u1="_" u2="&#x3c0;" k="30" />
  1223. <hkern u1="_" u2="&#x18f;" k="40" />
  1224. <hkern u1="b" g2="asterisk.caps" k="20" />
  1225. <hkern u1="d" g2="asterisk.caps" k="8" />
  1226. <hkern u1="e" g2="asterisk.caps" k="23" />
  1227. <hkern u1="f" g2="asterisk.caps" k="-55" />
  1228. <hkern u1="f" u2="&#x22;" k="-13" />
  1229. <hkern u1="h" u2="&#x27;" k="13" />
  1230. <hkern u1="m" u2="&#x27;" k="13" />
  1231. <hkern u1="n" u2="&#x27;" k="13" />
  1232. <hkern u1="o" g2="asterisk.caps" k="20" />
  1233. <hkern u1="p" g2="asterisk.caps" k="20" />
  1234. <hkern u1="s" u2="&#x27;" k="10" />
  1235. <hkern u1="u" u2="&#x22;" k="10" />
  1236. <hkern u1="&#xc0;" g2="ampersand.caps" k="13" />
  1237. <hkern u1="&#xc0;" g2="quotesingle.caps" k="75" />
  1238. <hkern u1="&#xc0;" g2="quotedbl.caps" k="80" />
  1239. <hkern u1="&#xc0;" g2="parenleft.caps" k="38" />
  1240. <hkern u1="&#xc0;" g2="asterisk.caps" k="75" />
  1241. <hkern u1="&#xc0;" g2="questiondown.caps" k="-15" />
  1242. <hkern u1="&#xc0;" g2="question.caps" k="45" />
  1243. <hkern u1="&#xc0;" u2="V" k="38" />
  1244. <hkern u1="&#xc1;" g2="ampersand.caps" k="13" />
  1245. <hkern u1="&#xc1;" g2="quotesingle.caps" k="75" />
  1246. <hkern u1="&#xc1;" g2="quotedbl.caps" k="80" />
  1247. <hkern u1="&#xc1;" g2="parenleft.caps" k="38" />
  1248. <hkern u1="&#xc1;" g2="asterisk.caps" k="75" />
  1249. <hkern u1="&#xc1;" g2="questiondown.caps" k="-15" />
  1250. <hkern u1="&#xc1;" g2="question.caps" k="45" />
  1251. <hkern u1="&#xc1;" u2="V" k="38" />
  1252. <hkern u1="&#xc2;" g2="ampersand.caps" k="13" />
  1253. <hkern u1="&#xc2;" g2="quotesingle.caps" k="75" />
  1254. <hkern u1="&#xc2;" g2="quotedbl.caps" k="80" />
  1255. <hkern u1="&#xc2;" g2="parenleft.caps" k="38" />
  1256. <hkern u1="&#xc2;" g2="asterisk.caps" k="75" />
  1257. <hkern u1="&#xc2;" g2="questiondown.caps" k="-15" />
  1258. <hkern u1="&#xc2;" g2="question.caps" k="45" />
  1259. <hkern u1="&#xc2;" u2="V" k="38" />
  1260. <hkern u1="&#xc3;" g2="ampersand.caps" k="13" />
  1261. <hkern u1="&#xc3;" g2="quotesingle.caps" k="75" />
  1262. <hkern u1="&#xc3;" g2="quotedbl.caps" k="80" />
  1263. <hkern u1="&#xc3;" g2="parenleft.caps" k="38" />
  1264. <hkern u1="&#xc3;" g2="asterisk.caps" k="75" />
  1265. <hkern u1="&#xc3;" g2="questiondown.caps" k="-15" />
  1266. <hkern u1="&#xc3;" g2="question.caps" k="45" />
  1267. <hkern u1="&#xc3;" u2="V" k="38" />
  1268. <hkern u1="&#xc4;" g2="ampersand.caps" k="13" />
  1269. <hkern u1="&#xc4;" g2="quotesingle.caps" k="75" />
  1270. <hkern u1="&#xc4;" g2="quotedbl.caps" k="80" />
  1271. <hkern u1="&#xc4;" g2="parenleft.caps" k="38" />
  1272. <hkern u1="&#xc4;" g2="asterisk.caps" k="75" />
  1273. <hkern u1="&#xc4;" g2="questiondown.caps" k="-15" />
  1274. <hkern u1="&#xc4;" g2="question.caps" k="45" />
  1275. <hkern u1="&#xc4;" u2="V" k="38" />
  1276. <hkern u1="&#xc5;" g2="ampersand.caps" k="13" />
  1277. <hkern u1="&#xc5;" g2="quotesingle.caps" k="75" />
  1278. <hkern u1="&#xc5;" g2="quotedbl.caps" k="80" />
  1279. <hkern u1="&#xc5;" g2="parenleft.caps" k="38" />
  1280. <hkern u1="&#xc5;" g2="asterisk.caps" k="75" />
  1281. <hkern u1="&#xc5;" g2="questiondown.caps" k="-15" />
  1282. <hkern u1="&#xc5;" g2="question.caps" k="45" />
  1283. <hkern u1="&#xc5;" u2="V" k="38" />
  1284. <hkern u1="&#xc6;" g2="ampersand.caps" k="38" />
  1285. <hkern u1="&#xc6;" g2="parenleft.sc" k="23" />
  1286. <hkern u1="&#xc6;" g2="quotesingle.caps" k="8" />
  1287. <hkern u1="&#xc6;" g2="quotedbl.caps" k="30" />
  1288. <hkern u1="&#xc6;" g2="parenleft.caps" k="38" />
  1289. <hkern u1="&#xc7;" g2="parenleft.sc" k="30" />
  1290. <hkern u1="&#xc7;" g2="parenleft.caps" k="23" />
  1291. <hkern u1="&#xc7;" g2="asterisk.caps" k="23" />
  1292. <hkern u1="&#xc7;" g2="question.caps" k="5" />
  1293. <hkern u1="&#xc7;" g2="exclam.caps" k="10" />
  1294. <hkern u1="&#xc8;" g2="ampersand.caps" k="38" />
  1295. <hkern u1="&#xc8;" g2="parenleft.sc" k="23" />
  1296. <hkern u1="&#xc8;" g2="quotesingle.caps" k="8" />
  1297. <hkern u1="&#xc8;" g2="quotedbl.caps" k="30" />
  1298. <hkern u1="&#xc8;" g2="parenleft.caps" k="38" />
  1299. <hkern u1="&#xc9;" g2="ampersand.caps" k="38" />
  1300. <hkern u1="&#xc9;" g2="parenleft.sc" k="23" />
  1301. <hkern u1="&#xc9;" g2="quotesingle.caps" k="8" />
  1302. <hkern u1="&#xc9;" g2="quotedbl.caps" k="30" />
  1303. <hkern u1="&#xc9;" g2="parenleft.caps" k="38" />
  1304. <hkern u1="&#xca;" g2="ampersand.caps" k="38" />
  1305. <hkern u1="&#xca;" g2="parenleft.sc" k="23" />
  1306. <hkern u1="&#xca;" g2="quotesingle.caps" k="8" />
  1307. <hkern u1="&#xca;" g2="quotedbl.caps" k="30" />
  1308. <hkern u1="&#xca;" g2="parenleft.caps" k="38" />
  1309. <hkern u1="&#xcb;" g2="ampersand.caps" k="38" />
  1310. <hkern u1="&#xcb;" g2="parenleft.sc" k="23" />
  1311. <hkern u1="&#xcb;" g2="quotesingle.caps" k="8" />
  1312. <hkern u1="&#xcb;" g2="quotedbl.caps" k="30" />
  1313. <hkern u1="&#xcb;" g2="parenleft.caps" k="38" />
  1314. <hkern u1="&#xcc;" g2="parenleft.sc" k="23" />
  1315. <hkern u1="&#xcc;" g2="parenleft.caps" k="30" />
  1316. <hkern u1="&#xcc;" g2="question.caps" k="13" />
  1317. <hkern u1="&#xcc;" g2="exclam.caps" k="5" />
  1318. <hkern u1="&#xcd;" g2="parenleft.sc" k="23" />
  1319. <hkern u1="&#xcd;" g2="parenleft.caps" k="30" />
  1320. <hkern u1="&#xcd;" g2="question.caps" k="13" />
  1321. <hkern u1="&#xcd;" g2="exclam.caps" k="5" />
  1322. <hkern u1="&#xce;" g2="parenleft.sc" k="23" />
  1323. <hkern u1="&#xce;" g2="parenleft.caps" k="30" />
  1324. <hkern u1="&#xce;" g2="question.caps" k="13" />
  1325. <hkern u1="&#xce;" g2="exclam.caps" k="5" />
  1326. <hkern u1="&#xcf;" g2="parenleft.sc" k="23" />
  1327. <hkern u1="&#xcf;" g2="parenleft.caps" k="30" />
  1328. <hkern u1="&#xcf;" g2="question.caps" k="13" />
  1329. <hkern u1="&#xcf;" g2="exclam.caps" k="5" />
  1330. <hkern u1="&#xd0;" g2="ampersand.caps" k="25" />
  1331. <hkern u1="&#xd0;" g2="parenleft.sc" k="30" />
  1332. <hkern u1="&#xd0;" g2="quotesingle.caps" k="18" />
  1333. <hkern u1="&#xd0;" g2="quotedbl.caps" k="10" />
  1334. <hkern u1="&#xd0;" g2="bracketright.caps" k="28" />
  1335. <hkern u1="&#xd0;" g2="asterisk.caps" k="25" />
  1336. <hkern u1="&#xd0;" g2="periodcentered.caps" k="15" />
  1337. <hkern u1="&#xd0;" g2="question.caps" k="18" />
  1338. <hkern u1="&#xd1;" g2="parenleft.sc" k="23" />
  1339. <hkern u1="&#xd1;" g2="parenleft.caps" k="30" />
  1340. <hkern u1="&#xd1;" g2="question.caps" k="13" />
  1341. <hkern u1="&#xd1;" g2="exclam.caps" k="5" />
  1342. <hkern u1="&#xd2;" g2="ampersand.caps" k="25" />
  1343. <hkern u1="&#xd2;" g2="parenleft.sc" k="30" />
  1344. <hkern u1="&#xd2;" g2="quotesingle.caps" k="18" />
  1345. <hkern u1="&#xd2;" g2="quotedbl.caps" k="10" />
  1346. <hkern u1="&#xd2;" g2="bracketright.caps" k="28" />
  1347. <hkern u1="&#xd2;" g2="asterisk.caps" k="25" />
  1348. <hkern u1="&#xd2;" g2="periodcentered.caps" k="15" />
  1349. <hkern u1="&#xd2;" g2="question.caps" k="18" />
  1350. <hkern u1="&#xd3;" g2="ampersand.caps" k="25" />
  1351. <hkern u1="&#xd3;" g2="parenleft.sc" k="30" />
  1352. <hkern u1="&#xd3;" g2="quotesingle.caps" k="18" />
  1353. <hkern u1="&#xd3;" g2="quotedbl.caps" k="10" />
  1354. <hkern u1="&#xd3;" g2="bracketright.caps" k="28" />
  1355. <hkern u1="&#xd3;" g2="asterisk.caps" k="25" />
  1356. <hkern u1="&#xd3;" g2="periodcentered.caps" k="15" />
  1357. <hkern u1="&#xd3;" g2="question.caps" k="18" />
  1358. <hkern u1="&#xd4;" g2="ampersand.caps" k="25" />
  1359. <hkern u1="&#xd4;" g2="parenleft.sc" k="30" />
  1360. <hkern u1="&#xd4;" g2="quotesingle.caps" k="18" />
  1361. <hkern u1="&#xd4;" g2="quotedbl.caps" k="10" />
  1362. <hkern u1="&#xd4;" g2="bracketright.caps" k="28" />
  1363. <hkern u1="&#xd4;" g2="asterisk.caps" k="25" />
  1364. <hkern u1="&#xd4;" g2="periodcentered.caps" k="15" />
  1365. <hkern u1="&#xd4;" g2="question.caps" k="18" />
  1366. <hkern u1="&#xd5;" g2="ampersand.caps" k="25" />
  1367. <hkern u1="&#xd5;" g2="parenleft.sc" k="30" />
  1368. <hkern u1="&#xd5;" g2="quotesingle.caps" k="18" />
  1369. <hkern u1="&#xd5;" g2="quotedbl.caps" k="10" />
  1370. <hkern u1="&#xd5;" g2="bracketright.caps" k="28" />
  1371. <hkern u1="&#xd5;" g2="asterisk.caps" k="25" />
  1372. <hkern u1="&#xd5;" g2="periodcentered.caps" k="15" />
  1373. <hkern u1="&#xd5;" g2="question.caps" k="18" />
  1374. <hkern u1="&#xd6;" g2="ampersand.caps" k="25" />
  1375. <hkern u1="&#xd6;" g2="parenleft.sc" k="30" />
  1376. <hkern u1="&#xd6;" g2="quotesingle.caps" k="18" />
  1377. <hkern u1="&#xd6;" g2="quotedbl.caps" k="10" />
  1378. <hkern u1="&#xd6;" g2="bracketright.caps" k="28" />
  1379. <hkern u1="&#xd6;" g2="asterisk.caps" k="25" />
  1380. <hkern u1="&#xd6;" g2="periodcentered.caps" k="15" />
  1381. <hkern u1="&#xd6;" g2="question.caps" k="18" />
  1382. <hkern u1="&#xd8;" g2="ampersand.caps" k="25" />
  1383. <hkern u1="&#xd8;" g2="parenleft.sc" k="30" />
  1384. <hkern u1="&#xd8;" g2="quotesingle.caps" k="18" />
  1385. <hkern u1="&#xd8;" g2="quotedbl.caps" k="10" />
  1386. <hkern u1="&#xd8;" g2="bracketright.caps" k="28" />
  1387. <hkern u1="&#xd8;" g2="asterisk.caps" k="25" />
  1388. <hkern u1="&#xd8;" g2="periodcentered.caps" k="15" />
  1389. <hkern u1="&#xd8;" g2="question.caps" k="18" />
  1390. <hkern u1="&#xd9;" g2="ampersand.caps" k="8" />
  1391. <hkern u1="&#xd9;" g2="parenleft.sc" k="23" />
  1392. <hkern u1="&#xd9;" g2="parenleft.caps" k="23" />
  1393. <hkern u1="&#xd9;" g2="question.caps" k="8" />
  1394. <hkern u1="&#xda;" g2="ampersand.caps" k="8" />
  1395. <hkern u1="&#xda;" g2="parenleft.sc" k="23" />
  1396. <hkern u1="&#xda;" g2="parenleft.caps" k="23" />
  1397. <hkern u1="&#xda;" g2="question.caps" k="8" />
  1398. <hkern u1="&#xdb;" g2="ampersand.caps" k="8" />
  1399. <hkern u1="&#xdb;" g2="parenleft.sc" k="23" />
  1400. <hkern u1="&#xdb;" g2="parenleft.caps" k="23" />
  1401. <hkern u1="&#xdb;" g2="question.caps" k="8" />
  1402. <hkern u1="&#xdc;" g2="ampersand.caps" k="8" />
  1403. <hkern u1="&#xdc;" g2="parenleft.sc" k="23" />
  1404. <hkern u1="&#xdc;" g2="parenleft.caps" k="23" />
  1405. <hkern u1="&#xdc;" g2="question.caps" k="8" />
  1406. <hkern u1="&#xdd;" g2="ampersand.caps" k="30" />
  1407. <hkern u1="&#xdd;" g2="parenleft.caps" k="30" />
  1408. <hkern u1="&#xdd;" g2="question.caps" k="5" />
  1409. <hkern u1="&#xde;" g2="hyphen.caps" k="-15" />
  1410. <hkern u1="&#xde;" g2="asterisk.caps" k="23" />
  1411. <hkern u1="&#xde;" g2="x.sc" k="14" />
  1412. <hkern u1="&#xde;" g2="m.sc" k="10" />
  1413. <hkern u1="&#xde;" u2="&#x2122;" k="45" />
  1414. <hkern u1="&#xde;" u2="x" k="8" />
  1415. <hkern u1="&#xde;" u2="_" k="70" />
  1416. <hkern u1="&#xde;" u2="X" k="15" />
  1417. <hkern u1="&#xde;" u2="M" k="8" />
  1418. <hkern u1="&#xdf;" g2="quotesingle.sc" k="5" />
  1419. <hkern u1="&#xdf;" g2="quotedbl.sc" k="5" />
  1420. <hkern u1="&#xdf;" g2="asterisk.sc" k="20" />
  1421. <hkern u1="&#xdf;" g2="question.sc" k="5" />
  1422. <hkern u1="&#xdf;" g2="exclam.sc" k="10" />
  1423. <hkern u1="&#xdf;" g2="bracketright.sc" k="35" />
  1424. <hkern u1="&#xdf;" g2="braceright.sc" k="8" />
  1425. <hkern u1="&#xe6;" g2="asterisk.caps" k="23" />
  1426. <hkern u1="&#xe8;" g2="asterisk.caps" k="23" />
  1427. <hkern u1="&#xe9;" g2="asterisk.caps" k="23" />
  1428. <hkern u1="&#xea;" g2="asterisk.caps" k="23" />
  1429. <hkern u1="&#xeb;" g2="asterisk.caps" k="23" />
  1430. <hkern u1="&#xf0;" g2="ampersand.caps" k="25" />
  1431. <hkern u1="&#xf0;" g2="parenleft.sc" k="30" />
  1432. <hkern u1="&#xf0;" g2="quotesingle.caps" k="18" />
  1433. <hkern u1="&#xf0;" g2="quotedbl.caps" k="10" />
  1434. <hkern u1="&#xf0;" g2="bracketright.caps" k="28" />
  1435. <hkern u1="&#xf0;" g2="asterisk.caps" k="25" />
  1436. <hkern u1="&#xf0;" g2="periodcentered.caps" k="15" />
  1437. <hkern u1="&#xf0;" g2="question.caps" k="18" />
  1438. <hkern u1="&#xf1;" u2="&#x27;" k="13" />
  1439. <hkern u1="&#xf2;" g2="asterisk.caps" k="20" />
  1440. <hkern u1="&#xf3;" g2="asterisk.caps" k="20" />
  1441. <hkern u1="&#xf4;" g2="asterisk.caps" k="20" />
  1442. <hkern u1="&#xf5;" g2="asterisk.caps" k="20" />
  1443. <hkern u1="&#xf6;" g2="asterisk.caps" k="20" />
  1444. <hkern u1="&#xf8;" g2="asterisk.caps" k="20" />
  1445. <hkern u1="&#xf9;" u2="&#x22;" k="10" />
  1446. <hkern u1="&#xfa;" u2="&#x22;" k="10" />
  1447. <hkern u1="&#xfb;" u2="&#x22;" k="10" />
  1448. <hkern u1="&#xfc;" u2="&#x22;" k="10" />
  1449. <hkern u1="&#xfe;" g2="asterisk.caps" k="20" />
  1450. <hkern u1="&#x100;" g2="ampersand.caps" k="13" />
  1451. <hkern u1="&#x100;" g2="quotesingle.caps" k="75" />
  1452. <hkern u1="&#x100;" g2="quotedbl.caps" k="80" />
  1453. <hkern u1="&#x100;" g2="parenleft.caps" k="38" />
  1454. <hkern u1="&#x100;" g2="asterisk.caps" k="75" />
  1455. <hkern u1="&#x100;" g2="questiondown.caps" k="-15" />
  1456. <hkern u1="&#x100;" g2="question.caps" k="45" />
  1457. <hkern u1="&#x100;" u2="V" k="38" />
  1458. <hkern u1="&#x102;" g2="ampersand.caps" k="13" />
  1459. <hkern u1="&#x102;" g2="quotesingle.caps" k="75" />
  1460. <hkern u1="&#x102;" g2="quotedbl.caps" k="80" />
  1461. <hkern u1="&#x102;" g2="parenleft.caps" k="38" />
  1462. <hkern u1="&#x102;" g2="asterisk.caps" k="75" />
  1463. <hkern u1="&#x102;" g2="questiondown.caps" k="-15" />
  1464. <hkern u1="&#x102;" g2="question.caps" k="45" />
  1465. <hkern u1="&#x102;" u2="V" k="38" />
  1466. <hkern u1="&#x104;" g2="ampersand.caps" k="13" />
  1467. <hkern u1="&#x104;" g2="quotesingle.caps" k="75" />
  1468. <hkern u1="&#x104;" g2="quotedbl.caps" k="80" />
  1469. <hkern u1="&#x104;" g2="parenleft.caps" k="38" />
  1470. <hkern u1="&#x104;" g2="asterisk.caps" k="75" />
  1471. <hkern u1="&#x104;" g2="questiondown.caps" k="-15" />
  1472. <hkern u1="&#x104;" g2="question.caps" k="45" />
  1473. <hkern u1="&#x104;" u2="V" k="38" />
  1474. <hkern u1="&#x106;" g2="parenleft.sc" k="30" />
  1475. <hkern u1="&#x106;" g2="parenleft.caps" k="23" />
  1476. <hkern u1="&#x106;" g2="asterisk.caps" k="23" />
  1477. <hkern u1="&#x106;" g2="question.caps" k="5" />
  1478. <hkern u1="&#x106;" g2="exclam.caps" k="10" />
  1479. <hkern u1="&#x108;" g2="parenleft.sc" k="30" />
  1480. <hkern u1="&#x108;" g2="parenleft.caps" k="23" />
  1481. <hkern u1="&#x108;" g2="asterisk.caps" k="23" />
  1482. <hkern u1="&#x108;" g2="question.caps" k="5" />
  1483. <hkern u1="&#x108;" g2="exclam.caps" k="10" />
  1484. <hkern u1="&#x10a;" g2="parenleft.sc" k="30" />
  1485. <hkern u1="&#x10a;" g2="parenleft.caps" k="23" />
  1486. <hkern u1="&#x10a;" g2="asterisk.caps" k="23" />
  1487. <hkern u1="&#x10a;" g2="question.caps" k="5" />
  1488. <hkern u1="&#x10a;" g2="exclam.caps" k="10" />
  1489. <hkern u1="&#x10c;" g2="parenleft.sc" k="30" />
  1490. <hkern u1="&#x10c;" g2="parenleft.caps" k="23" />
  1491. <hkern u1="&#x10c;" g2="asterisk.caps" k="23" />
  1492. <hkern u1="&#x10c;" g2="question.caps" k="5" />
  1493. <hkern u1="&#x10c;" g2="exclam.caps" k="10" />
  1494. <hkern u1="&#x10e;" g2="ampersand.caps" k="25" />
  1495. <hkern u1="&#x10e;" g2="parenleft.sc" k="30" />
  1496. <hkern u1="&#x10e;" g2="quotesingle.caps" k="18" />
  1497. <hkern u1="&#x10e;" g2="quotedbl.caps" k="10" />
  1498. <hkern u1="&#x10e;" g2="bracketright.caps" k="28" />
  1499. <hkern u1="&#x10e;" g2="asterisk.caps" k="25" />
  1500. <hkern u1="&#x10e;" g2="periodcentered.caps" k="15" />
  1501. <hkern u1="&#x10e;" g2="question.caps" k="18" />
  1502. <hkern u1="&#x10f;" g2="asterisk.caps" k="8" />
  1503. <hkern u1="&#x110;" g2="ampersand.caps" k="25" />
  1504. <hkern u1="&#x110;" g2="parenleft.sc" k="30" />
  1505. <hkern u1="&#x110;" g2="quotesingle.caps" k="18" />
  1506. <hkern u1="&#x110;" g2="quotedbl.caps" k="10" />
  1507. <hkern u1="&#x110;" g2="bracketright.caps" k="28" />
  1508. <hkern u1="&#x110;" g2="asterisk.caps" k="25" />
  1509. <hkern u1="&#x110;" g2="periodcentered.caps" k="15" />
  1510. <hkern u1="&#x110;" g2="question.caps" k="18" />
  1511. <hkern u1="&#x111;" g2="asterisk.caps" k="8" />
  1512. <hkern u1="&#x112;" g2="ampersand.caps" k="38" />
  1513. <hkern u1="&#x112;" g2="parenleft.sc" k="23" />
  1514. <hkern u1="&#x112;" g2="quotesingle.caps" k="8" />
  1515. <hkern u1="&#x112;" g2="quotedbl.caps" k="30" />
  1516. <hkern u1="&#x112;" g2="parenleft.caps" k="38" />
  1517. <hkern u1="&#x113;" g2="asterisk.caps" k="23" />
  1518. <hkern u1="&#x114;" g2="ampersand.caps" k="38" />
  1519. <hkern u1="&#x114;" g2="parenleft.sc" k="23" />
  1520. <hkern u1="&#x114;" g2="quotesingle.caps" k="8" />
  1521. <hkern u1="&#x114;" g2="quotedbl.caps" k="30" />
  1522. <hkern u1="&#x114;" g2="parenleft.caps" k="38" />
  1523. <hkern u1="&#x115;" g2="asterisk.caps" k="23" />
  1524. <hkern u1="&#x116;" g2="ampersand.caps" k="38" />
  1525. <hkern u1="&#x116;" g2="parenleft.sc" k="23" />
  1526. <hkern u1="&#x116;" g2="quotesingle.caps" k="8" />
  1527. <hkern u1="&#x116;" g2="quotedbl.caps" k="30" />
  1528. <hkern u1="&#x116;" g2="parenleft.caps" k="38" />
  1529. <hkern u1="&#x117;" g2="asterisk.caps" k="23" />
  1530. <hkern u1="&#x118;" g2="ampersand.caps" k="38" />
  1531. <hkern u1="&#x118;" g2="parenleft.sc" k="23" />
  1532. <hkern u1="&#x118;" g2="quotesingle.caps" k="8" />
  1533. <hkern u1="&#x118;" g2="quotedbl.caps" k="30" />
  1534. <hkern u1="&#x118;" g2="parenleft.caps" k="38" />
  1535. <hkern u1="&#x119;" g2="asterisk.caps" k="23" />
  1536. <hkern u1="&#x11a;" g2="ampersand.caps" k="38" />
  1537. <hkern u1="&#x11a;" g2="parenleft.sc" k="23" />
  1538. <hkern u1="&#x11a;" g2="quotesingle.caps" k="8" />
  1539. <hkern u1="&#x11a;" g2="quotedbl.caps" k="30" />
  1540. <hkern u1="&#x11a;" g2="parenleft.caps" k="38" />
  1541. <hkern u1="&#x11b;" g2="asterisk.caps" k="23" />
  1542. <hkern u1="&#x11c;" g2="ampersand.caps" k="8" />
  1543. <hkern u1="&#x11c;" g2="parenleft.sc" k="30" />
  1544. <hkern u1="&#x11c;" g2="quotesingle.caps" k="8" />
  1545. <hkern u1="&#x11c;" g2="quotedbl.caps" k="8" />
  1546. <hkern u1="&#x11c;" g2="parenleft.caps" k="15" />
  1547. <hkern u1="&#x11c;" g2="asterisk.caps" k="30" />
  1548. <hkern u1="&#x11c;" g2="question.caps" k="5" />
  1549. <hkern u1="&#x11c;" g2="exclam.caps" k="10" />
  1550. <hkern u1="&#x11e;" g2="ampersand.caps" k="8" />
  1551. <hkern u1="&#x11e;" g2="parenleft.sc" k="30" />
  1552. <hkern u1="&#x11e;" g2="quotesingle.caps" k="8" />
  1553. <hkern u1="&#x11e;" g2="quotedbl.caps" k="8" />
  1554. <hkern u1="&#x11e;" g2="parenleft.caps" k="15" />
  1555. <hkern u1="&#x11e;" g2="asterisk.caps" k="30" />
  1556. <hkern u1="&#x11e;" g2="question.caps" k="5" />
  1557. <hkern u1="&#x11e;" g2="exclam.caps" k="10" />
  1558. <hkern u1="&#x120;" g2="ampersand.caps" k="8" />
  1559. <hkern u1="&#x120;" g2="parenleft.sc" k="30" />
  1560. <hkern u1="&#x120;" g2="quotesingle.caps" k="8" />
  1561. <hkern u1="&#x120;" g2="quotedbl.caps" k="8" />
  1562. <hkern u1="&#x120;" g2="parenleft.caps" k="15" />
  1563. <hkern u1="&#x120;" g2="asterisk.caps" k="30" />
  1564. <hkern u1="&#x120;" g2="question.caps" k="5" />
  1565. <hkern u1="&#x120;" g2="exclam.caps" k="10" />
  1566. <hkern u1="&#x122;" g2="ampersand.caps" k="8" />
  1567. <hkern u1="&#x122;" g2="parenleft.sc" k="30" />
  1568. <hkern u1="&#x122;" g2="quotesingle.caps" k="8" />
  1569. <hkern u1="&#x122;" g2="quotedbl.caps" k="8" />
  1570. <hkern u1="&#x122;" g2="parenleft.caps" k="15" />
  1571. <hkern u1="&#x122;" g2="asterisk.caps" k="30" />
  1572. <hkern u1="&#x122;" g2="question.caps" k="5" />
  1573. <hkern u1="&#x122;" g2="exclam.caps" k="10" />
  1574. <hkern u1="&#x124;" g2="parenleft.sc" k="23" />
  1575. <hkern u1="&#x124;" g2="parenleft.caps" k="30" />
  1576. <hkern u1="&#x124;" g2="question.caps" k="13" />
  1577. <hkern u1="&#x124;" g2="exclam.caps" k="5" />
  1578. <hkern u1="&#x125;" u2="&#x27;" k="13" />
  1579. <hkern u1="&#x126;" g2="parenleft.sc" k="23" />
  1580. <hkern u1="&#x126;" g2="parenleft.caps" k="30" />
  1581. <hkern u1="&#x126;" g2="question.caps" k="13" />
  1582. <hkern u1="&#x126;" g2="exclam.caps" k="5" />
  1583. <hkern u1="&#x127;" u2="&#x27;" k="13" />
  1584. <hkern u1="&#x128;" g2="parenleft.sc" k="23" />
  1585. <hkern u1="&#x128;" g2="parenleft.caps" k="30" />
  1586. <hkern u1="&#x128;" g2="question.caps" k="13" />
  1587. <hkern u1="&#x128;" g2="exclam.caps" k="5" />
  1588. <hkern u1="&#x12a;" g2="parenleft.sc" k="23" />
  1589. <hkern u1="&#x12a;" g2="parenleft.caps" k="30" />
  1590. <hkern u1="&#x12a;" g2="question.caps" k="13" />
  1591. <hkern u1="&#x12a;" g2="exclam.caps" k="5" />
  1592. <hkern u1="&#x12c;" g2="parenleft.sc" k="23" />
  1593. <hkern u1="&#x12c;" g2="parenleft.caps" k="30" />
  1594. <hkern u1="&#x12c;" g2="question.caps" k="13" />
  1595. <hkern u1="&#x12c;" g2="exclam.caps" k="5" />
  1596. <hkern u1="&#x12e;" g2="parenleft.sc" k="23" />
  1597. <hkern u1="&#x12e;" g2="parenleft.caps" k="30" />
  1598. <hkern u1="&#x12e;" g2="question.caps" k="13" />
  1599. <hkern u1="&#x12e;" g2="exclam.caps" k="5" />
  1600. <hkern u1="&#x130;" g2="parenleft.sc" k="23" />
  1601. <hkern u1="&#x130;" g2="parenleft.caps" k="30" />
  1602. <hkern u1="&#x130;" g2="question.caps" k="13" />
  1603. <hkern u1="&#x130;" g2="exclam.caps" k="5" />
  1604. <hkern u1="&#x132;" g2="parenleft.caps" k="15" />
  1605. <hkern u1="&#x132;" g2="asterisk.caps" k="15" />
  1606. <hkern u1="&#x132;" g2="question.caps" k="8" />
  1607. <hkern u1="&#x132;" g2="exclam.caps" k="5" />
  1608. <hkern u1="&#x134;" g2="parenleft.caps" k="15" />
  1609. <hkern u1="&#x134;" g2="asterisk.caps" k="15" />
  1610. <hkern u1="&#x134;" g2="question.caps" k="8" />
  1611. <hkern u1="&#x134;" g2="exclam.caps" k="5" />
  1612. <hkern u1="&#x136;" g2="ampersand.caps" k="21" />
  1613. <hkern u1="&#x136;" g2="quotesingle.caps" k="-8" />
  1614. <hkern u1="&#x136;" g2="quotedbl.caps" k="-15" />
  1615. <hkern u1="&#x136;" g2="question.caps" k="10" />
  1616. <hkern u1="&#x136;" g2="exclam.caps" k="5" />
  1617. <hkern u1="&#x139;" g2="quotesingle.caps" k="90" />
  1618. <hkern u1="&#x139;" g2="quotedbl.caps" k="105" />
  1619. <hkern u1="&#x139;" g2="asterisk.caps" k="110" />
  1620. <hkern u1="&#x139;" g2="periodcentered.caps" k="65" />
  1621. <hkern u1="&#x139;" g2="question.caps" k="35" />
  1622. <hkern u1="&#x139;" g2="exclam.caps" k="10" />
  1623. <hkern u1="&#x13b;" g2="quotesingle.caps" k="90" />
  1624. <hkern u1="&#x13b;" g2="quotedbl.caps" k="105" />
  1625. <hkern u1="&#x13b;" g2="asterisk.caps" k="110" />
  1626. <hkern u1="&#x13b;" g2="periodcentered.caps" k="65" />
  1627. <hkern u1="&#x13b;" g2="question.caps" k="35" />
  1628. <hkern u1="&#x13b;" g2="exclam.caps" k="10" />
  1629. <hkern u1="&#x13d;" g2="quotesingle.caps" k="90" />
  1630. <hkern u1="&#x13d;" g2="quotedbl.caps" k="105" />
  1631. <hkern u1="&#x13d;" g2="asterisk.caps" k="110" />
  1632. <hkern u1="&#x13d;" g2="periodcentered.caps" k="65" />
  1633. <hkern u1="&#x13d;" g2="question.caps" k="35" />
  1634. <hkern u1="&#x13d;" g2="exclam.caps" k="10" />
  1635. <hkern u1="&#x13f;" g2="quotesingle.caps" k="90" />
  1636. <hkern u1="&#x13f;" g2="quotedbl.caps" k="105" />
  1637. <hkern u1="&#x13f;" g2="asterisk.caps" k="110" />
  1638. <hkern u1="&#x13f;" g2="periodcentered.caps" k="65" />
  1639. <hkern u1="&#x13f;" g2="question.caps" k="35" />
  1640. <hkern u1="&#x13f;" g2="exclam.caps" k="10" />
  1641. <hkern u1="&#x141;" g2="quotesingle.caps" k="90" />
  1642. <hkern u1="&#x141;" g2="quotedbl.caps" k="105" />
  1643. <hkern u1="&#x141;" g2="asterisk.caps" k="110" />
  1644. <hkern u1="&#x141;" g2="periodcentered.caps" k="65" />
  1645. <hkern u1="&#x141;" g2="question.caps" k="35" />
  1646. <hkern u1="&#x141;" g2="exclam.caps" k="10" />
  1647. <hkern u1="&#x143;" g2="parenleft.sc" k="23" />
  1648. <hkern u1="&#x143;" g2="parenleft.caps" k="30" />
  1649. <hkern u1="&#x143;" g2="question.caps" k="13" />
  1650. <hkern u1="&#x143;" g2="exclam.caps" k="5" />
  1651. <hkern u1="&#x144;" u2="&#x27;" k="13" />
  1652. <hkern u1="&#x145;" g2="parenleft.sc" k="23" />
  1653. <hkern u1="&#x145;" g2="parenleft.caps" k="30" />
  1654. <hkern u1="&#x145;" g2="question.caps" k="13" />
  1655. <hkern u1="&#x145;" g2="exclam.caps" k="5" />
  1656. <hkern u1="&#x146;" u2="&#x27;" k="13" />
  1657. <hkern u1="&#x147;" g2="parenleft.sc" k="23" />
  1658. <hkern u1="&#x147;" g2="parenleft.caps" k="30" />
  1659. <hkern u1="&#x147;" g2="question.caps" k="13" />
  1660. <hkern u1="&#x147;" g2="exclam.caps" k="5" />
  1661. <hkern u1="&#x148;" u2="&#x27;" k="13" />
  1662. <hkern u1="&#x149;" u2="&#x27;" k="13" />
  1663. <hkern u1="&#x14a;" g2="parenleft.sc" k="23" />
  1664. <hkern u1="&#x14a;" g2="parenleft.caps" k="30" />
  1665. <hkern u1="&#x14a;" g2="question.caps" k="13" />
  1666. <hkern u1="&#x14a;" g2="exclam.caps" k="5" />
  1667. <hkern u1="&#x14b;" u2="&#x27;" k="13" />
  1668. <hkern u1="&#x14c;" g2="ampersand.caps" k="25" />
  1669. <hkern u1="&#x14c;" g2="parenleft.sc" k="30" />
  1670. <hkern u1="&#x14c;" g2="quotesingle.caps" k="18" />
  1671. <hkern u1="&#x14c;" g2="quotedbl.caps" k="10" />
  1672. <hkern u1="&#x14c;" g2="bracketright.caps" k="28" />
  1673. <hkern u1="&#x14c;" g2="asterisk.caps" k="25" />
  1674. <hkern u1="&#x14c;" g2="periodcentered.caps" k="15" />
  1675. <hkern u1="&#x14c;" g2="question.caps" k="18" />
  1676. <hkern u1="&#x14d;" g2="asterisk.caps" k="20" />
  1677. <hkern u1="&#x14e;" g2="ampersand.caps" k="25" />
  1678. <hkern u1="&#x14e;" g2="parenleft.sc" k="30" />
  1679. <hkern u1="&#x14e;" g2="quotesingle.caps" k="18" />
  1680. <hkern u1="&#x14e;" g2="quotedbl.caps" k="10" />
  1681. <hkern u1="&#x14e;" g2="bracketright.caps" k="28" />
  1682. <hkern u1="&#x14e;" g2="asterisk.caps" k="25" />
  1683. <hkern u1="&#x14e;" g2="periodcentered.caps" k="15" />
  1684. <hkern u1="&#x14e;" g2="question.caps" k="18" />
  1685. <hkern u1="&#x14f;" g2="asterisk.caps" k="20" />
  1686. <hkern u1="&#x150;" g2="ampersand.caps" k="25" />
  1687. <hkern u1="&#x150;" g2="parenleft.sc" k="30" />
  1688. <hkern u1="&#x150;" g2="quotesingle.caps" k="18" />
  1689. <hkern u1="&#x150;" g2="quotedbl.caps" k="10" />
  1690. <hkern u1="&#x150;" g2="bracketright.caps" k="28" />
  1691. <hkern u1="&#x150;" g2="asterisk.caps" k="25" />
  1692. <hkern u1="&#x150;" g2="periodcentered.caps" k="15" />
  1693. <hkern u1="&#x150;" g2="question.caps" k="18" />
  1694. <hkern u1="&#x151;" g2="asterisk.caps" k="20" />
  1695. <hkern u1="&#x152;" g2="ampersand.caps" k="38" />
  1696. <hkern u1="&#x152;" g2="parenleft.sc" k="23" />
  1697. <hkern u1="&#x152;" g2="quotesingle.caps" k="8" />
  1698. <hkern u1="&#x152;" g2="quotedbl.caps" k="30" />
  1699. <hkern u1="&#x152;" g2="parenleft.caps" k="38" />
  1700. <hkern u1="&#x153;" g2="asterisk.caps" k="23" />
  1701. <hkern u1="&#x154;" g2="ampersand.caps" k="3" />
  1702. <hkern u1="&#x154;" g2="parenleft.sc" k="38" />
  1703. <hkern u1="&#x154;" g2="quotesingle.caps" k="23" />
  1704. <hkern u1="&#x154;" g2="parenleft.caps" k="30" />
  1705. <hkern u1="&#x154;" g2="question.caps" k="10" />
  1706. <hkern u1="&#x154;" g2="exclam.caps" k="13" />
  1707. <hkern u1="&#x156;" g2="ampersand.caps" k="3" />
  1708. <hkern u1="&#x156;" g2="parenleft.sc" k="38" />
  1709. <hkern u1="&#x156;" g2="quotesingle.caps" k="23" />
  1710. <hkern u1="&#x156;" g2="parenleft.caps" k="30" />
  1711. <hkern u1="&#x156;" g2="question.caps" k="10" />
  1712. <hkern u1="&#x156;" g2="exclam.caps" k="13" />
  1713. <hkern u1="&#x158;" g2="ampersand.caps" k="3" />
  1714. <hkern u1="&#x158;" g2="parenleft.sc" k="38" />
  1715. <hkern u1="&#x158;" g2="quotesingle.caps" k="23" />
  1716. <hkern u1="&#x158;" g2="parenleft.caps" k="30" />
  1717. <hkern u1="&#x158;" g2="question.caps" k="10" />
  1718. <hkern u1="&#x158;" g2="exclam.caps" k="13" />
  1719. <hkern u1="&#x15a;" g2="parenleft.sc" k="38" />
  1720. <hkern u1="&#x15a;" g2="parenleft.caps" k="38" />
  1721. <hkern u1="&#x15a;" g2="question.caps" k="28" />
  1722. <hkern u1="&#x15a;" g2="exclam.caps" k="15" />
  1723. <hkern u1="&#x15b;" u2="&#x27;" k="10" />
  1724. <hkern u1="&#x15c;" g2="parenleft.sc" k="38" />
  1725. <hkern u1="&#x15c;" g2="parenleft.caps" k="38" />
  1726. <hkern u1="&#x15c;" g2="question.caps" k="28" />
  1727. <hkern u1="&#x15c;" g2="exclam.caps" k="15" />
  1728. <hkern u1="&#x15d;" u2="&#x27;" k="10" />
  1729. <hkern u1="&#x15e;" g2="parenleft.sc" k="38" />
  1730. <hkern u1="&#x15e;" g2="parenleft.caps" k="38" />
  1731. <hkern u1="&#x15e;" g2="question.caps" k="28" />
  1732. <hkern u1="&#x15e;" g2="exclam.caps" k="15" />
  1733. <hkern u1="&#x15f;" u2="&#x27;" k="10" />
  1734. <hkern u1="&#x160;" g2="parenleft.sc" k="38" />
  1735. <hkern u1="&#x160;" g2="parenleft.caps" k="38" />
  1736. <hkern u1="&#x160;" g2="question.caps" k="28" />
  1737. <hkern u1="&#x160;" g2="exclam.caps" k="15" />
  1738. <hkern u1="&#x161;" u2="&#x27;" k="10" />
  1739. <hkern u1="&#x162;" g2="ampersand.caps" k="31" />
  1740. <hkern u1="&#x162;" g2="parenleft.sc" k="60" />
  1741. <hkern u1="&#x162;" g2="parenleft.caps" k="45" />
  1742. <hkern u1="&#x162;" g2="exclam.caps" k="8" />
  1743. <hkern u1="&#x164;" g2="ampersand.caps" k="31" />
  1744. <hkern u1="&#x164;" g2="parenleft.sc" k="60" />
  1745. <hkern u1="&#x164;" g2="parenleft.caps" k="45" />
  1746. <hkern u1="&#x164;" g2="exclam.caps" k="8" />
  1747. <hkern u1="&#x166;" g2="ampersand.caps" k="31" />
  1748. <hkern u1="&#x166;" g2="parenleft.sc" k="60" />
  1749. <hkern u1="&#x166;" g2="parenleft.caps" k="45" />
  1750. <hkern u1="&#x166;" g2="exclam.caps" k="8" />
  1751. <hkern u1="&#x168;" g2="ampersand.caps" k="8" />
  1752. <hkern u1="&#x168;" g2="parenleft.sc" k="23" />
  1753. <hkern u1="&#x168;" g2="parenleft.caps" k="23" />
  1754. <hkern u1="&#x168;" g2="question.caps" k="8" />
  1755. <hkern u1="&#x169;" u2="&#x22;" k="10" />
  1756. <hkern u1="&#x16a;" g2="ampersand.caps" k="8" />
  1757. <hkern u1="&#x16a;" g2="parenleft.sc" k="23" />
  1758. <hkern u1="&#x16a;" g2="parenleft.caps" k="23" />
  1759. <hkern u1="&#x16a;" g2="question.caps" k="8" />
  1760. <hkern u1="&#x16b;" u2="&#x22;" k="10" />
  1761. <hkern u1="&#x16c;" g2="ampersand.caps" k="8" />
  1762. <hkern u1="&#x16c;" g2="parenleft.sc" k="23" />
  1763. <hkern u1="&#x16c;" g2="parenleft.caps" k="23" />
  1764. <hkern u1="&#x16c;" g2="question.caps" k="8" />
  1765. <hkern u1="&#x16d;" u2="&#x22;" k="10" />
  1766. <hkern u1="&#x16e;" g2="ampersand.caps" k="8" />
  1767. <hkern u1="&#x16e;" g2="parenleft.sc" k="23" />
  1768. <hkern u1="&#x16e;" g2="parenleft.caps" k="23" />
  1769. <hkern u1="&#x16e;" g2="question.caps" k="8" />
  1770. <hkern u1="&#x16f;" u2="&#x22;" k="10" />
  1771. <hkern u1="&#x170;" g2="ampersand.caps" k="8" />
  1772. <hkern u1="&#x170;" g2="parenleft.sc" k="23" />
  1773. <hkern u1="&#x170;" g2="parenleft.caps" k="23" />
  1774. <hkern u1="&#x170;" g2="question.caps" k="8" />
  1775. <hkern u1="&#x171;" u2="&#x22;" k="10" />
  1776. <hkern u1="&#x172;" g2="ampersand.caps" k="8" />
  1777. <hkern u1="&#x172;" g2="parenleft.sc" k="23" />
  1778. <hkern u1="&#x172;" g2="parenleft.caps" k="23" />
  1779. <hkern u1="&#x172;" g2="question.caps" k="8" />
  1780. <hkern u1="&#x173;" u2="&#x22;" k="10" />
  1781. <hkern u1="&#x174;" g2="ampersand.caps" k="36" />
  1782. <hkern u1="&#x174;" g2="parenleft.sc" k="38" />
  1783. <hkern u1="&#x174;" g2="parenleft.caps" k="38" />
  1784. <hkern u1="&#x174;" g2="question.caps" k="5" />
  1785. <hkern u1="&#x176;" g2="ampersand.caps" k="30" />
  1786. <hkern u1="&#x176;" g2="parenleft.caps" k="30" />
  1787. <hkern u1="&#x176;" g2="question.caps" k="5" />
  1788. <hkern u1="&#x178;" g2="ampersand.caps" k="30" />
  1789. <hkern u1="&#x178;" g2="parenleft.caps" k="30" />
  1790. <hkern u1="&#x178;" g2="question.caps" k="5" />
  1791. <hkern u1="&#x179;" g2="ampersand.caps" k="11" />
  1792. <hkern u1="&#x179;" g2="parenleft.sc" k="23" />
  1793. <hkern u1="&#x179;" g2="parenleft.caps" k="23" />
  1794. <hkern u1="&#x179;" g2="question.caps" k="8" />
  1795. <hkern u1="&#x17b;" g2="ampersand.caps" k="11" />
  1796. <hkern u1="&#x17b;" g2="parenleft.sc" k="23" />
  1797. <hkern u1="&#x17b;" g2="parenleft.caps" k="23" />
  1798. <hkern u1="&#x17b;" g2="question.caps" k="8" />
  1799. <hkern u1="&#x17d;" g2="ampersand.caps" k="11" />
  1800. <hkern u1="&#x17d;" g2="parenleft.sc" k="23" />
  1801. <hkern u1="&#x17d;" g2="parenleft.caps" k="23" />
  1802. <hkern u1="&#x17d;" g2="question.caps" k="8" />
  1803. <hkern u1="&#x18f;" g2="ampersand.caps" k="25" />
  1804. <hkern u1="&#x18f;" g2="parenleft.sc" k="30" />
  1805. <hkern u1="&#x18f;" g2="quotesingle.caps" k="18" />
  1806. <hkern u1="&#x18f;" g2="quotedbl.caps" k="10" />
  1807. <hkern u1="&#x18f;" g2="bracketright.caps" k="28" />
  1808. <hkern u1="&#x18f;" g2="asterisk.caps" k="25" />
  1809. <hkern u1="&#x18f;" g2="periodcentered.caps" k="15" />
  1810. <hkern u1="&#x18f;" g2="question.caps" k="18" />
  1811. <hkern u1="&#x19d;" g2="parenleft.sc" k="23" />
  1812. <hkern u1="&#x19d;" g2="parenleft.caps" k="30" />
  1813. <hkern u1="&#x19d;" g2="question.caps" k="13" />
  1814. <hkern u1="&#x19d;" g2="exclam.caps" k="5" />
  1815. <hkern u1="&#x1cd;" g2="ampersand.caps" k="13" />
  1816. <hkern u1="&#x1cd;" g2="quotesingle.caps" k="75" />
  1817. <hkern u1="&#x1cd;" g2="quotedbl.caps" k="80" />
  1818. <hkern u1="&#x1cd;" g2="parenleft.caps" k="38" />
  1819. <hkern u1="&#x1cd;" g2="asterisk.caps" k="75" />
  1820. <hkern u1="&#x1cd;" g2="questiondown.caps" k="-15" />
  1821. <hkern u1="&#x1cd;" g2="question.caps" k="45" />
  1822. <hkern u1="&#x1cd;" u2="V" k="38" />
  1823. <hkern u1="&#x1cf;" g2="parenleft.sc" k="23" />
  1824. <hkern u1="&#x1cf;" g2="parenleft.caps" k="30" />
  1825. <hkern u1="&#x1cf;" g2="question.caps" k="13" />
  1826. <hkern u1="&#x1cf;" g2="exclam.caps" k="5" />
  1827. <hkern u1="&#x1d1;" g2="ampersand.caps" k="25" />
  1828. <hkern u1="&#x1d1;" g2="parenleft.sc" k="30" />
  1829. <hkern u1="&#x1d1;" g2="quotesingle.caps" k="18" />
  1830. <hkern u1="&#x1d1;" g2="quotedbl.caps" k="10" />
  1831. <hkern u1="&#x1d1;" g2="bracketright.caps" k="28" />
  1832. <hkern u1="&#x1d1;" g2="asterisk.caps" k="25" />
  1833. <hkern u1="&#x1d1;" g2="periodcentered.caps" k="15" />
  1834. <hkern u1="&#x1d1;" g2="question.caps" k="18" />
  1835. <hkern u1="&#x1d2;" g2="asterisk.caps" k="20" />
  1836. <hkern u1="&#x1d3;" g2="ampersand.caps" k="8" />
  1837. <hkern u1="&#x1d3;" g2="parenleft.sc" k="23" />
  1838. <hkern u1="&#x1d3;" g2="parenleft.caps" k="23" />
  1839. <hkern u1="&#x1d3;" g2="question.caps" k="8" />
  1840. <hkern u1="&#x1d4;" u2="&#x22;" k="10" />
  1841. <hkern u1="&#x1d5;" g2="ampersand.caps" k="8" />
  1842. <hkern u1="&#x1d5;" g2="parenleft.sc" k="23" />
  1843. <hkern u1="&#x1d5;" g2="parenleft.caps" k="23" />
  1844. <hkern u1="&#x1d5;" g2="question.caps" k="8" />
  1845. <hkern u1="&#x1d6;" u2="&#x22;" k="10" />
  1846. <hkern u1="&#x1d7;" g2="ampersand.caps" k="8" />
  1847. <hkern u1="&#x1d7;" g2="parenleft.sc" k="23" />
  1848. <hkern u1="&#x1d7;" g2="parenleft.caps" k="23" />
  1849. <hkern u1="&#x1d7;" g2="question.caps" k="8" />
  1850. <hkern u1="&#x1d8;" u2="&#x22;" k="10" />
  1851. <hkern u1="&#x1d9;" g2="ampersand.caps" k="8" />
  1852. <hkern u1="&#x1d9;" g2="parenleft.sc" k="23" />
  1853. <hkern u1="&#x1d9;" g2="parenleft.caps" k="23" />
  1854. <hkern u1="&#x1d9;" g2="question.caps" k="8" />
  1855. <hkern u1="&#x1da;" u2="&#x22;" k="10" />
  1856. <hkern u1="&#x1db;" g2="ampersand.caps" k="8" />
  1857. <hkern u1="&#x1db;" g2="parenleft.sc" k="23" />
  1858. <hkern u1="&#x1db;" g2="parenleft.caps" k="23" />
  1859. <hkern u1="&#x1db;" g2="question.caps" k="8" />
  1860. <hkern u1="&#x1dc;" u2="&#x22;" k="10" />
  1861. <hkern u1="&#x1e6;" g2="ampersand.caps" k="8" />
  1862. <hkern u1="&#x1e6;" g2="parenleft.sc" k="30" />
  1863. <hkern u1="&#x1e6;" g2="quotesingle.caps" k="8" />
  1864. <hkern u1="&#x1e6;" g2="quotedbl.caps" k="8" />
  1865. <hkern u1="&#x1e6;" g2="parenleft.caps" k="15" />
  1866. <hkern u1="&#x1e6;" g2="asterisk.caps" k="30" />
  1867. <hkern u1="&#x1e6;" g2="question.caps" k="5" />
  1868. <hkern u1="&#x1e6;" g2="exclam.caps" k="10" />
  1869. <hkern u1="&#x1ea;" g2="ampersand.caps" k="25" />
  1870. <hkern u1="&#x1ea;" g2="parenleft.sc" k="30" />
  1871. <hkern u1="&#x1ea;" g2="quotesingle.caps" k="18" />
  1872. <hkern u1="&#x1ea;" g2="quotedbl.caps" k="10" />
  1873. <hkern u1="&#x1ea;" g2="bracketright.caps" k="28" />
  1874. <hkern u1="&#x1ea;" g2="asterisk.caps" k="25" />
  1875. <hkern u1="&#x1ea;" g2="periodcentered.caps" k="15" />
  1876. <hkern u1="&#x1ea;" g2="question.caps" k="18" />
  1877. <hkern u1="&#x1eb;" g2="asterisk.caps" k="20" />
  1878. <hkern u1="&#x1f4;" g2="ampersand.caps" k="8" />
  1879. <hkern u1="&#x1f4;" g2="parenleft.sc" k="30" />
  1880. <hkern u1="&#x1f4;" g2="quotesingle.caps" k="8" />
  1881. <hkern u1="&#x1f4;" g2="quotedbl.caps" k="8" />
  1882. <hkern u1="&#x1f4;" g2="parenleft.caps" k="15" />
  1883. <hkern u1="&#x1f4;" g2="asterisk.caps" k="30" />
  1884. <hkern u1="&#x1f4;" g2="question.caps" k="5" />
  1885. <hkern u1="&#x1f4;" g2="exclam.caps" k="10" />
  1886. <hkern u1="&#x1fa;" g2="ampersand.caps" k="13" />
  1887. <hkern u1="&#x1fa;" g2="quotesingle.caps" k="75" />
  1888. <hkern u1="&#x1fa;" g2="quotedbl.caps" k="80" />
  1889. <hkern u1="&#x1fa;" g2="parenleft.caps" k="38" />
  1890. <hkern u1="&#x1fa;" g2="asterisk.caps" k="75" />
  1891. <hkern u1="&#x1fa;" g2="questiondown.caps" k="-15" />
  1892. <hkern u1="&#x1fa;" g2="question.caps" k="45" />
  1893. <hkern u1="&#x1fa;" u2="V" k="38" />
  1894. <hkern u1="&#x1fc;" g2="ampersand.caps" k="38" />
  1895. <hkern u1="&#x1fc;" g2="parenleft.sc" k="23" />
  1896. <hkern u1="&#x1fc;" g2="quotesingle.caps" k="8" />
  1897. <hkern u1="&#x1fc;" g2="quotedbl.caps" k="30" />
  1898. <hkern u1="&#x1fc;" g2="parenleft.caps" k="38" />
  1899. <hkern u1="&#x1fd;" g2="asterisk.caps" k="23" />
  1900. <hkern u1="&#x1fe;" g2="ampersand.caps" k="25" />
  1901. <hkern u1="&#x1fe;" g2="parenleft.sc" k="30" />
  1902. <hkern u1="&#x1fe;" g2="quotesingle.caps" k="18" />
  1903. <hkern u1="&#x1fe;" g2="quotedbl.caps" k="10" />
  1904. <hkern u1="&#x1fe;" g2="bracketright.caps" k="28" />
  1905. <hkern u1="&#x1fe;" g2="asterisk.caps" k="25" />
  1906. <hkern u1="&#x1fe;" g2="periodcentered.caps" k="15" />
  1907. <hkern u1="&#x1fe;" g2="question.caps" k="18" />
  1908. <hkern u1="&#x1ff;" g2="asterisk.caps" k="20" />
  1909. <hkern u1="&#x218;" g2="parenleft.sc" k="38" />
  1910. <hkern u1="&#x218;" g2="parenleft.caps" k="38" />
  1911. <hkern u1="&#x218;" g2="question.caps" k="28" />
  1912. <hkern u1="&#x218;" g2="exclam.caps" k="15" />
  1913. <hkern u1="&#x219;" u2="&#x27;" k="10" />
  1914. <hkern u1="&#x21a;" g2="ampersand.caps" k="31" />
  1915. <hkern u1="&#x21a;" g2="parenleft.sc" k="60" />
  1916. <hkern u1="&#x21a;" g2="parenleft.caps" k="45" />
  1917. <hkern u1="&#x21a;" g2="exclam.caps" k="8" />
  1918. <hkern u1="&#x232;" g2="ampersand.caps" k="30" />
  1919. <hkern u1="&#x232;" g2="parenleft.caps" k="30" />
  1920. <hkern u1="&#x232;" g2="question.caps" k="5" />
  1921. <hkern u1="&#x259;" g2="asterisk.caps" k="20" />
  1922. <hkern u1="&#x272;" u2="&#x27;" k="13" />
  1923. <hkern u1="&#x1e0c;" g2="ampersand.caps" k="25" />
  1924. <hkern u1="&#x1e0c;" g2="parenleft.sc" k="30" />
  1925. <hkern u1="&#x1e0c;" g2="quotesingle.caps" k="18" />
  1926. <hkern u1="&#x1e0c;" g2="quotedbl.caps" k="10" />
  1927. <hkern u1="&#x1e0c;" g2="bracketright.caps" k="28" />
  1928. <hkern u1="&#x1e0c;" g2="asterisk.caps" k="25" />
  1929. <hkern u1="&#x1e0c;" g2="periodcentered.caps" k="15" />
  1930. <hkern u1="&#x1e0c;" g2="question.caps" k="18" />
  1931. <hkern u1="&#x1e0d;" g2="asterisk.caps" k="8" />
  1932. <hkern u1="&#x1e24;" g2="parenleft.sc" k="23" />
  1933. <hkern u1="&#x1e24;" g2="parenleft.caps" k="30" />
  1934. <hkern u1="&#x1e24;" g2="question.caps" k="13" />
  1935. <hkern u1="&#x1e24;" g2="exclam.caps" k="5" />
  1936. <hkern u1="&#x1e25;" u2="&#x27;" k="13" />
  1937. <hkern u1="&#x1e44;" g2="parenleft.sc" k="23" />
  1938. <hkern u1="&#x1e44;" g2="parenleft.caps" k="30" />
  1939. <hkern u1="&#x1e44;" g2="question.caps" k="13" />
  1940. <hkern u1="&#x1e44;" g2="exclam.caps" k="5" />
  1941. <hkern u1="&#x1e45;" u2="&#x27;" k="13" />
  1942. <hkern u1="&#x1e5a;" g2="ampersand.caps" k="3" />
  1943. <hkern u1="&#x1e5a;" g2="parenleft.sc" k="38" />
  1944. <hkern u1="&#x1e5a;" g2="quotesingle.caps" k="23" />
  1945. <hkern u1="&#x1e5a;" g2="parenleft.caps" k="30" />
  1946. <hkern u1="&#x1e5a;" g2="question.caps" k="10" />
  1947. <hkern u1="&#x1e5a;" g2="exclam.caps" k="13" />
  1948. <hkern u1="&#x1e62;" g2="parenleft.sc" k="38" />
  1949. <hkern u1="&#x1e62;" g2="parenleft.caps" k="38" />
  1950. <hkern u1="&#x1e62;" g2="question.caps" k="28" />
  1951. <hkern u1="&#x1e62;" g2="exclam.caps" k="15" />
  1952. <hkern u1="&#x1e63;" u2="&#x27;" k="10" />
  1953. <hkern u1="&#x1e6c;" g2="ampersand.caps" k="31" />
  1954. <hkern u1="&#x1e6c;" g2="parenleft.sc" k="60" />
  1955. <hkern u1="&#x1e6c;" g2="parenleft.caps" k="45" />
  1956. <hkern u1="&#x1e6c;" g2="exclam.caps" k="8" />
  1957. <hkern u1="&#x1e80;" g2="ampersand.caps" k="36" />
  1958. <hkern u1="&#x1e80;" g2="parenleft.sc" k="38" />
  1959. <hkern u1="&#x1e80;" g2="parenleft.caps" k="38" />
  1960. <hkern u1="&#x1e80;" g2="question.caps" k="5" />
  1961. <hkern u1="&#x1e82;" g2="ampersand.caps" k="36" />
  1962. <hkern u1="&#x1e82;" g2="parenleft.sc" k="38" />
  1963. <hkern u1="&#x1e82;" g2="parenleft.caps" k="38" />
  1964. <hkern u1="&#x1e82;" g2="question.caps" k="5" />
  1965. <hkern u1="&#x1e84;" g2="ampersand.caps" k="36" />
  1966. <hkern u1="&#x1e84;" g2="parenleft.sc" k="38" />
  1967. <hkern u1="&#x1e84;" g2="parenleft.caps" k="38" />
  1968. <hkern u1="&#x1e84;" g2="question.caps" k="5" />
  1969. <hkern u1="&#x1e92;" g2="ampersand.caps" k="11" />
  1970. <hkern u1="&#x1e92;" g2="parenleft.sc" k="23" />
  1971. <hkern u1="&#x1e92;" g2="parenleft.caps" k="23" />
  1972. <hkern u1="&#x1e92;" g2="question.caps" k="8" />
  1973. <hkern u1="&#x1e9e;" g2="parenleft.sc" k="38" />
  1974. <hkern u1="&#x1e9e;" g2="parenleft.caps" k="38" />
  1975. <hkern u1="&#x1e9e;" g2="question.caps" k="28" />
  1976. <hkern u1="&#x1e9e;" g2="exclam.caps" k="15" />
  1977. <hkern u1="&#x1ea0;" g2="ampersand.caps" k="13" />
  1978. <hkern u1="&#x1ea0;" g2="quotesingle.caps" k="75" />
  1979. <hkern u1="&#x1ea0;" g2="quotedbl.caps" k="80" />
  1980. <hkern u1="&#x1ea0;" g2="parenleft.caps" k="38" />
  1981. <hkern u1="&#x1ea0;" g2="asterisk.caps" k="75" />
  1982. <hkern u1="&#x1ea0;" g2="questiondown.caps" k="-15" />
  1983. <hkern u1="&#x1ea0;" g2="question.caps" k="45" />
  1984. <hkern u1="&#x1ea0;" u2="V" k="38" />
  1985. <hkern u1="&#x1eb8;" g2="ampersand.caps" k="38" />
  1986. <hkern u1="&#x1eb8;" g2="parenleft.sc" k="23" />
  1987. <hkern u1="&#x1eb8;" g2="quotesingle.caps" k="8" />
  1988. <hkern u1="&#x1eb8;" g2="quotedbl.caps" k="30" />
  1989. <hkern u1="&#x1eb8;" g2="parenleft.caps" k="38" />
  1990. <hkern u1="&#x1eb9;" g2="asterisk.caps" k="23" />
  1991. <hkern u1="&#x1ebc;" g2="ampersand.caps" k="38" />
  1992. <hkern u1="&#x1ebc;" g2="parenleft.sc" k="23" />
  1993. <hkern u1="&#x1ebc;" g2="quotesingle.caps" k="8" />
  1994. <hkern u1="&#x1ebc;" g2="quotedbl.caps" k="30" />
  1995. <hkern u1="&#x1ebc;" g2="parenleft.caps" k="38" />
  1996. <hkern u1="&#x1ebd;" g2="asterisk.caps" k="23" />
  1997. <hkern u1="&#x1eca;" g2="parenleft.sc" k="23" />
  1998. <hkern u1="&#x1eca;" g2="parenleft.caps" k="30" />
  1999. <hkern u1="&#x1eca;" g2="question.caps" k="13" />
  2000. <hkern u1="&#x1eca;" g2="exclam.caps" k="5" />
  2001. <hkern u1="&#x1ecc;" g2="ampersand.caps" k="25" />
  2002. <hkern u1="&#x1ecc;" g2="parenleft.sc" k="30" />
  2003. <hkern u1="&#x1ecc;" g2="quotesingle.caps" k="18" />
  2004. <hkern u1="&#x1ecc;" g2="quotedbl.caps" k="10" />
  2005. <hkern u1="&#x1ecc;" g2="bracketright.caps" k="28" />
  2006. <hkern u1="&#x1ecc;" g2="asterisk.caps" k="25" />
  2007. <hkern u1="&#x1ecc;" g2="periodcentered.caps" k="15" />
  2008. <hkern u1="&#x1ecc;" g2="question.caps" k="18" />
  2009. <hkern u1="&#x1ecd;" g2="asterisk.caps" k="20" />
  2010. <hkern u1="&#x1ee4;" g2="ampersand.caps" k="8" />
  2011. <hkern u1="&#x1ee4;" g2="parenleft.sc" k="23" />
  2012. <hkern u1="&#x1ee4;" g2="parenleft.caps" k="23" />
  2013. <hkern u1="&#x1ee4;" g2="question.caps" k="8" />
  2014. <hkern u1="&#x1ee5;" u2="&#x22;" k="10" />
  2015. <hkern u1="&#x1ef2;" g2="ampersand.caps" k="30" />
  2016. <hkern u1="&#x1ef2;" g2="parenleft.caps" k="30" />
  2017. <hkern u1="&#x1ef2;" g2="question.caps" k="5" />
  2018. <hkern u1="&#x1ef8;" g2="ampersand.caps" k="30" />
  2019. <hkern u1="&#x1ef8;" g2="parenleft.caps" k="30" />
  2020. <hkern u1="&#x1ef8;" g2="question.caps" k="5" />
  2021. <hkern u1="&#x2013;" g2="x.sc" k="10" />
  2022. <hkern u1="&#x2013;" u2="&#x2211;" k="45" />
  2023. <hkern u1="&#x2013;" u2="&#x220f;" k="31" />
  2024. <hkern u1="&#x2013;" u2="x" k="9" />
  2025. <hkern u1="&#x2013;" u2="X" k="19" />
  2026. <hkern u1="&#x2014;" g2="m.sc" k="4" />
  2027. <hkern u1="&#x2014;" u2="X" k="19" />
  2028. <hkern u1="&#x2020;" g2="m.sc" k="23" />
  2029. <hkern u1="&#x2020;" u2="&#x222b;" k="8" />
  2030. <hkern u1="&#x2020;" u2="&#x2211;" k="30" />
  2031. <hkern u1="&#x2020;" u2="&#x220f;" k="8" />
  2032. <hkern u1="&#x2020;" u2="&#x2202;" k="8" />
  2033. <hkern u1="&#x2020;" u2="&#x2044;" k="53" />
  2034. <hkern u1="&#x2020;" u2="&#x3bc;" k="8" />
  2035. <hkern u1="&#x2020;" u2="&#x394;" k="38" />
  2036. <hkern u1="&#x2020;" u2="&#x18f;" k="15" />
  2037. <hkern u1="&#x2020;" u2="x" k="4" />
  2038. <hkern u1="&#x2020;" u2="X" k="11" />
  2039. <hkern u1="&#x2020;" u2="M" k="15" />
  2040. <hkern u1="&#x2020;" u2="&#x40;" k="15" />
  2041. <hkern u1="&#x2021;" g2="x.sc" k="8" />
  2042. <hkern u1="&#x2021;" g2="m.sc" k="8" />
  2043. <hkern u1="&#x2021;" u2="&#x222b;" k="15" />
  2044. <hkern u1="&#x2021;" u2="&#x2211;" k="38" />
  2045. <hkern u1="&#x2021;" u2="&#x220f;" k="15" />
  2046. <hkern u1="&#x2021;" u2="&#x2202;" k="15" />
  2047. <hkern u1="&#x2021;" u2="&#x2044;" k="15" />
  2048. <hkern u1="&#x2021;" u2="&#x3c0;" k="8" />
  2049. <hkern u1="&#x2021;" u2="&#x3bc;" k="8" />
  2050. <hkern u1="&#x2021;" u2="&#x394;" k="4" />
  2051. <hkern u1="&#x2021;" u2="&#x18f;" k="8" />
  2052. <hkern u1="&#x2021;" u2="x" k="8" />
  2053. <hkern u1="&#x2044;" g2="six.denominator" k="248" />
  2054. <hkern u1="&#x2044;" g2="four.denominator" k="275" />
  2055. <hkern u1="&#x2044;" g2="one.denominator" k="175" />
  2056. <hkern u1="&#x2044;" g2="zero.denominator" k="250" />
  2057. <hkern g1="c_h" u2="&#x27;" k="13" />
  2058. <hkern g1="s_h" u2="&#x27;" k="13" />
  2059. <hkern g1="a.sc" g2="quotesingle.sc" k="48" />
  2060. <hkern g1="a.sc" g2="quotedbl.sc" k="48" />
  2061. <hkern g1="a.sc" g2="asterisk.sc" k="83" />
  2062. <hkern g1="a.sc" g2="periodcentered.sc" k="35" />
  2063. <hkern g1="a.sc" g2="questiondown.sc" k="-15" />
  2064. <hkern g1="a.sc" g2="question.sc" k="18" />
  2065. <hkern g1="a.sc" g2="exclamdown.sc" k="3" />
  2066. <hkern g1="a.sc" g2="bracketright.sc" k="15" />
  2067. <hkern g1="a.sc" g2="braceright.sc" k="4" />
  2068. <hkern g1="a.sc" g2="braceleft.sc" k="3" />
  2069. <hkern g1="a.sc" g2="parenleft.sc" k="8" />
  2070. <hkern g1="aacute.sc" g2="quotesingle.sc" k="48" />
  2071. <hkern g1="aacute.sc" g2="quotedbl.sc" k="48" />
  2072. <hkern g1="aacute.sc" g2="asterisk.sc" k="83" />
  2073. <hkern g1="aacute.sc" g2="periodcentered.sc" k="35" />
  2074. <hkern g1="aacute.sc" g2="questiondown.sc" k="-15" />
  2075. <hkern g1="aacute.sc" g2="question.sc" k="18" />
  2076. <hkern g1="aacute.sc" g2="exclamdown.sc" k="3" />
  2077. <hkern g1="aacute.sc" g2="bracketright.sc" k="15" />
  2078. <hkern g1="aacute.sc" g2="braceright.sc" k="4" />
  2079. <hkern g1="aacute.sc" g2="braceleft.sc" k="3" />
  2080. <hkern g1="aacute.sc" g2="parenleft.sc" k="8" />
  2081. <hkern g1="abreve.sc" g2="quotesingle.sc" k="48" />
  2082. <hkern g1="abreve.sc" g2="quotedbl.sc" k="48" />
  2083. <hkern g1="abreve.sc" g2="asterisk.sc" k="83" />
  2084. <hkern g1="abreve.sc" g2="periodcentered.sc" k="35" />
  2085. <hkern g1="abreve.sc" g2="questiondown.sc" k="-15" />
  2086. <hkern g1="abreve.sc" g2="question.sc" k="18" />
  2087. <hkern g1="abreve.sc" g2="exclamdown.sc" k="3" />
  2088. <hkern g1="abreve.sc" g2="bracketright.sc" k="15" />
  2089. <hkern g1="abreve.sc" g2="braceright.sc" k="4" />
  2090. <hkern g1="abreve.sc" g2="braceleft.sc" k="3" />
  2091. <hkern g1="abreve.sc" g2="parenleft.sc" k="8" />
  2092. <hkern g1="acaron.sc" g2="quotesingle.sc" k="48" />
  2093. <hkern g1="acaron.sc" g2="quotedbl.sc" k="48" />
  2094. <hkern g1="acaron.sc" g2="asterisk.sc" k="83" />
  2095. <hkern g1="acaron.sc" g2="periodcentered.sc" k="35" />
  2096. <hkern g1="acaron.sc" g2="questiondown.sc" k="-15" />
  2097. <hkern g1="acaron.sc" g2="question.sc" k="18" />
  2098. <hkern g1="acaron.sc" g2="exclamdown.sc" k="3" />
  2099. <hkern g1="acaron.sc" g2="bracketright.sc" k="15" />
  2100. <hkern g1="acaron.sc" g2="braceright.sc" k="4" />
  2101. <hkern g1="acaron.sc" g2="braceleft.sc" k="3" />
  2102. <hkern g1="acaron.sc" g2="parenleft.sc" k="8" />
  2103. <hkern g1="acircumflex.sc" g2="quotesingle.sc" k="48" />
  2104. <hkern g1="acircumflex.sc" g2="quotedbl.sc" k="48" />
  2105. <hkern g1="acircumflex.sc" g2="asterisk.sc" k="83" />
  2106. <hkern g1="acircumflex.sc" g2="periodcentered.sc" k="35" />
  2107. <hkern g1="acircumflex.sc" g2="questiondown.sc" k="-15" />
  2108. <hkern g1="acircumflex.sc" g2="question.sc" k="18" />
  2109. <hkern g1="acircumflex.sc" g2="exclamdown.sc" k="3" />
  2110. <hkern g1="acircumflex.sc" g2="bracketright.sc" k="15" />
  2111. <hkern g1="acircumflex.sc" g2="braceright.sc" k="4" />
  2112. <hkern g1="acircumflex.sc" g2="braceleft.sc" k="3" />
  2113. <hkern g1="acircumflex.sc" g2="parenleft.sc" k="8" />
  2114. <hkern g1="adieresis.sc" g2="quotesingle.sc" k="48" />
  2115. <hkern g1="adieresis.sc" g2="quotedbl.sc" k="48" />
  2116. <hkern g1="adieresis.sc" g2="asterisk.sc" k="83" />
  2117. <hkern g1="adieresis.sc" g2="periodcentered.sc" k="35" />
  2118. <hkern g1="adieresis.sc" g2="questiondown.sc" k="-15" />
  2119. <hkern g1="adieresis.sc" g2="question.sc" k="18" />
  2120. <hkern g1="adieresis.sc" g2="exclamdown.sc" k="3" />
  2121. <hkern g1="adieresis.sc" g2="bracketright.sc" k="15" />
  2122. <hkern g1="adieresis.sc" g2="braceright.sc" k="4" />
  2123. <hkern g1="adieresis.sc" g2="braceleft.sc" k="3" />
  2124. <hkern g1="adieresis.sc" g2="parenleft.sc" k="8" />
  2125. <hkern g1="adotbelow.sc" g2="quotesingle.sc" k="48" />
  2126. <hkern g1="adotbelow.sc" g2="quotedbl.sc" k="48" />
  2127. <hkern g1="adotbelow.sc" g2="asterisk.sc" k="83" />
  2128. <hkern g1="adotbelow.sc" g2="periodcentered.sc" k="35" />
  2129. <hkern g1="adotbelow.sc" g2="questiondown.sc" k="-15" />
  2130. <hkern g1="adotbelow.sc" g2="question.sc" k="18" />
  2131. <hkern g1="adotbelow.sc" g2="exclamdown.sc" k="3" />
  2132. <hkern g1="adotbelow.sc" g2="bracketright.sc" k="15" />
  2133. <hkern g1="adotbelow.sc" g2="braceright.sc" k="4" />
  2134. <hkern g1="adotbelow.sc" g2="braceleft.sc" k="3" />
  2135. <hkern g1="adotbelow.sc" g2="parenleft.sc" k="8" />
  2136. <hkern g1="agrave.sc" g2="quotesingle.sc" k="48" />
  2137. <hkern g1="agrave.sc" g2="quotedbl.sc" k="48" />
  2138. <hkern g1="agrave.sc" g2="asterisk.sc" k="83" />
  2139. <hkern g1="agrave.sc" g2="periodcentered.sc" k="35" />
  2140. <hkern g1="agrave.sc" g2="questiondown.sc" k="-15" />
  2141. <hkern g1="agrave.sc" g2="question.sc" k="18" />
  2142. <hkern g1="agrave.sc" g2="exclamdown.sc" k="3" />
  2143. <hkern g1="agrave.sc" g2="bracketright.sc" k="15" />
  2144. <hkern g1="agrave.sc" g2="braceright.sc" k="4" />
  2145. <hkern g1="agrave.sc" g2="braceleft.sc" k="3" />
  2146. <hkern g1="agrave.sc" g2="parenleft.sc" k="8" />
  2147. <hkern g1="amacron.sc" g2="quotesingle.sc" k="48" />
  2148. <hkern g1="amacron.sc" g2="quotedbl.sc" k="48" />
  2149. <hkern g1="amacron.sc" g2="asterisk.sc" k="83" />
  2150. <hkern g1="amacron.sc" g2="periodcentered.sc" k="35" />
  2151. <hkern g1="amacron.sc" g2="questiondown.sc" k="-15" />
  2152. <hkern g1="amacron.sc" g2="question.sc" k="18" />
  2153. <hkern g1="amacron.sc" g2="exclamdown.sc" k="3" />
  2154. <hkern g1="amacron.sc" g2="bracketright.sc" k="15" />
  2155. <hkern g1="amacron.sc" g2="braceright.sc" k="4" />
  2156. <hkern g1="amacron.sc" g2="braceleft.sc" k="3" />
  2157. <hkern g1="amacron.sc" g2="parenleft.sc" k="8" />
  2158. <hkern g1="aogonek.sc" g2="quotesingle.sc" k="48" />
  2159. <hkern g1="aogonek.sc" g2="quotedbl.sc" k="48" />
  2160. <hkern g1="aogonek.sc" g2="asterisk.sc" k="83" />
  2161. <hkern g1="aogonek.sc" g2="periodcentered.sc" k="35" />
  2162. <hkern g1="aogonek.sc" g2="questiondown.sc" k="-15" />
  2163. <hkern g1="aogonek.sc" g2="question.sc" k="18" />
  2164. <hkern g1="aogonek.sc" g2="exclamdown.sc" k="3" />
  2165. <hkern g1="aogonek.sc" g2="bracketright.sc" k="15" />
  2166. <hkern g1="aogonek.sc" g2="braceright.sc" k="4" />
  2167. <hkern g1="aogonek.sc" g2="braceleft.sc" k="3" />
  2168. <hkern g1="aogonek.sc" g2="parenleft.sc" k="8" />
  2169. <hkern g1="aring.sc" g2="quotesingle.sc" k="48" />
  2170. <hkern g1="aring.sc" g2="quotedbl.sc" k="48" />
  2171. <hkern g1="aring.sc" g2="asterisk.sc" k="83" />
  2172. <hkern g1="aring.sc" g2="periodcentered.sc" k="35" />
  2173. <hkern g1="aring.sc" g2="questiondown.sc" k="-15" />
  2174. <hkern g1="aring.sc" g2="question.sc" k="18" />
  2175. <hkern g1="aring.sc" g2="exclamdown.sc" k="3" />
  2176. <hkern g1="aring.sc" g2="bracketright.sc" k="15" />
  2177. <hkern g1="aring.sc" g2="braceright.sc" k="4" />
  2178. <hkern g1="aring.sc" g2="braceleft.sc" k="3" />
  2179. <hkern g1="aring.sc" g2="parenleft.sc" k="8" />
  2180. <hkern g1="aringacute.sc" g2="quotesingle.sc" k="48" />
  2181. <hkern g1="aringacute.sc" g2="quotedbl.sc" k="48" />
  2182. <hkern g1="aringacute.sc" g2="asterisk.sc" k="83" />
  2183. <hkern g1="aringacute.sc" g2="periodcentered.sc" k="35" />
  2184. <hkern g1="aringacute.sc" g2="questiondown.sc" k="-15" />
  2185. <hkern g1="aringacute.sc" g2="question.sc" k="18" />
  2186. <hkern g1="aringacute.sc" g2="exclamdown.sc" k="3" />
  2187. <hkern g1="aringacute.sc" g2="bracketright.sc" k="15" />
  2188. <hkern g1="aringacute.sc" g2="braceright.sc" k="4" />
  2189. <hkern g1="aringacute.sc" g2="braceleft.sc" k="3" />
  2190. <hkern g1="aringacute.sc" g2="parenleft.sc" k="8" />
  2191. <hkern g1="atilde.sc" g2="quotesingle.sc" k="48" />
  2192. <hkern g1="atilde.sc" g2="quotedbl.sc" k="48" />
  2193. <hkern g1="atilde.sc" g2="asterisk.sc" k="83" />
  2194. <hkern g1="atilde.sc" g2="periodcentered.sc" k="35" />
  2195. <hkern g1="atilde.sc" g2="questiondown.sc" k="-15" />
  2196. <hkern g1="atilde.sc" g2="question.sc" k="18" />
  2197. <hkern g1="atilde.sc" g2="exclamdown.sc" k="3" />
  2198. <hkern g1="atilde.sc" g2="bracketright.sc" k="15" />
  2199. <hkern g1="atilde.sc" g2="braceright.sc" k="4" />
  2200. <hkern g1="atilde.sc" g2="braceleft.sc" k="3" />
  2201. <hkern g1="atilde.sc" g2="parenleft.sc" k="8" />
  2202. <hkern g1="ae.sc" g2="asterisk.sc" k="15" />
  2203. <hkern g1="aeacute.sc" g2="asterisk.sc" k="15" />
  2204. <hkern g1="b.sc" g2="quotesingle.sc" k="20" />
  2205. <hkern g1="b.sc" g2="quotedbl.sc" k="20" />
  2206. <hkern g1="b.sc" g2="asterisk.sc" k="45" />
  2207. <hkern g1="b.sc" g2="exclam.sc" k="20" />
  2208. <hkern g1="b.sc" g2="bracketright.sc" k="23" />
  2209. <hkern g1="b.sc" g2="braceright.sc" k="15" />
  2210. <hkern g1="b.sc" g2="parenright.sc" k="15" />
  2211. <hkern g1="b.sc" g2="x.sc" k="6" />
  2212. <hkern g1="b.sc" g2="m.sc" k="9" />
  2213. <hkern g1="b.sc" u2="&#x2122;" k="53" />
  2214. <hkern g1="c.sc" g2="periodcentered.sc" k="20" />
  2215. <hkern g1="c.sc" g2="braceright.sc" k="8" />
  2216. <hkern g1="cacute.sc" g2="periodcentered.sc" k="20" />
  2217. <hkern g1="cacute.sc" g2="braceright.sc" k="8" />
  2218. <hkern g1="ccaron.sc" g2="periodcentered.sc" k="20" />
  2219. <hkern g1="ccaron.sc" g2="braceright.sc" k="8" />
  2220. <hkern g1="ccedilla.sc" g2="periodcentered.sc" k="20" />
  2221. <hkern g1="ccedilla.sc" g2="braceright.sc" k="8" />
  2222. <hkern g1="ccircumflex.sc" g2="periodcentered.sc" k="20" />
  2223. <hkern g1="ccircumflex.sc" g2="braceright.sc" k="8" />
  2224. <hkern g1="cdotaccent.sc" g2="periodcentered.sc" k="20" />
  2225. <hkern g1="cdotaccent.sc" g2="braceright.sc" k="8" />
  2226. <hkern g1="d.sc" g2="quotesingle.sc" k="18" />
  2227. <hkern g1="d.sc" g2="quotedbl.sc" k="18" />
  2228. <hkern g1="d.sc" g2="asterisk.sc" k="35" />
  2229. <hkern g1="d.sc" g2="question.sc" k="8" />
  2230. <hkern g1="d.sc" g2="exclam.sc" k="15" />
  2231. <hkern g1="d.sc" g2="bracketright.sc" k="33" />
  2232. <hkern g1="d.sc" g2="braceright.sc" k="8" />
  2233. <hkern g1="d.sc" g2="parenright.sc" k="15" />
  2234. <hkern g1="eth.sc" g2="quotesingle.sc" k="18" />
  2235. <hkern g1="eth.sc" g2="quotedbl.sc" k="18" />
  2236. <hkern g1="eth.sc" g2="asterisk.sc" k="35" />
  2237. <hkern g1="eth.sc" g2="question.sc" k="8" />
  2238. <hkern g1="eth.sc" g2="exclam.sc" k="15" />
  2239. <hkern g1="eth.sc" g2="bracketright.sc" k="33" />
  2240. <hkern g1="eth.sc" g2="braceright.sc" k="8" />
  2241. <hkern g1="eth.sc" g2="parenright.sc" k="15" />
  2242. <hkern g1="dcaron.sc" g2="quotesingle.sc" k="18" />
  2243. <hkern g1="dcaron.sc" g2="quotedbl.sc" k="18" />
  2244. <hkern g1="dcaron.sc" g2="asterisk.sc" k="35" />
  2245. <hkern g1="dcaron.sc" g2="question.sc" k="8" />
  2246. <hkern g1="dcaron.sc" g2="exclam.sc" k="15" />
  2247. <hkern g1="dcaron.sc" g2="bracketright.sc" k="33" />
  2248. <hkern g1="dcaron.sc" g2="braceright.sc" k="8" />
  2249. <hkern g1="dcaron.sc" g2="parenright.sc" k="15" />
  2250. <hkern g1="dcroat.sc" g2="quotesingle.sc" k="18" />
  2251. <hkern g1="dcroat.sc" g2="quotedbl.sc" k="18" />
  2252. <hkern g1="dcroat.sc" g2="asterisk.sc" k="35" />
  2253. <hkern g1="dcroat.sc" g2="question.sc" k="8" />
  2254. <hkern g1="dcroat.sc" g2="exclam.sc" k="15" />
  2255. <hkern g1="dcroat.sc" g2="bracketright.sc" k="33" />
  2256. <hkern g1="dcroat.sc" g2="braceright.sc" k="8" />
  2257. <hkern g1="dcroat.sc" g2="parenright.sc" k="15" />
  2258. <hkern g1="ddotbelow.sc" g2="quotesingle.sc" k="18" />
  2259. <hkern g1="ddotbelow.sc" g2="quotedbl.sc" k="18" />
  2260. <hkern g1="ddotbelow.sc" g2="asterisk.sc" k="35" />
  2261. <hkern g1="ddotbelow.sc" g2="question.sc" k="8" />
  2262. <hkern g1="ddotbelow.sc" g2="exclam.sc" k="15" />
  2263. <hkern g1="ddotbelow.sc" g2="bracketright.sc" k="33" />
  2264. <hkern g1="ddotbelow.sc" g2="braceright.sc" k="8" />
  2265. <hkern g1="ddotbelow.sc" g2="parenright.sc" k="15" />
  2266. <hkern g1="e.sc" g2="asterisk.sc" k="15" />
  2267. <hkern g1="eacute.sc" g2="asterisk.sc" k="15" />
  2268. <hkern g1="ebreve.sc" g2="asterisk.sc" k="15" />
  2269. <hkern g1="ecaron.sc" g2="asterisk.sc" k="15" />
  2270. <hkern g1="ecircumflex.sc" g2="asterisk.sc" k="15" />
  2271. <hkern g1="edieresis.sc" g2="asterisk.sc" k="15" />
  2272. <hkern g1="edotaccent.sc" g2="asterisk.sc" k="15" />
  2273. <hkern g1="edotbelow.sc" g2="asterisk.sc" k="15" />
  2274. <hkern g1="egrave.sc" g2="asterisk.sc" k="15" />
  2275. <hkern g1="emacron.sc" g2="asterisk.sc" k="15" />
  2276. <hkern g1="eogonek.sc" g2="asterisk.sc" k="15" />
  2277. <hkern g1="etilde.sc" g2="asterisk.sc" k="15" />
  2278. <hkern g1="schwa.sc" g2="quotesingle.sc" k="18" />
  2279. <hkern g1="schwa.sc" g2="quotedbl.sc" k="18" />
  2280. <hkern g1="schwa.sc" g2="asterisk.sc" k="35" />
  2281. <hkern g1="schwa.sc" g2="question.sc" k="8" />
  2282. <hkern g1="schwa.sc" g2="exclam.sc" k="15" />
  2283. <hkern g1="schwa.sc" g2="bracketright.sc" k="33" />
  2284. <hkern g1="schwa.sc" g2="braceright.sc" k="8" />
  2285. <hkern g1="schwa.sc" g2="parenright.sc" k="15" />
  2286. <hkern g1="f.sc" g2="quotesingle.sc" k="-8" />
  2287. <hkern g1="f.sc" g2="quotedbl.sc" k="-8" />
  2288. <hkern g1="f.sc" g2="asterisk.sc" k="8" />
  2289. <hkern g1="f.sc" g2="m.sc" k="13" />
  2290. <hkern g1="f.sc" u2="_" k="8" />
  2291. <hkern g1="g.sc" g2="quotesingle.sc" k="8" />
  2292. <hkern g1="g.sc" g2="quotedbl.sc" k="8" />
  2293. <hkern g1="g.sc" g2="asterisk.sc" k="11" />
  2294. <hkern g1="g.sc" g2="exclam.sc" k="8" />
  2295. <hkern g1="g.sc" g2="parenright.sc" k="8" />
  2296. <hkern g1="gacute.sc" g2="quotesingle.sc" k="8" />
  2297. <hkern g1="gacute.sc" g2="quotedbl.sc" k="8" />
  2298. <hkern g1="gacute.sc" g2="asterisk.sc" k="11" />
  2299. <hkern g1="gacute.sc" g2="exclam.sc" k="8" />
  2300. <hkern g1="gacute.sc" g2="parenright.sc" k="8" />
  2301. <hkern g1="gbreve.sc" g2="quotesingle.sc" k="8" />
  2302. <hkern g1="gbreve.sc" g2="quotedbl.sc" k="8" />
  2303. <hkern g1="gbreve.sc" g2="asterisk.sc" k="11" />
  2304. <hkern g1="gbreve.sc" g2="exclam.sc" k="8" />
  2305. <hkern g1="gbreve.sc" g2="parenright.sc" k="8" />
  2306. <hkern g1="gcaron.sc" g2="quotesingle.sc" k="8" />
  2307. <hkern g1="gcaron.sc" g2="quotedbl.sc" k="8" />
  2308. <hkern g1="gcaron.sc" g2="asterisk.sc" k="11" />
  2309. <hkern g1="gcaron.sc" g2="exclam.sc" k="8" />
  2310. <hkern g1="gcaron.sc" g2="parenright.sc" k="8" />
  2311. <hkern g1="gcircumflex.sc" g2="quotesingle.sc" k="8" />
  2312. <hkern g1="gcircumflex.sc" g2="quotedbl.sc" k="8" />
  2313. <hkern g1="gcircumflex.sc" g2="asterisk.sc" k="11" />
  2314. <hkern g1="gcircumflex.sc" g2="exclam.sc" k="8" />
  2315. <hkern g1="gcircumflex.sc" g2="parenright.sc" k="8" />
  2316. <hkern g1="gcommaaccent.sc" g2="quotesingle.sc" k="8" />
  2317. <hkern g1="gcommaaccent.sc" g2="quotedbl.sc" k="8" />
  2318. <hkern g1="gcommaaccent.sc" g2="asterisk.sc" k="11" />
  2319. <hkern g1="gcommaaccent.sc" g2="exclam.sc" k="8" />
  2320. <hkern g1="gcommaaccent.sc" g2="parenright.sc" k="8" />
  2321. <hkern g1="gdotaccent.sc" g2="quotesingle.sc" k="8" />
  2322. <hkern g1="gdotaccent.sc" g2="quotedbl.sc" k="8" />
  2323. <hkern g1="gdotaccent.sc" g2="asterisk.sc" k="11" />
  2324. <hkern g1="gdotaccent.sc" g2="exclam.sc" k="8" />
  2325. <hkern g1="gdotaccent.sc" g2="parenright.sc" k="8" />
  2326. <hkern g1="h.sc" g2="exclam.sc" k="13" />
  2327. <hkern g1="hbar.sc" g2="exclam.sc" k="13" />
  2328. <hkern g1="hcircumflex.sc" g2="exclam.sc" k="13" />
  2329. <hkern g1="hdotbelow.sc" g2="exclam.sc" k="13" />
  2330. <hkern g1="i.sc" g2="exclam.sc" k="13" />
  2331. <hkern g1="dotlessi.sc" g2="exclam.sc" k="13" />
  2332. <hkern g1="iacute.sc" g2="exclam.sc" k="13" />
  2333. <hkern g1="ibreve.sc" g2="exclam.sc" k="13" />
  2334. <hkern g1="icaron.sc" g2="exclam.sc" k="13" />
  2335. <hkern g1="icircumflex.sc" g2="exclam.sc" k="13" />
  2336. <hkern g1="idieresis.sc" g2="exclam.sc" k="13" />
  2337. <hkern g1="idotbelow.sc" g2="exclam.sc" k="13" />
  2338. <hkern g1="igrave.sc" g2="exclam.sc" k="13" />
  2339. <hkern g1="imacron.sc" g2="exclam.sc" k="13" />
  2340. <hkern g1="iogonek.sc" g2="exclam.sc" k="13" />
  2341. <hkern g1="itilde.sc" g2="exclam.sc" k="13" />
  2342. <hkern g1="k.sc" g2="quotesingle.sc" k="5" />
  2343. <hkern g1="k.sc" g2="quotedbl.sc" k="5" />
  2344. <hkern g1="k.sc" g2="asterisk.sc" k="5" />
  2345. <hkern g1="k.sc" g2="questiondown.sc" k="-38" />
  2346. <hkern g1="k.sc" g2="question.sc" k="8" />
  2347. <hkern g1="k.sc" g2="exclam.sc" k="15" />
  2348. <hkern g1="k.sc" g2="bracketright.sc" k="9" />
  2349. <hkern g1="k.sc" g2="braceright.sc" k="5" />
  2350. <hkern g1="kcommaaccent.sc" g2="quotesingle.sc" k="5" />
  2351. <hkern g1="kcommaaccent.sc" g2="quotedbl.sc" k="5" />
  2352. <hkern g1="kcommaaccent.sc" g2="asterisk.sc" k="5" />
  2353. <hkern g1="kcommaaccent.sc" g2="questiondown.sc" k="-38" />
  2354. <hkern g1="kcommaaccent.sc" g2="question.sc" k="8" />
  2355. <hkern g1="kcommaaccent.sc" g2="exclam.sc" k="15" />
  2356. <hkern g1="kcommaaccent.sc" g2="bracketright.sc" k="9" />
  2357. <hkern g1="kcommaaccent.sc" g2="braceright.sc" k="5" />
  2358. <hkern g1="kgreenlandic.sc" g2="quotesingle.sc" k="5" />
  2359. <hkern g1="kgreenlandic.sc" g2="quotedbl.sc" k="5" />
  2360. <hkern g1="kgreenlandic.sc" g2="asterisk.sc" k="5" />
  2361. <hkern g1="kgreenlandic.sc" g2="questiondown.sc" k="-38" />
  2362. <hkern g1="kgreenlandic.sc" g2="question.sc" k="8" />
  2363. <hkern g1="kgreenlandic.sc" g2="exclam.sc" k="15" />
  2364. <hkern g1="kgreenlandic.sc" g2="bracketright.sc" k="9" />
  2365. <hkern g1="kgreenlandic.sc" g2="braceright.sc" k="5" />
  2366. <hkern g1="l.sc" g2="quotesingle.sc" k="83" />
  2367. <hkern g1="l.sc" g2="quotedbl.sc" k="83" />
  2368. <hkern g1="l.sc" g2="asterisk.sc" k="108" />
  2369. <hkern g1="l.sc" g2="question.sc" k="23" />
  2370. <hkern g1="l.sc" g2="exclam.sc" k="10" />
  2371. <hkern g1="l.sc" g2="bracketright.sc" k="15" />
  2372. <hkern g1="l.sc" g2="braceright.sc" k="8" />
  2373. <hkern g1="l.sc" g2="parenright.sc" k="13" />
  2374. <hkern g1="lacute.sc" g2="quotesingle.sc" k="83" />
  2375. <hkern g1="lacute.sc" g2="quotedbl.sc" k="83" />
  2376. <hkern g1="lacute.sc" g2="asterisk.sc" k="108" />
  2377. <hkern g1="lacute.sc" g2="question.sc" k="23" />
  2378. <hkern g1="lacute.sc" g2="exclam.sc" k="10" />
  2379. <hkern g1="lacute.sc" g2="bracketright.sc" k="15" />
  2380. <hkern g1="lacute.sc" g2="braceright.sc" k="8" />
  2381. <hkern g1="lacute.sc" g2="parenright.sc" k="13" />
  2382. <hkern g1="lcaron.sc" g2="quotesingle.sc" k="83" />
  2383. <hkern g1="lcaron.sc" g2="quotedbl.sc" k="83" />
  2384. <hkern g1="lcaron.sc" g2="asterisk.sc" k="108" />
  2385. <hkern g1="lcaron.sc" g2="question.sc" k="23" />
  2386. <hkern g1="lcaron.sc" g2="exclam.sc" k="10" />
  2387. <hkern g1="lcaron.sc" g2="bracketright.sc" k="15" />
  2388. <hkern g1="lcaron.sc" g2="braceright.sc" k="8" />
  2389. <hkern g1="lcaron.sc" g2="parenright.sc" k="13" />
  2390. <hkern g1="lcommaaccent.sc" g2="quotesingle.sc" k="83" />
  2391. <hkern g1="lcommaaccent.sc" g2="quotedbl.sc" k="83" />
  2392. <hkern g1="lcommaaccent.sc" g2="asterisk.sc" k="108" />
  2393. <hkern g1="lcommaaccent.sc" g2="question.sc" k="23" />
  2394. <hkern g1="lcommaaccent.sc" g2="exclam.sc" k="10" />
  2395. <hkern g1="lcommaaccent.sc" g2="bracketright.sc" k="15" />
  2396. <hkern g1="lcommaaccent.sc" g2="braceright.sc" k="8" />
  2397. <hkern g1="lcommaaccent.sc" g2="parenright.sc" k="13" />
  2398. <hkern g1="ldot.sc" g2="quotesingle.sc" k="83" />
  2399. <hkern g1="ldot.sc" g2="quotedbl.sc" k="83" />
  2400. <hkern g1="ldot.sc" g2="asterisk.sc" k="108" />
  2401. <hkern g1="ldot.sc" g2="question.sc" k="23" />
  2402. <hkern g1="ldot.sc" g2="exclam.sc" k="10" />
  2403. <hkern g1="ldot.sc" g2="bracketright.sc" k="15" />
  2404. <hkern g1="ldot.sc" g2="braceright.sc" k="8" />
  2405. <hkern g1="ldot.sc" g2="parenright.sc" k="13" />
  2406. <hkern g1="ldot.sc" g2="germandbls.sc" k="3" />
  2407. <hkern g1="ldot.sc" g2="rdotbelow.sc" k="3" />
  2408. <hkern g1="ldot.sc" g2="rcommaaccent.sc" k="3" />
  2409. <hkern g1="ldot.sc" g2="rcaron.sc" k="3" />
  2410. <hkern g1="ldot.sc" g2="racute.sc" k="3" />
  2411. <hkern g1="ldot.sc" g2="r.sc" k="3" />
  2412. <hkern g1="ldot.sc" g2="thorn.sc" k="3" />
  2413. <hkern g1="ldot.sc" g2="p.sc" k="3" />
  2414. <hkern g1="ldot.sc" g2="ntilde.sc" k="3" />
  2415. <hkern g1="ldot.sc" g2="eng.sc" k="3" />
  2416. <hkern g1="ldot.sc" g2="ndotaccent.sc" k="3" />
  2417. <hkern g1="ldot.sc" g2="ncommaaccent.sc" k="3" />
  2418. <hkern g1="ldot.sc" g2="ncaron.sc" k="3" />
  2419. <hkern g1="ldot.sc" g2="nacute.sc" k="3" />
  2420. <hkern g1="ldot.sc" g2="n.sc" k="3" />
  2421. <hkern g1="ldot.sc" g2="lslash.sc" k="3" />
  2422. <hkern g1="ldot.sc" g2="ldot.sc" k="3" />
  2423. <hkern g1="ldot.sc" g2="lcommaaccent.sc" k="3" />
  2424. <hkern g1="ldot.sc" g2="lcaron.sc" k="3" />
  2425. <hkern g1="ldot.sc" g2="lacute.sc" k="3" />
  2426. <hkern g1="ldot.sc" g2="l.sc" k="3" />
  2427. <hkern g1="ldot.sc" g2="kgreenlandic.sc" k="3" />
  2428. <hkern g1="ldot.sc" g2="kcommaaccent.sc" k="3" />
  2429. <hkern g1="ldot.sc" g2="k.sc" k="3" />
  2430. <hkern g1="ldot.sc" g2="itilde.sc" k="3" />
  2431. <hkern g1="ldot.sc" g2="iogonek.sc" k="3" />
  2432. <hkern g1="ldot.sc" g2="imacron.sc" k="3" />
  2433. <hkern g1="ldot.sc" g2="ij.sc" k="3" />
  2434. <hkern g1="ldot.sc" g2="igrave.sc" k="3" />
  2435. <hkern g1="ldot.sc" g2="idotbelow.sc" k="3" />
  2436. <hkern g1="ldot.sc" g2="idotaccent.sc" k="3" />
  2437. <hkern g1="ldot.sc" g2="idieresis.sc" k="3" />
  2438. <hkern g1="ldot.sc" g2="icircumflex.sc" k="3" />
  2439. <hkern g1="ldot.sc" g2="icaron.sc" k="3" />
  2440. <hkern g1="ldot.sc" g2="ibreve.sc" k="3" />
  2441. <hkern g1="ldot.sc" g2="iacute.sc" k="3" />
  2442. <hkern g1="ldot.sc" g2="dotlessi.sc" k="3" />
  2443. <hkern g1="ldot.sc" g2="i.sc" k="3" />
  2444. <hkern g1="ldot.sc" g2="hdotbelow.sc" k="3" />
  2445. <hkern g1="ldot.sc" g2="hcircumflex.sc" k="3" />
  2446. <hkern g1="ldot.sc" g2="hbar.sc" k="3" />
  2447. <hkern g1="ldot.sc" g2="h.sc" k="3" />
  2448. <hkern g1="ldot.sc" g2="f.sc" k="3" />
  2449. <hkern g1="ldot.sc" g2="etilde.sc" k="3" />
  2450. <hkern g1="ldot.sc" g2="eogonek.sc" k="3" />
  2451. <hkern g1="ldot.sc" g2="emacron.sc" k="3" />
  2452. <hkern g1="ldot.sc" g2="egrave.sc" k="3" />
  2453. <hkern g1="ldot.sc" g2="edotbelow.sc" k="3" />
  2454. <hkern g1="ldot.sc" g2="edotaccent.sc" k="3" />
  2455. <hkern g1="ldot.sc" g2="edieresis.sc" k="3" />
  2456. <hkern g1="ldot.sc" g2="ecircumflex.sc" k="3" />
  2457. <hkern g1="ldot.sc" g2="ecaron.sc" k="3" />
  2458. <hkern g1="ldot.sc" g2="ebreve.sc" k="3" />
  2459. <hkern g1="ldot.sc" g2="eacute.sc" k="3" />
  2460. <hkern g1="ldot.sc" g2="e.sc" k="3" />
  2461. <hkern g1="ldot.sc" g2="ddotbelow.sc" k="3" />
  2462. <hkern g1="ldot.sc" g2="dcroat.sc" k="3" />
  2463. <hkern g1="ldot.sc" g2="dcaron.sc" k="3" />
  2464. <hkern g1="ldot.sc" g2="eth.sc" k="3" />
  2465. <hkern g1="ldot.sc" g2="d.sc" k="3" />
  2466. <hkern g1="ldot.sc" g2="b.sc" k="3" />
  2467. <hkern g1="lslash.sc" g2="quotesingle.sc" k="83" />
  2468. <hkern g1="lslash.sc" g2="quotedbl.sc" k="83" />
  2469. <hkern g1="lslash.sc" g2="asterisk.sc" k="108" />
  2470. <hkern g1="lslash.sc" g2="question.sc" k="23" />
  2471. <hkern g1="lslash.sc" g2="exclam.sc" k="10" />
  2472. <hkern g1="lslash.sc" g2="bracketright.sc" k="15" />
  2473. <hkern g1="lslash.sc" g2="braceright.sc" k="8" />
  2474. <hkern g1="lslash.sc" g2="parenright.sc" k="13" />
  2475. <hkern g1="m.sc" g2="quotesingle.sc" k="23" />
  2476. <hkern g1="m.sc" g2="quotedbl.sc" k="23" />
  2477. <hkern g1="m.sc" g2="asterisk.sc" k="35" />
  2478. <hkern g1="m.sc" g2="question.sc" k="8" />
  2479. <hkern g1="m.sc" g2="exclam.sc" k="13" />
  2480. <hkern g1="m.sc" g2="bracketright.sc" k="18" />
  2481. <hkern g1="m.sc" g2="braceright.sc" k="8" />
  2482. <hkern g1="m.sc" g2="parenright.sc" k="3" />
  2483. <hkern g1="m.sc" g2="x.sc" k="4" />
  2484. <hkern g1="m.sc" g2="m.sc" k="4" />
  2485. <hkern g1="m.sc" u2="&#x2122;" k="30" />
  2486. <hkern g1="m.sc" u2="&#x2020;" k="8" />
  2487. <hkern g1="n.sc" g2="exclam.sc" k="13" />
  2488. <hkern g1="nacute.sc" g2="exclam.sc" k="13" />
  2489. <hkern g1="ncaron.sc" g2="exclam.sc" k="13" />
  2490. <hkern g1="ncommaaccent.sc" g2="exclam.sc" k="13" />
  2491. <hkern g1="ndotaccent.sc" g2="exclam.sc" k="13" />
  2492. <hkern g1="eng.sc" g2="exclam.sc" k="13" />
  2493. <hkern g1="nhookleft.sc" g2="exclam.sc" k="13" />
  2494. <hkern g1="ntilde.sc" g2="exclam.sc" k="13" />
  2495. <hkern g1="o.sc" g2="quotesingle.sc" k="18" />
  2496. <hkern g1="o.sc" g2="quotedbl.sc" k="18" />
  2497. <hkern g1="o.sc" g2="asterisk.sc" k="35" />
  2498. <hkern g1="o.sc" g2="question.sc" k="8" />
  2499. <hkern g1="o.sc" g2="exclam.sc" k="15" />
  2500. <hkern g1="o.sc" g2="bracketright.sc" k="33" />
  2501. <hkern g1="o.sc" g2="braceright.sc" k="8" />
  2502. <hkern g1="o.sc" g2="parenright.sc" k="15" />
  2503. <hkern g1="oacute.sc" g2="quotesingle.sc" k="18" />
  2504. <hkern g1="oacute.sc" g2="quotedbl.sc" k="18" />
  2505. <hkern g1="oacute.sc" g2="asterisk.sc" k="35" />
  2506. <hkern g1="oacute.sc" g2="question.sc" k="8" />
  2507. <hkern g1="oacute.sc" g2="exclam.sc" k="15" />
  2508. <hkern g1="oacute.sc" g2="bracketright.sc" k="33" />
  2509. <hkern g1="oacute.sc" g2="braceright.sc" k="8" />
  2510. <hkern g1="oacute.sc" g2="parenright.sc" k="15" />
  2511. <hkern g1="obreve.sc" g2="quotesingle.sc" k="18" />
  2512. <hkern g1="obreve.sc" g2="quotedbl.sc" k="18" />
  2513. <hkern g1="obreve.sc" g2="asterisk.sc" k="35" />
  2514. <hkern g1="obreve.sc" g2="question.sc" k="8" />
  2515. <hkern g1="obreve.sc" g2="exclam.sc" k="15" />
  2516. <hkern g1="obreve.sc" g2="bracketright.sc" k="33" />
  2517. <hkern g1="obreve.sc" g2="braceright.sc" k="8" />
  2518. <hkern g1="obreve.sc" g2="parenright.sc" k="15" />
  2519. <hkern g1="ocaron.sc" g2="quotesingle.sc" k="18" />
  2520. <hkern g1="ocaron.sc" g2="quotedbl.sc" k="18" />
  2521. <hkern g1="ocaron.sc" g2="asterisk.sc" k="35" />
  2522. <hkern g1="ocaron.sc" g2="question.sc" k="8" />
  2523. <hkern g1="ocaron.sc" g2="exclam.sc" k="15" />
  2524. <hkern g1="ocaron.sc" g2="bracketright.sc" k="33" />
  2525. <hkern g1="ocaron.sc" g2="braceright.sc" k="8" />
  2526. <hkern g1="ocaron.sc" g2="parenright.sc" k="15" />
  2527. <hkern g1="ocircumflex.sc" g2="quotesingle.sc" k="18" />
  2528. <hkern g1="ocircumflex.sc" g2="quotedbl.sc" k="18" />
  2529. <hkern g1="ocircumflex.sc" g2="asterisk.sc" k="35" />
  2530. <hkern g1="ocircumflex.sc" g2="question.sc" k="8" />
  2531. <hkern g1="ocircumflex.sc" g2="exclam.sc" k="15" />
  2532. <hkern g1="ocircumflex.sc" g2="bracketright.sc" k="33" />
  2533. <hkern g1="ocircumflex.sc" g2="braceright.sc" k="8" />
  2534. <hkern g1="ocircumflex.sc" g2="parenright.sc" k="15" />
  2535. <hkern g1="odieresis.sc" g2="quotesingle.sc" k="18" />
  2536. <hkern g1="odieresis.sc" g2="quotedbl.sc" k="18" />
  2537. <hkern g1="odieresis.sc" g2="asterisk.sc" k="35" />
  2538. <hkern g1="odieresis.sc" g2="question.sc" k="8" />
  2539. <hkern g1="odieresis.sc" g2="exclam.sc" k="15" />
  2540. <hkern g1="odieresis.sc" g2="bracketright.sc" k="33" />
  2541. <hkern g1="odieresis.sc" g2="braceright.sc" k="8" />
  2542. <hkern g1="odieresis.sc" g2="parenright.sc" k="15" />
  2543. <hkern g1="odotbelow.sc" g2="quotesingle.sc" k="18" />
  2544. <hkern g1="odotbelow.sc" g2="quotedbl.sc" k="18" />
  2545. <hkern g1="odotbelow.sc" g2="asterisk.sc" k="35" />
  2546. <hkern g1="odotbelow.sc" g2="question.sc" k="8" />
  2547. <hkern g1="odotbelow.sc" g2="exclam.sc" k="15" />
  2548. <hkern g1="odotbelow.sc" g2="bracketright.sc" k="33" />
  2549. <hkern g1="odotbelow.sc" g2="braceright.sc" k="8" />
  2550. <hkern g1="odotbelow.sc" g2="parenright.sc" k="15" />
  2551. <hkern g1="ograve.sc" g2="quotesingle.sc" k="18" />
  2552. <hkern g1="ograve.sc" g2="quotedbl.sc" k="18" />
  2553. <hkern g1="ograve.sc" g2="asterisk.sc" k="35" />
  2554. <hkern g1="ograve.sc" g2="question.sc" k="8" />
  2555. <hkern g1="ograve.sc" g2="exclam.sc" k="15" />
  2556. <hkern g1="ograve.sc" g2="bracketright.sc" k="33" />
  2557. <hkern g1="ograve.sc" g2="braceright.sc" k="8" />
  2558. <hkern g1="ograve.sc" g2="parenright.sc" k="15" />
  2559. <hkern g1="ohungarumlaut.sc" g2="quotesingle.sc" k="18" />
  2560. <hkern g1="ohungarumlaut.sc" g2="quotedbl.sc" k="18" />
  2561. <hkern g1="ohungarumlaut.sc" g2="asterisk.sc" k="35" />
  2562. <hkern g1="ohungarumlaut.sc" g2="question.sc" k="8" />
  2563. <hkern g1="ohungarumlaut.sc" g2="exclam.sc" k="15" />
  2564. <hkern g1="ohungarumlaut.sc" g2="bracketright.sc" k="33" />
  2565. <hkern g1="ohungarumlaut.sc" g2="braceright.sc" k="8" />
  2566. <hkern g1="ohungarumlaut.sc" g2="parenright.sc" k="15" />
  2567. <hkern g1="omacron.sc" g2="quotesingle.sc" k="18" />
  2568. <hkern g1="omacron.sc" g2="quotedbl.sc" k="18" />
  2569. <hkern g1="omacron.sc" g2="asterisk.sc" k="35" />
  2570. <hkern g1="omacron.sc" g2="question.sc" k="8" />
  2571. <hkern g1="omacron.sc" g2="exclam.sc" k="15" />
  2572. <hkern g1="omacron.sc" g2="bracketright.sc" k="33" />
  2573. <hkern g1="omacron.sc" g2="braceright.sc" k="8" />
  2574. <hkern g1="omacron.sc" g2="parenright.sc" k="15" />
  2575. <hkern g1="oogonek.sc" g2="quotesingle.sc" k="18" />
  2576. <hkern g1="oogonek.sc" g2="quotedbl.sc" k="18" />
  2577. <hkern g1="oogonek.sc" g2="asterisk.sc" k="35" />
  2578. <hkern g1="oogonek.sc" g2="question.sc" k="8" />
  2579. <hkern g1="oogonek.sc" g2="exclam.sc" k="15" />
  2580. <hkern g1="oogonek.sc" g2="bracketright.sc" k="33" />
  2581. <hkern g1="oogonek.sc" g2="braceright.sc" k="8" />
  2582. <hkern g1="oogonek.sc" g2="parenright.sc" k="15" />
  2583. <hkern g1="oslash.sc" g2="quotesingle.sc" k="18" />
  2584. <hkern g1="oslash.sc" g2="quotedbl.sc" k="18" />
  2585. <hkern g1="oslash.sc" g2="asterisk.sc" k="35" />
  2586. <hkern g1="oslash.sc" g2="question.sc" k="8" />
  2587. <hkern g1="oslash.sc" g2="exclam.sc" k="15" />
  2588. <hkern g1="oslash.sc" g2="bracketright.sc" k="33" />
  2589. <hkern g1="oslash.sc" g2="braceright.sc" k="8" />
  2590. <hkern g1="oslash.sc" g2="parenright.sc" k="15" />
  2591. <hkern g1="oslashacute.sc" g2="quotesingle.sc" k="18" />
  2592. <hkern g1="oslashacute.sc" g2="quotedbl.sc" k="18" />
  2593. <hkern g1="oslashacute.sc" g2="asterisk.sc" k="35" />
  2594. <hkern g1="oslashacute.sc" g2="question.sc" k="8" />
  2595. <hkern g1="oslashacute.sc" g2="exclam.sc" k="15" />
  2596. <hkern g1="oslashacute.sc" g2="bracketright.sc" k="33" />
  2597. <hkern g1="oslashacute.sc" g2="braceright.sc" k="8" />
  2598. <hkern g1="oslashacute.sc" g2="parenright.sc" k="15" />
  2599. <hkern g1="otilde.sc" g2="quotesingle.sc" k="18" />
  2600. <hkern g1="otilde.sc" g2="quotedbl.sc" k="18" />
  2601. <hkern g1="otilde.sc" g2="asterisk.sc" k="35" />
  2602. <hkern g1="otilde.sc" g2="question.sc" k="8" />
  2603. <hkern g1="otilde.sc" g2="exclam.sc" k="15" />
  2604. <hkern g1="otilde.sc" g2="bracketright.sc" k="33" />
  2605. <hkern g1="otilde.sc" g2="braceright.sc" k="8" />
  2606. <hkern g1="otilde.sc" g2="parenright.sc" k="15" />
  2607. <hkern g1="oe.sc" g2="asterisk.sc" k="15" />
  2608. <hkern g1="p.sc" g2="quotesingle.sc" k="3" />
  2609. <hkern g1="p.sc" g2="quotedbl.sc" k="3" />
  2610. <hkern g1="p.sc" g2="asterisk.sc" k="23" />
  2611. <hkern g1="p.sc" g2="question.sc" k="5" />
  2612. <hkern g1="p.sc" g2="exclam.sc" k="10" />
  2613. <hkern g1="p.sc" g2="bracketright.sc" k="15" />
  2614. <hkern g1="p.sc" g2="braceright.sc" k="3" />
  2615. <hkern g1="p.sc" g2="parenright.sc" k="18" />
  2616. <hkern g1="p.sc" g2="x.sc" k="10" />
  2617. <hkern g1="p.sc" g2="m.sc" k="18" />
  2618. <hkern g1="p.sc" u2="&#x2122;" k="30" />
  2619. <hkern g1="p.sc" u2="_" k="58" />
  2620. <hkern g1="thorn.sc" u2="&#x2122;" k="45" />
  2621. <hkern g1="thorn.sc" u2="_" k="35" />
  2622. <hkern g1="q.sc" g2="quotesingle.sc" k="18" />
  2623. <hkern g1="q.sc" g2="quotedbl.sc" k="18" />
  2624. <hkern g1="q.sc" g2="asterisk.sc" k="35" />
  2625. <hkern g1="q.sc" g2="question.sc" k="8" />
  2626. <hkern g1="q.sc" g2="exclam.sc" k="15" />
  2627. <hkern g1="q.sc" g2="bracketright.sc" k="33" />
  2628. <hkern g1="q.sc" g2="braceright.sc" k="8" />
  2629. <hkern g1="q.sc" g2="parenright.sc" k="15" />
  2630. <hkern g1="r.sc" g2="quotesingle.sc" k="10" />
  2631. <hkern g1="r.sc" g2="quotedbl.sc" k="10" />
  2632. <hkern g1="r.sc" g2="asterisk.sc" k="35" />
  2633. <hkern g1="r.sc" g2="exclam.sc" k="10" />
  2634. <hkern g1="r.sc" g2="bracketright.sc" k="8" />
  2635. <hkern g1="r.sc" g2="braceright.sc" k="15" />
  2636. <hkern g1="r.sc" g2="parenright.sc" k="8" />
  2637. <hkern g1="racute.sc" g2="quotesingle.sc" k="10" />
  2638. <hkern g1="racute.sc" g2="quotedbl.sc" k="10" />
  2639. <hkern g1="racute.sc" g2="asterisk.sc" k="35" />
  2640. <hkern g1="racute.sc" g2="exclam.sc" k="10" />
  2641. <hkern g1="racute.sc" g2="bracketright.sc" k="8" />
  2642. <hkern g1="racute.sc" g2="braceright.sc" k="15" />
  2643. <hkern g1="racute.sc" g2="parenright.sc" k="8" />
  2644. <hkern g1="rcaron.sc" g2="quotesingle.sc" k="10" />
  2645. <hkern g1="rcaron.sc" g2="quotedbl.sc" k="10" />
  2646. <hkern g1="rcaron.sc" g2="asterisk.sc" k="35" />
  2647. <hkern g1="rcaron.sc" g2="exclam.sc" k="10" />
  2648. <hkern g1="rcaron.sc" g2="bracketright.sc" k="8" />
  2649. <hkern g1="rcaron.sc" g2="braceright.sc" k="15" />
  2650. <hkern g1="rcaron.sc" g2="parenright.sc" k="8" />
  2651. <hkern g1="rcommaaccent.sc" g2="quotesingle.sc" k="10" />
  2652. <hkern g1="rcommaaccent.sc" g2="quotedbl.sc" k="10" />
  2653. <hkern g1="rcommaaccent.sc" g2="asterisk.sc" k="35" />
  2654. <hkern g1="rcommaaccent.sc" g2="exclam.sc" k="10" />
  2655. <hkern g1="rcommaaccent.sc" g2="bracketright.sc" k="8" />
  2656. <hkern g1="rcommaaccent.sc" g2="braceright.sc" k="15" />
  2657. <hkern g1="rcommaaccent.sc" g2="parenright.sc" k="8" />
  2658. <hkern g1="rdotbelow.sc" g2="quotesingle.sc" k="10" />
  2659. <hkern g1="rdotbelow.sc" g2="quotedbl.sc" k="10" />
  2660. <hkern g1="rdotbelow.sc" g2="asterisk.sc" k="35" />
  2661. <hkern g1="rdotbelow.sc" g2="exclam.sc" k="10" />
  2662. <hkern g1="rdotbelow.sc" g2="bracketright.sc" k="8" />
  2663. <hkern g1="rdotbelow.sc" g2="braceright.sc" k="15" />
  2664. <hkern g1="rdotbelow.sc" g2="parenright.sc" k="8" />
  2665. <hkern g1="s.sc" g2="quotesingle.sc" k="5" />
  2666. <hkern g1="s.sc" g2="quotedbl.sc" k="5" />
  2667. <hkern g1="s.sc" g2="asterisk.sc" k="20" />
  2668. <hkern g1="s.sc" g2="question.sc" k="5" />
  2669. <hkern g1="s.sc" g2="exclam.sc" k="10" />
  2670. <hkern g1="s.sc" g2="bracketright.sc" k="35" />
  2671. <hkern g1="s.sc" g2="braceright.sc" k="8" />
  2672. <hkern g1="sacute.sc" g2="quotesingle.sc" k="5" />
  2673. <hkern g1="sacute.sc" g2="quotedbl.sc" k="5" />
  2674. <hkern g1="sacute.sc" g2="asterisk.sc" k="20" />
  2675. <hkern g1="sacute.sc" g2="question.sc" k="5" />
  2676. <hkern g1="sacute.sc" g2="exclam.sc" k="10" />
  2677. <hkern g1="sacute.sc" g2="bracketright.sc" k="35" />
  2678. <hkern g1="sacute.sc" g2="braceright.sc" k="8" />
  2679. <hkern g1="scaron.sc" g2="quotesingle.sc" k="5" />
  2680. <hkern g1="scaron.sc" g2="quotedbl.sc" k="5" />
  2681. <hkern g1="scaron.sc" g2="asterisk.sc" k="20" />
  2682. <hkern g1="scaron.sc" g2="question.sc" k="5" />
  2683. <hkern g1="scaron.sc" g2="exclam.sc" k="10" />
  2684. <hkern g1="scaron.sc" g2="bracketright.sc" k="35" />
  2685. <hkern g1="scaron.sc" g2="braceright.sc" k="8" />
  2686. <hkern g1="scedilla.sc" g2="quotesingle.sc" k="5" />
  2687. <hkern g1="scedilla.sc" g2="quotedbl.sc" k="5" />
  2688. <hkern g1="scedilla.sc" g2="asterisk.sc" k="20" />
  2689. <hkern g1="scedilla.sc" g2="question.sc" k="5" />
  2690. <hkern g1="scedilla.sc" g2="exclam.sc" k="10" />
  2691. <hkern g1="scedilla.sc" g2="bracketright.sc" k="35" />
  2692. <hkern g1="scedilla.sc" g2="braceright.sc" k="8" />
  2693. <hkern g1="scircumflex.sc" g2="quotesingle.sc" k="5" />
  2694. <hkern g1="scircumflex.sc" g2="quotedbl.sc" k="5" />
  2695. <hkern g1="scircumflex.sc" g2="asterisk.sc" k="20" />
  2696. <hkern g1="scircumflex.sc" g2="question.sc" k="5" />
  2697. <hkern g1="scircumflex.sc" g2="exclam.sc" k="10" />
  2698. <hkern g1="scircumflex.sc" g2="bracketright.sc" k="35" />
  2699. <hkern g1="scircumflex.sc" g2="braceright.sc" k="8" />
  2700. <hkern g1="scommaaccent.sc" g2="quotesingle.sc" k="5" />
  2701. <hkern g1="scommaaccent.sc" g2="quotedbl.sc" k="5" />
  2702. <hkern g1="scommaaccent.sc" g2="asterisk.sc" k="20" />
  2703. <hkern g1="scommaaccent.sc" g2="question.sc" k="5" />
  2704. <hkern g1="scommaaccent.sc" g2="exclam.sc" k="10" />
  2705. <hkern g1="scommaaccent.sc" g2="bracketright.sc" k="35" />
  2706. <hkern g1="scommaaccent.sc" g2="braceright.sc" k="8" />
  2707. <hkern g1="sdotbelow.sc" g2="quotesingle.sc" k="5" />
  2708. <hkern g1="sdotbelow.sc" g2="quotedbl.sc" k="5" />
  2709. <hkern g1="sdotbelow.sc" g2="asterisk.sc" k="20" />
  2710. <hkern g1="sdotbelow.sc" g2="question.sc" k="5" />
  2711. <hkern g1="sdotbelow.sc" g2="exclam.sc" k="10" />
  2712. <hkern g1="sdotbelow.sc" g2="bracketright.sc" k="35" />
  2713. <hkern g1="sdotbelow.sc" g2="braceright.sc" k="8" />
  2714. <hkern g1="germandbls.sc" g2="quotesingle.sc" k="5" />
  2715. <hkern g1="germandbls.sc" g2="quotedbl.sc" k="5" />
  2716. <hkern g1="germandbls.sc" g2="asterisk.sc" k="20" />
  2717. <hkern g1="germandbls.sc" g2="question.sc" k="5" />
  2718. <hkern g1="germandbls.sc" g2="exclam.sc" k="10" />
  2719. <hkern g1="germandbls.sc" g2="bracketright.sc" k="35" />
  2720. <hkern g1="germandbls.sc" g2="braceright.sc" k="8" />
  2721. <hkern g1="t.sc" g2="exclam.sc" k="10" />
  2722. <hkern g1="t.sc" g2="braceright.sc" k="5" />
  2723. <hkern g1="tbar.sc" g2="exclam.sc" k="10" />
  2724. <hkern g1="tbar.sc" g2="braceright.sc" k="5" />
  2725. <hkern g1="tcaron.sc" g2="exclam.sc" k="10" />
  2726. <hkern g1="tcaron.sc" g2="braceright.sc" k="5" />
  2727. <hkern g1="tcedilla.sc" g2="exclam.sc" k="10" />
  2728. <hkern g1="tcedilla.sc" g2="braceright.sc" k="5" />
  2729. <hkern g1="tcommaaccent.sc" g2="exclam.sc" k="10" />
  2730. <hkern g1="tcommaaccent.sc" g2="braceright.sc" k="5" />
  2731. <hkern g1="tdotbelow.sc" g2="exclam.sc" k="10" />
  2732. <hkern g1="tdotbelow.sc" g2="braceright.sc" k="5" />
  2733. <hkern g1="u.sc" g2="question.sc" k="5" />
  2734. <hkern g1="u.sc" g2="exclam.sc" k="10" />
  2735. <hkern g1="u.sc" g2="bracketright.sc" k="13" />
  2736. <hkern g1="u.sc" g2="braceright.sc" k="5" />
  2737. <hkern g1="u.sc" g2="parenright.sc" k="3" />
  2738. <hkern g1="uacute.sc" g2="question.sc" k="5" />
  2739. <hkern g1="uacute.sc" g2="exclam.sc" k="10" />
  2740. <hkern g1="uacute.sc" g2="bracketright.sc" k="13" />
  2741. <hkern g1="uacute.sc" g2="braceright.sc" k="5" />
  2742. <hkern g1="uacute.sc" g2="parenright.sc" k="3" />
  2743. <hkern g1="ubreve.sc" g2="question.sc" k="5" />
  2744. <hkern g1="ubreve.sc" g2="exclam.sc" k="10" />
  2745. <hkern g1="ubreve.sc" g2="bracketright.sc" k="13" />
  2746. <hkern g1="ubreve.sc" g2="braceright.sc" k="5" />
  2747. <hkern g1="ubreve.sc" g2="parenright.sc" k="3" />
  2748. <hkern g1="ucaron.sc" g2="question.sc" k="5" />
  2749. <hkern g1="ucaron.sc" g2="exclam.sc" k="10" />
  2750. <hkern g1="ucaron.sc" g2="bracketright.sc" k="13" />
  2751. <hkern g1="ucaron.sc" g2="braceright.sc" k="5" />
  2752. <hkern g1="ucaron.sc" g2="parenright.sc" k="3" />
  2753. <hkern g1="ucircumflex.sc" g2="question.sc" k="5" />
  2754. <hkern g1="ucircumflex.sc" g2="exclam.sc" k="10" />
  2755. <hkern g1="ucircumflex.sc" g2="bracketright.sc" k="13" />
  2756. <hkern g1="ucircumflex.sc" g2="braceright.sc" k="5" />
  2757. <hkern g1="ucircumflex.sc" g2="parenright.sc" k="3" />
  2758. <hkern g1="udieresis.sc" g2="question.sc" k="5" />
  2759. <hkern g1="udieresis.sc" g2="exclam.sc" k="10" />
  2760. <hkern g1="udieresis.sc" g2="bracketright.sc" k="13" />
  2761. <hkern g1="udieresis.sc" g2="braceright.sc" k="5" />
  2762. <hkern g1="udieresis.sc" g2="parenright.sc" k="3" />
  2763. <hkern g1="udieresisacute.sc" g2="question.sc" k="5" />
  2764. <hkern g1="udieresisacute.sc" g2="exclam.sc" k="10" />
  2765. <hkern g1="udieresisacute.sc" g2="bracketright.sc" k="13" />
  2766. <hkern g1="udieresisacute.sc" g2="braceright.sc" k="5" />
  2767. <hkern g1="udieresisacute.sc" g2="parenright.sc" k="3" />
  2768. <hkern g1="udieresiscaron.sc" g2="question.sc" k="5" />
  2769. <hkern g1="udieresiscaron.sc" g2="exclam.sc" k="10" />
  2770. <hkern g1="udieresiscaron.sc" g2="bracketright.sc" k="13" />
  2771. <hkern g1="udieresiscaron.sc" g2="braceright.sc" k="5" />
  2772. <hkern g1="udieresiscaron.sc" g2="parenright.sc" k="3" />
  2773. <hkern g1="udieresisgrave.sc" g2="question.sc" k="5" />
  2774. <hkern g1="udieresisgrave.sc" g2="exclam.sc" k="10" />
  2775. <hkern g1="udieresisgrave.sc" g2="bracketright.sc" k="13" />
  2776. <hkern g1="udieresisgrave.sc" g2="braceright.sc" k="5" />
  2777. <hkern g1="udieresisgrave.sc" g2="parenright.sc" k="3" />
  2778. <hkern g1="udieresismacron.sc" g2="question.sc" k="5" />
  2779. <hkern g1="udieresismacron.sc" g2="exclam.sc" k="10" />
  2780. <hkern g1="udieresismacron.sc" g2="bracketright.sc" k="13" />
  2781. <hkern g1="udieresismacron.sc" g2="braceright.sc" k="5" />
  2782. <hkern g1="udieresismacron.sc" g2="parenright.sc" k="3" />
  2783. <hkern g1="udotbelow.sc" g2="question.sc" k="5" />
  2784. <hkern g1="udotbelow.sc" g2="exclam.sc" k="10" />
  2785. <hkern g1="udotbelow.sc" g2="bracketright.sc" k="13" />
  2786. <hkern g1="udotbelow.sc" g2="braceright.sc" k="5" />
  2787. <hkern g1="udotbelow.sc" g2="parenright.sc" k="3" />
  2788. <hkern g1="ugrave.sc" g2="question.sc" k="5" />
  2789. <hkern g1="ugrave.sc" g2="exclam.sc" k="10" />
  2790. <hkern g1="ugrave.sc" g2="bracketright.sc" k="13" />
  2791. <hkern g1="ugrave.sc" g2="braceright.sc" k="5" />
  2792. <hkern g1="ugrave.sc" g2="parenright.sc" k="3" />
  2793. <hkern g1="uhungarumlaut.sc" g2="question.sc" k="5" />
  2794. <hkern g1="uhungarumlaut.sc" g2="exclam.sc" k="10" />
  2795. <hkern g1="uhungarumlaut.sc" g2="bracketright.sc" k="13" />
  2796. <hkern g1="uhungarumlaut.sc" g2="braceright.sc" k="5" />
  2797. <hkern g1="uhungarumlaut.sc" g2="parenright.sc" k="3" />
  2798. <hkern g1="umacron.sc" g2="question.sc" k="5" />
  2799. <hkern g1="umacron.sc" g2="exclam.sc" k="10" />
  2800. <hkern g1="umacron.sc" g2="bracketright.sc" k="13" />
  2801. <hkern g1="umacron.sc" g2="braceright.sc" k="5" />
  2802. <hkern g1="umacron.sc" g2="parenright.sc" k="3" />
  2803. <hkern g1="uogonek.sc" g2="question.sc" k="5" />
  2804. <hkern g1="uogonek.sc" g2="exclam.sc" k="10" />
  2805. <hkern g1="uogonek.sc" g2="bracketright.sc" k="13" />
  2806. <hkern g1="uogonek.sc" g2="braceright.sc" k="5" />
  2807. <hkern g1="uogonek.sc" g2="parenright.sc" k="3" />
  2808. <hkern g1="uring.sc" g2="question.sc" k="5" />
  2809. <hkern g1="uring.sc" g2="exclam.sc" k="10" />
  2810. <hkern g1="uring.sc" g2="bracketright.sc" k="13" />
  2811. <hkern g1="uring.sc" g2="braceright.sc" k="5" />
  2812. <hkern g1="uring.sc" g2="parenright.sc" k="3" />
  2813. <hkern g1="utilde.sc" g2="question.sc" k="5" />
  2814. <hkern g1="utilde.sc" g2="exclam.sc" k="10" />
  2815. <hkern g1="utilde.sc" g2="bracketright.sc" k="13" />
  2816. <hkern g1="utilde.sc" g2="braceright.sc" k="5" />
  2817. <hkern g1="utilde.sc" g2="parenright.sc" k="3" />
  2818. <hkern g1="v.sc" g2="quotesingle.sc" k="-15" />
  2819. <hkern g1="v.sc" g2="quotedbl.sc" k="-15" />
  2820. <hkern g1="v.sc" g2="exclam.sc" k="13" />
  2821. <hkern g1="v.sc" g2="bracketright.sc" k="38" />
  2822. <hkern g1="v.sc" g2="braceright.sc" k="8" />
  2823. <hkern g1="w.sc" g2="quotesingle.sc" k="-15" />
  2824. <hkern g1="w.sc" g2="quotedbl.sc" k="-15" />
  2825. <hkern g1="w.sc" g2="exclam.sc" k="13" />
  2826. <hkern g1="w.sc" g2="bracketright.sc" k="38" />
  2827. <hkern g1="w.sc" g2="braceright.sc" k="8" />
  2828. <hkern g1="wacute.sc" g2="quotesingle.sc" k="-15" />
  2829. <hkern g1="wacute.sc" g2="quotedbl.sc" k="-15" />
  2830. <hkern g1="wacute.sc" g2="exclam.sc" k="13" />
  2831. <hkern g1="wacute.sc" g2="bracketright.sc" k="38" />
  2832. <hkern g1="wacute.sc" g2="braceright.sc" k="8" />
  2833. <hkern g1="wcircumflex.sc" g2="quotesingle.sc" k="-15" />
  2834. <hkern g1="wcircumflex.sc" g2="quotedbl.sc" k="-15" />
  2835. <hkern g1="wcircumflex.sc" g2="exclam.sc" k="13" />
  2836. <hkern g1="wcircumflex.sc" g2="bracketright.sc" k="38" />
  2837. <hkern g1="wcircumflex.sc" g2="braceright.sc" k="8" />
  2838. <hkern g1="wdieresis.sc" g2="quotesingle.sc" k="-15" />
  2839. <hkern g1="wdieresis.sc" g2="quotedbl.sc" k="-15" />
  2840. <hkern g1="wdieresis.sc" g2="exclam.sc" k="13" />
  2841. <hkern g1="wdieresis.sc" g2="bracketright.sc" k="38" />
  2842. <hkern g1="wdieresis.sc" g2="braceright.sc" k="8" />
  2843. <hkern g1="wgrave.sc" g2="quotesingle.sc" k="-15" />
  2844. <hkern g1="wgrave.sc" g2="quotedbl.sc" k="-15" />
  2845. <hkern g1="wgrave.sc" g2="exclam.sc" k="13" />
  2846. <hkern g1="wgrave.sc" g2="bracketright.sc" k="38" />
  2847. <hkern g1="wgrave.sc" g2="braceright.sc" k="8" />
  2848. <hkern g1="x.sc" g2="exclam.sc" k="10" />
  2849. <hkern g1="x.sc" g2="m.sc" k="4" />
  2850. <hkern g1="x.sc" u2="&#x2122;" k="8" />
  2851. <hkern g1="y.sc" g2="exclam.sc" k="13" />
  2852. <hkern g1="y.sc" g2="braceright.sc" k="5" />
  2853. <hkern g1="yacute.sc" g2="exclam.sc" k="13" />
  2854. <hkern g1="yacute.sc" g2="braceright.sc" k="5" />
  2855. <hkern g1="ycircumflex.sc" g2="exclam.sc" k="13" />
  2856. <hkern g1="ycircumflex.sc" g2="braceright.sc" k="5" />
  2857. <hkern g1="ydieresis.sc" g2="exclam.sc" k="13" />
  2858. <hkern g1="ydieresis.sc" g2="braceright.sc" k="5" />
  2859. <hkern g1="ygrave.sc" g2="exclam.sc" k="13" />
  2860. <hkern g1="ygrave.sc" g2="braceright.sc" k="5" />
  2861. <hkern g1="ymacron.sc" g2="exclam.sc" k="13" />
  2862. <hkern g1="ymacron.sc" g2="braceright.sc" k="5" />
  2863. <hkern g1="ytilde.sc" g2="exclam.sc" k="13" />
  2864. <hkern g1="ytilde.sc" g2="braceright.sc" k="5" />
  2865. <hkern g1="z.sc" g2="quotedbl.sc" k="5" />
  2866. <hkern g1="z.sc" g2="question.sc" k="5" />
  2867. <hkern g1="z.sc" g2="exclam.sc" k="10" />
  2868. <hkern g1="z.sc" g2="bracketright.sc" k="23" />
  2869. <hkern g1="z.sc" g2="braceright.sc" k="8" />
  2870. <hkern g1="z.sc" g2="parenright.sc" k="8" />
  2871. <hkern g1="zacute.sc" g2="quotedbl.sc" k="5" />
  2872. <hkern g1="zacute.sc" g2="question.sc" k="5" />
  2873. <hkern g1="zacute.sc" g2="exclam.sc" k="10" />
  2874. <hkern g1="zacute.sc" g2="bracketright.sc" k="23" />
  2875. <hkern g1="zacute.sc" g2="braceright.sc" k="8" />
  2876. <hkern g1="zacute.sc" g2="parenright.sc" k="8" />
  2877. <hkern g1="zcaron.sc" g2="quotedbl.sc" k="5" />
  2878. <hkern g1="zcaron.sc" g2="question.sc" k="5" />
  2879. <hkern g1="zcaron.sc" g2="exclam.sc" k="10" />
  2880. <hkern g1="zcaron.sc" g2="bracketright.sc" k="23" />
  2881. <hkern g1="zcaron.sc" g2="braceright.sc" k="8" />
  2882. <hkern g1="zcaron.sc" g2="parenright.sc" k="8" />
  2883. <hkern g1="zdotaccent.sc" g2="quotedbl.sc" k="5" />
  2884. <hkern g1="zdotaccent.sc" g2="question.sc" k="5" />
  2885. <hkern g1="zdotaccent.sc" g2="exclam.sc" k="10" />
  2886. <hkern g1="zdotaccent.sc" g2="bracketright.sc" k="23" />
  2887. <hkern g1="zdotaccent.sc" g2="braceright.sc" k="8" />
  2888. <hkern g1="zdotaccent.sc" g2="parenright.sc" k="8" />
  2889. <hkern g1="zdotbelow.sc" g2="quotedbl.sc" k="5" />
  2890. <hkern g1="zdotbelow.sc" g2="question.sc" k="5" />
  2891. <hkern g1="zdotbelow.sc" g2="exclam.sc" k="10" />
  2892. <hkern g1="zdotbelow.sc" g2="bracketright.sc" k="23" />
  2893. <hkern g1="zdotbelow.sc" g2="braceright.sc" k="8" />
  2894. <hkern g1="zdotbelow.sc" g2="parenright.sc" k="8" />
  2895. <hkern g1="zero.numerator" u2="&#x2044;" k="217" />
  2896. <hkern g1="four.numerator" u2="&#x2044;" k="202" />
  2897. <hkern g1="seven.numerator" u2="&#x2044;" k="274" />
  2898. <hkern g1="nine.numerator" u2="&#x2044;" k="217" />
  2899. <hkern g1="exclamdown.caps" g2="IJacute" k="10" />
  2900. <hkern g1="exclamdown.caps" g2="Jacute" k="3" />
  2901. <hkern g1="exclamdown.caps" u2="&#x1ef8;" k="38" />
  2902. <hkern g1="exclamdown.caps" u2="&#x1ef2;" k="38" />
  2903. <hkern g1="exclamdown.caps" u2="&#x1ee4;" k="10" />
  2904. <hkern g1="exclamdown.caps" u2="&#x1ecc;" k="8" />
  2905. <hkern g1="exclamdown.caps" u2="&#x1eca;" k="10" />
  2906. <hkern g1="exclamdown.caps" u2="&#x1ebc;" k="10" />
  2907. <hkern g1="exclamdown.caps" u2="&#x1eb8;" k="10" />
  2908. <hkern g1="exclamdown.caps" u2="&#x1ea0;" k="10" />
  2909. <hkern g1="exclamdown.caps" u2="&#x1e92;" k="10" />
  2910. <hkern g1="exclamdown.caps" u2="&#x1e84;" k="33" />
  2911. <hkern g1="exclamdown.caps" u2="&#x1e82;" k="33" />
  2912. <hkern g1="exclamdown.caps" u2="&#x1e80;" k="33" />
  2913. <hkern g1="exclamdown.caps" u2="&#x1e6c;" k="48" />
  2914. <hkern g1="exclamdown.caps" u2="&#x1e62;" k="28" />
  2915. <hkern g1="exclamdown.caps" u2="&#x1e5a;" k="10" />
  2916. <hkern g1="exclamdown.caps" u2="&#x1e44;" k="10" />
  2917. <hkern g1="exclamdown.caps" u2="&#x1e24;" k="10" />
  2918. <hkern g1="exclamdown.caps" u2="&#x1e0c;" k="10" />
  2919. <hkern g1="exclamdown.caps" u2="&#x232;" k="38" />
  2920. <hkern g1="exclamdown.caps" u2="&#x21a;" k="48" />
  2921. <hkern g1="exclamdown.caps" u2="&#x218;" k="28" />
  2922. <hkern g1="exclamdown.caps" u2="&#x1fe;" k="8" />
  2923. <hkern g1="exclamdown.caps" u2="&#x1fc;" k="10" />
  2924. <hkern g1="exclamdown.caps" u2="&#x1fa;" k="10" />
  2925. <hkern g1="exclamdown.caps" u2="&#x1f4;" k="8" />
  2926. <hkern g1="exclamdown.caps" u2="&#x1ea;" k="8" />
  2927. <hkern g1="exclamdown.caps" u2="&#x1e6;" k="8" />
  2928. <hkern g1="exclamdown.caps" u2="&#x1db;" k="10" />
  2929. <hkern g1="exclamdown.caps" u2="&#x1d9;" k="10" />
  2930. <hkern g1="exclamdown.caps" u2="&#x1d7;" k="10" />
  2931. <hkern g1="exclamdown.caps" u2="&#x1d5;" k="10" />
  2932. <hkern g1="exclamdown.caps" u2="&#x1d3;" k="10" />
  2933. <hkern g1="exclamdown.caps" u2="&#x1d1;" k="8" />
  2934. <hkern g1="exclamdown.caps" u2="&#x1cf;" k="10" />
  2935. <hkern g1="exclamdown.caps" u2="&#x1cd;" k="10" />
  2936. <hkern g1="exclamdown.caps" u2="&#x19d;" k="3" />
  2937. <hkern g1="exclamdown.caps" u2="&#x17d;" k="10" />
  2938. <hkern g1="exclamdown.caps" u2="&#x17b;" k="10" />
  2939. <hkern g1="exclamdown.caps" u2="&#x179;" k="10" />
  2940. <hkern g1="exclamdown.caps" u2="&#x178;" k="38" />
  2941. <hkern g1="exclamdown.caps" u2="&#x176;" k="38" />
  2942. <hkern g1="exclamdown.caps" u2="&#x174;" k="33" />
  2943. <hkern g1="exclamdown.caps" u2="&#x172;" k="10" />
  2944. <hkern g1="exclamdown.caps" u2="&#x170;" k="10" />
  2945. <hkern g1="exclamdown.caps" u2="&#x16e;" k="10" />
  2946. <hkern g1="exclamdown.caps" u2="&#x16c;" k="10" />
  2947. <hkern g1="exclamdown.caps" u2="&#x16a;" k="10" />
  2948. <hkern g1="exclamdown.caps" u2="&#x168;" k="10" />
  2949. <hkern g1="exclamdown.caps" u2="&#x166;" k="48" />
  2950. <hkern g1="exclamdown.caps" u2="&#x164;" k="48" />
  2951. <hkern g1="exclamdown.caps" u2="&#x162;" k="48" />
  2952. <hkern g1="exclamdown.caps" u2="&#x160;" k="28" />
  2953. <hkern g1="exclamdown.caps" u2="&#x15e;" k="28" />
  2954. <hkern g1="exclamdown.caps" u2="&#x15c;" k="28" />
  2955. <hkern g1="exclamdown.caps" u2="&#x15a;" k="28" />
  2956. <hkern g1="exclamdown.caps" u2="&#x158;" k="10" />
  2957. <hkern g1="exclamdown.caps" u2="&#x156;" k="10" />
  2958. <hkern g1="exclamdown.caps" u2="&#x154;" k="10" />
  2959. <hkern g1="exclamdown.caps" u2="&#x152;" k="8" />
  2960. <hkern g1="exclamdown.caps" u2="&#x150;" k="8" />
  2961. <hkern g1="exclamdown.caps" u2="&#x14e;" k="8" />
  2962. <hkern g1="exclamdown.caps" u2="&#x14c;" k="8" />
  2963. <hkern g1="exclamdown.caps" u2="&#x14a;" k="10" />
  2964. <hkern g1="exclamdown.caps" u2="&#x147;" k="10" />
  2965. <hkern g1="exclamdown.caps" u2="&#x145;" k="10" />
  2966. <hkern g1="exclamdown.caps" u2="&#x143;" k="10" />
  2967. <hkern g1="exclamdown.caps" u2="&#x141;" k="10" />
  2968. <hkern g1="exclamdown.caps" u2="&#x13f;" k="10" />
  2969. <hkern g1="exclamdown.caps" u2="&#x13d;" k="10" />
  2970. <hkern g1="exclamdown.caps" u2="&#x13b;" k="10" />
  2971. <hkern g1="exclamdown.caps" u2="&#x139;" k="10" />
  2972. <hkern g1="exclamdown.caps" u2="&#x136;" k="10" />
  2973. <hkern g1="exclamdown.caps" u2="&#x134;" k="3" />
  2974. <hkern g1="exclamdown.caps" u2="&#x132;" k="10" />
  2975. <hkern g1="exclamdown.caps" u2="&#x130;" k="10" />
  2976. <hkern g1="exclamdown.caps" u2="&#x12e;" k="10" />
  2977. <hkern g1="exclamdown.caps" u2="&#x12c;" k="10" />
  2978. <hkern g1="exclamdown.caps" u2="&#x12a;" k="10" />
  2979. <hkern g1="exclamdown.caps" u2="&#x128;" k="10" />
  2980. <hkern g1="exclamdown.caps" u2="&#x126;" k="10" />
  2981. <hkern g1="exclamdown.caps" u2="&#x124;" k="10" />
  2982. <hkern g1="exclamdown.caps" u2="&#x122;" k="8" />
  2983. <hkern g1="exclamdown.caps" u2="&#x120;" k="8" />
  2984. <hkern g1="exclamdown.caps" u2="&#x11e;" k="8" />
  2985. <hkern g1="exclamdown.caps" u2="&#x11c;" k="8" />
  2986. <hkern g1="exclamdown.caps" u2="&#x11a;" k="10" />
  2987. <hkern g1="exclamdown.caps" u2="&#x118;" k="10" />
  2988. <hkern g1="exclamdown.caps" u2="&#x116;" k="10" />
  2989. <hkern g1="exclamdown.caps" u2="&#x114;" k="10" />
  2990. <hkern g1="exclamdown.caps" u2="&#x112;" k="10" />
  2991. <hkern g1="exclamdown.caps" u2="&#x110;" k="10" />
  2992. <hkern g1="exclamdown.caps" u2="&#x10e;" k="10" />
  2993. <hkern g1="exclamdown.caps" u2="&#x10c;" k="8" />
  2994. <hkern g1="exclamdown.caps" u2="&#x10a;" k="8" />
  2995. <hkern g1="exclamdown.caps" u2="&#x108;" k="8" />
  2996. <hkern g1="exclamdown.caps" u2="&#x106;" k="8" />
  2997. <hkern g1="exclamdown.caps" u2="&#x104;" k="10" />
  2998. <hkern g1="exclamdown.caps" u2="&#x102;" k="10" />
  2999. <hkern g1="exclamdown.caps" u2="&#x100;" k="10" />
  3000. <hkern g1="exclamdown.caps" u2="&#xde;" k="10" />
  3001. <hkern g1="exclamdown.caps" u2="&#xdd;" k="38" />
  3002. <hkern g1="exclamdown.caps" u2="&#xdc;" k="10" />
  3003. <hkern g1="exclamdown.caps" u2="&#xdb;" k="10" />
  3004. <hkern g1="exclamdown.caps" u2="&#xda;" k="10" />
  3005. <hkern g1="exclamdown.caps" u2="&#xd9;" k="10" />
  3006. <hkern g1="exclamdown.caps" u2="&#xd8;" k="8" />
  3007. <hkern g1="exclamdown.caps" u2="&#xd6;" k="8" />
  3008. <hkern g1="exclamdown.caps" u2="&#xd5;" k="8" />
  3009. <hkern g1="exclamdown.caps" u2="&#xd4;" k="8" />
  3010. <hkern g1="exclamdown.caps" u2="&#xd3;" k="8" />
  3011. <hkern g1="exclamdown.caps" u2="&#xd2;" k="8" />
  3012. <hkern g1="exclamdown.caps" u2="&#xd1;" k="10" />
  3013. <hkern g1="exclamdown.caps" u2="&#xd0;" k="10" />
  3014. <hkern g1="exclamdown.caps" u2="&#xcf;" k="10" />
  3015. <hkern g1="exclamdown.caps" u2="&#xce;" k="10" />
  3016. <hkern g1="exclamdown.caps" u2="&#xcd;" k="10" />
  3017. <hkern g1="exclamdown.caps" u2="&#xcc;" k="10" />
  3018. <hkern g1="exclamdown.caps" u2="&#xcb;" k="10" />
  3019. <hkern g1="exclamdown.caps" u2="&#xca;" k="10" />
  3020. <hkern g1="exclamdown.caps" u2="&#xc9;" k="10" />
  3021. <hkern g1="exclamdown.caps" u2="&#xc8;" k="10" />
  3022. <hkern g1="exclamdown.caps" u2="&#xc7;" k="8" />
  3023. <hkern g1="exclamdown.caps" u2="&#xc6;" k="10" />
  3024. <hkern g1="exclamdown.caps" u2="&#xc5;" k="10" />
  3025. <hkern g1="exclamdown.caps" u2="&#xc4;" k="10" />
  3026. <hkern g1="exclamdown.caps" u2="&#xc3;" k="10" />
  3027. <hkern g1="exclamdown.caps" u2="&#xc2;" k="10" />
  3028. <hkern g1="exclamdown.caps" u2="&#xc1;" k="10" />
  3029. <hkern g1="exclamdown.caps" u2="&#xc0;" k="10" />
  3030. <hkern g1="exclamdown.caps" u2="Z" k="10" />
  3031. <hkern g1="exclamdown.caps" u2="Y" k="38" />
  3032. <hkern g1="exclamdown.caps" u2="X" k="5" />
  3033. <hkern g1="exclamdown.caps" u2="W" k="33" />
  3034. <hkern g1="exclamdown.caps" u2="V" k="33" />
  3035. <hkern g1="exclamdown.caps" u2="U" k="10" />
  3036. <hkern g1="exclamdown.caps" u2="T" k="48" />
  3037. <hkern g1="exclamdown.caps" u2="S" k="28" />
  3038. <hkern g1="exclamdown.caps" u2="R" k="10" />
  3039. <hkern g1="exclamdown.caps" u2="Q" k="8" />
  3040. <hkern g1="exclamdown.caps" u2="P" k="10" />
  3041. <hkern g1="exclamdown.caps" u2="O" k="8" />
  3042. <hkern g1="exclamdown.caps" u2="N" k="10" />
  3043. <hkern g1="exclamdown.caps" u2="M" k="8" />
  3044. <hkern g1="exclamdown.caps" u2="L" k="10" />
  3045. <hkern g1="exclamdown.caps" u2="K" k="10" />
  3046. <hkern g1="exclamdown.caps" u2="J" k="3" />
  3047. <hkern g1="exclamdown.caps" u2="I" k="10" />
  3048. <hkern g1="exclamdown.caps" u2="H" k="10" />
  3049. <hkern g1="exclamdown.caps" u2="G" k="8" />
  3050. <hkern g1="exclamdown.caps" u2="F" k="10" />
  3051. <hkern g1="exclamdown.caps" u2="E" k="10" />
  3052. <hkern g1="exclamdown.caps" u2="D" k="10" />
  3053. <hkern g1="exclamdown.caps" u2="C" k="8" />
  3054. <hkern g1="exclamdown.caps" u2="B" k="10" />
  3055. <hkern g1="exclamdown.caps" u2="A" k="10" />
  3056. <hkern g1="questiondown.caps" g2="IJacute" k="23" />
  3057. <hkern g1="questiondown.caps" g2="Jacute" k="15" />
  3058. <hkern g1="questiondown.caps" u2="&#x1ee4;" k="16" />
  3059. <hkern g1="questiondown.caps" u2="&#x1ecc;" k="29" />
  3060. <hkern g1="questiondown.caps" u2="&#x1eca;" k="23" />
  3061. <hkern g1="questiondown.caps" u2="&#x1ebc;" k="23" />
  3062. <hkern g1="questiondown.caps" u2="&#x1eb8;" k="23" />
  3063. <hkern g1="questiondown.caps" u2="&#x1ea0;" k="35" />
  3064. <hkern g1="questiondown.caps" u2="&#x1e92;" k="5" />
  3065. <hkern g1="questiondown.caps" u2="&#x1e6c;" k="58" />
  3066. <hkern g1="questiondown.caps" u2="&#x1e62;" k="28" />
  3067. <hkern g1="questiondown.caps" u2="&#x1e5a;" k="23" />
  3068. <hkern g1="questiondown.caps" u2="&#x1e44;" k="23" />
  3069. <hkern g1="questiondown.caps" u2="&#x1e24;" k="23" />
  3070. <hkern g1="questiondown.caps" u2="&#x1e0c;" k="23" />
  3071. <hkern g1="questiondown.caps" u2="&#x21a;" k="58" />
  3072. <hkern g1="questiondown.caps" u2="&#x218;" k="28" />
  3073. <hkern g1="questiondown.caps" u2="&#x1fe;" k="29" />
  3074. <hkern g1="questiondown.caps" u2="&#x1fc;" k="35" />
  3075. <hkern g1="questiondown.caps" u2="&#x1fa;" k="35" />
  3076. <hkern g1="questiondown.caps" u2="&#x1f4;" k="29" />
  3077. <hkern g1="questiondown.caps" u2="&#x1ea;" k="29" />
  3078. <hkern g1="questiondown.caps" u2="&#x1e6;" k="29" />
  3079. <hkern g1="questiondown.caps" u2="&#x1db;" k="16" />
  3080. <hkern g1="questiondown.caps" u2="&#x1d9;" k="16" />
  3081. <hkern g1="questiondown.caps" u2="&#x1d7;" k="16" />
  3082. <hkern g1="questiondown.caps" u2="&#x1d5;" k="16" />
  3083. <hkern g1="questiondown.caps" u2="&#x1d3;" k="16" />
  3084. <hkern g1="questiondown.caps" u2="&#x1d1;" k="29" />
  3085. <hkern g1="questiondown.caps" u2="&#x1cf;" k="23" />
  3086. <hkern g1="questiondown.caps" u2="&#x1cd;" k="35" />
  3087. <hkern g1="questiondown.caps" u2="&#x19d;" k="15" />
  3088. <hkern g1="questiondown.caps" u2="&#x17d;" k="5" />
  3089. <hkern g1="questiondown.caps" u2="&#x17b;" k="5" />
  3090. <hkern g1="questiondown.caps" u2="&#x179;" k="5" />
  3091. <hkern g1="questiondown.caps" u2="&#x172;" k="16" />
  3092. <hkern g1="questiondown.caps" u2="&#x170;" k="16" />
  3093. <hkern g1="questiondown.caps" u2="&#x16e;" k="16" />
  3094. <hkern g1="questiondown.caps" u2="&#x16c;" k="16" />
  3095. <hkern g1="questiondown.caps" u2="&#x16a;" k="16" />
  3096. <hkern g1="questiondown.caps" u2="&#x168;" k="16" />
  3097. <hkern g1="questiondown.caps" u2="&#x166;" k="58" />
  3098. <hkern g1="questiondown.caps" u2="&#x164;" k="58" />
  3099. <hkern g1="questiondown.caps" u2="&#x162;" k="58" />
  3100. <hkern g1="questiondown.caps" u2="&#x160;" k="28" />
  3101. <hkern g1="questiondown.caps" u2="&#x15e;" k="28" />
  3102. <hkern g1="questiondown.caps" u2="&#x15c;" k="28" />
  3103. <hkern g1="questiondown.caps" u2="&#x15a;" k="28" />
  3104. <hkern g1="questiondown.caps" u2="&#x158;" k="23" />
  3105. <hkern g1="questiondown.caps" u2="&#x156;" k="23" />
  3106. <hkern g1="questiondown.caps" u2="&#x154;" k="23" />
  3107. <hkern g1="questiondown.caps" u2="&#x152;" k="29" />
  3108. <hkern g1="questiondown.caps" u2="&#x150;" k="29" />
  3109. <hkern g1="questiondown.caps" u2="&#x14e;" k="29" />
  3110. <hkern g1="questiondown.caps" u2="&#x14c;" k="29" />
  3111. <hkern g1="questiondown.caps" u2="&#x14a;" k="23" />
  3112. <hkern g1="questiondown.caps" u2="&#x147;" k="23" />
  3113. <hkern g1="questiondown.caps" u2="&#x145;" k="23" />
  3114. <hkern g1="questiondown.caps" u2="&#x143;" k="23" />
  3115. <hkern g1="questiondown.caps" u2="&#x141;" k="23" />
  3116. <hkern g1="questiondown.caps" u2="&#x13f;" k="23" />
  3117. <hkern g1="questiondown.caps" u2="&#x13d;" k="23" />
  3118. <hkern g1="questiondown.caps" u2="&#x13b;" k="23" />
  3119. <hkern g1="questiondown.caps" u2="&#x139;" k="23" />
  3120. <hkern g1="questiondown.caps" u2="&#x136;" k="23" />
  3121. <hkern g1="questiondown.caps" u2="&#x134;" k="15" />
  3122. <hkern g1="questiondown.caps" u2="&#x132;" k="23" />
  3123. <hkern g1="questiondown.caps" u2="&#x130;" k="23" />
  3124. <hkern g1="questiondown.caps" u2="&#x12e;" k="23" />
  3125. <hkern g1="questiondown.caps" u2="&#x12c;" k="23" />
  3126. <hkern g1="questiondown.caps" u2="&#x12a;" k="23" />
  3127. <hkern g1="questiondown.caps" u2="&#x128;" k="23" />
  3128. <hkern g1="questiondown.caps" u2="&#x126;" k="23" />
  3129. <hkern g1="questiondown.caps" u2="&#x124;" k="23" />
  3130. <hkern g1="questiondown.caps" u2="&#x122;" k="29" />
  3131. <hkern g1="questiondown.caps" u2="&#x120;" k="29" />
  3132. <hkern g1="questiondown.caps" u2="&#x11e;" k="29" />
  3133. <hkern g1="questiondown.caps" u2="&#x11c;" k="29" />
  3134. <hkern g1="questiondown.caps" u2="&#x11a;" k="23" />
  3135. <hkern g1="questiondown.caps" u2="&#x118;" k="23" />
  3136. <hkern g1="questiondown.caps" u2="&#x116;" k="23" />
  3137. <hkern g1="questiondown.caps" u2="&#x114;" k="23" />
  3138. <hkern g1="questiondown.caps" u2="&#x112;" k="23" />
  3139. <hkern g1="questiondown.caps" u2="&#x110;" k="23" />
  3140. <hkern g1="questiondown.caps" u2="&#x10e;" k="23" />
  3141. <hkern g1="questiondown.caps" u2="&#x10c;" k="29" />
  3142. <hkern g1="questiondown.caps" u2="&#x10a;" k="29" />
  3143. <hkern g1="questiondown.caps" u2="&#x108;" k="29" />
  3144. <hkern g1="questiondown.caps" u2="&#x106;" k="29" />
  3145. <hkern g1="questiondown.caps" u2="&#x104;" k="35" />
  3146. <hkern g1="questiondown.caps" u2="&#x102;" k="35" />
  3147. <hkern g1="questiondown.caps" u2="&#x100;" k="35" />
  3148. <hkern g1="questiondown.caps" u2="&#xde;" k="23" />
  3149. <hkern g1="questiondown.caps" u2="&#xdc;" k="16" />
  3150. <hkern g1="questiondown.caps" u2="&#xdb;" k="16" />
  3151. <hkern g1="questiondown.caps" u2="&#xda;" k="16" />
  3152. <hkern g1="questiondown.caps" u2="&#xd9;" k="16" />
  3153. <hkern g1="questiondown.caps" u2="&#xd8;" k="29" />
  3154. <hkern g1="questiondown.caps" u2="&#xd6;" k="29" />
  3155. <hkern g1="questiondown.caps" u2="&#xd5;" k="29" />
  3156. <hkern g1="questiondown.caps" u2="&#xd4;" k="29" />
  3157. <hkern g1="questiondown.caps" u2="&#xd3;" k="29" />
  3158. <hkern g1="questiondown.caps" u2="&#xd2;" k="29" />
  3159. <hkern g1="questiondown.caps" u2="&#xd1;" k="23" />
  3160. <hkern g1="questiondown.caps" u2="&#xd0;" k="23" />
  3161. <hkern g1="questiondown.caps" u2="&#xcf;" k="23" />
  3162. <hkern g1="questiondown.caps" u2="&#xce;" k="23" />
  3163. <hkern g1="questiondown.caps" u2="&#xcd;" k="23" />
  3164. <hkern g1="questiondown.caps" u2="&#xcc;" k="23" />
  3165. <hkern g1="questiondown.caps" u2="&#xcb;" k="23" />
  3166. <hkern g1="questiondown.caps" u2="&#xca;" k="23" />
  3167. <hkern g1="questiondown.caps" u2="&#xc9;" k="23" />
  3168. <hkern g1="questiondown.caps" u2="&#xc8;" k="23" />
  3169. <hkern g1="questiondown.caps" u2="&#xc7;" k="29" />
  3170. <hkern g1="questiondown.caps" u2="&#xc6;" k="35" />
  3171. <hkern g1="questiondown.caps" u2="&#xc5;" k="35" />
  3172. <hkern g1="questiondown.caps" u2="&#xc4;" k="35" />
  3173. <hkern g1="questiondown.caps" u2="&#xc3;" k="35" />
  3174. <hkern g1="questiondown.caps" u2="&#xc2;" k="35" />
  3175. <hkern g1="questiondown.caps" u2="&#xc1;" k="35" />
  3176. <hkern g1="questiondown.caps" u2="&#xc0;" k="35" />
  3177. <hkern g1="questiondown.caps" u2="Z" k="5" />
  3178. <hkern g1="questiondown.caps" u2="X" k="5" />
  3179. <hkern g1="questiondown.caps" u2="U" k="16" />
  3180. <hkern g1="questiondown.caps" u2="T" k="58" />
  3181. <hkern g1="questiondown.caps" u2="S" k="28" />
  3182. <hkern g1="questiondown.caps" u2="R" k="23" />
  3183. <hkern g1="questiondown.caps" u2="Q" k="29" />
  3184. <hkern g1="questiondown.caps" u2="P" k="23" />
  3185. <hkern g1="questiondown.caps" u2="O" k="29" />
  3186. <hkern g1="questiondown.caps" u2="N" k="23" />
  3187. <hkern g1="questiondown.caps" u2="L" k="23" />
  3188. <hkern g1="questiondown.caps" u2="K" k="23" />
  3189. <hkern g1="questiondown.caps" u2="J" k="15" />
  3190. <hkern g1="questiondown.caps" u2="I" k="23" />
  3191. <hkern g1="questiondown.caps" u2="H" k="23" />
  3192. <hkern g1="questiondown.caps" u2="G" k="29" />
  3193. <hkern g1="questiondown.caps" u2="F" k="23" />
  3194. <hkern g1="questiondown.caps" u2="E" k="23" />
  3195. <hkern g1="questiondown.caps" u2="D" k="23" />
  3196. <hkern g1="questiondown.caps" u2="C" k="29" />
  3197. <hkern g1="questiondown.caps" u2="B" k="23" />
  3198. <hkern g1="questiondown.caps" u2="A" k="35" />
  3199. <hkern g1="periodcentered.caps" g2="IJacute" k="15" />
  3200. <hkern g1="periodcentered.caps" g2="Jacute" k="8" />
  3201. <hkern g1="periodcentered.caps" u2="&#x1ef8;" k="88" />
  3202. <hkern g1="periodcentered.caps" u2="&#x1ef2;" k="88" />
  3203. <hkern g1="periodcentered.caps" u2="&#x1ecc;" k="15" />
  3204. <hkern g1="periodcentered.caps" u2="&#x1eca;" k="15" />
  3205. <hkern g1="periodcentered.caps" u2="&#x1ebc;" k="15" />
  3206. <hkern g1="periodcentered.caps" u2="&#x1eb8;" k="15" />
  3207. <hkern g1="periodcentered.caps" u2="&#x1ea0;" k="60" />
  3208. <hkern g1="periodcentered.caps" u2="&#x1e5a;" k="15" />
  3209. <hkern g1="periodcentered.caps" u2="&#x1e44;" k="15" />
  3210. <hkern g1="periodcentered.caps" u2="&#x1e24;" k="15" />
  3211. <hkern g1="periodcentered.caps" u2="&#x1e0c;" k="15" />
  3212. <hkern g1="periodcentered.caps" u2="&#x232;" k="88" />
  3213. <hkern g1="periodcentered.caps" u2="&#x1fe;" k="15" />
  3214. <hkern g1="periodcentered.caps" u2="&#x1fc;" k="60" />
  3215. <hkern g1="periodcentered.caps" u2="&#x1fa;" k="60" />
  3216. <hkern g1="periodcentered.caps" u2="&#x1f4;" k="15" />
  3217. <hkern g1="periodcentered.caps" u2="&#x1ea;" k="15" />
  3218. <hkern g1="periodcentered.caps" u2="&#x1e6;" k="15" />
  3219. <hkern g1="periodcentered.caps" u2="&#x1d1;" k="15" />
  3220. <hkern g1="periodcentered.caps" u2="&#x1cf;" k="15" />
  3221. <hkern g1="periodcentered.caps" u2="&#x1cd;" k="60" />
  3222. <hkern g1="periodcentered.caps" u2="&#x19d;" k="8" />
  3223. <hkern g1="periodcentered.caps" u2="&#x178;" k="88" />
  3224. <hkern g1="periodcentered.caps" u2="&#x176;" k="88" />
  3225. <hkern g1="periodcentered.caps" u2="&#x158;" k="15" />
  3226. <hkern g1="periodcentered.caps" u2="&#x156;" k="15" />
  3227. <hkern g1="periodcentered.caps" u2="&#x154;" k="15" />
  3228. <hkern g1="periodcentered.caps" u2="&#x152;" k="15" />
  3229. <hkern g1="periodcentered.caps" u2="&#x150;" k="15" />
  3230. <hkern g1="periodcentered.caps" u2="&#x14e;" k="15" />
  3231. <hkern g1="periodcentered.caps" u2="&#x14c;" k="15" />
  3232. <hkern g1="periodcentered.caps" u2="&#x14a;" k="15" />
  3233. <hkern g1="periodcentered.caps" u2="&#x147;" k="15" />
  3234. <hkern g1="periodcentered.caps" u2="&#x145;" k="15" />
  3235. <hkern g1="periodcentered.caps" u2="&#x143;" k="15" />
  3236. <hkern g1="periodcentered.caps" u2="&#x141;" k="15" />
  3237. <hkern g1="periodcentered.caps" u2="&#x13f;" k="15" />
  3238. <hkern g1="periodcentered.caps" u2="&#x13d;" k="15" />
  3239. <hkern g1="periodcentered.caps" u2="&#x13b;" k="15" />
  3240. <hkern g1="periodcentered.caps" u2="&#x139;" k="15" />
  3241. <hkern g1="periodcentered.caps" u2="&#x136;" k="15" />
  3242. <hkern g1="periodcentered.caps" u2="&#x134;" k="8" />
  3243. <hkern g1="periodcentered.caps" u2="&#x132;" k="15" />
  3244. <hkern g1="periodcentered.caps" u2="&#x130;" k="15" />
  3245. <hkern g1="periodcentered.caps" u2="&#x12e;" k="15" />
  3246. <hkern g1="periodcentered.caps" u2="&#x12c;" k="15" />
  3247. <hkern g1="periodcentered.caps" u2="&#x12a;" k="15" />
  3248. <hkern g1="periodcentered.caps" u2="&#x128;" k="15" />
  3249. <hkern g1="periodcentered.caps" u2="&#x126;" k="15" />
  3250. <hkern g1="periodcentered.caps" u2="&#x124;" k="15" />
  3251. <hkern g1="periodcentered.caps" u2="&#x122;" k="15" />
  3252. <hkern g1="periodcentered.caps" u2="&#x120;" k="15" />
  3253. <hkern g1="periodcentered.caps" u2="&#x11e;" k="15" />
  3254. <hkern g1="periodcentered.caps" u2="&#x11c;" k="15" />
  3255. <hkern g1="periodcentered.caps" u2="&#x11a;" k="15" />
  3256. <hkern g1="periodcentered.caps" u2="&#x118;" k="15" />
  3257. <hkern g1="periodcentered.caps" u2="&#x116;" k="15" />
  3258. <hkern g1="periodcentered.caps" u2="&#x114;" k="15" />
  3259. <hkern g1="periodcentered.caps" u2="&#x112;" k="15" />
  3260. <hkern g1="periodcentered.caps" u2="&#x110;" k="15" />
  3261. <hkern g1="periodcentered.caps" u2="&#x10e;" k="15" />
  3262. <hkern g1="periodcentered.caps" u2="&#x10c;" k="15" />
  3263. <hkern g1="periodcentered.caps" u2="&#x10a;" k="15" />
  3264. <hkern g1="periodcentered.caps" u2="&#x108;" k="15" />
  3265. <hkern g1="periodcentered.caps" u2="&#x106;" k="15" />
  3266. <hkern g1="periodcentered.caps" u2="&#x104;" k="60" />
  3267. <hkern g1="periodcentered.caps" u2="&#x102;" k="60" />
  3268. <hkern g1="periodcentered.caps" u2="&#x100;" k="60" />
  3269. <hkern g1="periodcentered.caps" u2="&#xde;" k="15" />
  3270. <hkern g1="periodcentered.caps" u2="&#xdd;" k="88" />
  3271. <hkern g1="periodcentered.caps" u2="&#xd8;" k="15" />
  3272. <hkern g1="periodcentered.caps" u2="&#xd6;" k="15" />
  3273. <hkern g1="periodcentered.caps" u2="&#xd5;" k="15" />
  3274. <hkern g1="periodcentered.caps" u2="&#xd4;" k="15" />
  3275. <hkern g1="periodcentered.caps" u2="&#xd3;" k="15" />
  3276. <hkern g1="periodcentered.caps" u2="&#xd2;" k="15" />
  3277. <hkern g1="periodcentered.caps" u2="&#xd1;" k="15" />
  3278. <hkern g1="periodcentered.caps" u2="&#xd0;" k="15" />
  3279. <hkern g1="periodcentered.caps" u2="&#xcf;" k="15" />
  3280. <hkern g1="periodcentered.caps" u2="&#xce;" k="15" />
  3281. <hkern g1="periodcentered.caps" u2="&#xcd;" k="15" />
  3282. <hkern g1="periodcentered.caps" u2="&#xcc;" k="15" />
  3283. <hkern g1="periodcentered.caps" u2="&#xcb;" k="15" />
  3284. <hkern g1="periodcentered.caps" u2="&#xca;" k="15" />
  3285. <hkern g1="periodcentered.caps" u2="&#xc9;" k="15" />
  3286. <hkern g1="periodcentered.caps" u2="&#xc8;" k="15" />
  3287. <hkern g1="periodcentered.caps" u2="&#xc7;" k="15" />
  3288. <hkern g1="periodcentered.caps" u2="&#xc6;" k="60" />
  3289. <hkern g1="periodcentered.caps" u2="&#xc5;" k="60" />
  3290. <hkern g1="periodcentered.caps" u2="&#xc4;" k="60" />
  3291. <hkern g1="periodcentered.caps" u2="&#xc3;" k="60" />
  3292. <hkern g1="periodcentered.caps" u2="&#xc2;" k="60" />
  3293. <hkern g1="periodcentered.caps" u2="&#xc1;" k="60" />
  3294. <hkern g1="periodcentered.caps" u2="&#xc0;" k="60" />
  3295. <hkern g1="periodcentered.caps" u2="Y" k="88" />
  3296. <hkern g1="periodcentered.caps" u2="R" k="15" />
  3297. <hkern g1="periodcentered.caps" u2="Q" k="15" />
  3298. <hkern g1="periodcentered.caps" u2="P" k="15" />
  3299. <hkern g1="periodcentered.caps" u2="O" k="15" />
  3300. <hkern g1="periodcentered.caps" u2="N" k="15" />
  3301. <hkern g1="periodcentered.caps" u2="M" k="15" />
  3302. <hkern g1="periodcentered.caps" u2="L" k="15" />
  3303. <hkern g1="periodcentered.caps" u2="K" k="15" />
  3304. <hkern g1="periodcentered.caps" u2="J" k="8" />
  3305. <hkern g1="periodcentered.caps" u2="I" k="15" />
  3306. <hkern g1="periodcentered.caps" u2="H" k="15" />
  3307. <hkern g1="periodcentered.caps" u2="G" k="15" />
  3308. <hkern g1="periodcentered.caps" u2="F" k="15" />
  3309. <hkern g1="periodcentered.caps" u2="E" k="15" />
  3310. <hkern g1="periodcentered.caps" u2="D" k="15" />
  3311. <hkern g1="periodcentered.caps" u2="C" k="15" />
  3312. <hkern g1="periodcentered.caps" u2="B" k="15" />
  3313. <hkern g1="periodcentered.caps" u2="A" k="60" />
  3314. <hkern g1="asterisk.caps" g2="Jacute" k="8" />
  3315. <hkern g1="asterisk.caps" u2="&#x1ecc;" k="33" />
  3316. <hkern g1="asterisk.caps" u2="&#x1ea0;" k="75" />
  3317. <hkern g1="asterisk.caps" u2="&#x1fe;" k="33" />
  3318. <hkern g1="asterisk.caps" u2="&#x1fc;" k="75" />
  3319. <hkern g1="asterisk.caps" u2="&#x1fa;" k="75" />
  3320. <hkern g1="asterisk.caps" u2="&#x1f4;" k="33" />
  3321. <hkern g1="asterisk.caps" u2="&#x1ea;" k="33" />
  3322. <hkern g1="asterisk.caps" u2="&#x1e6;" k="33" />
  3323. <hkern g1="asterisk.caps" u2="&#x1d1;" k="33" />
  3324. <hkern g1="asterisk.caps" u2="&#x1cd;" k="75" />
  3325. <hkern g1="asterisk.caps" u2="&#x19d;" k="8" />
  3326. <hkern g1="asterisk.caps" u2="&#x152;" k="33" />
  3327. <hkern g1="asterisk.caps" u2="&#x150;" k="33" />
  3328. <hkern g1="asterisk.caps" u2="&#x14e;" k="33" />
  3329. <hkern g1="asterisk.caps" u2="&#x14c;" k="33" />
  3330. <hkern g1="asterisk.caps" u2="&#x134;" k="8" />
  3331. <hkern g1="asterisk.caps" u2="&#x122;" k="33" />
  3332. <hkern g1="asterisk.caps" u2="&#x120;" k="33" />
  3333. <hkern g1="asterisk.caps" u2="&#x11e;" k="33" />
  3334. <hkern g1="asterisk.caps" u2="&#x11c;" k="33" />
  3335. <hkern g1="asterisk.caps" u2="&#x10c;" k="33" />
  3336. <hkern g1="asterisk.caps" u2="&#x10a;" k="33" />
  3337. <hkern g1="asterisk.caps" u2="&#x108;" k="33" />
  3338. <hkern g1="asterisk.caps" u2="&#x106;" k="33" />
  3339. <hkern g1="asterisk.caps" u2="&#x104;" k="75" />
  3340. <hkern g1="asterisk.caps" u2="&#x102;" k="75" />
  3341. <hkern g1="asterisk.caps" u2="&#x100;" k="75" />
  3342. <hkern g1="asterisk.caps" u2="&#xd8;" k="33" />
  3343. <hkern g1="asterisk.caps" u2="&#xd6;" k="33" />
  3344. <hkern g1="asterisk.caps" u2="&#xd5;" k="33" />
  3345. <hkern g1="asterisk.caps" u2="&#xd4;" k="33" />
  3346. <hkern g1="asterisk.caps" u2="&#xd3;" k="33" />
  3347. <hkern g1="asterisk.caps" u2="&#xd2;" k="33" />
  3348. <hkern g1="asterisk.caps" u2="&#xc7;" k="33" />
  3349. <hkern g1="asterisk.caps" u2="&#xc6;" k="75" />
  3350. <hkern g1="asterisk.caps" u2="&#xc5;" k="75" />
  3351. <hkern g1="asterisk.caps" u2="&#xc4;" k="75" />
  3352. <hkern g1="asterisk.caps" u2="&#xc3;" k="75" />
  3353. <hkern g1="asterisk.caps" u2="&#xc2;" k="75" />
  3354. <hkern g1="asterisk.caps" u2="&#xc1;" k="75" />
  3355. <hkern g1="asterisk.caps" u2="&#xc0;" k="75" />
  3356. <hkern g1="asterisk.caps" u2="Q" k="33" />
  3357. <hkern g1="asterisk.caps" u2="O" k="33" />
  3358. <hkern g1="asterisk.caps" u2="M" k="15" />
  3359. <hkern g1="asterisk.caps" u2="J" k="8" />
  3360. <hkern g1="asterisk.caps" u2="G" k="33" />
  3361. <hkern g1="asterisk.caps" u2="C" k="33" />
  3362. <hkern g1="asterisk.caps" u2="A" k="75" />
  3363. <hkern g1="parenleft.caps" u2="&#x1ecc;" k="23" />
  3364. <hkern g1="parenleft.caps" u2="&#x1fe;" k="23" />
  3365. <hkern g1="parenleft.caps" u2="&#x1f4;" k="23" />
  3366. <hkern g1="parenleft.caps" u2="&#x1ea;" k="23" />
  3367. <hkern g1="parenleft.caps" u2="&#x1e6;" k="23" />
  3368. <hkern g1="parenleft.caps" u2="&#x1d1;" k="23" />
  3369. <hkern g1="parenleft.caps" u2="&#x152;" k="23" />
  3370. <hkern g1="parenleft.caps" u2="&#x150;" k="23" />
  3371. <hkern g1="parenleft.caps" u2="&#x14e;" k="23" />
  3372. <hkern g1="parenleft.caps" u2="&#x14c;" k="23" />
  3373. <hkern g1="parenleft.caps" u2="&#x122;" k="23" />
  3374. <hkern g1="parenleft.caps" u2="&#x120;" k="23" />
  3375. <hkern g1="parenleft.caps" u2="&#x11e;" k="23" />
  3376. <hkern g1="parenleft.caps" u2="&#x11c;" k="23" />
  3377. <hkern g1="parenleft.caps" u2="&#x10c;" k="23" />
  3378. <hkern g1="parenleft.caps" u2="&#x10a;" k="23" />
  3379. <hkern g1="parenleft.caps" u2="&#x108;" k="23" />
  3380. <hkern g1="parenleft.caps" u2="&#x106;" k="23" />
  3381. <hkern g1="parenleft.caps" u2="&#xd8;" k="23" />
  3382. <hkern g1="parenleft.caps" u2="&#xd6;" k="23" />
  3383. <hkern g1="parenleft.caps" u2="&#xd5;" k="23" />
  3384. <hkern g1="parenleft.caps" u2="&#xd4;" k="23" />
  3385. <hkern g1="parenleft.caps" u2="&#xd3;" k="23" />
  3386. <hkern g1="parenleft.caps" u2="&#xd2;" k="23" />
  3387. <hkern g1="parenleft.caps" u2="&#xc7;" k="23" />
  3388. <hkern g1="parenleft.caps" u2="Q" k="23" />
  3389. <hkern g1="parenleft.caps" u2="O" k="23" />
  3390. <hkern g1="parenleft.caps" u2="G" k="23" />
  3391. <hkern g1="parenleft.caps" u2="C" k="23" />
  3392. <hkern g1="parenright.caps" g2="IJacute" k="30" />
  3393. <hkern g1="parenright.caps" u2="&#x1ef8;" k="30" />
  3394. <hkern g1="parenright.caps" u2="&#x1ef2;" k="30" />
  3395. <hkern g1="parenright.caps" u2="&#x1ee4;" k="23" />
  3396. <hkern g1="parenright.caps" u2="&#x1ecc;" k="38" />
  3397. <hkern g1="parenright.caps" u2="&#x1eca;" k="30" />
  3398. <hkern g1="parenright.caps" u2="&#x1ebc;" k="30" />
  3399. <hkern g1="parenright.caps" u2="&#x1eb8;" k="30" />
  3400. <hkern g1="parenright.caps" u2="&#x1ea0;" k="38" />
  3401. <hkern g1="parenright.caps" u2="&#x1e92;" k="23" />
  3402. <hkern g1="parenright.caps" u2="&#x1e6c;" k="45" />
  3403. <hkern g1="parenright.caps" u2="&#x1e62;" k="38" />
  3404. <hkern g1="parenright.caps" u2="&#x1e5a;" k="30" />
  3405. <hkern g1="parenright.caps" u2="&#x1e44;" k="30" />
  3406. <hkern g1="parenright.caps" u2="&#x1e24;" k="30" />
  3407. <hkern g1="parenright.caps" u2="&#x1e0c;" k="30" />
  3408. <hkern g1="parenright.caps" u2="&#x232;" k="30" />
  3409. <hkern g1="parenright.caps" u2="&#x21a;" k="45" />
  3410. <hkern g1="parenright.caps" u2="&#x218;" k="38" />
  3411. <hkern g1="parenright.caps" u2="&#x1fe;" k="38" />
  3412. <hkern g1="parenright.caps" u2="&#x1fc;" k="38" />
  3413. <hkern g1="parenright.caps" u2="&#x1fa;" k="38" />
  3414. <hkern g1="parenright.caps" u2="&#x1f4;" k="38" />
  3415. <hkern g1="parenright.caps" u2="&#x1ea;" k="38" />
  3416. <hkern g1="parenright.caps" u2="&#x1e6;" k="38" />
  3417. <hkern g1="parenright.caps" u2="&#x1db;" k="23" />
  3418. <hkern g1="parenright.caps" u2="&#x1d9;" k="23" />
  3419. <hkern g1="parenright.caps" u2="&#x1d7;" k="23" />
  3420. <hkern g1="parenright.caps" u2="&#x1d5;" k="23" />
  3421. <hkern g1="parenright.caps" u2="&#x1d3;" k="23" />
  3422. <hkern g1="parenright.caps" u2="&#x1d1;" k="38" />
  3423. <hkern g1="parenright.caps" u2="&#x1cf;" k="30" />
  3424. <hkern g1="parenright.caps" u2="&#x1cd;" k="38" />
  3425. <hkern g1="parenright.caps" u2="&#x17d;" k="23" />
  3426. <hkern g1="parenright.caps" u2="&#x17b;" k="23" />
  3427. <hkern g1="parenright.caps" u2="&#x179;" k="23" />
  3428. <hkern g1="parenright.caps" u2="&#x178;" k="30" />
  3429. <hkern g1="parenright.caps" u2="&#x176;" k="30" />
  3430. <hkern g1="parenright.caps" u2="&#x172;" k="23" />
  3431. <hkern g1="parenright.caps" u2="&#x170;" k="23" />
  3432. <hkern g1="parenright.caps" u2="&#x16e;" k="23" />
  3433. <hkern g1="parenright.caps" u2="&#x16c;" k="23" />
  3434. <hkern g1="parenright.caps" u2="&#x16a;" k="23" />
  3435. <hkern g1="parenright.caps" u2="&#x168;" k="23" />
  3436. <hkern g1="parenright.caps" u2="&#x166;" k="45" />
  3437. <hkern g1="parenright.caps" u2="&#x164;" k="45" />
  3438. <hkern g1="parenright.caps" u2="&#x162;" k="45" />
  3439. <hkern g1="parenright.caps" u2="&#x160;" k="38" />
  3440. <hkern g1="parenright.caps" u2="&#x15e;" k="38" />
  3441. <hkern g1="parenright.caps" u2="&#x15c;" k="38" />
  3442. <hkern g1="parenright.caps" u2="&#x15a;" k="38" />
  3443. <hkern g1="parenright.caps" u2="&#x158;" k="30" />
  3444. <hkern g1="parenright.caps" u2="&#x156;" k="30" />
  3445. <hkern g1="parenright.caps" u2="&#x154;" k="30" />
  3446. <hkern g1="parenright.caps" u2="&#x152;" k="38" />
  3447. <hkern g1="parenright.caps" u2="&#x150;" k="38" />
  3448. <hkern g1="parenright.caps" u2="&#x14e;" k="38" />
  3449. <hkern g1="parenright.caps" u2="&#x14c;" k="38" />
  3450. <hkern g1="parenright.caps" u2="&#x14a;" k="30" />
  3451. <hkern g1="parenright.caps" u2="&#x147;" k="30" />
  3452. <hkern g1="parenright.caps" u2="&#x145;" k="30" />
  3453. <hkern g1="parenright.caps" u2="&#x143;" k="30" />
  3454. <hkern g1="parenright.caps" u2="&#x141;" k="30" />
  3455. <hkern g1="parenright.caps" u2="&#x13f;" k="30" />
  3456. <hkern g1="parenright.caps" u2="&#x13d;" k="30" />
  3457. <hkern g1="parenright.caps" u2="&#x13b;" k="30" />
  3458. <hkern g1="parenright.caps" u2="&#x139;" k="30" />
  3459. <hkern g1="parenright.caps" u2="&#x136;" k="30" />
  3460. <hkern g1="parenright.caps" u2="&#x132;" k="30" />
  3461. <hkern g1="parenright.caps" u2="&#x130;" k="30" />
  3462. <hkern g1="parenright.caps" u2="&#x12e;" k="30" />
  3463. <hkern g1="parenright.caps" u2="&#x12c;" k="30" />
  3464. <hkern g1="parenright.caps" u2="&#x12a;" k="30" />
  3465. <hkern g1="parenright.caps" u2="&#x128;" k="30" />
  3466. <hkern g1="parenright.caps" u2="&#x126;" k="30" />
  3467. <hkern g1="parenright.caps" u2="&#x124;" k="30" />
  3468. <hkern g1="parenright.caps" u2="&#x122;" k="38" />
  3469. <hkern g1="parenright.caps" u2="&#x120;" k="38" />
  3470. <hkern g1="parenright.caps" u2="&#x11e;" k="38" />
  3471. <hkern g1="parenright.caps" u2="&#x11c;" k="38" />
  3472. <hkern g1="parenright.caps" u2="&#x11a;" k="30" />
  3473. <hkern g1="parenright.caps" u2="&#x118;" k="30" />
  3474. <hkern g1="parenright.caps" u2="&#x116;" k="30" />
  3475. <hkern g1="parenright.caps" u2="&#x114;" k="30" />
  3476. <hkern g1="parenright.caps" u2="&#x112;" k="30" />
  3477. <hkern g1="parenright.caps" u2="&#x110;" k="30" />
  3478. <hkern g1="parenright.caps" u2="&#x10e;" k="30" />
  3479. <hkern g1="parenright.caps" u2="&#x10c;" k="38" />
  3480. <hkern g1="parenright.caps" u2="&#x10a;" k="38" />
  3481. <hkern g1="parenright.caps" u2="&#x108;" k="38" />
  3482. <hkern g1="parenright.caps" u2="&#x106;" k="38" />
  3483. <hkern g1="parenright.caps" u2="&#x104;" k="38" />
  3484. <hkern g1="parenright.caps" u2="&#x102;" k="38" />
  3485. <hkern g1="parenright.caps" u2="&#x100;" k="38" />
  3486. <hkern g1="parenright.caps" u2="&#xde;" k="30" />
  3487. <hkern g1="parenright.caps" u2="&#xdd;" k="30" />
  3488. <hkern g1="parenright.caps" u2="&#xdc;" k="23" />
  3489. <hkern g1="parenright.caps" u2="&#xdb;" k="23" />
  3490. <hkern g1="parenright.caps" u2="&#xda;" k="23" />
  3491. <hkern g1="parenright.caps" u2="&#xd9;" k="23" />
  3492. <hkern g1="parenright.caps" u2="&#xd8;" k="38" />
  3493. <hkern g1="parenright.caps" u2="&#xd6;" k="38" />
  3494. <hkern g1="parenright.caps" u2="&#xd5;" k="38" />
  3495. <hkern g1="parenright.caps" u2="&#xd4;" k="38" />
  3496. <hkern g1="parenright.caps" u2="&#xd3;" k="38" />
  3497. <hkern g1="parenright.caps" u2="&#xd2;" k="38" />
  3498. <hkern g1="parenright.caps" u2="&#xd1;" k="30" />
  3499. <hkern g1="parenright.caps" u2="&#xd0;" k="30" />
  3500. <hkern g1="parenright.caps" u2="&#xcf;" k="30" />
  3501. <hkern g1="parenright.caps" u2="&#xce;" k="30" />
  3502. <hkern g1="parenright.caps" u2="&#xcd;" k="30" />
  3503. <hkern g1="parenright.caps" u2="&#xcc;" k="30" />
  3504. <hkern g1="parenright.caps" u2="&#xcb;" k="30" />
  3505. <hkern g1="parenright.caps" u2="&#xca;" k="30" />
  3506. <hkern g1="parenright.caps" u2="&#xc9;" k="30" />
  3507. <hkern g1="parenright.caps" u2="&#xc8;" k="30" />
  3508. <hkern g1="parenright.caps" u2="&#xc7;" k="38" />
  3509. <hkern g1="parenright.caps" u2="&#xc6;" k="38" />
  3510. <hkern g1="parenright.caps" u2="&#xc5;" k="38" />
  3511. <hkern g1="parenright.caps" u2="&#xc4;" k="38" />
  3512. <hkern g1="parenright.caps" u2="&#xc3;" k="38" />
  3513. <hkern g1="parenright.caps" u2="&#xc2;" k="38" />
  3514. <hkern g1="parenright.caps" u2="&#xc1;" k="38" />
  3515. <hkern g1="parenright.caps" u2="&#xc0;" k="38" />
  3516. <hkern g1="parenright.caps" u2="Z" k="23" />
  3517. <hkern g1="parenright.caps" u2="Y" k="30" />
  3518. <hkern g1="parenright.caps" u2="X" k="30" />
  3519. <hkern g1="parenright.caps" u2="U" k="23" />
  3520. <hkern g1="parenright.caps" u2="T" k="45" />
  3521. <hkern g1="parenright.caps" u2="S" k="38" />
  3522. <hkern g1="parenright.caps" u2="R" k="30" />
  3523. <hkern g1="parenright.caps" u2="Q" k="38" />
  3524. <hkern g1="parenright.caps" u2="P" k="30" />
  3525. <hkern g1="parenright.caps" u2="O" k="38" />
  3526. <hkern g1="parenright.caps" u2="N" k="30" />
  3527. <hkern g1="parenright.caps" u2="M" k="23" />
  3528. <hkern g1="parenright.caps" u2="L" k="30" />
  3529. <hkern g1="parenright.caps" u2="K" k="30" />
  3530. <hkern g1="parenright.caps" u2="I" k="30" />
  3531. <hkern g1="parenright.caps" u2="H" k="30" />
  3532. <hkern g1="parenright.caps" u2="G" k="38" />
  3533. <hkern g1="parenright.caps" u2="F" k="30" />
  3534. <hkern g1="parenright.caps" u2="E" k="30" />
  3535. <hkern g1="parenright.caps" u2="D" k="30" />
  3536. <hkern g1="parenright.caps" u2="C" k="38" />
  3537. <hkern g1="parenright.caps" u2="B" k="30" />
  3538. <hkern g1="parenright.caps" u2="A" k="38" />
  3539. <hkern g1="hyphen.caps" u2="&#x2211;" k="30" />
  3540. <hkern g1="hyphen.caps" u2="&#x394;" k="15" />
  3541. <hkern g1="hyphen.caps" u2="X" k="23" />
  3542. <hkern g1="endash.caps" u2="X" k="23" />
  3543. <hkern g1="quotedbl.caps" u2="&#x1ea0;" k="80" />
  3544. <hkern g1="quotedbl.caps" u2="&#x1fc;" k="80" />
  3545. <hkern g1="quotedbl.caps" u2="&#x1fa;" k="80" />
  3546. <hkern g1="quotedbl.caps" u2="&#x1cd;" k="80" />
  3547. <hkern g1="quotedbl.caps" u2="&#x104;" k="80" />
  3548. <hkern g1="quotedbl.caps" u2="&#x102;" k="80" />
  3549. <hkern g1="quotedbl.caps" u2="&#x100;" k="80" />
  3550. <hkern g1="quotedbl.caps" u2="&#xc6;" k="80" />
  3551. <hkern g1="quotedbl.caps" u2="&#xc5;" k="80" />
  3552. <hkern g1="quotedbl.caps" u2="&#xc4;" k="80" />
  3553. <hkern g1="quotedbl.caps" u2="&#xc3;" k="80" />
  3554. <hkern g1="quotedbl.caps" u2="&#xc2;" k="80" />
  3555. <hkern g1="quotedbl.caps" u2="&#xc1;" k="80" />
  3556. <hkern g1="quotedbl.caps" u2="&#xc0;" k="80" />
  3557. <hkern g1="quotedbl.caps" u2="A" k="80" />
  3558. <hkern g1="quotesingle.caps" g2="IJacute" k="23" />
  3559. <hkern g1="quotesingle.caps" g2="Jacute" k="8" />
  3560. <hkern g1="quotesingle.caps" u2="&#x1ecc;" k="35" />
  3561. <hkern g1="quotesingle.caps" u2="&#x1eca;" k="23" />
  3562. <hkern g1="quotesingle.caps" u2="&#x1ebc;" k="23" />
  3563. <hkern g1="quotesingle.caps" u2="&#x1eb8;" k="23" />
  3564. <hkern g1="quotesingle.caps" u2="&#x1ea0;" k="80" />
  3565. <hkern g1="quotesingle.caps" u2="&#x1e5a;" k="23" />
  3566. <hkern g1="quotesingle.caps" u2="&#x1e44;" k="23" />
  3567. <hkern g1="quotesingle.caps" u2="&#x1e24;" k="23" />
  3568. <hkern g1="quotesingle.caps" u2="&#x1e0c;" k="23" />
  3569. <hkern g1="quotesingle.caps" u2="&#x1fe;" k="35" />
  3570. <hkern g1="quotesingle.caps" u2="&#x1fc;" k="80" />
  3571. <hkern g1="quotesingle.caps" u2="&#x1fa;" k="80" />
  3572. <hkern g1="quotesingle.caps" u2="&#x1f4;" k="35" />
  3573. <hkern g1="quotesingle.caps" u2="&#x1ea;" k="35" />
  3574. <hkern g1="quotesingle.caps" u2="&#x1e6;" k="35" />
  3575. <hkern g1="quotesingle.caps" u2="&#x1d1;" k="35" />
  3576. <hkern g1="quotesingle.caps" u2="&#x1cf;" k="23" />
  3577. <hkern g1="quotesingle.caps" u2="&#x1cd;" k="80" />
  3578. <hkern g1="quotesingle.caps" u2="&#x19d;" k="8" />
  3579. <hkern g1="quotesingle.caps" u2="&#x158;" k="23" />
  3580. <hkern g1="quotesingle.caps" u2="&#x156;" k="23" />
  3581. <hkern g1="quotesingle.caps" u2="&#x154;" k="23" />
  3582. <hkern g1="quotesingle.caps" u2="&#x152;" k="35" />
  3583. <hkern g1="quotesingle.caps" u2="&#x150;" k="35" />
  3584. <hkern g1="quotesingle.caps" u2="&#x14e;" k="35" />
  3585. <hkern g1="quotesingle.caps" u2="&#x14c;" k="35" />
  3586. <hkern g1="quotesingle.caps" u2="&#x14a;" k="23" />
  3587. <hkern g1="quotesingle.caps" u2="&#x147;" k="23" />
  3588. <hkern g1="quotesingle.caps" u2="&#x145;" k="23" />
  3589. <hkern g1="quotesingle.caps" u2="&#x143;" k="23" />
  3590. <hkern g1="quotesingle.caps" u2="&#x141;" k="23" />
  3591. <hkern g1="quotesingle.caps" u2="&#x13f;" k="23" />
  3592. <hkern g1="quotesingle.caps" u2="&#x13d;" k="23" />
  3593. <hkern g1="quotesingle.caps" u2="&#x13b;" k="23" />
  3594. <hkern g1="quotesingle.caps" u2="&#x139;" k="23" />
  3595. <hkern g1="quotesingle.caps" u2="&#x136;" k="23" />
  3596. <hkern g1="quotesingle.caps" u2="&#x134;" k="8" />
  3597. <hkern g1="quotesingle.caps" u2="&#x132;" k="23" />
  3598. <hkern g1="quotesingle.caps" u2="&#x130;" k="23" />
  3599. <hkern g1="quotesingle.caps" u2="&#x12e;" k="23" />
  3600. <hkern g1="quotesingle.caps" u2="&#x12c;" k="23" />
  3601. <hkern g1="quotesingle.caps" u2="&#x12a;" k="23" />
  3602. <hkern g1="quotesingle.caps" u2="&#x128;" k="23" />
  3603. <hkern g1="quotesingle.caps" u2="&#x126;" k="23" />
  3604. <hkern g1="quotesingle.caps" u2="&#x124;" k="23" />
  3605. <hkern g1="quotesingle.caps" u2="&#x122;" k="35" />
  3606. <hkern g1="quotesingle.caps" u2="&#x120;" k="35" />
  3607. <hkern g1="quotesingle.caps" u2="&#x11e;" k="35" />
  3608. <hkern g1="quotesingle.caps" u2="&#x11c;" k="35" />
  3609. <hkern g1="quotesingle.caps" u2="&#x11a;" k="23" />
  3610. <hkern g1="quotesingle.caps" u2="&#x118;" k="23" />
  3611. <hkern g1="quotesingle.caps" u2="&#x116;" k="23" />
  3612. <hkern g1="quotesingle.caps" u2="&#x114;" k="23" />
  3613. <hkern g1="quotesingle.caps" u2="&#x112;" k="23" />
  3614. <hkern g1="quotesingle.caps" u2="&#x110;" k="23" />
  3615. <hkern g1="quotesingle.caps" u2="&#x10e;" k="23" />
  3616. <hkern g1="quotesingle.caps" u2="&#x10c;" k="35" />
  3617. <hkern g1="quotesingle.caps" u2="&#x10a;" k="35" />
  3618. <hkern g1="quotesingle.caps" u2="&#x108;" k="35" />
  3619. <hkern g1="quotesingle.caps" u2="&#x106;" k="35" />
  3620. <hkern g1="quotesingle.caps" u2="&#x104;" k="80" />
  3621. <hkern g1="quotesingle.caps" u2="&#x102;" k="80" />
  3622. <hkern g1="quotesingle.caps" u2="&#x100;" k="80" />
  3623. <hkern g1="quotesingle.caps" u2="&#xde;" k="23" />
  3624. <hkern g1="quotesingle.caps" u2="&#xd8;" k="35" />
  3625. <hkern g1="quotesingle.caps" u2="&#xd6;" k="35" />
  3626. <hkern g1="quotesingle.caps" u2="&#xd5;" k="35" />
  3627. <hkern g1="quotesingle.caps" u2="&#xd4;" k="35" />
  3628. <hkern g1="quotesingle.caps" u2="&#xd3;" k="35" />
  3629. <hkern g1="quotesingle.caps" u2="&#xd2;" k="35" />
  3630. <hkern g1="quotesingle.caps" u2="&#xd1;" k="23" />
  3631. <hkern g1="quotesingle.caps" u2="&#xd0;" k="23" />
  3632. <hkern g1="quotesingle.caps" u2="&#xcf;" k="23" />
  3633. <hkern g1="quotesingle.caps" u2="&#xce;" k="23" />
  3634. <hkern g1="quotesingle.caps" u2="&#xcd;" k="23" />
  3635. <hkern g1="quotesingle.caps" u2="&#xcc;" k="23" />
  3636. <hkern g1="quotesingle.caps" u2="&#xcb;" k="23" />
  3637. <hkern g1="quotesingle.caps" u2="&#xca;" k="23" />
  3638. <hkern g1="quotesingle.caps" u2="&#xc9;" k="23" />
  3639. <hkern g1="quotesingle.caps" u2="&#xc8;" k="23" />
  3640. <hkern g1="quotesingle.caps" u2="&#xc7;" k="35" />
  3641. <hkern g1="quotesingle.caps" u2="&#xc6;" k="80" />
  3642. <hkern g1="quotesingle.caps" u2="&#xc5;" k="80" />
  3643. <hkern g1="quotesingle.caps" u2="&#xc4;" k="80" />
  3644. <hkern g1="quotesingle.caps" u2="&#xc3;" k="80" />
  3645. <hkern g1="quotesingle.caps" u2="&#xc2;" k="80" />
  3646. <hkern g1="quotesingle.caps" u2="&#xc1;" k="80" />
  3647. <hkern g1="quotesingle.caps" u2="&#xc0;" k="80" />
  3648. <hkern g1="quotesingle.caps" u2="R" k="23" />
  3649. <hkern g1="quotesingle.caps" u2="Q" k="35" />
  3650. <hkern g1="quotesingle.caps" u2="P" k="23" />
  3651. <hkern g1="quotesingle.caps" u2="O" k="35" />
  3652. <hkern g1="quotesingle.caps" u2="N" k="23" />
  3653. <hkern g1="quotesingle.caps" u2="L" k="23" />
  3654. <hkern g1="quotesingle.caps" u2="K" k="23" />
  3655. <hkern g1="quotesingle.caps" u2="J" k="8" />
  3656. <hkern g1="quotesingle.caps" u2="I" k="23" />
  3657. <hkern g1="quotesingle.caps" u2="H" k="23" />
  3658. <hkern g1="quotesingle.caps" u2="G" k="35" />
  3659. <hkern g1="quotesingle.caps" u2="F" k="23" />
  3660. <hkern g1="quotesingle.caps" u2="E" k="23" />
  3661. <hkern g1="quotesingle.caps" u2="D" k="23" />
  3662. <hkern g1="quotesingle.caps" u2="C" k="35" />
  3663. <hkern g1="quotesingle.caps" u2="B" k="23" />
  3664. <hkern g1="quotesingle.caps" u2="A" k="80" />
  3665. <hkern g1="parenleft.sc" g2="germandbls.sc" k="11" />
  3666. <hkern g1="parenleft.sc" g2="sdotbelow.sc" k="13" />
  3667. <hkern g1="parenleft.sc" g2="scommaaccent.sc" k="13" />
  3668. <hkern g1="parenleft.sc" g2="scircumflex.sc" k="13" />
  3669. <hkern g1="parenleft.sc" g2="scedilla.sc" k="13" />
  3670. <hkern g1="parenleft.sc" g2="scaron.sc" k="13" />
  3671. <hkern g1="parenleft.sc" g2="sacute.sc" k="13" />
  3672. <hkern g1="parenleft.sc" g2="s.sc" k="13" />
  3673. <hkern g1="parenleft.sc" g2="rdotbelow.sc" k="11" />
  3674. <hkern g1="parenleft.sc" g2="rcommaaccent.sc" k="11" />
  3675. <hkern g1="parenleft.sc" g2="rcaron.sc" k="11" />
  3676. <hkern g1="parenleft.sc" g2="racute.sc" k="11" />
  3677. <hkern g1="parenleft.sc" g2="r.sc" k="11" />
  3678. <hkern g1="parenleft.sc" g2="q.sc" k="30" />
  3679. <hkern g1="parenleft.sc" g2="thorn.sc" k="11" />
  3680. <hkern g1="parenleft.sc" g2="p.sc" k="11" />
  3681. <hkern g1="parenleft.sc" g2="oe.sc" k="30" />
  3682. <hkern g1="parenleft.sc" g2="otilde.sc" k="30" />
  3683. <hkern g1="parenleft.sc" g2="oslashacute.sc" k="30" />
  3684. <hkern g1="parenleft.sc" g2="oslash.sc" k="30" />
  3685. <hkern g1="parenleft.sc" g2="oogonek.sc" k="30" />
  3686. <hkern g1="parenleft.sc" g2="omacron.sc" k="30" />
  3687. <hkern g1="parenleft.sc" g2="ohungarumlaut.sc" k="30" />
  3688. <hkern g1="parenleft.sc" g2="ograve.sc" k="30" />
  3689. <hkern g1="parenleft.sc" g2="odotbelow.sc" k="30" />
  3690. <hkern g1="parenleft.sc" g2="odieresis.sc" k="30" />
  3691. <hkern g1="parenleft.sc" g2="ocircumflex.sc" k="30" />
  3692. <hkern g1="parenleft.sc" g2="ocaron.sc" k="30" />
  3693. <hkern g1="parenleft.sc" g2="obreve.sc" k="30" />
  3694. <hkern g1="parenleft.sc" g2="oacute.sc" k="30" />
  3695. <hkern g1="parenleft.sc" g2="o.sc" k="30" />
  3696. <hkern g1="parenleft.sc" g2="ntilde.sc" k="11" />
  3697. <hkern g1="parenleft.sc" g2="eng.sc" k="11" />
  3698. <hkern g1="parenleft.sc" g2="ndotaccent.sc" k="11" />
  3699. <hkern g1="parenleft.sc" g2="ncommaaccent.sc" k="11" />
  3700. <hkern g1="parenleft.sc" g2="ncaron.sc" k="11" />
  3701. <hkern g1="parenleft.sc" g2="nacute.sc" k="11" />
  3702. <hkern g1="parenleft.sc" g2="n.sc" k="11" />
  3703. <hkern g1="parenleft.sc" g2="lslash.sc" k="11" />
  3704. <hkern g1="parenleft.sc" g2="ldot.sc" k="11" />
  3705. <hkern g1="parenleft.sc" g2="lcommaaccent.sc" k="11" />
  3706. <hkern g1="parenleft.sc" g2="lcaron.sc" k="11" />
  3707. <hkern g1="parenleft.sc" g2="lacute.sc" k="11" />
  3708. <hkern g1="parenleft.sc" g2="l.sc" k="11" />
  3709. <hkern g1="parenleft.sc" g2="kgreenlandic.sc" k="11" />
  3710. <hkern g1="parenleft.sc" g2="kcommaaccent.sc" k="11" />
  3711. <hkern g1="parenleft.sc" g2="k.sc" k="11" />
  3712. <hkern g1="parenleft.sc" g2="itilde.sc" k="11" />
  3713. <hkern g1="parenleft.sc" g2="iogonek.sc" k="11" />
  3714. <hkern g1="parenleft.sc" g2="imacron.sc" k="11" />
  3715. <hkern g1="parenleft.sc" g2="ij.sc" k="11" />
  3716. <hkern g1="parenleft.sc" g2="igrave.sc" k="11" />
  3717. <hkern g1="parenleft.sc" g2="idotbelow.sc" k="11" />
  3718. <hkern g1="parenleft.sc" g2="idotaccent.sc" k="11" />
  3719. <hkern g1="parenleft.sc" g2="idieresis.sc" k="11" />
  3720. <hkern g1="parenleft.sc" g2="icircumflex.sc" k="11" />
  3721. <hkern g1="parenleft.sc" g2="icaron.sc" k="11" />
  3722. <hkern g1="parenleft.sc" g2="ibreve.sc" k="11" />
  3723. <hkern g1="parenleft.sc" g2="iacute.sc" k="11" />
  3724. <hkern g1="parenleft.sc" g2="dotlessi.sc" k="11" />
  3725. <hkern g1="parenleft.sc" g2="i.sc" k="11" />
  3726. <hkern g1="parenleft.sc" g2="hdotbelow.sc" k="11" />
  3727. <hkern g1="parenleft.sc" g2="hcircumflex.sc" k="11" />
  3728. <hkern g1="parenleft.sc" g2="hbar.sc" k="11" />
  3729. <hkern g1="parenleft.sc" g2="h.sc" k="11" />
  3730. <hkern g1="parenleft.sc" g2="gdotaccent.sc" k="30" />
  3731. <hkern g1="parenleft.sc" g2="gcommaaccent.sc" k="30" />
  3732. <hkern g1="parenleft.sc" g2="gcircumflex.sc" k="30" />
  3733. <hkern g1="parenleft.sc" g2="gcaron.sc" k="30" />
  3734. <hkern g1="parenleft.sc" g2="gbreve.sc" k="30" />
  3735. <hkern g1="parenleft.sc" g2="gacute.sc" k="30" />
  3736. <hkern g1="parenleft.sc" g2="g.sc" k="30" />
  3737. <hkern g1="parenleft.sc" g2="f.sc" k="11" />
  3738. <hkern g1="parenleft.sc" g2="schwa.sc" k="30" />
  3739. <hkern g1="parenleft.sc" g2="etilde.sc" k="11" />
  3740. <hkern g1="parenleft.sc" g2="eogonek.sc" k="11" />
  3741. <hkern g1="parenleft.sc" g2="emacron.sc" k="11" />
  3742. <hkern g1="parenleft.sc" g2="egrave.sc" k="11" />
  3743. <hkern g1="parenleft.sc" g2="edotbelow.sc" k="11" />
  3744. <hkern g1="parenleft.sc" g2="edotaccent.sc" k="11" />
  3745. <hkern g1="parenleft.sc" g2="edieresis.sc" k="11" />
  3746. <hkern g1="parenleft.sc" g2="ecircumflex.sc" k="11" />
  3747. <hkern g1="parenleft.sc" g2="ecaron.sc" k="11" />
  3748. <hkern g1="parenleft.sc" g2="ebreve.sc" k="11" />
  3749. <hkern g1="parenleft.sc" g2="eacute.sc" k="11" />
  3750. <hkern g1="parenleft.sc" g2="e.sc" k="11" />
  3751. <hkern g1="parenleft.sc" g2="ddotbelow.sc" k="11" />
  3752. <hkern g1="parenleft.sc" g2="dcroat.sc" k="11" />
  3753. <hkern g1="parenleft.sc" g2="dcaron.sc" k="11" />
  3754. <hkern g1="parenleft.sc" g2="eth.sc" k="11" />
  3755. <hkern g1="parenleft.sc" g2="d.sc" k="11" />
  3756. <hkern g1="parenleft.sc" g2="cdotaccent.sc" k="30" />
  3757. <hkern g1="parenleft.sc" g2="ccircumflex.sc" k="30" />
  3758. <hkern g1="parenleft.sc" g2="ccedilla.sc" k="30" />
  3759. <hkern g1="parenleft.sc" g2="ccaron.sc" k="30" />
  3760. <hkern g1="parenleft.sc" g2="cacute.sc" k="30" />
  3761. <hkern g1="parenleft.sc" g2="c.sc" k="30" />
  3762. <hkern g1="parenleft.sc" g2="b.sc" k="11" />
  3763. <hkern g1="parenright.sc" g2="IJacute" k="38" />
  3764. <hkern g1="parenright.sc" g2="aeacute.sc" k="18" />
  3765. <hkern g1="parenright.sc" g2="ae.sc" k="18" />
  3766. <hkern g1="parenright.sc" g2="atilde.sc" k="18" />
  3767. <hkern g1="parenright.sc" g2="aringacute.sc" k="18" />
  3768. <hkern g1="parenright.sc" g2="aring.sc" k="18" />
  3769. <hkern g1="parenright.sc" g2="aogonek.sc" k="18" />
  3770. <hkern g1="parenright.sc" g2="amacron.sc" k="18" />
  3771. <hkern g1="parenright.sc" g2="agrave.sc" k="18" />
  3772. <hkern g1="parenright.sc" g2="adotbelow.sc" k="18" />
  3773. <hkern g1="parenright.sc" g2="adieresis.sc" k="18" />
  3774. <hkern g1="parenright.sc" g2="acircumflex.sc" k="18" />
  3775. <hkern g1="parenright.sc" g2="acaron.sc" k="18" />
  3776. <hkern g1="parenright.sc" g2="abreve.sc" k="18" />
  3777. <hkern g1="parenright.sc" g2="aacute.sc" k="18" />
  3778. <hkern g1="parenright.sc" g2="a.sc" k="18" />
  3779. <hkern g1="parenright.sc" u2="&#x1ee4;" k="23" />
  3780. <hkern g1="parenright.sc" u2="&#x1ecc;" k="30" />
  3781. <hkern g1="parenright.sc" u2="&#x1eca;" k="38" />
  3782. <hkern g1="parenright.sc" u2="&#x1ebc;" k="38" />
  3783. <hkern g1="parenright.sc" u2="&#x1eb8;" k="38" />
  3784. <hkern g1="parenright.sc" u2="&#x1e92;" k="23" />
  3785. <hkern g1="parenright.sc" u2="&#x1e6c;" k="60" />
  3786. <hkern g1="parenright.sc" u2="&#x1e62;" k="38" />
  3787. <hkern g1="parenright.sc" u2="&#x1e5a;" k="38" />
  3788. <hkern g1="parenright.sc" u2="&#x1e44;" k="38" />
  3789. <hkern g1="parenright.sc" u2="&#x1e24;" k="38" />
  3790. <hkern g1="parenright.sc" u2="&#x1e0c;" k="38" />
  3791. <hkern g1="parenright.sc" u2="&#x21a;" k="60" />
  3792. <hkern g1="parenright.sc" u2="&#x218;" k="38" />
  3793. <hkern g1="parenright.sc" u2="&#x1fe;" k="30" />
  3794. <hkern g1="parenright.sc" u2="&#x1f4;" k="30" />
  3795. <hkern g1="parenright.sc" u2="&#x1ea;" k="30" />
  3796. <hkern g1="parenright.sc" u2="&#x1e6;" k="30" />
  3797. <hkern g1="parenright.sc" u2="&#x1db;" k="23" />
  3798. <hkern g1="parenright.sc" u2="&#x1d9;" k="23" />
  3799. <hkern g1="parenright.sc" u2="&#x1d7;" k="23" />
  3800. <hkern g1="parenright.sc" u2="&#x1d5;" k="23" />
  3801. <hkern g1="parenright.sc" u2="&#x1d3;" k="23" />
  3802. <hkern g1="parenright.sc" u2="&#x1d1;" k="30" />
  3803. <hkern g1="parenright.sc" u2="&#x1cf;" k="38" />
  3804. <hkern g1="parenright.sc" u2="&#x17d;" k="23" />
  3805. <hkern g1="parenright.sc" u2="&#x17b;" k="23" />
  3806. <hkern g1="parenright.sc" u2="&#x179;" k="23" />
  3807. <hkern g1="parenright.sc" u2="&#x172;" k="23" />
  3808. <hkern g1="parenright.sc" u2="&#x170;" k="23" />
  3809. <hkern g1="parenright.sc" u2="&#x16e;" k="23" />
  3810. <hkern g1="parenright.sc" u2="&#x16c;" k="23" />
  3811. <hkern g1="parenright.sc" u2="&#x16a;" k="23" />
  3812. <hkern g1="parenright.sc" u2="&#x168;" k="23" />
  3813. <hkern g1="parenright.sc" u2="&#x166;" k="60" />
  3814. <hkern g1="parenright.sc" u2="&#x164;" k="60" />
  3815. <hkern g1="parenright.sc" u2="&#x162;" k="60" />
  3816. <hkern g1="parenright.sc" u2="&#x160;" k="38" />
  3817. <hkern g1="parenright.sc" u2="&#x15e;" k="38" />
  3818. <hkern g1="parenright.sc" u2="&#x15c;" k="38" />
  3819. <hkern g1="parenright.sc" u2="&#x15a;" k="38" />
  3820. <hkern g1="parenright.sc" u2="&#x158;" k="38" />
  3821. <hkern g1="parenright.sc" u2="&#x156;" k="38" />
  3822. <hkern g1="parenright.sc" u2="&#x154;" k="38" />
  3823. <hkern g1="parenright.sc" u2="&#x152;" k="30" />
  3824. <hkern g1="parenright.sc" u2="&#x150;" k="30" />
  3825. <hkern g1="parenright.sc" u2="&#x14e;" k="30" />
  3826. <hkern g1="parenright.sc" u2="&#x14c;" k="30" />
  3827. <hkern g1="parenright.sc" u2="&#x14a;" k="38" />
  3828. <hkern g1="parenright.sc" u2="&#x147;" k="38" />
  3829. <hkern g1="parenright.sc" u2="&#x145;" k="38" />
  3830. <hkern g1="parenright.sc" u2="&#x143;" k="38" />
  3831. <hkern g1="parenright.sc" u2="&#x141;" k="38" />
  3832. <hkern g1="parenright.sc" u2="&#x13f;" k="38" />
  3833. <hkern g1="parenright.sc" u2="&#x13d;" k="38" />
  3834. <hkern g1="parenright.sc" u2="&#x13b;" k="38" />
  3835. <hkern g1="parenright.sc" u2="&#x139;" k="38" />
  3836. <hkern g1="parenright.sc" u2="&#x136;" k="38" />
  3837. <hkern g1="parenright.sc" u2="&#x132;" k="38" />
  3838. <hkern g1="parenright.sc" u2="&#x130;" k="38" />
  3839. <hkern g1="parenright.sc" u2="&#x12e;" k="38" />
  3840. <hkern g1="parenright.sc" u2="&#x12c;" k="38" />
  3841. <hkern g1="parenright.sc" u2="&#x12a;" k="38" />
  3842. <hkern g1="parenright.sc" u2="&#x128;" k="38" />
  3843. <hkern g1="parenright.sc" u2="&#x126;" k="38" />
  3844. <hkern g1="parenright.sc" u2="&#x124;" k="38" />
  3845. <hkern g1="parenright.sc" u2="&#x122;" k="30" />
  3846. <hkern g1="parenright.sc" u2="&#x120;" k="30" />
  3847. <hkern g1="parenright.sc" u2="&#x11e;" k="30" />
  3848. <hkern g1="parenright.sc" u2="&#x11c;" k="30" />
  3849. <hkern g1="parenright.sc" u2="&#x11a;" k="38" />
  3850. <hkern g1="parenright.sc" u2="&#x118;" k="38" />
  3851. <hkern g1="parenright.sc" u2="&#x116;" k="38" />
  3852. <hkern g1="parenright.sc" u2="&#x114;" k="38" />
  3853. <hkern g1="parenright.sc" u2="&#x112;" k="38" />
  3854. <hkern g1="parenright.sc" u2="&#x110;" k="38" />
  3855. <hkern g1="parenright.sc" u2="&#x10e;" k="38" />
  3856. <hkern g1="parenright.sc" u2="&#x10c;" k="30" />
  3857. <hkern g1="parenright.sc" u2="&#x10a;" k="30" />
  3858. <hkern g1="parenright.sc" u2="&#x108;" k="30" />
  3859. <hkern g1="parenright.sc" u2="&#x106;" k="30" />
  3860. <hkern g1="parenright.sc" u2="&#xde;" k="38" />
  3861. <hkern g1="parenright.sc" u2="&#xdc;" k="23" />
  3862. <hkern g1="parenright.sc" u2="&#xdb;" k="23" />
  3863. <hkern g1="parenright.sc" u2="&#xda;" k="23" />
  3864. <hkern g1="parenright.sc" u2="&#xd9;" k="23" />
  3865. <hkern g1="parenright.sc" u2="&#xd8;" k="30" />
  3866. <hkern g1="parenright.sc" u2="&#xd6;" k="30" />
  3867. <hkern g1="parenright.sc" u2="&#xd5;" k="30" />
  3868. <hkern g1="parenright.sc" u2="&#xd4;" k="30" />
  3869. <hkern g1="parenright.sc" u2="&#xd3;" k="30" />
  3870. <hkern g1="parenright.sc" u2="&#xd2;" k="30" />
  3871. <hkern g1="parenright.sc" u2="&#xd1;" k="38" />
  3872. <hkern g1="parenright.sc" u2="&#xd0;" k="38" />
  3873. <hkern g1="parenright.sc" u2="&#xcf;" k="38" />
  3874. <hkern g1="parenright.sc" u2="&#xce;" k="38" />
  3875. <hkern g1="parenright.sc" u2="&#xcd;" k="38" />
  3876. <hkern g1="parenright.sc" u2="&#xcc;" k="38" />
  3877. <hkern g1="parenright.sc" u2="&#xcb;" k="38" />
  3878. <hkern g1="parenright.sc" u2="&#xca;" k="38" />
  3879. <hkern g1="parenright.sc" u2="&#xc9;" k="38" />
  3880. <hkern g1="parenright.sc" u2="&#xc8;" k="38" />
  3881. <hkern g1="parenright.sc" u2="&#xc7;" k="30" />
  3882. <hkern g1="parenright.sc" u2="Z" k="23" />
  3883. <hkern g1="parenright.sc" u2="X" k="23" />
  3884. <hkern g1="parenright.sc" u2="U" k="23" />
  3885. <hkern g1="parenright.sc" u2="T" k="60" />
  3886. <hkern g1="parenright.sc" u2="S" k="38" />
  3887. <hkern g1="parenright.sc" u2="R" k="38" />
  3888. <hkern g1="parenright.sc" u2="Q" k="30" />
  3889. <hkern g1="parenright.sc" u2="P" k="38" />
  3890. <hkern g1="parenright.sc" u2="O" k="30" />
  3891. <hkern g1="parenright.sc" u2="N" k="38" />
  3892. <hkern g1="parenright.sc" u2="M" k="45" />
  3893. <hkern g1="parenright.sc" u2="L" k="38" />
  3894. <hkern g1="parenright.sc" u2="K" k="38" />
  3895. <hkern g1="parenright.sc" u2="I" k="38" />
  3896. <hkern g1="parenright.sc" u2="H" k="38" />
  3897. <hkern g1="parenright.sc" u2="G" k="30" />
  3898. <hkern g1="parenright.sc" u2="F" k="38" />
  3899. <hkern g1="parenright.sc" u2="E" k="38" />
  3900. <hkern g1="parenright.sc" u2="D" k="38" />
  3901. <hkern g1="parenright.sc" u2="C" k="30" />
  3902. <hkern g1="parenright.sc" u2="B" k="38" />
  3903. <hkern g1="braceleft.sc" g2="zdotbelow.sc" k="15" />
  3904. <hkern g1="braceleft.sc" g2="zdotaccent.sc" k="15" />
  3905. <hkern g1="braceleft.sc" g2="zcaron.sc" k="15" />
  3906. <hkern g1="braceleft.sc" g2="zacute.sc" k="15" />
  3907. <hkern g1="braceleft.sc" g2="z.sc" k="15" />
  3908. <hkern g1="braceleft.sc" g2="ytilde.sc" k="13" />
  3909. <hkern g1="braceleft.sc" g2="ymacron.sc" k="13" />
  3910. <hkern g1="braceleft.sc" g2="ygrave.sc" k="13" />
  3911. <hkern g1="braceleft.sc" g2="ydieresis.sc" k="13" />
  3912. <hkern g1="braceleft.sc" g2="ycircumflex.sc" k="13" />
  3913. <hkern g1="braceleft.sc" g2="yacute.sc" k="13" />
  3914. <hkern g1="braceleft.sc" g2="y.sc" k="13" />
  3915. <hkern g1="braceleft.sc" g2="wgrave.sc" k="15" />
  3916. <hkern g1="braceleft.sc" g2="wdieresis.sc" k="15" />
  3917. <hkern g1="braceleft.sc" g2="wcircumflex.sc" k="15" />
  3918. <hkern g1="braceleft.sc" g2="wacute.sc" k="15" />
  3919. <hkern g1="braceleft.sc" g2="w.sc" k="15" />
  3920. <hkern g1="braceleft.sc" g2="v.sc" k="15" />
  3921. <hkern g1="braceleft.sc" g2="utilde.sc" k="5" />
  3922. <hkern g1="braceleft.sc" g2="uring.sc" k="5" />
  3923. <hkern g1="braceleft.sc" g2="uogonek.sc" k="5" />
  3924. <hkern g1="braceleft.sc" g2="umacron.sc" k="5" />
  3925. <hkern g1="braceleft.sc" g2="uhungarumlaut.sc" k="5" />
  3926. <hkern g1="braceleft.sc" g2="ugrave.sc" k="5" />
  3927. <hkern g1="braceleft.sc" g2="udotbelow.sc" k="5" />
  3928. <hkern g1="braceleft.sc" g2="udieresismacron.sc" k="5" />
  3929. <hkern g1="braceleft.sc" g2="udieresisgrave.sc" k="5" />
  3930. <hkern g1="braceleft.sc" g2="udieresiscaron.sc" k="5" />
  3931. <hkern g1="braceleft.sc" g2="udieresisacute.sc" k="5" />
  3932. <hkern g1="braceleft.sc" g2="udieresis.sc" k="5" />
  3933. <hkern g1="braceleft.sc" g2="ucircumflex.sc" k="5" />
  3934. <hkern g1="braceleft.sc" g2="ucaron.sc" k="5" />
  3935. <hkern g1="braceleft.sc" g2="ubreve.sc" k="5" />
  3936. <hkern g1="braceleft.sc" g2="uacute.sc" k="5" />
  3937. <hkern g1="braceleft.sc" g2="u.sc" k="5" />
  3938. <hkern g1="braceleft.sc" g2="tdotbelow.sc" k="16" />
  3939. <hkern g1="braceleft.sc" g2="tcommaaccent.sc" k="16" />
  3940. <hkern g1="braceleft.sc" g2="tcedilla.sc" k="16" />
  3941. <hkern g1="braceleft.sc" g2="tcaron.sc" k="16" />
  3942. <hkern g1="braceleft.sc" g2="tbar.sc" k="16" />
  3943. <hkern g1="braceleft.sc" g2="t.sc" k="16" />
  3944. <hkern g1="braceleft.sc" g2="germandbls.sc" k="8" />
  3945. <hkern g1="braceleft.sc" g2="sdotbelow.sc" k="15" />
  3946. <hkern g1="braceleft.sc" g2="scommaaccent.sc" k="15" />
  3947. <hkern g1="braceleft.sc" g2="scircumflex.sc" k="15" />
  3948. <hkern g1="braceleft.sc" g2="scedilla.sc" k="15" />
  3949. <hkern g1="braceleft.sc" g2="scaron.sc" k="15" />
  3950. <hkern g1="braceleft.sc" g2="sacute.sc" k="15" />
  3951. <hkern g1="braceleft.sc" g2="s.sc" k="15" />
  3952. <hkern g1="braceleft.sc" g2="rdotbelow.sc" k="8" />
  3953. <hkern g1="braceleft.sc" g2="rcommaaccent.sc" k="8" />
  3954. <hkern g1="braceleft.sc" g2="rcaron.sc" k="8" />
  3955. <hkern g1="braceleft.sc" g2="racute.sc" k="8" />
  3956. <hkern g1="braceleft.sc" g2="r.sc" k="8" />
  3957. <hkern g1="braceleft.sc" g2="q.sc" k="23" />
  3958. <hkern g1="braceleft.sc" g2="thorn.sc" k="8" />
  3959. <hkern g1="braceleft.sc" g2="p.sc" k="8" />
  3960. <hkern g1="braceleft.sc" g2="oe.sc" k="23" />
  3961. <hkern g1="braceleft.sc" g2="otilde.sc" k="23" />
  3962. <hkern g1="braceleft.sc" g2="oslashacute.sc" k="23" />
  3963. <hkern g1="braceleft.sc" g2="oslash.sc" k="23" />
  3964. <hkern g1="braceleft.sc" g2="oogonek.sc" k="23" />
  3965. <hkern g1="braceleft.sc" g2="omacron.sc" k="23" />
  3966. <hkern g1="braceleft.sc" g2="ohungarumlaut.sc" k="23" />
  3967. <hkern g1="braceleft.sc" g2="ograve.sc" k="23" />
  3968. <hkern g1="braceleft.sc" g2="odotbelow.sc" k="23" />
  3969. <hkern g1="braceleft.sc" g2="odieresis.sc" k="23" />
  3970. <hkern g1="braceleft.sc" g2="ocircumflex.sc" k="23" />
  3971. <hkern g1="braceleft.sc" g2="ocaron.sc" k="23" />
  3972. <hkern g1="braceleft.sc" g2="obreve.sc" k="23" />
  3973. <hkern g1="braceleft.sc" g2="oacute.sc" k="23" />
  3974. <hkern g1="braceleft.sc" g2="o.sc" k="23" />
  3975. <hkern g1="braceleft.sc" g2="ntilde.sc" k="8" />
  3976. <hkern g1="braceleft.sc" g2="eng.sc" k="8" />
  3977. <hkern g1="braceleft.sc" g2="ndotaccent.sc" k="8" />
  3978. <hkern g1="braceleft.sc" g2="ncommaaccent.sc" k="8" />
  3979. <hkern g1="braceleft.sc" g2="ncaron.sc" k="8" />
  3980. <hkern g1="braceleft.sc" g2="nacute.sc" k="8" />
  3981. <hkern g1="braceleft.sc" g2="n.sc" k="8" />
  3982. <hkern g1="braceleft.sc" g2="m.sc" k="8" />
  3983. <hkern g1="braceleft.sc" g2="lslash.sc" k="8" />
  3984. <hkern g1="braceleft.sc" g2="ldot.sc" k="8" />
  3985. <hkern g1="braceleft.sc" g2="lcommaaccent.sc" k="8" />
  3986. <hkern g1="braceleft.sc" g2="lcaron.sc" k="8" />
  3987. <hkern g1="braceleft.sc" g2="lacute.sc" k="8" />
  3988. <hkern g1="braceleft.sc" g2="l.sc" k="8" />
  3989. <hkern g1="braceleft.sc" g2="kgreenlandic.sc" k="8" />
  3990. <hkern g1="braceleft.sc" g2="kcommaaccent.sc" k="8" />
  3991. <hkern g1="braceleft.sc" g2="k.sc" k="8" />
  3992. <hkern g1="braceleft.sc" g2="itilde.sc" k="8" />
  3993. <hkern g1="braceleft.sc" g2="iogonek.sc" k="8" />
  3994. <hkern g1="braceleft.sc" g2="imacron.sc" k="8" />
  3995. <hkern g1="braceleft.sc" g2="ij.sc" k="8" />
  3996. <hkern g1="braceleft.sc" g2="igrave.sc" k="8" />
  3997. <hkern g1="braceleft.sc" g2="idotbelow.sc" k="8" />
  3998. <hkern g1="braceleft.sc" g2="idotaccent.sc" k="8" />
  3999. <hkern g1="braceleft.sc" g2="idieresis.sc" k="8" />
  4000. <hkern g1="braceleft.sc" g2="icircumflex.sc" k="8" />
  4001. <hkern g1="braceleft.sc" g2="icaron.sc" k="8" />
  4002. <hkern g1="braceleft.sc" g2="ibreve.sc" k="8" />
  4003. <hkern g1="braceleft.sc" g2="iacute.sc" k="8" />
  4004. <hkern g1="braceleft.sc" g2="dotlessi.sc" k="8" />
  4005. <hkern g1="braceleft.sc" g2="i.sc" k="8" />
  4006. <hkern g1="braceleft.sc" g2="hdotbelow.sc" k="8" />
  4007. <hkern g1="braceleft.sc" g2="hcircumflex.sc" k="8" />
  4008. <hkern g1="braceleft.sc" g2="hbar.sc" k="8" />
  4009. <hkern g1="braceleft.sc" g2="h.sc" k="8" />
  4010. <hkern g1="braceleft.sc" g2="gdotaccent.sc" k="23" />
  4011. <hkern g1="braceleft.sc" g2="gcommaaccent.sc" k="23" />
  4012. <hkern g1="braceleft.sc" g2="gcircumflex.sc" k="23" />
  4013. <hkern g1="braceleft.sc" g2="gcaron.sc" k="23" />
  4014. <hkern g1="braceleft.sc" g2="gbreve.sc" k="23" />
  4015. <hkern g1="braceleft.sc" g2="gacute.sc" k="23" />
  4016. <hkern g1="braceleft.sc" g2="g.sc" k="23" />
  4017. <hkern g1="braceleft.sc" g2="f.sc" k="8" />
  4018. <hkern g1="braceleft.sc" g2="schwa.sc" k="23" />
  4019. <hkern g1="braceleft.sc" g2="etilde.sc" k="8" />
  4020. <hkern g1="braceleft.sc" g2="eogonek.sc" k="8" />
  4021. <hkern g1="braceleft.sc" g2="emacron.sc" k="8" />
  4022. <hkern g1="braceleft.sc" g2="egrave.sc" k="8" />
  4023. <hkern g1="braceleft.sc" g2="edotbelow.sc" k="8" />
  4024. <hkern g1="braceleft.sc" g2="edotaccent.sc" k="8" />
  4025. <hkern g1="braceleft.sc" g2="edieresis.sc" k="8" />
  4026. <hkern g1="braceleft.sc" g2="ecircumflex.sc" k="8" />
  4027. <hkern g1="braceleft.sc" g2="ecaron.sc" k="8" />
  4028. <hkern g1="braceleft.sc" g2="ebreve.sc" k="8" />
  4029. <hkern g1="braceleft.sc" g2="eacute.sc" k="8" />
  4030. <hkern g1="braceleft.sc" g2="e.sc" k="8" />
  4031. <hkern g1="braceleft.sc" g2="ddotbelow.sc" k="8" />
  4032. <hkern g1="braceleft.sc" g2="dcroat.sc" k="8" />
  4033. <hkern g1="braceleft.sc" g2="dcaron.sc" k="8" />
  4034. <hkern g1="braceleft.sc" g2="eth.sc" k="8" />
  4035. <hkern g1="braceleft.sc" g2="d.sc" k="8" />
  4036. <hkern g1="braceleft.sc" g2="cdotaccent.sc" k="23" />
  4037. <hkern g1="braceleft.sc" g2="ccircumflex.sc" k="23" />
  4038. <hkern g1="braceleft.sc" g2="ccedilla.sc" k="23" />
  4039. <hkern g1="braceleft.sc" g2="ccaron.sc" k="23" />
  4040. <hkern g1="braceleft.sc" g2="cacute.sc" k="23" />
  4041. <hkern g1="braceleft.sc" g2="c.sc" k="23" />
  4042. <hkern g1="braceleft.sc" g2="b.sc" k="8" />
  4043. <hkern g1="braceleft.sc" g2="aeacute.sc" k="4" />
  4044. <hkern g1="braceleft.sc" g2="ae.sc" k="4" />
  4045. <hkern g1="braceleft.sc" g2="atilde.sc" k="4" />
  4046. <hkern g1="braceleft.sc" g2="aringacute.sc" k="4" />
  4047. <hkern g1="braceleft.sc" g2="aring.sc" k="4" />
  4048. <hkern g1="braceleft.sc" g2="aogonek.sc" k="4" />
  4049. <hkern g1="braceleft.sc" g2="amacron.sc" k="4" />
  4050. <hkern g1="braceleft.sc" g2="agrave.sc" k="4" />
  4051. <hkern g1="braceleft.sc" g2="adotbelow.sc" k="4" />
  4052. <hkern g1="braceleft.sc" g2="adieresis.sc" k="4" />
  4053. <hkern g1="braceleft.sc" g2="acircumflex.sc" k="4" />
  4054. <hkern g1="braceleft.sc" g2="acaron.sc" k="4" />
  4055. <hkern g1="braceleft.sc" g2="abreve.sc" k="4" />
  4056. <hkern g1="braceleft.sc" g2="aacute.sc" k="4" />
  4057. <hkern g1="braceleft.sc" g2="a.sc" k="4" />
  4058. <hkern g1="braceright.sc" g2="aeacute.sc" k="3" />
  4059. <hkern g1="braceright.sc" g2="ae.sc" k="3" />
  4060. <hkern g1="braceright.sc" g2="atilde.sc" k="3" />
  4061. <hkern g1="braceright.sc" g2="aringacute.sc" k="3" />
  4062. <hkern g1="braceright.sc" g2="aring.sc" k="3" />
  4063. <hkern g1="braceright.sc" g2="aogonek.sc" k="3" />
  4064. <hkern g1="braceright.sc" g2="amacron.sc" k="3" />
  4065. <hkern g1="braceright.sc" g2="agrave.sc" k="3" />
  4066. <hkern g1="braceright.sc" g2="adotbelow.sc" k="3" />
  4067. <hkern g1="braceright.sc" g2="adieresis.sc" k="3" />
  4068. <hkern g1="braceright.sc" g2="acircumflex.sc" k="3" />
  4069. <hkern g1="braceright.sc" g2="acaron.sc" k="3" />
  4070. <hkern g1="braceright.sc" g2="abreve.sc" k="3" />
  4071. <hkern g1="braceright.sc" g2="aacute.sc" k="3" />
  4072. <hkern g1="braceright.sc" g2="a.sc" k="3" />
  4073. <hkern g1="bracketleft.sc" g2="ytilde.sc" k="28" />
  4074. <hkern g1="bracketleft.sc" g2="ymacron.sc" k="28" />
  4075. <hkern g1="bracketleft.sc" g2="ygrave.sc" k="28" />
  4076. <hkern g1="bracketleft.sc" g2="ydieresis.sc" k="28" />
  4077. <hkern g1="bracketleft.sc" g2="ycircumflex.sc" k="28" />
  4078. <hkern g1="bracketleft.sc" g2="yacute.sc" k="28" />
  4079. <hkern g1="bracketleft.sc" g2="y.sc" k="28" />
  4080. <hkern g1="bracketleft.sc" g2="wgrave.sc" k="38" />
  4081. <hkern g1="bracketleft.sc" g2="wdieresis.sc" k="38" />
  4082. <hkern g1="bracketleft.sc" g2="wcircumflex.sc" k="38" />
  4083. <hkern g1="bracketleft.sc" g2="wacute.sc" k="38" />
  4084. <hkern g1="bracketleft.sc" g2="w.sc" k="38" />
  4085. <hkern g1="bracketleft.sc" g2="v.sc" k="38" />
  4086. <hkern g1="bracketleft.sc" g2="utilde.sc" k="28" />
  4087. <hkern g1="bracketleft.sc" g2="uring.sc" k="28" />
  4088. <hkern g1="bracketleft.sc" g2="uogonek.sc" k="28" />
  4089. <hkern g1="bracketleft.sc" g2="umacron.sc" k="28" />
  4090. <hkern g1="bracketleft.sc" g2="uhungarumlaut.sc" k="28" />
  4091. <hkern g1="bracketleft.sc" g2="ugrave.sc" k="28" />
  4092. <hkern g1="bracketleft.sc" g2="udotbelow.sc" k="28" />
  4093. <hkern g1="bracketleft.sc" g2="udieresismacron.sc" k="28" />
  4094. <hkern g1="bracketleft.sc" g2="udieresisgrave.sc" k="28" />
  4095. <hkern g1="bracketleft.sc" g2="udieresiscaron.sc" k="28" />
  4096. <hkern g1="bracketleft.sc" g2="udieresisacute.sc" k="28" />
  4097. <hkern g1="bracketleft.sc" g2="udieresis.sc" k="28" />
  4098. <hkern g1="bracketleft.sc" g2="ucircumflex.sc" k="28" />
  4099. <hkern g1="bracketleft.sc" g2="ucaron.sc" k="28" />
  4100. <hkern g1="bracketleft.sc" g2="ubreve.sc" k="28" />
  4101. <hkern g1="bracketleft.sc" g2="uacute.sc" k="28" />
  4102. <hkern g1="bracketleft.sc" g2="u.sc" k="28" />
  4103. <hkern g1="bracketleft.sc" g2="germandbls.sc" k="15" />
  4104. <hkern g1="bracketleft.sc" g2="sdotbelow.sc" k="13" />
  4105. <hkern g1="bracketleft.sc" g2="scommaaccent.sc" k="13" />
  4106. <hkern g1="bracketleft.sc" g2="scircumflex.sc" k="13" />
  4107. <hkern g1="bracketleft.sc" g2="scedilla.sc" k="13" />
  4108. <hkern g1="bracketleft.sc" g2="scaron.sc" k="13" />
  4109. <hkern g1="bracketleft.sc" g2="sacute.sc" k="13" />
  4110. <hkern g1="bracketleft.sc" g2="s.sc" k="13" />
  4111. <hkern g1="bracketleft.sc" g2="rdotbelow.sc" k="15" />
  4112. <hkern g1="bracketleft.sc" g2="rcommaaccent.sc" k="15" />
  4113. <hkern g1="bracketleft.sc" g2="rcaron.sc" k="15" />
  4114. <hkern g1="bracketleft.sc" g2="racute.sc" k="15" />
  4115. <hkern g1="bracketleft.sc" g2="r.sc" k="15" />
  4116. <hkern g1="bracketleft.sc" g2="q.sc" k="25" />
  4117. <hkern g1="bracketleft.sc" g2="thorn.sc" k="15" />
  4118. <hkern g1="bracketleft.sc" g2="p.sc" k="15" />
  4119. <hkern g1="bracketleft.sc" g2="oe.sc" k="25" />
  4120. <hkern g1="bracketleft.sc" g2="otilde.sc" k="25" />
  4121. <hkern g1="bracketleft.sc" g2="oslashacute.sc" k="25" />
  4122. <hkern g1="bracketleft.sc" g2="oslash.sc" k="25" />
  4123. <hkern g1="bracketleft.sc" g2="oogonek.sc" k="25" />
  4124. <hkern g1="bracketleft.sc" g2="omacron.sc" k="25" />
  4125. <hkern g1="bracketleft.sc" g2="ohungarumlaut.sc" k="25" />
  4126. <hkern g1="bracketleft.sc" g2="ograve.sc" k="25" />
  4127. <hkern g1="bracketleft.sc" g2="odotbelow.sc" k="25" />
  4128. <hkern g1="bracketleft.sc" g2="odieresis.sc" k="25" />
  4129. <hkern g1="bracketleft.sc" g2="ocircumflex.sc" k="25" />
  4130. <hkern g1="bracketleft.sc" g2="ocaron.sc" k="25" />
  4131. <hkern g1="bracketleft.sc" g2="obreve.sc" k="25" />
  4132. <hkern g1="bracketleft.sc" g2="oacute.sc" k="25" />
  4133. <hkern g1="bracketleft.sc" g2="o.sc" k="25" />
  4134. <hkern g1="bracketleft.sc" g2="ntilde.sc" k="15" />
  4135. <hkern g1="bracketleft.sc" g2="eng.sc" k="15" />
  4136. <hkern g1="bracketleft.sc" g2="ndotaccent.sc" k="15" />
  4137. <hkern g1="bracketleft.sc" g2="ncommaaccent.sc" k="15" />
  4138. <hkern g1="bracketleft.sc" g2="ncaron.sc" k="15" />
  4139. <hkern g1="bracketleft.sc" g2="nacute.sc" k="15" />
  4140. <hkern g1="bracketleft.sc" g2="n.sc" k="15" />
  4141. <hkern g1="bracketleft.sc" g2="m.sc" k="18" />
  4142. <hkern g1="bracketleft.sc" g2="lslash.sc" k="15" />
  4143. <hkern g1="bracketleft.sc" g2="ldot.sc" k="15" />
  4144. <hkern g1="bracketleft.sc" g2="lcommaaccent.sc" k="15" />
  4145. <hkern g1="bracketleft.sc" g2="lcaron.sc" k="15" />
  4146. <hkern g1="bracketleft.sc" g2="lacute.sc" k="15" />
  4147. <hkern g1="bracketleft.sc" g2="l.sc" k="15" />
  4148. <hkern g1="bracketleft.sc" g2="kgreenlandic.sc" k="15" />
  4149. <hkern g1="bracketleft.sc" g2="kcommaaccent.sc" k="15" />
  4150. <hkern g1="bracketleft.sc" g2="k.sc" k="15" />
  4151. <hkern g1="bracketleft.sc" g2="itilde.sc" k="15" />
  4152. <hkern g1="bracketleft.sc" g2="iogonek.sc" k="15" />
  4153. <hkern g1="bracketleft.sc" g2="imacron.sc" k="15" />
  4154. <hkern g1="bracketleft.sc" g2="ij.sc" k="15" />
  4155. <hkern g1="bracketleft.sc" g2="igrave.sc" k="15" />
  4156. <hkern g1="bracketleft.sc" g2="idotbelow.sc" k="15" />
  4157. <hkern g1="bracketleft.sc" g2="idotaccent.sc" k="15" />
  4158. <hkern g1="bracketleft.sc" g2="idieresis.sc" k="15" />
  4159. <hkern g1="bracketleft.sc" g2="icircumflex.sc" k="15" />
  4160. <hkern g1="bracketleft.sc" g2="icaron.sc" k="15" />
  4161. <hkern g1="bracketleft.sc" g2="ibreve.sc" k="15" />
  4162. <hkern g1="bracketleft.sc" g2="iacute.sc" k="15" />
  4163. <hkern g1="bracketleft.sc" g2="dotlessi.sc" k="15" />
  4164. <hkern g1="bracketleft.sc" g2="i.sc" k="15" />
  4165. <hkern g1="bracketleft.sc" g2="hdotbelow.sc" k="15" />
  4166. <hkern g1="bracketleft.sc" g2="hcircumflex.sc" k="15" />
  4167. <hkern g1="bracketleft.sc" g2="hbar.sc" k="15" />
  4168. <hkern g1="bracketleft.sc" g2="h.sc" k="15" />
  4169. <hkern g1="bracketleft.sc" g2="gdotaccent.sc" k="25" />
  4170. <hkern g1="bracketleft.sc" g2="gcommaaccent.sc" k="25" />
  4171. <hkern g1="bracketleft.sc" g2="gcircumflex.sc" k="25" />
  4172. <hkern g1="bracketleft.sc" g2="gcaron.sc" k="25" />
  4173. <hkern g1="bracketleft.sc" g2="gbreve.sc" k="25" />
  4174. <hkern g1="bracketleft.sc" g2="gacute.sc" k="25" />
  4175. <hkern g1="bracketleft.sc" g2="g.sc" k="25" />
  4176. <hkern g1="bracketleft.sc" g2="f.sc" k="15" />
  4177. <hkern g1="bracketleft.sc" g2="schwa.sc" k="25" />
  4178. <hkern g1="bracketleft.sc" g2="etilde.sc" k="15" />
  4179. <hkern g1="bracketleft.sc" g2="eogonek.sc" k="15" />
  4180. <hkern g1="bracketleft.sc" g2="emacron.sc" k="15" />
  4181. <hkern g1="bracketleft.sc" g2="egrave.sc" k="15" />
  4182. <hkern g1="bracketleft.sc" g2="edotbelow.sc" k="15" />
  4183. <hkern g1="bracketleft.sc" g2="edotaccent.sc" k="15" />
  4184. <hkern g1="bracketleft.sc" g2="edieresis.sc" k="15" />
  4185. <hkern g1="bracketleft.sc" g2="ecircumflex.sc" k="15" />
  4186. <hkern g1="bracketleft.sc" g2="ecaron.sc" k="15" />
  4187. <hkern g1="bracketleft.sc" g2="ebreve.sc" k="15" />
  4188. <hkern g1="bracketleft.sc" g2="eacute.sc" k="15" />
  4189. <hkern g1="bracketleft.sc" g2="e.sc" k="15" />
  4190. <hkern g1="bracketleft.sc" g2="ddotbelow.sc" k="15" />
  4191. <hkern g1="bracketleft.sc" g2="dcroat.sc" k="15" />
  4192. <hkern g1="bracketleft.sc" g2="dcaron.sc" k="15" />
  4193. <hkern g1="bracketleft.sc" g2="eth.sc" k="15" />
  4194. <hkern g1="bracketleft.sc" g2="d.sc" k="15" />
  4195. <hkern g1="bracketleft.sc" g2="cdotaccent.sc" k="25" />
  4196. <hkern g1="bracketleft.sc" g2="ccircumflex.sc" k="25" />
  4197. <hkern g1="bracketleft.sc" g2="ccedilla.sc" k="25" />
  4198. <hkern g1="bracketleft.sc" g2="ccaron.sc" k="25" />
  4199. <hkern g1="bracketleft.sc" g2="cacute.sc" k="25" />
  4200. <hkern g1="bracketleft.sc" g2="c.sc" k="25" />
  4201. <hkern g1="bracketleft.sc" g2="b.sc" k="15" />
  4202. <hkern g1="bracketleft.sc" g2="aeacute.sc" k="15" />
  4203. <hkern g1="bracketleft.sc" g2="ae.sc" k="15" />
  4204. <hkern g1="bracketleft.sc" g2="atilde.sc" k="15" />
  4205. <hkern g1="bracketleft.sc" g2="aringacute.sc" k="15" />
  4206. <hkern g1="bracketleft.sc" g2="aring.sc" k="15" />
  4207. <hkern g1="bracketleft.sc" g2="aogonek.sc" k="15" />
  4208. <hkern g1="bracketleft.sc" g2="amacron.sc" k="15" />
  4209. <hkern g1="bracketleft.sc" g2="agrave.sc" k="15" />
  4210. <hkern g1="bracketleft.sc" g2="adotbelow.sc" k="15" />
  4211. <hkern g1="bracketleft.sc" g2="adieresis.sc" k="15" />
  4212. <hkern g1="bracketleft.sc" g2="acircumflex.sc" k="15" />
  4213. <hkern g1="bracketleft.sc" g2="acaron.sc" k="15" />
  4214. <hkern g1="bracketleft.sc" g2="abreve.sc" k="15" />
  4215. <hkern g1="bracketleft.sc" g2="aacute.sc" k="15" />
  4216. <hkern g1="bracketleft.sc" g2="a.sc" k="15" />
  4217. <hkern g1="exclamdown.sc" g2="zdotbelow.sc" k="10" />
  4218. <hkern g1="exclamdown.sc" g2="zdotaccent.sc" k="10" />
  4219. <hkern g1="exclamdown.sc" g2="zcaron.sc" k="10" />
  4220. <hkern g1="exclamdown.sc" g2="zacute.sc" k="10" />
  4221. <hkern g1="exclamdown.sc" g2="z.sc" k="10" />
  4222. <hkern g1="exclamdown.sc" g2="ytilde.sc" k="18" />
  4223. <hkern g1="exclamdown.sc" g2="ymacron.sc" k="18" />
  4224. <hkern g1="exclamdown.sc" g2="ygrave.sc" k="18" />
  4225. <hkern g1="exclamdown.sc" g2="ydieresis.sc" k="18" />
  4226. <hkern g1="exclamdown.sc" g2="ycircumflex.sc" k="18" />
  4227. <hkern g1="exclamdown.sc" g2="yacute.sc" k="18" />
  4228. <hkern g1="exclamdown.sc" g2="y.sc" k="18" />
  4229. <hkern g1="exclamdown.sc" g2="x.sc" k="10" />
  4230. <hkern g1="exclamdown.sc" g2="wgrave.sc" k="20" />
  4231. <hkern g1="exclamdown.sc" g2="wdieresis.sc" k="20" />
  4232. <hkern g1="exclamdown.sc" g2="wcircumflex.sc" k="20" />
  4233. <hkern g1="exclamdown.sc" g2="wacute.sc" k="20" />
  4234. <hkern g1="exclamdown.sc" g2="w.sc" k="20" />
  4235. <hkern g1="exclamdown.sc" g2="v.sc" k="20" />
  4236. <hkern g1="exclamdown.sc" g2="utilde.sc" k="15" />
  4237. <hkern g1="exclamdown.sc" g2="uring.sc" k="15" />
  4238. <hkern g1="exclamdown.sc" g2="uogonek.sc" k="15" />
  4239. <hkern g1="exclamdown.sc" g2="umacron.sc" k="15" />
  4240. <hkern g1="exclamdown.sc" g2="uhungarumlaut.sc" k="15" />
  4241. <hkern g1="exclamdown.sc" g2="ugrave.sc" k="15" />
  4242. <hkern g1="exclamdown.sc" g2="udotbelow.sc" k="15" />
  4243. <hkern g1="exclamdown.sc" g2="udieresismacron.sc" k="15" />
  4244. <hkern g1="exclamdown.sc" g2="udieresisgrave.sc" k="15" />
  4245. <hkern g1="exclamdown.sc" g2="udieresiscaron.sc" k="15" />
  4246. <hkern g1="exclamdown.sc" g2="udieresisacute.sc" k="15" />
  4247. <hkern g1="exclamdown.sc" g2="udieresis.sc" k="15" />
  4248. <hkern g1="exclamdown.sc" g2="ucircumflex.sc" k="15" />
  4249. <hkern g1="exclamdown.sc" g2="ucaron.sc" k="15" />
  4250. <hkern g1="exclamdown.sc" g2="ubreve.sc" k="15" />
  4251. <hkern g1="exclamdown.sc" g2="uacute.sc" k="15" />
  4252. <hkern g1="exclamdown.sc" g2="u.sc" k="15" />
  4253. <hkern g1="exclamdown.sc" g2="tdotbelow.sc" k="13" />
  4254. <hkern g1="exclamdown.sc" g2="tcommaaccent.sc" k="13" />
  4255. <hkern g1="exclamdown.sc" g2="tcedilla.sc" k="13" />
  4256. <hkern g1="exclamdown.sc" g2="tcaron.sc" k="13" />
  4257. <hkern g1="exclamdown.sc" g2="tbar.sc" k="13" />
  4258. <hkern g1="exclamdown.sc" g2="t.sc" k="13" />
  4259. <hkern g1="exclamdown.sc" g2="germandbls.sc" k="13" />
  4260. <hkern g1="exclamdown.sc" g2="sdotbelow.sc" k="8" />
  4261. <hkern g1="exclamdown.sc" g2="scommaaccent.sc" k="8" />
  4262. <hkern g1="exclamdown.sc" g2="scircumflex.sc" k="8" />
  4263. <hkern g1="exclamdown.sc" g2="scedilla.sc" k="8" />
  4264. <hkern g1="exclamdown.sc" g2="scaron.sc" k="8" />
  4265. <hkern g1="exclamdown.sc" g2="sacute.sc" k="8" />
  4266. <hkern g1="exclamdown.sc" g2="s.sc" k="8" />
  4267. <hkern g1="exclamdown.sc" g2="rdotbelow.sc" k="13" />
  4268. <hkern g1="exclamdown.sc" g2="rcommaaccent.sc" k="13" />
  4269. <hkern g1="exclamdown.sc" g2="rcaron.sc" k="13" />
  4270. <hkern g1="exclamdown.sc" g2="racute.sc" k="13" />
  4271. <hkern g1="exclamdown.sc" g2="r.sc" k="13" />
  4272. <hkern g1="exclamdown.sc" g2="q.sc" k="23" />
  4273. <hkern g1="exclamdown.sc" g2="thorn.sc" k="13" />
  4274. <hkern g1="exclamdown.sc" g2="p.sc" k="13" />
  4275. <hkern g1="exclamdown.sc" g2="oe.sc" k="23" />
  4276. <hkern g1="exclamdown.sc" g2="otilde.sc" k="23" />
  4277. <hkern g1="exclamdown.sc" g2="oslashacute.sc" k="23" />
  4278. <hkern g1="exclamdown.sc" g2="oslash.sc" k="23" />
  4279. <hkern g1="exclamdown.sc" g2="oogonek.sc" k="23" />
  4280. <hkern g1="exclamdown.sc" g2="omacron.sc" k="23" />
  4281. <hkern g1="exclamdown.sc" g2="ohungarumlaut.sc" k="23" />
  4282. <hkern g1="exclamdown.sc" g2="ograve.sc" k="23" />
  4283. <hkern g1="exclamdown.sc" g2="odotbelow.sc" k="23" />
  4284. <hkern g1="exclamdown.sc" g2="odieresis.sc" k="23" />
  4285. <hkern g1="exclamdown.sc" g2="ocircumflex.sc" k="23" />
  4286. <hkern g1="exclamdown.sc" g2="ocaron.sc" k="23" />
  4287. <hkern g1="exclamdown.sc" g2="obreve.sc" k="23" />
  4288. <hkern g1="exclamdown.sc" g2="oacute.sc" k="23" />
  4289. <hkern g1="exclamdown.sc" g2="o.sc" k="23" />
  4290. <hkern g1="exclamdown.sc" g2="ntilde.sc" k="13" />
  4291. <hkern g1="exclamdown.sc" g2="eng.sc" k="13" />
  4292. <hkern g1="exclamdown.sc" g2="ndotaccent.sc" k="13" />
  4293. <hkern g1="exclamdown.sc" g2="ncommaaccent.sc" k="13" />
  4294. <hkern g1="exclamdown.sc" g2="ncaron.sc" k="13" />
  4295. <hkern g1="exclamdown.sc" g2="nacute.sc" k="13" />
  4296. <hkern g1="exclamdown.sc" g2="n.sc" k="13" />
  4297. <hkern g1="exclamdown.sc" g2="m.sc" k="13" />
  4298. <hkern g1="exclamdown.sc" g2="lslash.sc" k="13" />
  4299. <hkern g1="exclamdown.sc" g2="ldot.sc" k="13" />
  4300. <hkern g1="exclamdown.sc" g2="lcommaaccent.sc" k="13" />
  4301. <hkern g1="exclamdown.sc" g2="lcaron.sc" k="13" />
  4302. <hkern g1="exclamdown.sc" g2="lacute.sc" k="13" />
  4303. <hkern g1="exclamdown.sc" g2="l.sc" k="13" />
  4304. <hkern g1="exclamdown.sc" g2="kgreenlandic.sc" k="13" />
  4305. <hkern g1="exclamdown.sc" g2="kcommaaccent.sc" k="13" />
  4306. <hkern g1="exclamdown.sc" g2="k.sc" k="13" />
  4307. <hkern g1="exclamdown.sc" g2="itilde.sc" k="13" />
  4308. <hkern g1="exclamdown.sc" g2="iogonek.sc" k="13" />
  4309. <hkern g1="exclamdown.sc" g2="imacron.sc" k="13" />
  4310. <hkern g1="exclamdown.sc" g2="ij.sc" k="13" />
  4311. <hkern g1="exclamdown.sc" g2="igrave.sc" k="13" />
  4312. <hkern g1="exclamdown.sc" g2="idotbelow.sc" k="13" />
  4313. <hkern g1="exclamdown.sc" g2="idotaccent.sc" k="13" />
  4314. <hkern g1="exclamdown.sc" g2="idieresis.sc" k="13" />
  4315. <hkern g1="exclamdown.sc" g2="icircumflex.sc" k="13" />
  4316. <hkern g1="exclamdown.sc" g2="icaron.sc" k="13" />
  4317. <hkern g1="exclamdown.sc" g2="ibreve.sc" k="13" />
  4318. <hkern g1="exclamdown.sc" g2="iacute.sc" k="13" />
  4319. <hkern g1="exclamdown.sc" g2="dotlessi.sc" k="13" />
  4320. <hkern g1="exclamdown.sc" g2="i.sc" k="13" />
  4321. <hkern g1="exclamdown.sc" g2="hdotbelow.sc" k="13" />
  4322. <hkern g1="exclamdown.sc" g2="hcircumflex.sc" k="13" />
  4323. <hkern g1="exclamdown.sc" g2="hbar.sc" k="13" />
  4324. <hkern g1="exclamdown.sc" g2="h.sc" k="13" />
  4325. <hkern g1="exclamdown.sc" g2="gdotaccent.sc" k="23" />
  4326. <hkern g1="exclamdown.sc" g2="gcommaaccent.sc" k="23" />
  4327. <hkern g1="exclamdown.sc" g2="gcircumflex.sc" k="23" />
  4328. <hkern g1="exclamdown.sc" g2="gcaron.sc" k="23" />
  4329. <hkern g1="exclamdown.sc" g2="gbreve.sc" k="23" />
  4330. <hkern g1="exclamdown.sc" g2="gacute.sc" k="23" />
  4331. <hkern g1="exclamdown.sc" g2="g.sc" k="23" />
  4332. <hkern g1="exclamdown.sc" g2="f.sc" k="13" />
  4333. <hkern g1="exclamdown.sc" g2="schwa.sc" k="23" />
  4334. <hkern g1="exclamdown.sc" g2="etilde.sc" k="13" />
  4335. <hkern g1="exclamdown.sc" g2="eogonek.sc" k="13" />
  4336. <hkern g1="exclamdown.sc" g2="emacron.sc" k="13" />
  4337. <hkern g1="exclamdown.sc" g2="egrave.sc" k="13" />
  4338. <hkern g1="exclamdown.sc" g2="edotbelow.sc" k="13" />
  4339. <hkern g1="exclamdown.sc" g2="edotaccent.sc" k="13" />
  4340. <hkern g1="exclamdown.sc" g2="edieresis.sc" k="13" />
  4341. <hkern g1="exclamdown.sc" g2="ecircumflex.sc" k="13" />
  4342. <hkern g1="exclamdown.sc" g2="ecaron.sc" k="13" />
  4343. <hkern g1="exclamdown.sc" g2="ebreve.sc" k="13" />
  4344. <hkern g1="exclamdown.sc" g2="eacute.sc" k="13" />
  4345. <hkern g1="exclamdown.sc" g2="e.sc" k="13" />
  4346. <hkern g1="exclamdown.sc" g2="ddotbelow.sc" k="13" />
  4347. <hkern g1="exclamdown.sc" g2="dcroat.sc" k="13" />
  4348. <hkern g1="exclamdown.sc" g2="dcaron.sc" k="13" />
  4349. <hkern g1="exclamdown.sc" g2="eth.sc" k="13" />
  4350. <hkern g1="exclamdown.sc" g2="d.sc" k="13" />
  4351. <hkern g1="exclamdown.sc" g2="cdotaccent.sc" k="23" />
  4352. <hkern g1="exclamdown.sc" g2="ccircumflex.sc" k="23" />
  4353. <hkern g1="exclamdown.sc" g2="ccedilla.sc" k="23" />
  4354. <hkern g1="exclamdown.sc" g2="ccaron.sc" k="23" />
  4355. <hkern g1="exclamdown.sc" g2="cacute.sc" k="23" />
  4356. <hkern g1="exclamdown.sc" g2="c.sc" k="23" />
  4357. <hkern g1="exclamdown.sc" g2="b.sc" k="13" />
  4358. <hkern g1="exclamdown.sc" g2="aeacute.sc" k="18" />
  4359. <hkern g1="exclamdown.sc" g2="ae.sc" k="18" />
  4360. <hkern g1="exclamdown.sc" g2="atilde.sc" k="18" />
  4361. <hkern g1="exclamdown.sc" g2="aringacute.sc" k="18" />
  4362. <hkern g1="exclamdown.sc" g2="aring.sc" k="18" />
  4363. <hkern g1="exclamdown.sc" g2="aogonek.sc" k="18" />
  4364. <hkern g1="exclamdown.sc" g2="amacron.sc" k="18" />
  4365. <hkern g1="exclamdown.sc" g2="agrave.sc" k="18" />
  4366. <hkern g1="exclamdown.sc" g2="adotbelow.sc" k="18" />
  4367. <hkern g1="exclamdown.sc" g2="adieresis.sc" k="18" />
  4368. <hkern g1="exclamdown.sc" g2="acircumflex.sc" k="18" />
  4369. <hkern g1="exclamdown.sc" g2="acaron.sc" k="18" />
  4370. <hkern g1="exclamdown.sc" g2="abreve.sc" k="18" />
  4371. <hkern g1="exclamdown.sc" g2="aacute.sc" k="18" />
  4372. <hkern g1="exclamdown.sc" g2="a.sc" k="18" />
  4373. <hkern g1="question.sc" g2="aeacute.sc" k="-8" />
  4374. <hkern g1="question.sc" g2="ae.sc" k="-8" />
  4375. <hkern g1="question.sc" g2="atilde.sc" k="-8" />
  4376. <hkern g1="question.sc" g2="aringacute.sc" k="-8" />
  4377. <hkern g1="question.sc" g2="aring.sc" k="-8" />
  4378. <hkern g1="question.sc" g2="aogonek.sc" k="-8" />
  4379. <hkern g1="question.sc" g2="amacron.sc" k="-8" />
  4380. <hkern g1="question.sc" g2="agrave.sc" k="-8" />
  4381. <hkern g1="question.sc" g2="adotbelow.sc" k="-8" />
  4382. <hkern g1="question.sc" g2="adieresis.sc" k="-8" />
  4383. <hkern g1="question.sc" g2="acircumflex.sc" k="-8" />
  4384. <hkern g1="question.sc" g2="acaron.sc" k="-8" />
  4385. <hkern g1="question.sc" g2="abreve.sc" k="-8" />
  4386. <hkern g1="question.sc" g2="aacute.sc" k="-8" />
  4387. <hkern g1="question.sc" g2="a.sc" k="-8" />
  4388. <hkern g1="questiondown.sc" g2="zdotbelow.sc" k="5" />
  4389. <hkern g1="questiondown.sc" g2="zdotaccent.sc" k="5" />
  4390. <hkern g1="questiondown.sc" g2="zcaron.sc" k="5" />
  4391. <hkern g1="questiondown.sc" g2="zacute.sc" k="5" />
  4392. <hkern g1="questiondown.sc" g2="z.sc" k="5" />
  4393. <hkern g1="questiondown.sc" g2="ytilde.sc" k="48" />
  4394. <hkern g1="questiondown.sc" g2="ymacron.sc" k="48" />
  4395. <hkern g1="questiondown.sc" g2="ygrave.sc" k="48" />
  4396. <hkern g1="questiondown.sc" g2="ydieresis.sc" k="48" />
  4397. <hkern g1="questiondown.sc" g2="ycircumflex.sc" k="48" />
  4398. <hkern g1="questiondown.sc" g2="yacute.sc" k="48" />
  4399. <hkern g1="questiondown.sc" g2="y.sc" k="48" />
  4400. <hkern g1="questiondown.sc" g2="wgrave.sc" k="46" />
  4401. <hkern g1="questiondown.sc" g2="wdieresis.sc" k="46" />
  4402. <hkern g1="questiondown.sc" g2="wcircumflex.sc" k="46" />
  4403. <hkern g1="questiondown.sc" g2="wacute.sc" k="46" />
  4404. <hkern g1="questiondown.sc" g2="w.sc" k="46" />
  4405. <hkern g1="questiondown.sc" g2="v.sc" k="46" />
  4406. <hkern g1="questiondown.sc" g2="utilde.sc" k="26" />
  4407. <hkern g1="questiondown.sc" g2="uring.sc" k="26" />
  4408. <hkern g1="questiondown.sc" g2="uogonek.sc" k="26" />
  4409. <hkern g1="questiondown.sc" g2="umacron.sc" k="26" />
  4410. <hkern g1="questiondown.sc" g2="uhungarumlaut.sc" k="26" />
  4411. <hkern g1="questiondown.sc" g2="ugrave.sc" k="26" />
  4412. <hkern g1="questiondown.sc" g2="udotbelow.sc" k="26" />
  4413. <hkern g1="questiondown.sc" g2="udieresismacron.sc" k="26" />
  4414. <hkern g1="questiondown.sc" g2="udieresisgrave.sc" k="26" />
  4415. <hkern g1="questiondown.sc" g2="udieresiscaron.sc" k="26" />
  4416. <hkern g1="questiondown.sc" g2="udieresisacute.sc" k="26" />
  4417. <hkern g1="questiondown.sc" g2="udieresis.sc" k="26" />
  4418. <hkern g1="questiondown.sc" g2="ucircumflex.sc" k="26" />
  4419. <hkern g1="questiondown.sc" g2="ucaron.sc" k="26" />
  4420. <hkern g1="questiondown.sc" g2="ubreve.sc" k="26" />
  4421. <hkern g1="questiondown.sc" g2="uacute.sc" k="26" />
  4422. <hkern g1="questiondown.sc" g2="u.sc" k="26" />
  4423. <hkern g1="questiondown.sc" g2="tdotbelow.sc" k="48" />
  4424. <hkern g1="questiondown.sc" g2="tcommaaccent.sc" k="48" />
  4425. <hkern g1="questiondown.sc" g2="tcedilla.sc" k="48" />
  4426. <hkern g1="questiondown.sc" g2="tcaron.sc" k="48" />
  4427. <hkern g1="questiondown.sc" g2="tbar.sc" k="48" />
  4428. <hkern g1="questiondown.sc" g2="t.sc" k="48" />
  4429. <hkern g1="questiondown.sc" g2="sdotbelow.sc" k="24" />
  4430. <hkern g1="questiondown.sc" g2="scommaaccent.sc" k="24" />
  4431. <hkern g1="questiondown.sc" g2="scircumflex.sc" k="24" />
  4432. <hkern g1="questiondown.sc" g2="scedilla.sc" k="24" />
  4433. <hkern g1="questiondown.sc" g2="scaron.sc" k="24" />
  4434. <hkern g1="questiondown.sc" g2="sacute.sc" k="24" />
  4435. <hkern g1="questiondown.sc" g2="s.sc" k="24" />
  4436. <hkern g1="questiondown.sc" g2="q.sc" k="20" />
  4437. <hkern g1="questiondown.sc" g2="oe.sc" k="20" />
  4438. <hkern g1="questiondown.sc" g2="otilde.sc" k="20" />
  4439. <hkern g1="questiondown.sc" g2="oslashacute.sc" k="20" />
  4440. <hkern g1="questiondown.sc" g2="oslash.sc" k="20" />
  4441. <hkern g1="questiondown.sc" g2="oogonek.sc" k="20" />
  4442. <hkern g1="questiondown.sc" g2="omacron.sc" k="20" />
  4443. <hkern g1="questiondown.sc" g2="ohungarumlaut.sc" k="20" />
  4444. <hkern g1="questiondown.sc" g2="ograve.sc" k="20" />
  4445. <hkern g1="questiondown.sc" g2="odotbelow.sc" k="20" />
  4446. <hkern g1="questiondown.sc" g2="odieresis.sc" k="20" />
  4447. <hkern g1="questiondown.sc" g2="ocircumflex.sc" k="20" />
  4448. <hkern g1="questiondown.sc" g2="ocaron.sc" k="20" />
  4449. <hkern g1="questiondown.sc" g2="obreve.sc" k="20" />
  4450. <hkern g1="questiondown.sc" g2="oacute.sc" k="20" />
  4451. <hkern g1="questiondown.sc" g2="o.sc" k="20" />
  4452. <hkern g1="questiondown.sc" g2="m.sc" k="21" />
  4453. <hkern g1="questiondown.sc" g2="gdotaccent.sc" k="20" />
  4454. <hkern g1="questiondown.sc" g2="gcommaaccent.sc" k="20" />
  4455. <hkern g1="questiondown.sc" g2="gcircumflex.sc" k="20" />
  4456. <hkern g1="questiondown.sc" g2="gcaron.sc" k="20" />
  4457. <hkern g1="questiondown.sc" g2="gbreve.sc" k="20" />
  4458. <hkern g1="questiondown.sc" g2="gacute.sc" k="20" />
  4459. <hkern g1="questiondown.sc" g2="g.sc" k="20" />
  4460. <hkern g1="questiondown.sc" g2="schwa.sc" k="20" />
  4461. <hkern g1="questiondown.sc" g2="cdotaccent.sc" k="20" />
  4462. <hkern g1="questiondown.sc" g2="ccircumflex.sc" k="20" />
  4463. <hkern g1="questiondown.sc" g2="ccedilla.sc" k="20" />
  4464. <hkern g1="questiondown.sc" g2="ccaron.sc" k="20" />
  4465. <hkern g1="questiondown.sc" g2="cacute.sc" k="20" />
  4466. <hkern g1="questiondown.sc" g2="c.sc" k="20" />
  4467. <hkern g1="periodcentered.sc" g2="zdotbelow.sc" k="28" />
  4468. <hkern g1="periodcentered.sc" g2="zdotaccent.sc" k="28" />
  4469. <hkern g1="periodcentered.sc" g2="zcaron.sc" k="28" />
  4470. <hkern g1="periodcentered.sc" g2="zacute.sc" k="28" />
  4471. <hkern g1="periodcentered.sc" g2="z.sc" k="28" />
  4472. <hkern g1="periodcentered.sc" g2="wgrave.sc" k="33" />
  4473. <hkern g1="periodcentered.sc" g2="wdieresis.sc" k="33" />
  4474. <hkern g1="periodcentered.sc" g2="wcircumflex.sc" k="33" />
  4475. <hkern g1="periodcentered.sc" g2="wacute.sc" k="33" />
  4476. <hkern g1="periodcentered.sc" g2="w.sc" k="33" />
  4477. <hkern g1="periodcentered.sc" g2="v.sc" k="33" />
  4478. <hkern g1="periodcentered.sc" g2="tdotbelow.sc" k="68" />
  4479. <hkern g1="periodcentered.sc" g2="tcommaaccent.sc" k="68" />
  4480. <hkern g1="periodcentered.sc" g2="tcedilla.sc" k="68" />
  4481. <hkern g1="periodcentered.sc" g2="tcaron.sc" k="68" />
  4482. <hkern g1="periodcentered.sc" g2="tbar.sc" k="68" />
  4483. <hkern g1="periodcentered.sc" g2="t.sc" k="68" />
  4484. <hkern g1="periodcentered.sc" g2="sdotbelow.sc" k="38" />
  4485. <hkern g1="periodcentered.sc" g2="scommaaccent.sc" k="38" />
  4486. <hkern g1="periodcentered.sc" g2="scircumflex.sc" k="38" />
  4487. <hkern g1="periodcentered.sc" g2="scedilla.sc" k="38" />
  4488. <hkern g1="periodcentered.sc" g2="scaron.sc" k="38" />
  4489. <hkern g1="periodcentered.sc" g2="sacute.sc" k="38" />
  4490. <hkern g1="periodcentered.sc" g2="s.sc" k="38" />
  4491. <hkern g1="periodcentered.sc" g2="q.sc" k="23" />
  4492. <hkern g1="periodcentered.sc" g2="oe.sc" k="23" />
  4493. <hkern g1="periodcentered.sc" g2="otilde.sc" k="23" />
  4494. <hkern g1="periodcentered.sc" g2="oslashacute.sc" k="23" />
  4495. <hkern g1="periodcentered.sc" g2="oslash.sc" k="23" />
  4496. <hkern g1="periodcentered.sc" g2="oogonek.sc" k="23" />
  4497. <hkern g1="periodcentered.sc" g2="omacron.sc" k="23" />
  4498. <hkern g1="periodcentered.sc" g2="ohungarumlaut.sc" k="23" />
  4499. <hkern g1="periodcentered.sc" g2="ograve.sc" k="23" />
  4500. <hkern g1="periodcentered.sc" g2="odotbelow.sc" k="23" />
  4501. <hkern g1="periodcentered.sc" g2="odieresis.sc" k="23" />
  4502. <hkern g1="periodcentered.sc" g2="ocircumflex.sc" k="23" />
  4503. <hkern g1="periodcentered.sc" g2="ocaron.sc" k="23" />
  4504. <hkern g1="periodcentered.sc" g2="obreve.sc" k="23" />
  4505. <hkern g1="periodcentered.sc" g2="oacute.sc" k="23" />
  4506. <hkern g1="periodcentered.sc" g2="o.sc" k="23" />
  4507. <hkern g1="periodcentered.sc" g2="gdotaccent.sc" k="23" />
  4508. <hkern g1="periodcentered.sc" g2="gcommaaccent.sc" k="23" />
  4509. <hkern g1="periodcentered.sc" g2="gcircumflex.sc" k="23" />
  4510. <hkern g1="periodcentered.sc" g2="gcaron.sc" k="23" />
  4511. <hkern g1="periodcentered.sc" g2="gbreve.sc" k="23" />
  4512. <hkern g1="periodcentered.sc" g2="gacute.sc" k="23" />
  4513. <hkern g1="periodcentered.sc" g2="g.sc" k="23" />
  4514. <hkern g1="periodcentered.sc" g2="schwa.sc" k="23" />
  4515. <hkern g1="periodcentered.sc" g2="cdotaccent.sc" k="23" />
  4516. <hkern g1="periodcentered.sc" g2="ccircumflex.sc" k="23" />
  4517. <hkern g1="periodcentered.sc" g2="ccedilla.sc" k="23" />
  4518. <hkern g1="periodcentered.sc" g2="ccaron.sc" k="23" />
  4519. <hkern g1="periodcentered.sc" g2="cacute.sc" k="23" />
  4520. <hkern g1="periodcentered.sc" g2="c.sc" k="23" />
  4521. <hkern g1="periodcentered.sc" g2="aeacute.sc" k="50" />
  4522. <hkern g1="periodcentered.sc" g2="ae.sc" k="50" />
  4523. <hkern g1="periodcentered.sc" g2="atilde.sc" k="50" />
  4524. <hkern g1="periodcentered.sc" g2="aringacute.sc" k="50" />
  4525. <hkern g1="periodcentered.sc" g2="aring.sc" k="50" />
  4526. <hkern g1="periodcentered.sc" g2="aogonek.sc" k="50" />
  4527. <hkern g1="periodcentered.sc" g2="amacron.sc" k="50" />
  4528. <hkern g1="periodcentered.sc" g2="agrave.sc" k="50" />
  4529. <hkern g1="periodcentered.sc" g2="adotbelow.sc" k="50" />
  4530. <hkern g1="periodcentered.sc" g2="adieresis.sc" k="50" />
  4531. <hkern g1="periodcentered.sc" g2="acircumflex.sc" k="50" />
  4532. <hkern g1="periodcentered.sc" g2="acaron.sc" k="50" />
  4533. <hkern g1="periodcentered.sc" g2="abreve.sc" k="50" />
  4534. <hkern g1="periodcentered.sc" g2="aacute.sc" k="50" />
  4535. <hkern g1="periodcentered.sc" g2="a.sc" k="50" />
  4536. <hkern g1="asterisk.sc" g2="germandbls.sc" k="13" />
  4537. <hkern g1="asterisk.sc" g2="sdotbelow.sc" k="23" />
  4538. <hkern g1="asterisk.sc" g2="scommaaccent.sc" k="23" />
  4539. <hkern g1="asterisk.sc" g2="scircumflex.sc" k="23" />
  4540. <hkern g1="asterisk.sc" g2="scedilla.sc" k="23" />
  4541. <hkern g1="asterisk.sc" g2="scaron.sc" k="23" />
  4542. <hkern g1="asterisk.sc" g2="sacute.sc" k="23" />
  4543. <hkern g1="asterisk.sc" g2="s.sc" k="23" />
  4544. <hkern g1="asterisk.sc" g2="rdotbelow.sc" k="13" />
  4545. <hkern g1="asterisk.sc" g2="rcommaaccent.sc" k="13" />
  4546. <hkern g1="asterisk.sc" g2="rcaron.sc" k="13" />
  4547. <hkern g1="asterisk.sc" g2="racute.sc" k="13" />
  4548. <hkern g1="asterisk.sc" g2="r.sc" k="13" />
  4549. <hkern g1="asterisk.sc" g2="q.sc" k="60" />
  4550. <hkern g1="asterisk.sc" g2="thorn.sc" k="13" />
  4551. <hkern g1="asterisk.sc" g2="p.sc" k="13" />
  4552. <hkern g1="asterisk.sc" g2="oe.sc" k="60" />
  4553. <hkern g1="asterisk.sc" g2="otilde.sc" k="60" />
  4554. <hkern g1="asterisk.sc" g2="oslashacute.sc" k="60" />
  4555. <hkern g1="asterisk.sc" g2="oslash.sc" k="60" />
  4556. <hkern g1="asterisk.sc" g2="oogonek.sc" k="60" />
  4557. <hkern g1="asterisk.sc" g2="omacron.sc" k="60" />
  4558. <hkern g1="asterisk.sc" g2="ohungarumlaut.sc" k="60" />
  4559. <hkern g1="asterisk.sc" g2="ograve.sc" k="60" />
  4560. <hkern g1="asterisk.sc" g2="odotbelow.sc" k="60" />
  4561. <hkern g1="asterisk.sc" g2="odieresis.sc" k="60" />
  4562. <hkern g1="asterisk.sc" g2="ocircumflex.sc" k="60" />
  4563. <hkern g1="asterisk.sc" g2="ocaron.sc" k="60" />
  4564. <hkern g1="asterisk.sc" g2="obreve.sc" k="60" />
  4565. <hkern g1="asterisk.sc" g2="oacute.sc" k="60" />
  4566. <hkern g1="asterisk.sc" g2="o.sc" k="60" />
  4567. <hkern g1="asterisk.sc" g2="ntilde.sc" k="13" />
  4568. <hkern g1="asterisk.sc" g2="eng.sc" k="13" />
  4569. <hkern g1="asterisk.sc" g2="ndotaccent.sc" k="13" />
  4570. <hkern g1="asterisk.sc" g2="ncommaaccent.sc" k="13" />
  4571. <hkern g1="asterisk.sc" g2="ncaron.sc" k="13" />
  4572. <hkern g1="asterisk.sc" g2="nacute.sc" k="13" />
  4573. <hkern g1="asterisk.sc" g2="n.sc" k="13" />
  4574. <hkern g1="asterisk.sc" g2="m.sc" k="33" />
  4575. <hkern g1="asterisk.sc" g2="lslash.sc" k="13" />
  4576. <hkern g1="asterisk.sc" g2="ldot.sc" k="13" />
  4577. <hkern g1="asterisk.sc" g2="lcommaaccent.sc" k="13" />
  4578. <hkern g1="asterisk.sc" g2="lcaron.sc" k="13" />
  4579. <hkern g1="asterisk.sc" g2="lacute.sc" k="13" />
  4580. <hkern g1="asterisk.sc" g2="l.sc" k="13" />
  4581. <hkern g1="asterisk.sc" g2="kgreenlandic.sc" k="13" />
  4582. <hkern g1="asterisk.sc" g2="kcommaaccent.sc" k="13" />
  4583. <hkern g1="asterisk.sc" g2="k.sc" k="13" />
  4584. <hkern g1="asterisk.sc" g2="itilde.sc" k="13" />
  4585. <hkern g1="asterisk.sc" g2="iogonek.sc" k="13" />
  4586. <hkern g1="asterisk.sc" g2="imacron.sc" k="13" />
  4587. <hkern g1="asterisk.sc" g2="ij.sc" k="13" />
  4588. <hkern g1="asterisk.sc" g2="igrave.sc" k="13" />
  4589. <hkern g1="asterisk.sc" g2="idotbelow.sc" k="13" />
  4590. <hkern g1="asterisk.sc" g2="idotaccent.sc" k="13" />
  4591. <hkern g1="asterisk.sc" g2="idieresis.sc" k="13" />
  4592. <hkern g1="asterisk.sc" g2="icircumflex.sc" k="13" />
  4593. <hkern g1="asterisk.sc" g2="icaron.sc" k="13" />
  4594. <hkern g1="asterisk.sc" g2="ibreve.sc" k="13" />
  4595. <hkern g1="asterisk.sc" g2="iacute.sc" k="13" />
  4596. <hkern g1="asterisk.sc" g2="dotlessi.sc" k="13" />
  4597. <hkern g1="asterisk.sc" g2="i.sc" k="13" />
  4598. <hkern g1="asterisk.sc" g2="hdotbelow.sc" k="13" />
  4599. <hkern g1="asterisk.sc" g2="hcircumflex.sc" k="13" />
  4600. <hkern g1="asterisk.sc" g2="hbar.sc" k="13" />
  4601. <hkern g1="asterisk.sc" g2="h.sc" k="13" />
  4602. <hkern g1="asterisk.sc" g2="gdotaccent.sc" k="60" />
  4603. <hkern g1="asterisk.sc" g2="gcommaaccent.sc" k="60" />
  4604. <hkern g1="asterisk.sc" g2="gcircumflex.sc" k="60" />
  4605. <hkern g1="asterisk.sc" g2="gcaron.sc" k="60" />
  4606. <hkern g1="asterisk.sc" g2="gbreve.sc" k="60" />
  4607. <hkern g1="asterisk.sc" g2="gacute.sc" k="60" />
  4608. <hkern g1="asterisk.sc" g2="g.sc" k="60" />
  4609. <hkern g1="asterisk.sc" g2="f.sc" k="13" />
  4610. <hkern g1="asterisk.sc" g2="schwa.sc" k="60" />
  4611. <hkern g1="asterisk.sc" g2="etilde.sc" k="13" />
  4612. <hkern g1="asterisk.sc" g2="eogonek.sc" k="13" />
  4613. <hkern g1="asterisk.sc" g2="emacron.sc" k="13" />
  4614. <hkern g1="asterisk.sc" g2="egrave.sc" k="13" />
  4615. <hkern g1="asterisk.sc" g2="edotbelow.sc" k="13" />
  4616. <hkern g1="asterisk.sc" g2="edotaccent.sc" k="13" />
  4617. <hkern g1="asterisk.sc" g2="edieresis.sc" k="13" />
  4618. <hkern g1="asterisk.sc" g2="ecircumflex.sc" k="13" />
  4619. <hkern g1="asterisk.sc" g2="ecaron.sc" k="13" />
  4620. <hkern g1="asterisk.sc" g2="ebreve.sc" k="13" />
  4621. <hkern g1="asterisk.sc" g2="eacute.sc" k="13" />
  4622. <hkern g1="asterisk.sc" g2="e.sc" k="13" />
  4623. <hkern g1="asterisk.sc" g2="ddotbelow.sc" k="13" />
  4624. <hkern g1="asterisk.sc" g2="dcroat.sc" k="13" />
  4625. <hkern g1="asterisk.sc" g2="dcaron.sc" k="13" />
  4626. <hkern g1="asterisk.sc" g2="eth.sc" k="13" />
  4627. <hkern g1="asterisk.sc" g2="d.sc" k="13" />
  4628. <hkern g1="asterisk.sc" g2="cdotaccent.sc" k="60" />
  4629. <hkern g1="asterisk.sc" g2="ccircumflex.sc" k="60" />
  4630. <hkern g1="asterisk.sc" g2="ccedilla.sc" k="60" />
  4631. <hkern g1="asterisk.sc" g2="ccaron.sc" k="60" />
  4632. <hkern g1="asterisk.sc" g2="cacute.sc" k="60" />
  4633. <hkern g1="asterisk.sc" g2="c.sc" k="60" />
  4634. <hkern g1="asterisk.sc" g2="b.sc" k="13" />
  4635. <hkern g1="asterisk.sc" g2="aeacute.sc" k="95" />
  4636. <hkern g1="asterisk.sc" g2="ae.sc" k="95" />
  4637. <hkern g1="asterisk.sc" g2="atilde.sc" k="95" />
  4638. <hkern g1="asterisk.sc" g2="aringacute.sc" k="95" />
  4639. <hkern g1="asterisk.sc" g2="aring.sc" k="95" />
  4640. <hkern g1="asterisk.sc" g2="aogonek.sc" k="95" />
  4641. <hkern g1="asterisk.sc" g2="amacron.sc" k="95" />
  4642. <hkern g1="asterisk.sc" g2="agrave.sc" k="95" />
  4643. <hkern g1="asterisk.sc" g2="adotbelow.sc" k="95" />
  4644. <hkern g1="asterisk.sc" g2="adieresis.sc" k="95" />
  4645. <hkern g1="asterisk.sc" g2="acircumflex.sc" k="95" />
  4646. <hkern g1="asterisk.sc" g2="acaron.sc" k="95" />
  4647. <hkern g1="asterisk.sc" g2="abreve.sc" k="95" />
  4648. <hkern g1="asterisk.sc" g2="aacute.sc" k="95" />
  4649. <hkern g1="asterisk.sc" g2="a.sc" k="95" />
  4650. <hkern g1="quotedbl.sc" g2="zdotbelow.sc" k="5" />
  4651. <hkern g1="quotedbl.sc" g2="zdotaccent.sc" k="5" />
  4652. <hkern g1="quotedbl.sc" g2="zcaron.sc" k="5" />
  4653. <hkern g1="quotedbl.sc" g2="zacute.sc" k="5" />
  4654. <hkern g1="quotedbl.sc" g2="z.sc" k="5" />
  4655. <hkern g1="quotedbl.sc" g2="wgrave.sc" k="-15" />
  4656. <hkern g1="quotedbl.sc" g2="wdieresis.sc" k="-15" />
  4657. <hkern g1="quotedbl.sc" g2="wcircumflex.sc" k="-15" />
  4658. <hkern g1="quotedbl.sc" g2="wacute.sc" k="-15" />
  4659. <hkern g1="quotedbl.sc" g2="w.sc" k="-15" />
  4660. <hkern g1="quotedbl.sc" g2="v.sc" k="-15" />
  4661. <hkern g1="quotedbl.sc" g2="germandbls.sc" k="5" />
  4662. <hkern g1="quotedbl.sc" g2="rdotbelow.sc" k="5" />
  4663. <hkern g1="quotedbl.sc" g2="rcommaaccent.sc" k="5" />
  4664. <hkern g1="quotedbl.sc" g2="rcaron.sc" k="5" />
  4665. <hkern g1="quotedbl.sc" g2="racute.sc" k="5" />
  4666. <hkern g1="quotedbl.sc" g2="r.sc" k="5" />
  4667. <hkern g1="quotedbl.sc" g2="q.sc" k="28" />
  4668. <hkern g1="quotedbl.sc" g2="thorn.sc" k="5" />
  4669. <hkern g1="quotedbl.sc" g2="p.sc" k="5" />
  4670. <hkern g1="quotedbl.sc" g2="oe.sc" k="28" />
  4671. <hkern g1="quotedbl.sc" g2="otilde.sc" k="28" />
  4672. <hkern g1="quotedbl.sc" g2="oslashacute.sc" k="28" />
  4673. <hkern g1="quotedbl.sc" g2="oslash.sc" k="28" />
  4674. <hkern g1="quotedbl.sc" g2="oogonek.sc" k="28" />
  4675. <hkern g1="quotedbl.sc" g2="omacron.sc" k="28" />
  4676. <hkern g1="quotedbl.sc" g2="ohungarumlaut.sc" k="28" />
  4677. <hkern g1="quotedbl.sc" g2="ograve.sc" k="28" />
  4678. <hkern g1="quotedbl.sc" g2="odotbelow.sc" k="28" />
  4679. <hkern g1="quotedbl.sc" g2="odieresis.sc" k="28" />
  4680. <hkern g1="quotedbl.sc" g2="ocircumflex.sc" k="28" />
  4681. <hkern g1="quotedbl.sc" g2="ocaron.sc" k="28" />
  4682. <hkern g1="quotedbl.sc" g2="obreve.sc" k="28" />
  4683. <hkern g1="quotedbl.sc" g2="oacute.sc" k="28" />
  4684. <hkern g1="quotedbl.sc" g2="o.sc" k="28" />
  4685. <hkern g1="quotedbl.sc" g2="ntilde.sc" k="5" />
  4686. <hkern g1="quotedbl.sc" g2="eng.sc" k="5" />
  4687. <hkern g1="quotedbl.sc" g2="ndotaccent.sc" k="5" />
  4688. <hkern g1="quotedbl.sc" g2="ncommaaccent.sc" k="5" />
  4689. <hkern g1="quotedbl.sc" g2="ncaron.sc" k="5" />
  4690. <hkern g1="quotedbl.sc" g2="nacute.sc" k="5" />
  4691. <hkern g1="quotedbl.sc" g2="n.sc" k="5" />
  4692. <hkern g1="quotedbl.sc" g2="m.sc" k="56" />
  4693. <hkern g1="quotedbl.sc" g2="lslash.sc" k="5" />
  4694. <hkern g1="quotedbl.sc" g2="ldot.sc" k="5" />
  4695. <hkern g1="quotedbl.sc" g2="lcommaaccent.sc" k="5" />
  4696. <hkern g1="quotedbl.sc" g2="lcaron.sc" k="5" />
  4697. <hkern g1="quotedbl.sc" g2="lacute.sc" k="5" />
  4698. <hkern g1="quotedbl.sc" g2="l.sc" k="5" />
  4699. <hkern g1="quotedbl.sc" g2="kgreenlandic.sc" k="5" />
  4700. <hkern g1="quotedbl.sc" g2="kcommaaccent.sc" k="5" />
  4701. <hkern g1="quotedbl.sc" g2="k.sc" k="5" />
  4702. <hkern g1="quotedbl.sc" g2="itilde.sc" k="5" />
  4703. <hkern g1="quotedbl.sc" g2="iogonek.sc" k="5" />
  4704. <hkern g1="quotedbl.sc" g2="imacron.sc" k="5" />
  4705. <hkern g1="quotedbl.sc" g2="ij.sc" k="5" />
  4706. <hkern g1="quotedbl.sc" g2="igrave.sc" k="5" />
  4707. <hkern g1="quotedbl.sc" g2="idotbelow.sc" k="5" />
  4708. <hkern g1="quotedbl.sc" g2="idotaccent.sc" k="5" />
  4709. <hkern g1="quotedbl.sc" g2="idieresis.sc" k="5" />
  4710. <hkern g1="quotedbl.sc" g2="icircumflex.sc" k="5" />
  4711. <hkern g1="quotedbl.sc" g2="icaron.sc" k="5" />
  4712. <hkern g1="quotedbl.sc" g2="ibreve.sc" k="5" />
  4713. <hkern g1="quotedbl.sc" g2="iacute.sc" k="5" />
  4714. <hkern g1="quotedbl.sc" g2="dotlessi.sc" k="5" />
  4715. <hkern g1="quotedbl.sc" g2="i.sc" k="5" />
  4716. <hkern g1="quotedbl.sc" g2="hdotbelow.sc" k="5" />
  4717. <hkern g1="quotedbl.sc" g2="hcircumflex.sc" k="5" />
  4718. <hkern g1="quotedbl.sc" g2="hbar.sc" k="5" />
  4719. <hkern g1="quotedbl.sc" g2="h.sc" k="5" />
  4720. <hkern g1="quotedbl.sc" g2="gdotaccent.sc" k="28" />
  4721. <hkern g1="quotedbl.sc" g2="gcommaaccent.sc" k="28" />
  4722. <hkern g1="quotedbl.sc" g2="gcircumflex.sc" k="28" />
  4723. <hkern g1="quotedbl.sc" g2="gcaron.sc" k="28" />
  4724. <hkern g1="quotedbl.sc" g2="gbreve.sc" k="28" />
  4725. <hkern g1="quotedbl.sc" g2="gacute.sc" k="28" />
  4726. <hkern g1="quotedbl.sc" g2="g.sc" k="28" />
  4727. <hkern g1="quotedbl.sc" g2="f.sc" k="5" />
  4728. <hkern g1="quotedbl.sc" g2="schwa.sc" k="28" />
  4729. <hkern g1="quotedbl.sc" g2="etilde.sc" k="5" />
  4730. <hkern g1="quotedbl.sc" g2="eogonek.sc" k="5" />
  4731. <hkern g1="quotedbl.sc" g2="emacron.sc" k="5" />
  4732. <hkern g1="quotedbl.sc" g2="egrave.sc" k="5" />
  4733. <hkern g1="quotedbl.sc" g2="edotbelow.sc" k="5" />
  4734. <hkern g1="quotedbl.sc" g2="edotaccent.sc" k="5" />
  4735. <hkern g1="quotedbl.sc" g2="edieresis.sc" k="5" />
  4736. <hkern g1="quotedbl.sc" g2="ecircumflex.sc" k="5" />
  4737. <hkern g1="quotedbl.sc" g2="ecaron.sc" k="5" />
  4738. <hkern g1="quotedbl.sc" g2="ebreve.sc" k="5" />
  4739. <hkern g1="quotedbl.sc" g2="eacute.sc" k="5" />
  4740. <hkern g1="quotedbl.sc" g2="e.sc" k="5" />
  4741. <hkern g1="quotedbl.sc" g2="ddotbelow.sc" k="5" />
  4742. <hkern g1="quotedbl.sc" g2="dcroat.sc" k="5" />
  4743. <hkern g1="quotedbl.sc" g2="dcaron.sc" k="5" />
  4744. <hkern g1="quotedbl.sc" g2="eth.sc" k="5" />
  4745. <hkern g1="quotedbl.sc" g2="d.sc" k="5" />
  4746. <hkern g1="quotedbl.sc" g2="cdotaccent.sc" k="28" />
  4747. <hkern g1="quotedbl.sc" g2="ccircumflex.sc" k="28" />
  4748. <hkern g1="quotedbl.sc" g2="ccedilla.sc" k="28" />
  4749. <hkern g1="quotedbl.sc" g2="ccaron.sc" k="28" />
  4750. <hkern g1="quotedbl.sc" g2="cacute.sc" k="28" />
  4751. <hkern g1="quotedbl.sc" g2="c.sc" k="28" />
  4752. <hkern g1="quotedbl.sc" g2="b.sc" k="5" />
  4753. <hkern g1="quotedbl.sc" g2="aeacute.sc" k="48" />
  4754. <hkern g1="quotedbl.sc" g2="ae.sc" k="48" />
  4755. <hkern g1="quotedbl.sc" g2="atilde.sc" k="48" />
  4756. <hkern g1="quotedbl.sc" g2="aringacute.sc" k="48" />
  4757. <hkern g1="quotedbl.sc" g2="aring.sc" k="48" />
  4758. <hkern g1="quotedbl.sc" g2="aogonek.sc" k="48" />
  4759. <hkern g1="quotedbl.sc" g2="amacron.sc" k="48" />
  4760. <hkern g1="quotedbl.sc" g2="agrave.sc" k="48" />
  4761. <hkern g1="quotedbl.sc" g2="adotbelow.sc" k="48" />
  4762. <hkern g1="quotedbl.sc" g2="adieresis.sc" k="48" />
  4763. <hkern g1="quotedbl.sc" g2="acircumflex.sc" k="48" />
  4764. <hkern g1="quotedbl.sc" g2="acaron.sc" k="48" />
  4765. <hkern g1="quotedbl.sc" g2="abreve.sc" k="48" />
  4766. <hkern g1="quotedbl.sc" g2="aacute.sc" k="48" />
  4767. <hkern g1="quotedbl.sc" g2="a.sc" k="48" />
  4768. <hkern g1="quotesingle.sc" g2="germandbls.sc" k="5" />
  4769. <hkern g1="quotesingle.sc" g2="rdotbelow.sc" k="5" />
  4770. <hkern g1="quotesingle.sc" g2="rcommaaccent.sc" k="5" />
  4771. <hkern g1="quotesingle.sc" g2="rcaron.sc" k="5" />
  4772. <hkern g1="quotesingle.sc" g2="racute.sc" k="5" />
  4773. <hkern g1="quotesingle.sc" g2="r.sc" k="5" />
  4774. <hkern g1="quotesingle.sc" g2="q.sc" k="30" />
  4775. <hkern g1="quotesingle.sc" g2="thorn.sc" k="5" />
  4776. <hkern g1="quotesingle.sc" g2="p.sc" k="5" />
  4777. <hkern g1="quotesingle.sc" g2="oe.sc" k="30" />
  4778. <hkern g1="quotesingle.sc" g2="otilde.sc" k="30" />
  4779. <hkern g1="quotesingle.sc" g2="oslashacute.sc" k="30" />
  4780. <hkern g1="quotesingle.sc" g2="oslash.sc" k="30" />
  4781. <hkern g1="quotesingle.sc" g2="oogonek.sc" k="30" />
  4782. <hkern g1="quotesingle.sc" g2="omacron.sc" k="30" />
  4783. <hkern g1="quotesingle.sc" g2="ohungarumlaut.sc" k="30" />
  4784. <hkern g1="quotesingle.sc" g2="ograve.sc" k="30" />
  4785. <hkern g1="quotesingle.sc" g2="odotbelow.sc" k="30" />
  4786. <hkern g1="quotesingle.sc" g2="odieresis.sc" k="30" />
  4787. <hkern g1="quotesingle.sc" g2="ocircumflex.sc" k="30" />
  4788. <hkern g1="quotesingle.sc" g2="ocaron.sc" k="30" />
  4789. <hkern g1="quotesingle.sc" g2="obreve.sc" k="30" />
  4790. <hkern g1="quotesingle.sc" g2="oacute.sc" k="30" />
  4791. <hkern g1="quotesingle.sc" g2="o.sc" k="30" />
  4792. <hkern g1="quotesingle.sc" g2="ntilde.sc" k="5" />
  4793. <hkern g1="quotesingle.sc" g2="eng.sc" k="5" />
  4794. <hkern g1="quotesingle.sc" g2="ndotaccent.sc" k="5" />
  4795. <hkern g1="quotesingle.sc" g2="ncommaaccent.sc" k="5" />
  4796. <hkern g1="quotesingle.sc" g2="ncaron.sc" k="5" />
  4797. <hkern g1="quotesingle.sc" g2="nacute.sc" k="5" />
  4798. <hkern g1="quotesingle.sc" g2="n.sc" k="5" />
  4799. <hkern g1="quotesingle.sc" g2="m.sc" k="56" />
  4800. <hkern g1="quotesingle.sc" g2="lslash.sc" k="5" />
  4801. <hkern g1="quotesingle.sc" g2="ldot.sc" k="5" />
  4802. <hkern g1="quotesingle.sc" g2="lcommaaccent.sc" k="5" />
  4803. <hkern g1="quotesingle.sc" g2="lcaron.sc" k="5" />
  4804. <hkern g1="quotesingle.sc" g2="lacute.sc" k="5" />
  4805. <hkern g1="quotesingle.sc" g2="l.sc" k="5" />
  4806. <hkern g1="quotesingle.sc" g2="kgreenlandic.sc" k="5" />
  4807. <hkern g1="quotesingle.sc" g2="kcommaaccent.sc" k="5" />
  4808. <hkern g1="quotesingle.sc" g2="k.sc" k="5" />
  4809. <hkern g1="quotesingle.sc" g2="itilde.sc" k="5" />
  4810. <hkern g1="quotesingle.sc" g2="iogonek.sc" k="5" />
  4811. <hkern g1="quotesingle.sc" g2="imacron.sc" k="5" />
  4812. <hkern g1="quotesingle.sc" g2="ij.sc" k="5" />
  4813. <hkern g1="quotesingle.sc" g2="igrave.sc" k="5" />
  4814. <hkern g1="quotesingle.sc" g2="idotbelow.sc" k="5" />
  4815. <hkern g1="quotesingle.sc" g2="idotaccent.sc" k="5" />
  4816. <hkern g1="quotesingle.sc" g2="idieresis.sc" k="5" />
  4817. <hkern g1="quotesingle.sc" g2="icircumflex.sc" k="5" />
  4818. <hkern g1="quotesingle.sc" g2="icaron.sc" k="5" />
  4819. <hkern g1="quotesingle.sc" g2="ibreve.sc" k="5" />
  4820. <hkern g1="quotesingle.sc" g2="iacute.sc" k="5" />
  4821. <hkern g1="quotesingle.sc" g2="dotlessi.sc" k="5" />
  4822. <hkern g1="quotesingle.sc" g2="i.sc" k="5" />
  4823. <hkern g1="quotesingle.sc" g2="hdotbelow.sc" k="5" />
  4824. <hkern g1="quotesingle.sc" g2="hcircumflex.sc" k="5" />
  4825. <hkern g1="quotesingle.sc" g2="hbar.sc" k="5" />
  4826. <hkern g1="quotesingle.sc" g2="h.sc" k="5" />
  4827. <hkern g1="quotesingle.sc" g2="gdotaccent.sc" k="30" />
  4828. <hkern g1="quotesingle.sc" g2="gcommaaccent.sc" k="30" />
  4829. <hkern g1="quotesingle.sc" g2="gcircumflex.sc" k="30" />
  4830. <hkern g1="quotesingle.sc" g2="gcaron.sc" k="30" />
  4831. <hkern g1="quotesingle.sc" g2="gbreve.sc" k="30" />
  4832. <hkern g1="quotesingle.sc" g2="gacute.sc" k="30" />
  4833. <hkern g1="quotesingle.sc" g2="g.sc" k="30" />
  4834. <hkern g1="quotesingle.sc" g2="f.sc" k="5" />
  4835. <hkern g1="quotesingle.sc" g2="schwa.sc" k="30" />
  4836. <hkern g1="quotesingle.sc" g2="etilde.sc" k="5" />
  4837. <hkern g1="quotesingle.sc" g2="eogonek.sc" k="5" />
  4838. <hkern g1="quotesingle.sc" g2="emacron.sc" k="5" />
  4839. <hkern g1="quotesingle.sc" g2="egrave.sc" k="5" />
  4840. <hkern g1="quotesingle.sc" g2="edotbelow.sc" k="5" />
  4841. <hkern g1="quotesingle.sc" g2="edotaccent.sc" k="5" />
  4842. <hkern g1="quotesingle.sc" g2="edieresis.sc" k="5" />
  4843. <hkern g1="quotesingle.sc" g2="ecircumflex.sc" k="5" />
  4844. <hkern g1="quotesingle.sc" g2="ecaron.sc" k="5" />
  4845. <hkern g1="quotesingle.sc" g2="ebreve.sc" k="5" />
  4846. <hkern g1="quotesingle.sc" g2="eacute.sc" k="5" />
  4847. <hkern g1="quotesingle.sc" g2="e.sc" k="5" />
  4848. <hkern g1="quotesingle.sc" g2="ddotbelow.sc" k="5" />
  4849. <hkern g1="quotesingle.sc" g2="dcroat.sc" k="5" />
  4850. <hkern g1="quotesingle.sc" g2="dcaron.sc" k="5" />
  4851. <hkern g1="quotesingle.sc" g2="eth.sc" k="5" />
  4852. <hkern g1="quotesingle.sc" g2="d.sc" k="5" />
  4853. <hkern g1="quotesingle.sc" g2="cdotaccent.sc" k="30" />
  4854. <hkern g1="quotesingle.sc" g2="ccircumflex.sc" k="30" />
  4855. <hkern g1="quotesingle.sc" g2="ccedilla.sc" k="30" />
  4856. <hkern g1="quotesingle.sc" g2="ccaron.sc" k="30" />
  4857. <hkern g1="quotesingle.sc" g2="cacute.sc" k="30" />
  4858. <hkern g1="quotesingle.sc" g2="c.sc" k="30" />
  4859. <hkern g1="quotesingle.sc" g2="b.sc" k="5" />
  4860. <hkern g1="quotesingle.sc" g2="aeacute.sc" k="48" />
  4861. <hkern g1="quotesingle.sc" g2="ae.sc" k="48" />
  4862. <hkern g1="quotesingle.sc" g2="atilde.sc" k="48" />
  4863. <hkern g1="quotesingle.sc" g2="aringacute.sc" k="48" />
  4864. <hkern g1="quotesingle.sc" g2="aring.sc" k="48" />
  4865. <hkern g1="quotesingle.sc" g2="aogonek.sc" k="48" />
  4866. <hkern g1="quotesingle.sc" g2="amacron.sc" k="48" />
  4867. <hkern g1="quotesingle.sc" g2="agrave.sc" k="48" />
  4868. <hkern g1="quotesingle.sc" g2="adotbelow.sc" k="48" />
  4869. <hkern g1="quotesingle.sc" g2="adieresis.sc" k="48" />
  4870. <hkern g1="quotesingle.sc" g2="acircumflex.sc" k="48" />
  4871. <hkern g1="quotesingle.sc" g2="acaron.sc" k="48" />
  4872. <hkern g1="quotesingle.sc" g2="abreve.sc" k="48" />
  4873. <hkern g1="quotesingle.sc" g2="aacute.sc" k="48" />
  4874. <hkern g1="quotesingle.sc" g2="a.sc" k="48" />
  4875. <hkern g1="ampersand.caps" g2="IJacute" k="3" />
  4876. <hkern g1="ampersand.caps" u2="&#x1ef8;" k="18" />
  4877. <hkern g1="ampersand.caps" u2="&#x1ef2;" k="18" />
  4878. <hkern g1="ampersand.caps" u2="&#x1ee4;" k="5" />
  4879. <hkern g1="ampersand.caps" u2="&#x1ecc;" k="13" />
  4880. <hkern g1="ampersand.caps" u2="&#x1eca;" k="3" />
  4881. <hkern g1="ampersand.caps" u2="&#x1ebc;" k="3" />
  4882. <hkern g1="ampersand.caps" u2="&#x1eb8;" k="3" />
  4883. <hkern g1="ampersand.caps" u2="&#x1ea0;" k="6" />
  4884. <hkern g1="ampersand.caps" u2="&#x1e84;" k="18" />
  4885. <hkern g1="ampersand.caps" u2="&#x1e82;" k="18" />
  4886. <hkern g1="ampersand.caps" u2="&#x1e80;" k="18" />
  4887. <hkern g1="ampersand.caps" u2="&#x1e6c;" k="18" />
  4888. <hkern g1="ampersand.caps" u2="&#x1e5a;" k="3" />
  4889. <hkern g1="ampersand.caps" u2="&#x1e44;" k="3" />
  4890. <hkern g1="ampersand.caps" u2="&#x1e24;" k="3" />
  4891. <hkern g1="ampersand.caps" u2="&#x1e0c;" k="3" />
  4892. <hkern g1="ampersand.caps" u2="&#x232;" k="18" />
  4893. <hkern g1="ampersand.caps" u2="&#x21a;" k="18" />
  4894. <hkern g1="ampersand.caps" u2="&#x1fe;" k="13" />
  4895. <hkern g1="ampersand.caps" u2="&#x1fc;" k="6" />
  4896. <hkern g1="ampersand.caps" u2="&#x1fa;" k="6" />
  4897. <hkern g1="ampersand.caps" u2="&#x1f4;" k="13" />
  4898. <hkern g1="ampersand.caps" u2="&#x1ea;" k="13" />
  4899. <hkern g1="ampersand.caps" u2="&#x1e6;" k="13" />
  4900. <hkern g1="ampersand.caps" u2="&#x1db;" k="5" />
  4901. <hkern g1="ampersand.caps" u2="&#x1d9;" k="5" />
  4902. <hkern g1="ampersand.caps" u2="&#x1d7;" k="5" />
  4903. <hkern g1="ampersand.caps" u2="&#x1d5;" k="5" />
  4904. <hkern g1="ampersand.caps" u2="&#x1d3;" k="5" />
  4905. <hkern g1="ampersand.caps" u2="&#x1d1;" k="13" />
  4906. <hkern g1="ampersand.caps" u2="&#x1cf;" k="3" />
  4907. <hkern g1="ampersand.caps" u2="&#x1cd;" k="6" />
  4908. <hkern g1="ampersand.caps" u2="&#x178;" k="18" />
  4909. <hkern g1="ampersand.caps" u2="&#x176;" k="18" />
  4910. <hkern g1="ampersand.caps" u2="&#x174;" k="18" />
  4911. <hkern g1="ampersand.caps" u2="&#x172;" k="5" />
  4912. <hkern g1="ampersand.caps" u2="&#x170;" k="5" />
  4913. <hkern g1="ampersand.caps" u2="&#x16e;" k="5" />
  4914. <hkern g1="ampersand.caps" u2="&#x16c;" k="5" />
  4915. <hkern g1="ampersand.caps" u2="&#x16a;" k="5" />
  4916. <hkern g1="ampersand.caps" u2="&#x168;" k="5" />
  4917. <hkern g1="ampersand.caps" u2="&#x166;" k="18" />
  4918. <hkern g1="ampersand.caps" u2="&#x164;" k="18" />
  4919. <hkern g1="ampersand.caps" u2="&#x162;" k="18" />
  4920. <hkern g1="ampersand.caps" u2="&#x158;" k="3" />
  4921. <hkern g1="ampersand.caps" u2="&#x156;" k="3" />
  4922. <hkern g1="ampersand.caps" u2="&#x154;" k="3" />
  4923. <hkern g1="ampersand.caps" u2="&#x152;" k="13" />
  4924. <hkern g1="ampersand.caps" u2="&#x150;" k="13" />
  4925. <hkern g1="ampersand.caps" u2="&#x14e;" k="13" />
  4926. <hkern g1="ampersand.caps" u2="&#x14c;" k="13" />
  4927. <hkern g1="ampersand.caps" u2="&#x14a;" k="3" />
  4928. <hkern g1="ampersand.caps" u2="&#x147;" k="3" />
  4929. <hkern g1="ampersand.caps" u2="&#x145;" k="3" />
  4930. <hkern g1="ampersand.caps" u2="&#x143;" k="3" />
  4931. <hkern g1="ampersand.caps" u2="&#x141;" k="3" />
  4932. <hkern g1="ampersand.caps" u2="&#x13f;" k="3" />
  4933. <hkern g1="ampersand.caps" u2="&#x13d;" k="3" />
  4934. <hkern g1="ampersand.caps" u2="&#x13b;" k="3" />
  4935. <hkern g1="ampersand.caps" u2="&#x139;" k="3" />
  4936. <hkern g1="ampersand.caps" u2="&#x136;" k="3" />
  4937. <hkern g1="ampersand.caps" u2="&#x132;" k="3" />
  4938. <hkern g1="ampersand.caps" u2="&#x130;" k="3" />
  4939. <hkern g1="ampersand.caps" u2="&#x12e;" k="3" />
  4940. <hkern g1="ampersand.caps" u2="&#x12c;" k="3" />
  4941. <hkern g1="ampersand.caps" u2="&#x12a;" k="3" />
  4942. <hkern g1="ampersand.caps" u2="&#x128;" k="3" />
  4943. <hkern g1="ampersand.caps" u2="&#x126;" k="3" />
  4944. <hkern g1="ampersand.caps" u2="&#x124;" k="3" />
  4945. <hkern g1="ampersand.caps" u2="&#x122;" k="13" />
  4946. <hkern g1="ampersand.caps" u2="&#x120;" k="13" />
  4947. <hkern g1="ampersand.caps" u2="&#x11e;" k="13" />
  4948. <hkern g1="ampersand.caps" u2="&#x11c;" k="13" />
  4949. <hkern g1="ampersand.caps" u2="&#x11a;" k="3" />
  4950. <hkern g1="ampersand.caps" u2="&#x118;" k="3" />
  4951. <hkern g1="ampersand.caps" u2="&#x116;" k="3" />
  4952. <hkern g1="ampersand.caps" u2="&#x114;" k="3" />
  4953. <hkern g1="ampersand.caps" u2="&#x112;" k="3" />
  4954. <hkern g1="ampersand.caps" u2="&#x110;" k="3" />
  4955. <hkern g1="ampersand.caps" u2="&#x10e;" k="3" />
  4956. <hkern g1="ampersand.caps" u2="&#x10c;" k="13" />
  4957. <hkern g1="ampersand.caps" u2="&#x10a;" k="13" />
  4958. <hkern g1="ampersand.caps" u2="&#x108;" k="13" />
  4959. <hkern g1="ampersand.caps" u2="&#x106;" k="13" />
  4960. <hkern g1="ampersand.caps" u2="&#x104;" k="6" />
  4961. <hkern g1="ampersand.caps" u2="&#x102;" k="6" />
  4962. <hkern g1="ampersand.caps" u2="&#x100;" k="6" />
  4963. <hkern g1="ampersand.caps" u2="&#xde;" k="3" />
  4964. <hkern g1="ampersand.caps" u2="&#xdd;" k="18" />
  4965. <hkern g1="ampersand.caps" u2="&#xdc;" k="5" />
  4966. <hkern g1="ampersand.caps" u2="&#xdb;" k="5" />
  4967. <hkern g1="ampersand.caps" u2="&#xda;" k="5" />
  4968. <hkern g1="ampersand.caps" u2="&#xd9;" k="5" />
  4969. <hkern g1="ampersand.caps" u2="&#xd8;" k="13" />
  4970. <hkern g1="ampersand.caps" u2="&#xd6;" k="13" />
  4971. <hkern g1="ampersand.caps" u2="&#xd5;" k="13" />
  4972. <hkern g1="ampersand.caps" u2="&#xd4;" k="13" />
  4973. <hkern g1="ampersand.caps" u2="&#xd3;" k="13" />
  4974. <hkern g1="ampersand.caps" u2="&#xd2;" k="13" />
  4975. <hkern g1="ampersand.caps" u2="&#xd1;" k="3" />
  4976. <hkern g1="ampersand.caps" u2="&#xd0;" k="3" />
  4977. <hkern g1="ampersand.caps" u2="&#xcf;" k="3" />
  4978. <hkern g1="ampersand.caps" u2="&#xce;" k="3" />
  4979. <hkern g1="ampersand.caps" u2="&#xcd;" k="3" />
  4980. <hkern g1="ampersand.caps" u2="&#xcc;" k="3" />
  4981. <hkern g1="ampersand.caps" u2="&#xcb;" k="3" />
  4982. <hkern g1="ampersand.caps" u2="&#xca;" k="3" />
  4983. <hkern g1="ampersand.caps" u2="&#xc9;" k="3" />
  4984. <hkern g1="ampersand.caps" u2="&#xc8;" k="3" />
  4985. <hkern g1="ampersand.caps" u2="&#xc7;" k="13" />
  4986. <hkern g1="ampersand.caps" u2="&#xc6;" k="6" />
  4987. <hkern g1="ampersand.caps" u2="&#xc5;" k="6" />
  4988. <hkern g1="ampersand.caps" u2="&#xc4;" k="6" />
  4989. <hkern g1="ampersand.caps" u2="&#xc3;" k="6" />
  4990. <hkern g1="ampersand.caps" u2="&#xc2;" k="6" />
  4991. <hkern g1="ampersand.caps" u2="&#xc1;" k="6" />
  4992. <hkern g1="ampersand.caps" u2="&#xc0;" k="6" />
  4993. <hkern g1="ampersand.caps" u2="Y" k="18" />
  4994. <hkern g1="ampersand.caps" u2="X" k="5" />
  4995. <hkern g1="ampersand.caps" u2="W" k="18" />
  4996. <hkern g1="ampersand.caps" u2="V" k="18" />
  4997. <hkern g1="ampersand.caps" u2="U" k="5" />
  4998. <hkern g1="ampersand.caps" u2="T" k="18" />
  4999. <hkern g1="ampersand.caps" u2="R" k="3" />
  5000. <hkern g1="ampersand.caps" u2="Q" k="13" />
  5001. <hkern g1="ampersand.caps" u2="P" k="3" />
  5002. <hkern g1="ampersand.caps" u2="O" k="13" />
  5003. <hkern g1="ampersand.caps" u2="N" k="3" />
  5004. <hkern g1="ampersand.caps" u2="L" k="3" />
  5005. <hkern g1="ampersand.caps" u2="K" k="3" />
  5006. <hkern g1="ampersand.caps" u2="I" k="3" />
  5007. <hkern g1="ampersand.caps" u2="H" k="3" />
  5008. <hkern g1="ampersand.caps" u2="G" k="13" />
  5009. <hkern g1="ampersand.caps" u2="F" k="3" />
  5010. <hkern g1="ampersand.caps" u2="E" k="3" />
  5011. <hkern g1="ampersand.caps" u2="D" k="3" />
  5012. <hkern g1="ampersand.caps" u2="C" k="13" />
  5013. <hkern g1="ampersand.caps" u2="B" k="3" />
  5014. <hkern g1="ampersand.caps" u2="A" k="6" />
  5015. <hkern g1="florin.sc" g2="sterling.sc" k="78" />
  5016. <hkern g1="IJacute" g2="parenleft.caps" k="15" />
  5017. <hkern g1="IJacute" g2="asterisk.caps" k="15" />
  5018. <hkern g1="IJacute" g2="question.caps" k="8" />
  5019. <hkern g1="IJacute" g2="exclam.caps" k="5" />
  5020. <hkern g1="B" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="5" />
  5021. <hkern g1="B" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="4" />
  5022. <hkern g1="B" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="8" />
  5023. <hkern g1="B" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="1" />
  5024. <hkern g1="B" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="25" />
  5025. <hkern g1="B" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  5026. <hkern g1="B" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="14" />
  5027. <hkern g1="B" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="21" />
  5028. <hkern g1="B" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  5029. <hkern g1="B" g2="asterisk,asterisk.caps,asterisk.sc" k="23" />
  5030. <hkern g1="B" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="38" />
  5031. <hkern g1="B" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="3" />
  5032. <hkern g1="B" g2="parenright,parenright.caps,parenright.sc" k="8" />
  5033. <hkern g1="B" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="38" />
  5034. <hkern g1="B" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="10" />
  5035. <hkern g1="B" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="15" />
  5036. <hkern g1="B" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="20" />
  5037. <hkern g1="B" g2="slash,slash.caps,slash.sc" k="5" />
  5038. <hkern g1="Delta" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="23" />
  5039. <hkern g1="Delta" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="88" />
  5040. <hkern g1="Delta" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="53" />
  5041. <hkern g1="Delta" g2="backslash,backslash.caps,backslash.sc" k="10" />
  5042. <hkern g1="F" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="36" />
  5043. <hkern g1="F" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="9" />
  5044. <hkern g1="F" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="1" />
  5045. <hkern g1="F" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  5046. <hkern g1="F" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="5" />
  5047. <hkern g1="F" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="90" />
  5048. <hkern g1="F" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-3" />
  5049. <hkern g1="F" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="45" />
  5050. <hkern g1="F" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="55" />
  5051. <hkern g1="F" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="4" />
  5052. <hkern g1="F" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="33" />
  5053. <hkern g1="F" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="23" />
  5054. <hkern g1="F" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="8" />
  5055. <hkern g1="F" g2="questiondown,questiondown.caps,questiondown.sc" k="30" />
  5056. <hkern g1="F" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="8" />
  5057. <hkern g1="F" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="18" />
  5058. <hkern g1="F" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="34" />
  5059. <hkern g1="F" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="16" />
  5060. <hkern g1="M" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="8" />
  5061. <hkern g1="M" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="8" />
  5062. <hkern g1="M" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="3" />
  5063. <hkern g1="M" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="10" />
  5064. <hkern g1="M" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  5065. <hkern g1="M" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="14" />
  5066. <hkern g1="M" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="19" />
  5067. <hkern g1="M" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  5068. <hkern g1="M" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  5069. <hkern g1="M" g2="parenright,parenright.caps,parenright.sc" k="5" />
  5070. <hkern g1="M" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="15" />
  5071. <hkern g1="M" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="23" />
  5072. <hkern g1="M" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="18" />
  5073. <hkern g1="M" g2="backslash,backslash.caps,backslash.sc" k="3" />
  5074. <hkern g1="M" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="3" />
  5075. <hkern g1="M" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="4" />
  5076. <hkern g1="M" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="6" />
  5077. <hkern g1="M" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="15" />
  5078. <hkern g1="M" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="15" />
  5079. <hkern g1="M" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="15" />
  5080. <hkern g1="M" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="20" />
  5081. <hkern g1="M" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="3" />
  5082. <hkern g1="M" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="5" />
  5083. <hkern g1="M" g2="bracketright,bracketright.caps,bracketright.sc" k="3" />
  5084. <hkern g1="M" g2="f,germandbls,Germandbls,fi,fl" k="3" />
  5085. <hkern g1="M" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="4" />
  5086. <hkern g1="M" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="9" />
  5087. <hkern g1="M" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  5088. <hkern g1="M" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="8" />
  5089. <hkern g1="M" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="5" />
  5090. <hkern g1="M" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="3" />
  5091. <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="36" />
  5092. <hkern g1="P" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="11" />
  5093. <hkern g1="P" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="20" />
  5094. <hkern g1="P" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="8" />
  5095. <hkern g1="P" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="8" />
  5096. <hkern g1="P" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="8" />
  5097. <hkern g1="P" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="13" />
  5098. <hkern g1="P" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="24" />
  5099. <hkern g1="P" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  5100. <hkern g1="P" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  5101. <hkern g1="P" g2="parenright,parenright.caps,parenright.sc" k="3" />
  5102. <hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="110" />
  5103. <hkern g1="P" g2="slash,slash.caps,slash.sc" k="38" />
  5104. <hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="11" />
  5105. <hkern g1="P" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="69" />
  5106. <hkern g1="P" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="34" />
  5107. <hkern g1="P" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="31" />
  5108. <hkern g1="P" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="-1" />
  5109. <hkern g1="P" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="8" />
  5110. <hkern g1="P" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="26" />
  5111. <hkern g1="P" g2="bracketright,bracketright.caps,bracketright.sc" k="3" />
  5112. <hkern g1="P" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="11" />
  5113. <hkern g1="P" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="11" />
  5114. <hkern g1="P" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="8" />
  5115. <hkern g1="P" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="1" />
  5116. <hkern g1="P" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="8" />
  5117. <hkern g1="P" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="6" />
  5118. <hkern g1="P" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  5119. <hkern g1="P" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="5" />
  5120. <hkern g1="P" g2="parenleft,parenleft.caps,parenleft.sc" k="15" />
  5121. <hkern g1="Thorn" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="40" />
  5122. <hkern g1="Thorn" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="8" />
  5123. <hkern g1="Thorn" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="8" />
  5124. <hkern g1="Thorn" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="8" />
  5125. <hkern g1="Thorn" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="30" />
  5126. <hkern g1="Thorn" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="8" />
  5127. <hkern g1="Thorn" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="30" />
  5128. <hkern g1="Thorn" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
  5129. <hkern g1="Thorn" g2="ampersand,ampersand.caps,ampersand.sc" k="15" />
  5130. <hkern g1="Thorn" g2="asterisk,asterisk.caps,asterisk.sc" k="15" />
  5131. <hkern g1="Thorn" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="85" />
  5132. <hkern g1="Thorn" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="15" />
  5133. <hkern g1="Thorn" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="3" />
  5134. <hkern g1="Thorn" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="36" />
  5135. <hkern g1="Thorn" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="6" />
  5136. <hkern g1="Thorn" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="3" />
  5137. <hkern g1="Thorn" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="15" />
  5138. <hkern g1="Thorn" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="8" />
  5139. <hkern g1="Thorn" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="8" />
  5140. <hkern g1="Thorn" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="18" />
  5141. <hkern g1="Thorn" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="4" />
  5142. <hkern g1="Thorn" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="15" />
  5143. <hkern g1="Thorn" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  5144. <hkern g1="Thorn" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="3" />
  5145. <hkern g1="Thorn" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="4" />
  5146. <hkern g1="Thorn" g2="J,Jcircumflex,Nhookleft,Jacute" k="4" />
  5147. <hkern g1="Thorn" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="-4" />
  5148. <hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="34" />
  5149. <hkern g1="X" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="14" />
  5150. <hkern g1="X" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="9" />
  5151. <hkern g1="X" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  5152. <hkern g1="X" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  5153. <hkern g1="X" g2="slash,slash.caps,slash.sc" k="3" />
  5154. <hkern g1="X" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="6" />
  5155. <hkern g1="X" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="10" />
  5156. <hkern g1="X" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  5157. <hkern g1="X" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="26" />
  5158. <hkern g1="X" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="40" />
  5159. <hkern g1="X" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="34" />
  5160. <hkern g1="X" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="23" />
  5161. <hkern g1="X" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="38" />
  5162. <hkern g1="X" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="8" />
  5163. <hkern g1="X" g2="f,germandbls,Germandbls,fi,fl" k="15" />
  5164. <hkern g1="X" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="25" />
  5165. <hkern g1="X" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="21" />
  5166. <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="28" />
  5167. <hkern g1="X" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="23" />
  5168. <hkern g1="X" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="23" />
  5169. <hkern g1="X" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="3" />
  5170. <hkern g1="X" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="15" />
  5171. <hkern g1="X" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="15" />
  5172. <hkern g1="X" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="18" />
  5173. <hkern g1="at" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="3" />
  5174. <hkern g1="at" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="3" />
  5175. <hkern g1="at" g2="backslash,backslash.caps,backslash.sc" k="3" />
  5176. <hkern g1="b.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="35" />
  5177. <hkern g1="b.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="33" />
  5178. <hkern g1="b.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="8" />
  5179. <hkern g1="b.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="8" />
  5180. <hkern g1="b.sc" g2="backslash,backslash.caps,backslash.sc" k="3" />
  5181. <hkern g1="b.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="15" />
  5182. <hkern g1="b.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="14" />
  5183. <hkern g1="b.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="23" />
  5184. <hkern g1="b.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="23" />
  5185. <hkern g1="b.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="8" />
  5186. <hkern g1="b.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  5187. <hkern g1="b.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="15" />
  5188. <hkern g1="b.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="8" />
  5189. <hkern g1="b.sc" g2="quotedblleft.sc,quoteleft.sc" k="18" />
  5190. <hkern g1="b.sc" g2="quotedblright.sc,quoteright.sc" k="33" />
  5191. <hkern g1="b.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="4" />
  5192. <hkern g1="b.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="4" />
  5193. <hkern g1="bar" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="13" />
  5194. <hkern g1="bar" g2="slash,slash.caps,slash.sc" k="3" />
  5195. <hkern g1="cent.sc" g2="two,two.lf,two.osf,two.sc" k="5" />
  5196. <hkern g1="cent.sc" g2="three,three.lf,three.osf,three.sc" k="-8" />
  5197. <hkern g1="cent.sc" g2="four,four.lf,four.osf,four.sc" k="8" />
  5198. <hkern g1="currency.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="3" />
  5199. <hkern g1="dagger" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="38" />
  5200. <hkern g1="dagger" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="15" />
  5201. <hkern g1="dagger" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="15" />
  5202. <hkern g1="dagger" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="8" />
  5203. <hkern g1="dagger" g2="ampersand,ampersand.caps,ampersand.sc" k="23" />
  5204. <hkern g1="dagger" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  5205. <hkern g1="dagger" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="53" />
  5206. <hkern g1="dagger" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="105" />
  5207. <hkern g1="dagger" g2="slash,slash.caps,slash.sc" k="45" />
  5208. <hkern g1="dagger" g2="backslash,backslash.caps,backslash.sc" k="15" />
  5209. <hkern g1="dagger" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="19" />
  5210. <hkern g1="dagger" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="53" />
  5211. <hkern g1="dagger" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="23" />
  5212. <hkern g1="dagger" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="38" />
  5213. <hkern g1="dagger" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="8" />
  5214. <hkern g1="dagger" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="15" />
  5215. <hkern g1="dagger" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
  5216. <hkern g1="dagger" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="19" />
  5217. <hkern g1="dagger" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="4" />
  5218. <hkern g1="dagger" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="4" />
  5219. <hkern g1="dagger" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="8" />
  5220. <hkern g1="dagger" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="15" />
  5221. <hkern g1="dagger" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="19" />
  5222. <hkern g1="dagger" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="19" />
  5223. <hkern g1="dagger" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="8" />
  5224. <hkern g1="dagger" g2="two,two.lf,two.osf,two.sc" k="15" />
  5225. <hkern g1="dagger" g2="four,four.lf,four.osf,four.sc" k="30" />
  5226. <hkern g1="dagger" g2="seven,seven.lf,seven.osf,seven.sc" k="15" />
  5227. <hkern g1="dagger" g2="eight,eight.lf,eight.osf,eight.sc" k="8" />
  5228. <hkern g1="dagger" g2="cent,cent.lf,cent.osf,cent.sc" k="15" />
  5229. <hkern g1="dagger" g2="currency,currency.lf,currency.osf,currency.sc" k="8" />
  5230. <hkern g1="dagger" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="8" />
  5231. <hkern g1="dagger" g2="euro,euro.lf,euro.osf,euro.sc" k="15" />
  5232. <hkern g1="dagger" g2="florin,florin.lf,florin.osf,florin.sc" k="38" />
  5233. <hkern g1="dagger" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="8" />
  5234. <hkern g1="dagger" g2="yen,yen.lf,yen.osf,yen.sc" k="8" />
  5235. <hkern g1="daggerdbl" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="26" />
  5236. <hkern g1="daggerdbl" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="4" />
  5237. <hkern g1="daggerdbl" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="19" />
  5238. <hkern g1="daggerdbl" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="4" />
  5239. <hkern g1="daggerdbl" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="8" />
  5240. <hkern g1="daggerdbl" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="8" />
  5241. <hkern g1="daggerdbl" g2="ampersand,ampersand.caps,ampersand.sc" k="23" />
  5242. <hkern g1="daggerdbl" g2="asterisk,asterisk.caps,asterisk.sc" k="15" />
  5243. <hkern g1="daggerdbl" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="23" />
  5244. <hkern g1="daggerdbl" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="53" />
  5245. <hkern g1="daggerdbl" g2="slash,slash.caps,slash.sc" k="30" />
  5246. <hkern g1="daggerdbl" g2="backslash,backslash.caps,backslash.sc" k="38" />
  5247. <hkern g1="daggerdbl" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="8" />
  5248. <hkern g1="daggerdbl" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="30" />
  5249. <hkern g1="daggerdbl" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="8" />
  5250. <hkern g1="daggerdbl" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="15" />
  5251. <hkern g1="daggerdbl" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="8" />
  5252. <hkern g1="daggerdbl" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="8" />
  5253. <hkern g1="daggerdbl" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="8" />
  5254. <hkern g1="daggerdbl" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="8" />
  5255. <hkern g1="daggerdbl" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="8" />
  5256. <hkern g1="daggerdbl" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="8" />
  5257. <hkern g1="daggerdbl" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="15" />
  5258. <hkern g1="daggerdbl" g2="two,two.lf,two.osf,two.sc" k="15" />
  5259. <hkern g1="daggerdbl" g2="seven,seven.lf,seven.osf,seven.sc" k="19" />
  5260. <hkern g1="daggerdbl" g2="eight,eight.lf,eight.osf,eight.sc" k="4" />
  5261. <hkern g1="daggerdbl" g2="cent,cent.lf,cent.osf,cent.sc" k="8" />
  5262. <hkern g1="daggerdbl" g2="currency,currency.lf,currency.osf,currency.sc" k="15" />
  5263. <hkern g1="daggerdbl" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="8" />
  5264. <hkern g1="daggerdbl" g2="euro,euro.lf,euro.osf,euro.sc" k="8" />
  5265. <hkern g1="daggerdbl" g2="florin,florin.lf,florin.osf,florin.sc" k="15" />
  5266. <hkern g1="daggerdbl" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="8" />
  5267. <hkern g1="daggerdbl" g2="five,five.lf,five.osf,five.sc" k="8" />
  5268. <hkern g1="daggerdbl" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="15" />
  5269. <hkern g1="emdash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="9" />
  5270. <hkern g1="emdash" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="46" />
  5271. <hkern g1="emdash" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="19" />
  5272. <hkern g1="emdash" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  5273. <hkern g1="emdash" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  5274. <hkern g1="emdash" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="48" />
  5275. <hkern g1="emdash" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="8" />
  5276. <hkern g1="emdash" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="10" />
  5277. <hkern g1="emdash" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="18" />
  5278. <hkern g1="emdash" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="4" />
  5279. <hkern g1="emdash" g2="two,two.lf,two.osf,two.sc" k="10" />
  5280. <hkern g1="emdash" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  5281. <hkern g1="emdash" g2="florin,florin.lf,florin.osf,florin.sc" k="15" />
  5282. <hkern g1="emdash" g2="percent.lf,perthousand.lf" k="15" />
  5283. <hkern g1="emdash.caps" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="8" />
  5284. <hkern g1="emdash.caps" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="23" />
  5285. <hkern g1="emdash.caps" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="8" />
  5286. <hkern g1="emdash.caps" g2="seven,seven.lf,seven.osf,seven.sc" k="8" />
  5287. <hkern g1="endash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="5" />
  5288. <hkern g1="endash" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="9" />
  5289. <hkern g1="endash" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="51" />
  5290. <hkern g1="endash" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="14" />
  5291. <hkern g1="endash" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="38" />
  5292. <hkern g1="endash" g2="asterisk,asterisk.caps,asterisk.sc" k="38" />
  5293. <hkern g1="endash" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="65" />
  5294. <hkern g1="endash" g2="slash,slash.caps,slash.sc" k="-8" />
  5295. <hkern g1="endash" g2="backslash,backslash.caps,backslash.sc" k="30" />
  5296. <hkern g1="endash" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="8" />
  5297. <hkern g1="endash" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="14" />
  5298. <hkern g1="endash" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="38" />
  5299. <hkern g1="endash" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
  5300. <hkern g1="endash" g2="two,two.lf,two.osf,two.sc" k="15" />
  5301. <hkern g1="endash" g2="seven,seven.lf,seven.osf,seven.sc" k="29" />
  5302. <hkern g1="endash" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="14" />
  5303. <hkern g1="endash.caps" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="15" />
  5304. <hkern g1="endash.caps" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="45" />
  5305. <hkern g1="endash.caps" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="15" />
  5306. <hkern g1="f.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  5307. <hkern g1="f.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="5" />
  5308. <hkern g1="f.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="55" />
  5309. <hkern g1="f.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-15" />
  5310. <hkern g1="f.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-15" />
  5311. <hkern g1="f.sc" g2="slash,slash.caps,slash.sc" k="5" />
  5312. <hkern g1="f.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="25" />
  5313. <hkern g1="f.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="19" />
  5314. <hkern g1="f.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="1" />
  5315. <hkern g1="f.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="4" />
  5316. <hkern g1="f.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="5" />
  5317. <hkern g1="f.sc" g2="quotedblleft.sc,quoteleft.sc" k="8" />
  5318. <hkern g1="f.sc" g2="quotedblright.sc,quoteright.sc" k="-8" />
  5319. <hkern g1="f.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="8" />
  5320. <hkern g1="fraction" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="110" />
  5321. <hkern g1="fraction" g2="slash,slash.caps,slash.sc" k="58" />
  5322. <hkern g1="fraction" g2="zero.denominator,one.denominator,two.denominator,three.denominator,four.denominator,five.denominator,six.denominator,seven.denominator,eight.denominator,nine.denominator" k="213" />
  5323. <hkern g1="hyphen" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="20" />
  5324. <hkern g1="hyphen" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="20" />
  5325. <hkern g1="hyphen" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="55" />
  5326. <hkern g1="hyphen" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="30" />
  5327. <hkern g1="hyphen" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="40" />
  5328. <hkern g1="hyphen" g2="asterisk,asterisk.caps,asterisk.sc" k="16" />
  5329. <hkern g1="hyphen" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="25" />
  5330. <hkern g1="hyphen" g2="backslash,backslash.caps,backslash.sc" k="16" />
  5331. <hkern g1="hyphen" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="13" />
  5332. <hkern g1="hyphen" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="24" />
  5333. <hkern g1="hyphen" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="51" />
  5334. <hkern g1="hyphen" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="15" />
  5335. <hkern g1="hyphen" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="5" />
  5336. <hkern g1="hyphen" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="6" />
  5337. <hkern g1="hyphen" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  5338. <hkern g1="hyphen" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="-8" />
  5339. <hkern g1="hyphen" g2="two,two.lf,two.osf,two.sc" k="13" />
  5340. <hkern g1="hyphen" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  5341. <hkern g1="hyphen" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="5" />
  5342. <hkern g1="hyphen" g2="florin,florin.lf,florin.osf,florin.sc" k="9" />
  5343. <hkern g1="hyphen.caps" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="15" />
  5344. <hkern g1="hyphen.caps" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="38" />
  5345. <hkern g1="hyphen.caps" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="15" />
  5346. <hkern g1="hyphen.caps" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="15" />
  5347. <hkern g1="hyphen.caps" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="8" />
  5348. <hkern g1="hyphen.caps" g2="two,two.lf,two.osf,two.sc" k="15" />
  5349. <hkern g1="hyphen.caps" g2="seven,seven.lf,seven.osf,seven.sc" k="23" />
  5350. <hkern g1="hyphen.caps" g2="one,one.lf,one.osf,one.sc" k="-15" />
  5351. <hkern g1="integral" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="38" />
  5352. <hkern g1="m.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="26" />
  5353. <hkern g1="m.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="5" />
  5354. <hkern g1="m.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="15" />
  5355. <hkern g1="m.sc" g2="backslash,backslash.caps,backslash.sc" k="3" />
  5356. <hkern g1="m.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="8" />
  5357. <hkern g1="m.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="28" />
  5358. <hkern g1="m.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="21" />
  5359. <hkern g1="m.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="23" />
  5360. <hkern g1="m.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="5" />
  5361. <hkern g1="m.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="8" />
  5362. <hkern g1="m.sc" g2="quotedblleft.sc,quoteleft.sc" k="35" />
  5363. <hkern g1="m.sc" g2="quotedblright.sc,quoteright.sc" k="18" />
  5364. <hkern g1="m.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="8" />
  5365. <hkern g1="m.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="8" />
  5366. <hkern g1="m.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-5" />
  5367. <hkern g1="mu" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  5368. <hkern g1="p.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  5369. <hkern g1="p.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  5370. <hkern g1="p.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="123" />
  5371. <hkern g1="p.sc" g2="slash,slash.caps,slash.sc" k="15" />
  5372. <hkern g1="p.sc" g2="backslash,backslash.caps,backslash.sc" k="3" />
  5373. <hkern g1="p.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="40" />
  5374. <hkern g1="p.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="8" />
  5375. <hkern g1="p.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="11" />
  5376. <hkern g1="p.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="4" />
  5377. <hkern g1="p.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="4" />
  5378. <hkern g1="p.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="8" />
  5379. <hkern g1="p.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
  5380. <hkern g1="p.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
  5381. <hkern g1="p.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="23" />
  5382. <hkern g1="p.sc" g2="quotedblleft.sc,quoteleft.sc" k="8" />
  5383. <hkern g1="p.sc" g2="quotedblright.sc,quoteright.sc" k="-3" />
  5384. <hkern g1="p.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="8" />
  5385. <hkern g1="p.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="8" />
  5386. <hkern g1="p.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="10" />
  5387. <hkern g1="partialdiff" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="3" />
  5388. <hkern g1="partialdiff" g2="slash,slash.caps,slash.sc" k="3" />
  5389. <hkern g1="product" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="33" />
  5390. <hkern g1="product" g2="slash,slash.caps,slash.sc" k="8" />
  5391. <hkern g1="sterling.lf" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-3" />
  5392. <hkern g1="sterling.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="3" />
  5393. <hkern g1="sterling.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="23" />
  5394. <hkern g1="sterling.sc" g2="two,two.lf,two.osf,two.sc" k="5" />
  5395. <hkern g1="sterling.sc" g2="three,three.lf,three.osf,three.sc" k="-5" />
  5396. <hkern g1="sterling.sc" g2="four,four.lf,four.osf,four.sc" k="18" />
  5397. <hkern g1="sterling.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="-3" />
  5398. <hkern g1="sterling.sc" g2="one,one.lf,one.osf,one.sc" k="-18" />
  5399. <hkern g1="sterling.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="15" />
  5400. <hkern g1="summation" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="15" />
  5401. <hkern g1="thorn.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  5402. <hkern g1="thorn.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="38" />
  5403. <hkern g1="thorn.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="8" />
  5404. <hkern g1="thorn.sc" g2="slash,slash.caps,slash.sc" k="8" />
  5405. <hkern g1="thorn.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="23" />
  5406. <hkern g1="underscore" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="40" />
  5407. <hkern g1="underscore" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="70" />
  5408. <hkern g1="underscore" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="50" />
  5409. <hkern g1="underscore" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="60" />
  5410. <hkern g1="underscore" g2="ampersand,ampersand.caps,ampersand.sc" k="38" />
  5411. <hkern g1="underscore" g2="asterisk,asterisk.caps,asterisk.sc" k="108" />
  5412. <hkern g1="underscore" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  5413. <hkern g1="underscore" g2="backslash,backslash.caps,backslash.sc" k="40" />
  5414. <hkern g1="underscore" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="20" />
  5415. <hkern g1="underscore" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="60" />
  5416. <hkern g1="underscore" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="60" />
  5417. <hkern g1="underscore" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="50" />
  5418. <hkern g1="underscore" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="50" />
  5419. <hkern g1="underscore" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="50" />
  5420. <hkern g1="underscore" g2="f,germandbls,Germandbls,fi,fl" k="20" />
  5421. <hkern g1="underscore" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="-10" />
  5422. <hkern g1="underscore" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="30" />
  5423. <hkern g1="underscore" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  5424. <hkern g1="underscore" g2="J,Jcircumflex,Nhookleft,Jacute" k="-20" />
  5425. <hkern g1="underscore" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="20" />
  5426. <hkern g1="underscore" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="75" />
  5427. <hkern g1="underscore" g2="four,four.lf,four.osf,four.sc" k="40" />
  5428. <hkern g1="underscore" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  5429. <hkern g1="underscore" g2="eight,eight.lf,eight.osf,eight.sc" k="10" />
  5430. <hkern g1="underscore" g2="cent,cent.lf,cent.osf,cent.sc" k="36" />
  5431. <hkern g1="underscore" g2="currency,currency.lf,currency.osf,currency.sc" k="38" />
  5432. <hkern g1="underscore" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="20" />
  5433. <hkern g1="underscore" g2="euro,euro.lf,euro.osf,euro.sc" k="78" />
  5434. <hkern g1="underscore" g2="florin,florin.lf,florin.osf,florin.sc" k="-70" />
  5435. <hkern g1="underscore" g2="yen,yen.lf,yen.osf,yen.sc" k="35" />
  5436. <hkern g1="underscore" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="78" />
  5437. <hkern g1="underscore" g2="percent.lf,perthousand.lf" k="70" />
  5438. <hkern g1="underscore" g2="one,one.lf,one.osf,one.sc" k="10" />
  5439. <hkern g1="underscore" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="20" />
  5440. <hkern g1="x" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="15" />
  5441. <hkern g1="x" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  5442. <hkern g1="x" g2="parenright,parenright.caps,parenright.sc" k="8" />
  5443. <hkern g1="x" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="4" />
  5444. <hkern g1="x" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="23" />
  5445. <hkern g1="x" g2="bracketright,bracketright.caps,bracketright.sc" k="23" />
  5446. <hkern g1="x" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="8" />
  5447. <hkern g1="x" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  5448. <hkern g1="x" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="1" />
  5449. <hkern g1="x" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="4" />
  5450. <hkern g1="x" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="4" />
  5451. <hkern g1="x" g2="question,question.caps,question.sc" k="8" />
  5452. <hkern g1="x.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="15" />
  5453. <hkern g1="x.sc" g2="slash,slash.caps,slash.sc" k="3" />
  5454. <hkern g1="x.sc" g2="backslash,backslash.caps,backslash.sc" k="3" />
  5455. <hkern g1="x.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="28" />
  5456. <hkern g1="x.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="3" />
  5457. <hkern g1="x.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="15" />
  5458. <hkern g1="x.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="14" />
  5459. <hkern g1="x.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="8" />
  5460. <hkern g1="x.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="15" />
  5461. <hkern g1="x.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="8" />
  5462. <hkern g1="x.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-8" />
  5463. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="18" />
  5464. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="15" />
  5465. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  5466. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  5467. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="35" />
  5468. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="15" />
  5469. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="8" />
  5470. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="slash,slash.caps,slash.sc" k="35" />
  5471. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="backslash,backslash.caps,backslash.sc" k="18" />
  5472. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="23" />
  5473. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="23" />
  5474. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
  5475. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="three,three.lf,three.osf,three.sc" k="15" />
  5476. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="four,four.lf,four.osf,four.sc" k="18" />
  5477. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="63" />
  5478. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="23" />
  5479. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="8" />
  5480. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="15" />
  5481. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="18" />
  5482. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="23" />
  5483. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="23" />
  5484. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="five,five.lf,five.osf,five.sc" k="30" />
  5485. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="3" />
  5486. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="one,one.lf,one.osf,one.sc" k="3" />
  5487. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="30" />
  5488. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="dagger" k="8" />
  5489. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="underscore" k="15" />
  5490. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="23" />
  5491. <hkern g1="zero.numerator,one.numerator,two.numerator,three.numerator,four.numerator,five.numerator,six.numerator,seven.numerator,eight.numerator,nine.numerator" g2="fraction" k="205" />
  5492. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="65" />
  5493. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="101" />
  5494. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  5495. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="130" />
  5496. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="slash,slash.caps,slash.sc" k="73" />
  5497. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="23" />
  5498. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="108" />
  5499. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="23" />
  5500. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
  5501. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="three,three.lf,three.osf,three.sc" k="19" />
  5502. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="four,four.lf,four.osf,four.sc" k="84" />
  5503. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="18" />
  5504. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="43" />
  5505. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="35" />
  5506. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="8" />
  5507. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="53" />
  5508. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="60" />
  5509. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="five,five.lf,five.osf,five.sc" k="38" />
  5510. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="one,one.lf,one.osf,one.sc" k="-6" />
  5511. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="64" />
  5512. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="dagger" k="23" />
  5513. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="underscore" k="70" />
  5514. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="emdash" k="28" />
  5515. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="emdash.caps" k="53" />
  5516. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="endash" k="53" />
  5517. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="endash.caps" k="53" />
  5518. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="hyphen" k="38" />
  5519. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="hyphen.caps" k="30" />
  5520. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="23" />
  5521. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="13" />
  5522. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="15" />
  5523. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="23" />
  5524. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="13" />
  5525. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="10" />
  5526. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="slash,slash.caps,slash.sc" k="13" />
  5527. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="backslash,backslash.caps,backslash.sc" k="8" />
  5528. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="8" />
  5529. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="two,two.lf,two.osf,two.sc" k="34" />
  5530. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="four,four.lf,four.osf,four.sc" k="19" />
  5531. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="35" />
  5532. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="8" />
  5533. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="15" />
  5534. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="15" />
  5535. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="13" />
  5536. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="five,five.lf,five.osf,five.sc" k="28" />
  5537. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="28" />
  5538. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="one,one.lf,one.osf,one.sc" k="-21" />
  5539. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="4" />
  5540. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="hyphen.caps" k="-8" />
  5541. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="15" />
  5542. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="4" />
  5543. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="20" />
  5544. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="8" />
  5545. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="49" />
  5546. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="18" />
  5547. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="41" />
  5548. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="54" />
  5549. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  5550. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
  5551. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="23" />
  5552. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="parenright,parenright.caps,parenright.sc" k="5" />
  5553. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="3" />
  5554. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="70" />
  5555. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="55" />
  5556. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="125" />
  5557. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="backslash,backslash.caps,backslash.sc" k="15" />
  5558. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="6" />
  5559. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="8" />
  5560. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="13" />
  5561. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="24" />
  5562. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="53" />
  5563. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="28" />
  5564. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="45" />
  5565. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="f,germandbls,Germandbls,fi,fl" k="3" />
  5566. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="6" />
  5567. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="6" />
  5568. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="18" />
  5569. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="11" />
  5570. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="question,question.caps,question.sc" k="23" />
  5571. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="dagger" k="23" />
  5572. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="endash" k="1" />
  5573. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="hyphen.caps" k="8" />
  5574. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="M" k="8" />
  5575. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="daggerdbl" k="26" />
  5576. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="m.sc" k="10" />
  5577. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="trademark" k="110" />
  5578. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="x.sc" k="4" />
  5579. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="11" />
  5580. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="8" />
  5581. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="48" />
  5582. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="8" />
  5583. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="11" />
  5584. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="8" />
  5585. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  5586. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  5587. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="63" />
  5588. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="-3" />
  5589. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="parenright,parenright.caps,parenright.sc" k="3" />
  5590. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  5591. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-3" />
  5592. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-5" />
  5593. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="dagger" k="8" />
  5594. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="emdash.caps" k="38" />
  5595. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="hyphen.caps" k="23" />
  5596. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-3" />
  5597. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="braceright,braceright.caps,braceright.sc" k="-8" />
  5598. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="26" />
  5599. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="18" />
  5600. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="11" />
  5601. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="13" />
  5602. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="55" />
  5603. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="9" />
  5604. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="33" />
  5605. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="33" />
  5606. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  5607. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="23" />
  5608. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="15" />
  5609. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="parenright,parenright.caps,parenright.sc" k="8" />
  5610. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="73" />
  5611. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="25" />
  5612. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="23" />
  5613. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="23" />
  5614. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="slash,slash.caps,slash.sc" k="13" />
  5615. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="backslash,backslash.caps,backslash.sc" k="10" />
  5616. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="11" />
  5617. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  5618. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="21" />
  5619. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="43" />
  5620. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="8" />
  5621. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  5622. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="1" />
  5623. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  5624. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="10" />
  5625. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="9" />
  5626. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="4" />
  5627. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="1" />
  5628. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="J,Jcircumflex,Nhookleft,Jacute" k="4" />
  5629. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="underscore" k="33" />
  5630. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="M" k="9" />
  5631. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="X" k="23" />
  5632. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="x" k="6" />
  5633. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="braceright,braceright.caps,braceright.sc" k="10" />
  5634. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="30" />
  5635. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="33" />
  5636. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="15" />
  5637. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="53" />
  5638. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="15" />
  5639. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="30" />
  5640. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  5641. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="ampersand,ampersand.caps,ampersand.sc" k="23" />
  5642. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="asterisk,asterisk.caps,asterisk.sc" k="60" />
  5643. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="15" />
  5644. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  5645. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="30" />
  5646. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="8" />
  5647. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="backslash,backslash.caps,backslash.sc" k="10" />
  5648. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="3" />
  5649. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="23" />
  5650. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="question,question.caps,question.sc" k="23" />
  5651. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="hyphen.caps" k="8" />
  5652. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="M" k="15" />
  5653. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="trademark" k="53" />
  5654. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="4" />
  5655. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="4" />
  5656. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="25" />
  5657. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="8" />
  5658. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="23" />
  5659. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="11" />
  5660. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="8" />
  5661. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="28" />
  5662. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="ampersand,ampersand.caps,ampersand.sc" k="4" />
  5663. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="asterisk,asterisk.caps,asterisk.sc" k="15" />
  5664. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="13" />
  5665. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="parenright,parenright.caps,parenright.sc" k="5" />
  5666. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  5667. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="15" />
  5668. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="15" />
  5669. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="underscore" k="8" />
  5670. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="M" k="11" />
  5671. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="trademark" k="45" />
  5672. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="4" />
  5673. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="14" />
  5674. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="9" />
  5675. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="8" />
  5676. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="4" />
  5677. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="15" />
  5678. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="parenright,parenright.caps,parenright.sc" k="8" />
  5679. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="19" />
  5680. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="10" />
  5681. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="8" />
  5682. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="slash,slash.caps,slash.sc" k="3" />
  5683. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="3" />
  5684. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="3" />
  5685. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="trademark" k="23" />
  5686. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
  5687. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="8" />
  5688. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="15" />
  5689. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="8" />
  5690. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
  5691. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  5692. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  5693. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  5694. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="23" />
  5695. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="8" />
  5696. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="18" />
  5697. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  5698. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="4" />
  5699. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="8" />
  5700. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
  5701. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="M" k="4" />
  5702. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="m.sc" k="6" />
  5703. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="x.sc" k="8" />
  5704. <hkern g1="K,Kcommaaccent" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="3" />
  5705. <hkern g1="K,Kcommaaccent" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="39" />
  5706. <hkern g1="K,Kcommaaccent" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  5707. <hkern g1="K,Kcommaaccent" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="3" />
  5708. <hkern g1="K,Kcommaaccent" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  5709. <hkern g1="K,Kcommaaccent" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="3" />
  5710. <hkern g1="K,Kcommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="9" />
  5711. <hkern g1="K,Kcommaaccent" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
  5712. <hkern g1="K,Kcommaaccent" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="13" />
  5713. <hkern g1="K,Kcommaaccent" g2="slash,slash.caps,slash.sc" k="5" />
  5714. <hkern g1="K,Kcommaaccent" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  5715. <hkern g1="K,Kcommaaccent" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="30" />
  5716. <hkern g1="K,Kcommaaccent" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="34" />
  5717. <hkern g1="K,Kcommaaccent" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="30" />
  5718. <hkern g1="K,Kcommaaccent" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="35" />
  5719. <hkern g1="K,Kcommaaccent" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="35" />
  5720. <hkern g1="K,Kcommaaccent" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="5" />
  5721. <hkern g1="K,Kcommaaccent" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="3" />
  5722. <hkern g1="K,Kcommaaccent" g2="bracketright,bracketright.caps,bracketright.sc" k="3" />
  5723. <hkern g1="K,Kcommaaccent" g2="f,germandbls,Germandbls,fi,fl" k="6" />
  5724. <hkern g1="K,Kcommaaccent" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="13" />
  5725. <hkern g1="K,Kcommaaccent" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  5726. <hkern g1="K,Kcommaaccent" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  5727. <hkern g1="K,Kcommaaccent" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="38" />
  5728. <hkern g1="K,Kcommaaccent" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="24" />
  5729. <hkern g1="K,Kcommaaccent" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="3" />
  5730. <hkern g1="K,Kcommaaccent" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="3" />
  5731. <hkern g1="K,Kcommaaccent" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="6" />
  5732. <hkern g1="K,Kcommaaccent" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="8" />
  5733. <hkern g1="K,Kcommaaccent" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="14" />
  5734. <hkern g1="K,Kcommaaccent" g2="dagger" k="15" />
  5735. <hkern g1="K,Kcommaaccent" g2="emdash.caps" k="23" />
  5736. <hkern g1="K,Kcommaaccent" g2="endash" k="8" />
  5737. <hkern g1="K,Kcommaaccent" g2="endash.caps" k="30" />
  5738. <hkern g1="K,Kcommaaccent" g2="hyphen" k="8" />
  5739. <hkern g1="K,Kcommaaccent" g2="hyphen.caps" k="5" />
  5740. <hkern g1="K,Kcommaaccent" g2="M" k="3" />
  5741. <hkern g1="K,Kcommaaccent" g2="m.sc" k="8" />
  5742. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="8" />
  5743. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="8" />
  5744. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="46" />
  5745. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="91" />
  5746. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="25" />
  5747. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="75" />
  5748. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="85" />
  5749. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  5750. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="asterisk,asterisk.caps,asterisk.sc" k="100" />
  5751. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="35" />
  5752. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  5753. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="parenright,parenright.caps,parenright.sc" k="10" />
  5754. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="75" />
  5755. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="110" />
  5756. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="110" />
  5757. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="backslash,backslash.caps,backslash.sc" k="13" />
  5758. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="4" />
  5759. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="8" />
  5760. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="6" />
  5761. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="39" />
  5762. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="88" />
  5763. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="81" />
  5764. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="75" />
  5765. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
  5766. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="90" />
  5767. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quotedblright.sc,quoteright.sc" k="65" />
  5768. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="question,question.caps,question.sc" k="23" />
  5769. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="dagger" k="23" />
  5770. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="emdash" k="15" />
  5771. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="emdash.caps" k="45" />
  5772. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="endash.caps" k="53" />
  5773. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="hyphen" k="8" />
  5774. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="hyphen.caps" k="78" />
  5775. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="M" k="4" />
  5776. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="m.sc" k="8" />
  5777. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="trademark" k="15" />
  5778. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="X" k="4" />
  5779. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="15" />
  5780. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="4" />
  5781. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="4" />
  5782. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="11" />
  5783. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="4" />
  5784. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="20" />
  5785. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  5786. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="19" />
  5787. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="15" />
  5788. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  5789. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  5790. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  5791. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="parenright,parenright.caps,parenright.sc" k="10" />
  5792. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="15" />
  5793. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="23" />
  5794. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="slash,slash.caps,slash.sc" k="8" />
  5795. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="5" />
  5796. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="8" />
  5797. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="8" />
  5798. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="16" />
  5799. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="43" />
  5800. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="8" />
  5801. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="15" />
  5802. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="21" />
  5803. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="9" />
  5804. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  5805. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="14" />
  5806. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="8" />
  5807. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="6" />
  5808. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="4" />
  5809. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  5810. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  5811. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="parenleft,parenleft.caps,parenleft.sc" k="15" />
  5812. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="15" />
  5813. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="underscore" k="15" />
  5814. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="M" k="4" />
  5815. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="m.sc" k="15" />
  5816. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="x.sc" k="8" />
  5817. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="8" />
  5818. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="23" />
  5819. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="3" />
  5820. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="parenright,parenright.caps,parenright.sc" k="25" />
  5821. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="23" />
  5822. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="33" />
  5823. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="23" />
  5824. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="slash,slash.caps,slash.sc" k="18" />
  5825. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="backslash,backslash.caps,backslash.sc" k="8" />
  5826. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="20" />
  5827. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="13" />
  5828. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="28" />
  5829. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="3" />
  5830. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="55" />
  5831. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="33" />
  5832. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="53" />
  5833. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="14" />
  5834. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="bracketright,bracketright.caps,bracketright.sc" k="16" />
  5835. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="parenleft,parenleft.caps,parenleft.sc" k="23" />
  5836. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="question,question.caps,question.sc" k="15" />
  5837. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="underscore" k="33" />
  5838. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="endash" k="1" />
  5839. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="m.sc" k="10" />
  5840. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="x.sc" k="18" />
  5841. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="braceright,braceright.caps,braceright.sc" k="1" />
  5842. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="68" />
  5843. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="15" />
  5844. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="48" />
  5845. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="14" />
  5846. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="ampersand,ampersand.caps,ampersand.sc" k="19" />
  5847. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="55" />
  5848. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="parenright,parenright.caps,parenright.sc" k="3" />
  5849. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="93" />
  5850. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="slash,slash.caps,slash.sc" k="58" />
  5851. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="85" />
  5852. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="105" />
  5853. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="65" />
  5854. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="111" />
  5855. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="108" />
  5856. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="65" />
  5857. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="45" />
  5858. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="63" />
  5859. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="58" />
  5860. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="70" />
  5861. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  5862. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="f,germandbls,Germandbls,fi,fl" k="10" />
  5863. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="75" />
  5864. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="85" />
  5865. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="84" />
  5866. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="70" />
  5867. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="71" />
  5868. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="65" />
  5869. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="4" />
  5870. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="13" />
  5871. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="73" />
  5872. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="55" />
  5873. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="parenleft,parenleft.caps,parenleft.sc" k="30" />
  5874. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="30" />
  5875. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="underscore" k="55" />
  5876. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="emdash" k="8" />
  5877. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="emdash.caps" k="23" />
  5878. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="endash" k="25" />
  5879. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="endash.caps" k="23" />
  5880. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="hyphen" k="23" />
  5881. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="hyphen.caps" k="30" />
  5882. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="M" k="10" />
  5883. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="m.sc" k="78" />
  5884. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="x.sc" k="60" />
  5885. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="x" k="73" />
  5886. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="23" />
  5887. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="18" />
  5888. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="4" />
  5889. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="8" />
  5890. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="6" />
  5891. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="8" />
  5892. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="9" />
  5893. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  5894. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="53" />
  5895. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="slash,slash.caps,slash.sc" k="3" />
  5896. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  5897. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="underscore" k="15" />
  5898. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="M" k="10" />
  5899. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="trademark" k="15" />
  5900. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="X" k="9" />
  5901. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="41" />
  5902. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="28" />
  5903. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  5904. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="ampersand,ampersand.caps,ampersand.sc" k="19" />
  5905. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="38" />
  5906. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  5907. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="93" />
  5908. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="slash,slash.caps,slash.sc" k="40" />
  5909. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="31" />
  5910. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="83" />
  5911. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="31" />
  5912. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="53" />
  5913. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="73" />
  5914. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="20" />
  5915. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="10" />
  5916. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="8" />
  5917. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="15" />
  5918. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="18" />
  5919. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="f,germandbls,Germandbls,fi,fl" k="8" />
  5920. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="48" />
  5921. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="35" />
  5922. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="28" />
  5923. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="3" />
  5924. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="11" />
  5925. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
  5926. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  5927. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="25" />
  5928. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="38" />
  5929. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="parenleft,parenleft.caps,parenleft.sc" k="23" />
  5930. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  5931. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="underscore" k="50" />
  5932. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="endash" k="18" />
  5933. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="hyphen" k="23" />
  5934. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="hyphen.caps" k="15" />
  5935. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="M" k="14" />
  5936. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="m.sc" k="35" />
  5937. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="x.sc" k="8" />
  5938. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="x" k="11" />
  5939. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="8" />
  5940. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="54" />
  5941. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="8" />
  5942. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="36" />
  5943. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="20" />
  5944. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="9" />
  5945. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="ampersand,ampersand.caps,ampersand.sc" k="15" />
  5946. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="58" />
  5947. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="35" />
  5948. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="108" />
  5949. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="slash,slash.caps,slash.sc" k="15" />
  5950. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="55" />
  5951. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="98" />
  5952. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="38" />
  5953. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="81" />
  5954. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="96" />
  5955. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="28" />
  5956. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="23" />
  5957. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="20" />
  5958. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="28" />
  5959. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="35" />
  5960. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="f,germandbls,Germandbls,fi,fl" k="10" />
  5961. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="65" />
  5962. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="43" />
  5963. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="33" />
  5964. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="39" />
  5965. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="30" />
  5966. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="26" />
  5967. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="4" />
  5968. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  5969. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="19" />
  5970. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="28" />
  5971. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="parenleft,parenleft.caps,parenleft.sc" k="38" />
  5972. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="18" />
  5973. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="underscore" k="45" />
  5974. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="endash" k="23" />
  5975. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="hyphen" k="18" />
  5976. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="hyphen.caps" k="8" />
  5977. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="M" k="19" />
  5978. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="m.sc" k="35" />
  5979. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="x.sc" k="20" />
  5980. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="x" k="28" />
  5981. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="copyright" k="15" />
  5982. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="registered" k="15" />
  5983. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="14" />
  5984. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="3" />
  5985. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="14" />
  5986. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  5987. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  5988. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="3" />
  5989. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="3" />
  5990. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="3" />
  5991. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="51" />
  5992. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="20" />
  5993. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="28" />
  5994. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="36" />
  5995. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="5" />
  5996. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="8" />
  5997. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="hyphen.caps" k="8" />
  5998. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="M" k="4" />
  5999. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="m.sc" k="4" />
  6000. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="ampersand,ampersand.caps,ampersand.sc" k="11" />
  6001. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="38" />
  6002. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="5" />
  6003. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="8" />
  6004. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="16" />
  6005. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="f,germandbls,Germandbls,fi,fl" k="4" />
  6006. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="4" />
  6007. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="4" />
  6008. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="6" />
  6009. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="11" />
  6010. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="9" />
  6011. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="3" />
  6012. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="4" />
  6013. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="1" />
  6014. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="dagger" k="15" />
  6015. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="trademark" k="48" />
  6016. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="x" k="4" />
  6017. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="braceright,braceright.caps,braceright.sc" k="5" />
  6018. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="4" />
  6019. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="45" />
  6020. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  6021. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  6022. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="4" />
  6023. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="45" />
  6024. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="60" />
  6025. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
  6026. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="19" />
  6027. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="40" />
  6028. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="38" />
  6029. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="39" />
  6030. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="1" />
  6031. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  6032. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="23" />
  6033. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="23" />
  6034. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="quotedblleft.sc,quoteleft.sc" k="73" />
  6035. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="quotedblright.sc,quoteright.sc" k="58" />
  6036. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="8" />
  6037. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="15" />
  6038. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="15" />
  6039. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="15" />
  6040. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-18" />
  6041. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="43" />
  6042. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="dagger" k="30" />
  6043. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="trademark" k="38" />
  6044. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="78" />
  6045. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="73" />
  6046. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="5" />
  6047. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="108" />
  6048. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="slash,slash.caps,slash.sc" k="90" />
  6049. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  6050. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="-8" />
  6051. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="73" />
  6052. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="f,germandbls,Germandbls,fi,fl" k="3" />
  6053. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
  6054. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="3" />
  6055. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="3" />
  6056. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="45" />
  6057. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="78" />
  6058. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="88" />
  6059. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="15" />
  6060. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="quotedblleft.sc,quoteleft.sc" k="15" />
  6061. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="two,two.lf,two.osf,two.sc" k="13" />
  6062. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="four,four.lf,four.osf,four.sc" k="118" />
  6063. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="38" />
  6064. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="53" />
  6065. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="98" />
  6066. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="145" />
  6067. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="8" />
  6068. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="underscore" k="33" />
  6069. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="hyphen" k="23" />
  6070. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="18" />
  6071. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="13" />
  6072. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="13" />
  6073. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="6" />
  6074. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  6075. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="28" />
  6076. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="18" />
  6077. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="9" />
  6078. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="11" />
  6079. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="38" />
  6080. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  6081. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  6082. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  6083. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="11" />
  6084. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="15" />
  6085. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="6" />
  6086. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="9" />
  6087. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="6" />
  6088. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  6089. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="question,question.caps,question.sc" k="30" />
  6090. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="dagger" k="15" />
  6091. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="underscore" k="30" />
  6092. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="trademark" k="30" />
  6093. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="x" k="10" />
  6094. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="braceright,braceright.caps,braceright.sc" k="5" />
  6095. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="4" />
  6096. <hkern g1="backslash,backslash.caps,backslash.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  6097. <hkern g1="backslash,backslash.caps,backslash.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="65" />
  6098. <hkern g1="backslash,backslash.caps,backslash.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="80" />
  6099. <hkern g1="backslash,backslash.caps,backslash.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="13" />
  6100. <hkern g1="backslash,backslash.caps,backslash.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="53" />
  6101. <hkern g1="backslash,backslash.caps,backslash.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="38" />
  6102. <hkern g1="backslash,backslash.caps,backslash.sc" g2="backslash,backslash.caps,backslash.sc" k="65" />
  6103. <hkern g1="backslash,backslash.caps,backslash.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="-5" />
  6104. <hkern g1="backslash,backslash.caps,backslash.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="23" />
  6105. <hkern g1="backslash,backslash.caps,backslash.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="3" />
  6106. <hkern g1="backslash,backslash.caps,backslash.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="35" />
  6107. <hkern g1="backslash,backslash.caps,backslash.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="23" />
  6108. <hkern g1="backslash,backslash.caps,backslash.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
  6109. <hkern g1="backslash,backslash.caps,backslash.sc" g2="f,germandbls,Germandbls,fi,fl" k="-5" />
  6110. <hkern g1="backslash,backslash.caps,backslash.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="58" />
  6111. <hkern g1="backslash,backslash.caps,backslash.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="35" />
  6112. <hkern g1="backslash,backslash.caps,backslash.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="30" />
  6113. <hkern g1="backslash,backslash.caps,backslash.sc" g2="quotedblleft.sc,quoteleft.sc" k="58" />
  6114. <hkern g1="backslash,backslash.caps,backslash.sc" g2="quotedblright.sc,quoteright.sc" k="30" />
  6115. <hkern g1="backslash,backslash.caps,backslash.sc" g2="two,two.lf,two.osf,two.sc" k="13" />
  6116. <hkern g1="backslash,backslash.caps,backslash.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="23" />
  6117. <hkern g1="backslash,backslash.caps,backslash.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="15" />
  6118. <hkern g1="backslash,backslash.caps,backslash.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="3" />
  6119. <hkern g1="backslash,backslash.caps,backslash.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="8" />
  6120. <hkern g1="backslash,backslash.caps,backslash.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="50" />
  6121. <hkern g1="backslash,backslash.caps,backslash.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="20" />
  6122. <hkern g1="backslash,backslash.caps,backslash.sc" g2="question,question.caps,question.sc" k="18" />
  6123. <hkern g1="backslash,backslash.caps,backslash.sc" g2="hyphen" k="8" />
  6124. <hkern g1="backslash,backslash.caps,backslash.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="35" />
  6125. <hkern g1="backslash,backslash.caps,backslash.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="10" />
  6126. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="15" />
  6127. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  6128. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  6129. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="3" />
  6130. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  6131. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="15" />
  6132. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="38" />
  6133. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="15" />
  6134. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  6135. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="8" />
  6136. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="4" />
  6137. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="16" />
  6138. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="15" />
  6139. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="11" />
  6140. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="8" />
  6141. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="8" />
  6142. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="8" />
  6143. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  6144. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  6145. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="6" />
  6146. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="6" />
  6147. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="8" />
  6148. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="38" />
  6149. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="8" />
  6150. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="8" />
  6151. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="two,two.lf,two.osf,two.sc" k="20" />
  6152. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="four,four.lf,four.osf,four.sc" k="4" />
  6153. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="11" />
  6154. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="4" />
  6155. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="11" />
  6156. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="11" />
  6157. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="8" />
  6158. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="20" />
  6159. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-30" />
  6160. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="8" />
  6161. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="five,five.lf,five.osf,five.sc" k="4" />
  6162. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="8" />
  6163. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="4" />
  6164. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="M" k="8" />
  6165. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="x.sc" k="8" />
  6166. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="integral" k="15" />
  6167. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="mu" k="4" />
  6168. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="partialdiff" k="4" />
  6169. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="pi" k="23" />
  6170. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="product" k="23" />
  6171. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="summation" k="8" />
  6172. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="ordfeminine,ordmasculine" k="3" />
  6173. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="30" />
  6174. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="10" />
  6175. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="45" />
  6176. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="24" />
  6177. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="8" />
  6178. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="15" />
  6179. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="11" />
  6180. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="8" />
  6181. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="25" />
  6182. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="23" />
  6183. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="65" />
  6184. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="8" />
  6185. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="38" />
  6186. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="30" />
  6187. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="30" />
  6188. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="45" />
  6189. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="45" />
  6190. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="26" />
  6191. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="34" />
  6192. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="30" />
  6193. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="23" />
  6194. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="23" />
  6195. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="15" />
  6196. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="f,germandbls,Germandbls,fi,fl" k="15" />
  6197. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="8" />
  6198. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="38" />
  6199. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="45" />
  6200. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="48" />
  6201. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="9" />
  6202. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="23" />
  6203. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="15" />
  6204. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="15" />
  6205. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="35" />
  6206. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  6207. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="45" />
  6208. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="23" />
  6209. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="60" />
  6210. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="25" />
  6211. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="quotedblleft.sc,quoteleft.sc" k="15" />
  6212. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="26" />
  6213. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="23" />
  6214. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="two,two.lf,two.osf,two.sc" k="14" />
  6215. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="four,four.lf,four.osf,four.sc" k="38" />
  6216. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="8" />
  6217. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="23" />
  6218. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="38" />
  6219. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="23" />
  6220. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="4" />
  6221. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  6222. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-40" />
  6223. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="five,five.lf,five.osf,five.sc" k="8" />
  6224. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="10" />
  6225. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="percent.lf,perthousand.lf" k="10" />
  6226. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="23" />
  6227. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="fraction" k="8" />
  6228. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="M" k="25" />
  6229. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="m.sc" k="23" />
  6230. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="x.sc" k="23" />
  6231. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="X" k="8" />
  6232. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="x" k="23" />
  6233. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="mu" k="15" />
  6234. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="partialdiff" k="15" />
  6235. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="pi" k="34" />
  6236. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="product" k="15" />
  6237. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="summation" k="15" />
  6238. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="Delta" k="30" />
  6239. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="Schwa" k="38" />
  6240. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="15" />
  6241. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="15" />
  6242. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="23" />
  6243. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="4" />
  6244. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="8" />
  6245. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="70" />
  6246. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="15" />
  6247. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="53" />
  6248. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="73" />
  6249. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="51" />
  6250. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="90" />
  6251. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="43" />
  6252. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="15" />
  6253. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="parenright,parenright.caps,parenright.sc" k="45" />
  6254. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="83" />
  6255. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="53" />
  6256. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="8" />
  6257. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="slash,slash.caps,slash.sc" k="65" />
  6258. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="backslash,backslash.caps,backslash.sc" k="73" />
  6259. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="8" />
  6260. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="43" />
  6261. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="4" />
  6262. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="8" />
  6263. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="15" />
  6264. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="23" />
  6265. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="53" />
  6266. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="40" />
  6267. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="60" />
  6268. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="28" />
  6269. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="23" />
  6270. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="38" />
  6271. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="8" />
  6272. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="8" />
  6273. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="8" />
  6274. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="8" />
  6275. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="8" />
  6276. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="8" />
  6277. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="70" />
  6278. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="15" />
  6279. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="30" />
  6280. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="15" />
  6281. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="quotedblleft.sc,quoteleft.sc" k="43" />
  6282. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="15" />
  6283. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="8" />
  6284. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="two,two.lf,two.osf,two.sc" k="60" />
  6285. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="four,four.lf,four.osf,four.sc" k="11" />
  6286. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="55" />
  6287. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="18" />
  6288. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="15" />
  6289. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="35" />
  6290. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="10" />
  6291. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="64" />
  6292. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="48" />
  6293. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="16" />
  6294. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="five,five.lf,five.osf,five.sc" k="14" />
  6295. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="50" />
  6296. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="one,one.lf,one.osf,one.sc" k="21" />
  6297. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="28" />
  6298. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="underscore" k="18" />
  6299. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="M" k="8" />
  6300. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="m.sc" k="15" />
  6301. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="x.sc" k="30" />
  6302. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="X" k="53" />
  6303. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="x" k="8" />
  6304. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="integral" k="38" />
  6305. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="mu" k="8" />
  6306. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="pi" k="34" />
  6307. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="product" k="34" />
  6308. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="summation" k="78" />
  6309. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Delta" k="25" />
  6310. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Schwa" k="8" />
  6311. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="13" />
  6312. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="braceright,braceright.caps,braceright.sc" k="30" />
  6313. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="43" />
  6314. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="38" />
  6315. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="3" />
  6316. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="parenright,parenright.caps,parenright.sc" k="3" />
  6317. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="5" />
  6318. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="backslash,backslash.caps,backslash.sc" k="13" />
  6319. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="4" />
  6320. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="23" />
  6321. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="bracketright,bracketright.caps,bracketright.sc" k="3" />
  6322. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="f,germandbls,Germandbls,fi,fl" k="5" />
  6323. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="4" />
  6324. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="1" />
  6325. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="6" />
  6326. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  6327. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="4" />
  6328. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="8" />
  6329. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="4" />
  6330. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="4" />
  6331. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="question,question.caps,question.sc" k="15" />
  6332. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="underscore" k="8" />
  6333. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="trademark" k="23" />
  6334. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  6335. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="23" />
  6336. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="3" />
  6337. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="parenright,parenright.caps,parenright.sc" k="-8" />
  6338. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="13" />
  6339. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="25" />
  6340. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="4" />
  6341. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="4" />
  6342. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="9" />
  6343. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="8" />
  6344. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="8" />
  6345. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="quotedblright.sc,quoteright.sc" k="-8" />
  6346. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="4" />
  6347. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="8" />
  6348. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-8" />
  6349. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="-3" />
  6350. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="hyphen" k="15" />
  6351. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="4" />
  6352. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="backslash,backslash.caps,backslash.sc" k="-5" />
  6353. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="12" />
  6354. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="f,germandbls,Germandbls,fi,fl" k="3" />
  6355. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="1" />
  6356. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="4" />
  6357. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  6358. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="8" />
  6359. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="-1" />
  6360. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="question,question.caps,question.sc" k="3" />
  6361. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="underscore" k="10" />
  6362. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="trademark" k="15" />
  6363. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="x" k="4" />
  6364. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="8" />
  6365. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="35" />
  6366. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="28" />
  6367. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  6368. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="63" />
  6369. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  6370. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="49" />
  6371. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="slash,slash.caps,slash.sc" k="20" />
  6372. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="backslash,backslash.caps,backslash.sc" k="13" />
  6373. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="26" />
  6374. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="8" />
  6375. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="13" />
  6376. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="40" />
  6377. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="25" />
  6378. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="24" />
  6379. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="26" />
  6380. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  6381. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="15" />
  6382. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="15" />
  6383. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="quotedblleft.sc,quoteleft.sc" k="45" />
  6384. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="quotedblright.sc,quoteright.sc" k="23" />
  6385. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="11" />
  6386. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="11" />
  6387. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="9" />
  6388. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="23" />
  6389. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="8" />
  6390. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="20" />
  6391. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="8" />
  6392. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="dagger" k="8" />
  6393. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="underscore" k="60" />
  6394. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="m.sc" k="18" />
  6395. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="trademark" k="45" />
  6396. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="x.sc" k="19" />
  6397. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="8" />
  6398. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="asterisk,asterisk.caps,asterisk.sc" k="45" />
  6399. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  6400. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="13" />
  6401. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="23" />
  6402. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="23" />
  6403. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  6404. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="question,question.caps,question.sc" k="10" />
  6405. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="underscore" k="8" />
  6406. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="trademark" k="45" />
  6407. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  6408. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  6409. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="5" />
  6410. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="-3" />
  6411. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="13" />
  6412. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="8" />
  6413. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="quotedblleft.sc,quoteleft.sc" k="15" />
  6414. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="quotedblright.sc,quoteright.sc" k="-5" />
  6415. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="8" />
  6416. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="15" />
  6417. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-20" />
  6418. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="trademark" k="15" />
  6419. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="53" />
  6420. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="45" />
  6421. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
  6422. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="23" />
  6423. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="38" />
  6424. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="15" />
  6425. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="slash,slash.caps,slash.sc" k="30" />
  6426. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
  6427. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="25" />
  6428. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="15" />
  6429. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="40" />
  6430. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="15" />
  6431. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
  6432. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  6433. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="53" />
  6434. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="75" />
  6435. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="30" />
  6436. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="quotedblleft.sc,quoteleft.sc" k="30" />
  6437. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="15" />
  6438. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="two,two.lf,two.osf,two.sc" k="35" />
  6439. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="four,four.lf,four.osf,four.sc" k="41" />
  6440. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="35" />
  6441. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="40" />
  6442. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="23" />
  6443. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="five,five.lf,five.osf,five.sc" k="23" />
  6444. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="30" />
  6445. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="one,one.lf,one.osf,one.sc" k="3" />
  6446. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="33" />
  6447. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="at" k="23" />
  6448. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="23" />
  6449. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="15" />
  6450. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="15" />
  6451. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="38" />
  6452. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="35" />
  6453. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="43" />
  6454. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  6455. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="23" />
  6456. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  6457. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="15" />
  6458. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="25" />
  6459. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="23" />
  6460. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="slash,slash.caps,slash.sc" k="15" />
  6461. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="backslash,backslash.caps,backslash.sc" k="33" />
  6462. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="14" />
  6463. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="8" />
  6464. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  6465. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="15" />
  6466. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="9" />
  6467. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="8" />
  6468. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="5" />
  6469. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="f,germandbls,Germandbls,fi,fl" k="8" />
  6470. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
  6471. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  6472. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="13" />
  6473. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
  6474. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="8" />
  6475. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="5" />
  6476. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="3" />
  6477. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="10" />
  6478. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="34" />
  6479. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="8" />
  6480. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="33" />
  6481. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="15" />
  6482. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="quotedblleft.sc,quoteleft.sc" k="33" />
  6483. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="two,two.lf,two.osf,two.sc" k="18" />
  6484. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="three,three.lf,three.osf,three.sc" k="3" />
  6485. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="four,four.lf,four.osf,four.sc" k="5" />
  6486. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="15" />
  6487. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="9" />
  6488. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="9" />
  6489. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="15" />
  6490. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="8" />
  6491. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="15" />
  6492. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="3" />
  6493. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="8" />
  6494. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="18" />
  6495. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="five,five.lf,five.osf,five.sc" k="8" />
  6496. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="20" />
  6497. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="one,one.lf,one.osf,one.sc" k="5" />
  6498. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="11" />
  6499. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="M" k="5" />
  6500. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="x" k="8" />
  6501. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="product" k="45" />
  6502. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="29" />
  6503. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="8" />
  6504. <hkern g1="f" g2="asterisk,asterisk.caps,asterisk.sc" k="-63" />
  6505. <hkern g1="f" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="-5" />
  6506. <hkern g1="f" g2="parenright,parenright.caps,parenright.sc" k="-115" />
  6507. <hkern g1="f" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="15" />
  6508. <hkern g1="f" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-15" />
  6509. <hkern g1="f" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="-53" />
  6510. <hkern g1="f" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-133" />
  6511. <hkern g1="f" g2="backslash,backslash.caps,backslash.sc" k="-55" />
  6512. <hkern g1="f" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  6513. <hkern g1="f" g2="bracketright,bracketright.caps,bracketright.sc" k="-120" />
  6514. <hkern g1="f" g2="f,germandbls,Germandbls,fi,fl" k="8" />
  6515. <hkern g1="f" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="3" />
  6516. <hkern g1="f" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="-3" />
  6517. <hkern g1="f" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="1" />
  6518. <hkern g1="f" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="4" />
  6519. <hkern g1="f" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="1" />
  6520. <hkern g1="f" g2="question,question.caps,question.sc" k="-90" />
  6521. <hkern g1="f" g2="underscore" k="10" />
  6522. <hkern g1="f" g2="trademark" k="-50" />
  6523. <hkern g1="f" g2="brokenbar" k="-13" />
  6524. <hkern g1="f" g2="paragraph" k="-15" />
  6525. <hkern g1="f" g2="section" k="-28" />
  6526. <hkern g1="f" g2="braceright,braceright.caps,braceright.sc" k="-53" />
  6527. <hkern g1="f" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="8" />
  6528. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  6529. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="43" />
  6530. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="5" />
  6531. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="100" />
  6532. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-45" />
  6533. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="slash,slash.caps,slash.sc" k="65" />
  6534. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="15" />
  6535. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="15" />
  6536. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="23" />
  6537. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="53" />
  6538. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="underscore" k="108" />
  6539. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  6540. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="5" />
  6541. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-5" />
  6542. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="26" />
  6543. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="f,germandbls,Germandbls,fi,fl" k="-1" />
  6544. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="-3" />
  6545. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="9" />
  6546. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="4" />
  6547. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="4" />
  6548. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="-3" />
  6549. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="4" />
  6550. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="8" />
  6551. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="underscore" k="-8" />
  6552. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="x" k="4" />
  6553. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  6554. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="-3" />
  6555. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="-8" />
  6556. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="quotedblleft.sc,quoteleft.sc" k="15" />
  6557. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="quotedblright.sc,quoteright.sc" k="10" />
  6558. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-5" />
  6559. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="trademark" k="8" />
  6560. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="11" />
  6561. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="23" />
  6562. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="15" />
  6563. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="8" />
  6564. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="10" />
  6565. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="11" />
  6566. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="backslash,backslash.caps,backslash.sc" k="13" />
  6567. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="4" />
  6568. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="4" />
  6569. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="8" />
  6570. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="8" />
  6571. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="4" />
  6572. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="5" />
  6573. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="30" />
  6574. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="two,two.lf,two.osf,two.sc" k="18" />
  6575. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="11" />
  6576. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="4" />
  6577. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="five,five.lf,five.osf,five.sc" k="8" />
  6578. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="8" />
  6579. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="integral" k="23" />
  6580. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="pi" k="15" />
  6581. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="product" k="30" />
  6582. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="summation" k="30" />
  6583. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  6584. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="asterisk,asterisk.caps,asterisk.sc" k="43" />
  6585. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  6586. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="parenright,parenright.caps,parenright.sc" k="5" />
  6587. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="18" />
  6588. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="5" />
  6589. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="10" />
  6590. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="backslash,backslash.caps,backslash.sc" k="8" />
  6591. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="5" />
  6592. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="19" />
  6593. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="bracketright,bracketright.caps,bracketright.sc" k="4" />
  6594. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="f,germandbls,Germandbls,fi,fl" k="8" />
  6595. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="8" />
  6596. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="9" />
  6597. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="16" />
  6598. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="10" />
  6599. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="4" />
  6600. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="6" />
  6601. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="question,question.caps,question.sc" k="20" />
  6602. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="dagger" k="8" />
  6603. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="trademark" k="45" />
  6604. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="x" k="5" />
  6605. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="braceright,braceright.caps,braceright.sc" k="3" />
  6606. <hkern g1="k,kcommaaccent,kgreenlandic" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  6607. <hkern g1="k,kcommaaccent,kgreenlandic" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  6608. <hkern g1="k,kcommaaccent,kgreenlandic" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="3" />
  6609. <hkern g1="k,kcommaaccent,kgreenlandic" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="1" />
  6610. <hkern g1="k,kcommaaccent,kgreenlandic" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="28" />
  6611. <hkern g1="k,kcommaaccent,kgreenlandic" g2="f,germandbls,Germandbls,fi,fl" k="3" />
  6612. <hkern g1="k,kcommaaccent,kgreenlandic" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="11" />
  6613. <hkern g1="k,kcommaaccent,kgreenlandic" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="4" />
  6614. <hkern g1="k,kcommaaccent,kgreenlandic" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="4" />
  6615. <hkern g1="k,kcommaaccent,kgreenlandic" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="5" />
  6616. <hkern g1="k,kcommaaccent,kgreenlandic" g2="underscore" k="8" />
  6617. <hkern g1="k,kcommaaccent,kgreenlandic" g2="emdash" k="8" />
  6618. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="13" />
  6619. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="45" />
  6620. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="5" />
  6621. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="slash,slash.caps,slash.sc" k="5" />
  6622. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="33" />
  6623. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="4" />
  6624. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="30" />
  6625. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="quotedblleft.sc,quoteleft.sc" k="20" />
  6626. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="quotedblright.sc,quoteright.sc" k="15" />
  6627. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="8" />
  6628. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="6" />
  6629. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-3" />
  6630. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="emdash" k="15" />
  6631. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="hyphen" k="15" />
  6632. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="m.sc" k="4" />
  6633. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="trademark" k="15" />
  6634. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-23" />
  6635. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="60" />
  6636. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  6637. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="3" />
  6638. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="45" />
  6639. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="45" />
  6640. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="backslash,backslash.caps,backslash.sc" k="15" />
  6641. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="8" />
  6642. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="40" />
  6643. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="98" />
  6644. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="76" />
  6645. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="68" />
  6646. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="15" />
  6647. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="8" />
  6648. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="40" />
  6649. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="quotedblleft.sc,quoteleft.sc" k="115" />
  6650. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="quotedblright.sc,quoteright.sc" k="90" />
  6651. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="20" />
  6652. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="23" />
  6653. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-28" />
  6654. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="dagger" k="30" />
  6655. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="emdash" k="30" />
  6656. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="hyphen" k="35" />
  6657. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="daggerdbl" k="30" />
  6658. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="trademark" k="89" />
  6659. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-8" />
  6660. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="8" />
  6661. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="15" />
  6662. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="28" />
  6663. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  6664. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="80" />
  6665. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="slash,slash.caps,slash.sc" k="50" />
  6666. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="backslash,backslash.caps,backslash.sc" k="3" />
  6667. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="8" />
  6668. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="8" />
  6669. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="15" />
  6670. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="8" />
  6671. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="8" />
  6672. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="8" />
  6673. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="23" />
  6674. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="8" />
  6675. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="two,two.lf,two.osf,two.sc" k="28" />
  6676. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="four,four.lf,four.osf,four.sc" k="10" />
  6677. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="30" />
  6678. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="8" />
  6679. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="23" />
  6680. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="8" />
  6681. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="11" />
  6682. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="23" />
  6683. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="8" />
  6684. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="five,five.lf,five.osf,five.sc" k="15" />
  6685. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="3" />
  6686. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="underscore" k="25" />
  6687. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="x" k="8" />
  6688. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="pi" k="8" />
  6689. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="8" />
  6690. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="20" />
  6691. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="30" />
  6692. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="8" />
  6693. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="8" />
  6694. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="4" />
  6695. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="23" />
  6696. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="53" />
  6697. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="slash,slash.caps,slash.sc" k="20" />
  6698. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="backslash,backslash.caps,backslash.sc" k="26" />
  6699. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="18" />
  6700. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="40" />
  6701. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="29" />
  6702. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="19" />
  6703. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="18" />
  6704. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="5" />
  6705. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="10" />
  6706. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="f,germandbls,Germandbls,fi,fl" k="15" />
  6707. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  6708. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  6709. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
  6710. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="18" />
  6711. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="8" />
  6712. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="8" />
  6713. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="11" />
  6714. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="28" />
  6715. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="45" />
  6716. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="10" />
  6717. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="65" />
  6718. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="19" />
  6719. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  6720. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="two,two.lf,two.osf,two.sc" k="20" />
  6721. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="four,four.lf,four.osf,four.sc" k="23" />
  6722. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="18" />
  6723. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="13" />
  6724. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="30" />
  6725. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="28" />
  6726. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="10" />
  6727. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  6728. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-13" />
  6729. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="10" />
  6730. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="one,one.lf,one.osf,one.sc" k="8" />
  6731. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="20" />
  6732. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="M" k="6" />
  6733. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="m.sc" k="9" />
  6734. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="x.sc" k="10" />
  6735. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="X" k="4" />
  6736. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="x" k="10" />
  6737. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="mu" k="10" />
  6738. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="pi" k="20" />
  6739. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="Delta" k="8" />
  6740. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="Schwa" k="28" />
  6741. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="8" />
  6742. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="23" />
  6743. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="-5" />
  6744. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="38" />
  6745. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="58" />
  6746. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="23" />
  6747. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="93" />
  6748. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="53" />
  6749. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="100" />
  6750. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="123" />
  6751. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  6752. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="113" />
  6753. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="45" />
  6754. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="73" />
  6755. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="slash,slash.caps,slash.sc" k="3" />
  6756. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="backslash,backslash.caps,backslash.sc" k="58" />
  6757. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="8" />
  6758. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="23" />
  6759. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  6760. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="60" />
  6761. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="85" />
  6762. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="80" />
  6763. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="88" />
  6764. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="5" />
  6765. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="f,germandbls,Germandbls,fi,fl" k="13" />
  6766. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="8" />
  6767. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="19" />
  6768. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="55" />
  6769. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="38" />
  6770. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="23" />
  6771. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="23" />
  6772. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="35" />
  6773. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="quotedblleft.sc,quoteleft.sc" k="68" />
  6774. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="quotedblright.sc,quoteright.sc" k="13" />
  6775. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="33" />
  6776. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="43" />
  6777. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="two,two.lf,two.osf,two.sc" k="13" />
  6778. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="four,four.lf,four.osf,four.sc" k="23" />
  6779. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="23" />
  6780. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="30" />
  6781. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="35" />
  6782. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="23" />
  6783. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-3" />
  6784. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="38" />
  6785. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="five,five.lf,five.osf,five.sc" k="5" />
  6786. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="70" />
  6787. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="percent.lf,perthousand.lf" k="43" />
  6788. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="one,one.lf,one.osf,one.sc" k="43" />
  6789. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="23" />
  6790. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="endash.caps" k="45" />
  6791. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="M" k="15" />
  6792. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="m.sc" k="28" />
  6793. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="pi" k="23" />
  6794. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="product" k="23" />
  6795. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="summation" k="8" />
  6796. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="Schwa" k="30" />
  6797. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="30" />
  6798. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="20" />
  6799. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="24" />
  6800. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="33" />
  6801. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="60" />
  6802. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="19" />
  6803. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="36" />
  6804. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="63" />
  6805. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="15" />
  6806. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="70" />
  6807. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="45" />
  6808. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="18" />
  6809. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="slash,slash.caps,slash.sc" k="18" />
  6810. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="backslash,backslash.caps,backslash.sc" k="53" />
  6811. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="30" />
  6812. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="8" />
  6813. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="8" />
  6814. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="53" />
  6815. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="41" />
  6816. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="-3" />
  6817. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="45" />
  6818. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="34" />
  6819. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
  6820. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="13" />
  6821. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="f,germandbls,Germandbls,fi,fl" k="33" />
  6822. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="-3" />
  6823. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="33" />
  6824. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="29" />
  6825. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="29" />
  6826. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="24" />
  6827. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="19" />
  6828. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="29" />
  6829. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="15" />
  6830. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="23" />
  6831. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="8" />
  6832. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="48" />
  6833. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="J,Jcircumflex,Nhookleft,Jacute" k="8" />
  6834. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="21" />
  6835. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="28" />
  6836. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="30" />
  6837. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="quotedblleft.sc,quoteleft.sc" k="80" />
  6838. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="19" />
  6839. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="19" />
  6840. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="two,two.lf,two.osf,two.sc" k="24" />
  6841. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="four,four.lf,four.osf,four.sc" k="13" />
  6842. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="13" />
  6843. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="18" />
  6844. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="30" />
  6845. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="18" />
  6846. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="23" />
  6847. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="33" />
  6848. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-11" />
  6849. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-5" />
  6850. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="43" />
  6851. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="five,five.lf,five.osf,five.sc" k="16" />
  6852. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="45" />
  6853. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="percent.lf,perthousand.lf" k="48" />
  6854. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="one,one.lf,one.osf,one.sc" k="8" />
  6855. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="29" />
  6856. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="M" k="23" />
  6857. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="m.sc" k="19" />
  6858. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="x.sc" k="8" />
  6859. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="X" k="13" />
  6860. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="x" k="41" />
  6861. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="integral" k="15" />
  6862. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="mu" k="8" />
  6863. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="pi" k="33" />
  6864. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="product" k="23" />
  6865. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Delta" k="23" />
  6866. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Schwa" k="35" />
  6867. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="at" k="3" />
  6868. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="28" />
  6869. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="13" />
  6870. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="73" />
  6871. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="28" />
  6872. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="6" />
  6873. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="4" />
  6874. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="66" />
  6875. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="65" />
  6876. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="5" />
  6877. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="73" />
  6878. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="slash,slash.caps,slash.sc" k="40" />
  6879. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="21" />
  6880. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="119" />
  6881. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="53" />
  6882. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="53" />
  6883. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="8" />
  6884. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="8" />
  6885. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="f,germandbls,Germandbls,fi,fl" k="5" />
  6886. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="53" />
  6887. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="30" />
  6888. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="23" />
  6889. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="-15" />
  6890. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="15" />
  6891. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="33" />
  6892. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="18" />
  6893. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="4" />
  6894. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="20" />
  6895. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="8" />
  6896. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="15" />
  6897. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="two,two.lf,two.osf,two.sc" k="18" />
  6898. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="four,four.lf,four.osf,four.sc" k="93" />
  6899. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="10" />
  6900. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="38" />
  6901. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="8" />
  6902. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="3" />
  6903. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="43" />
  6904. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="100" />
  6905. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="83" />
  6906. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="-3" />
  6907. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="five,five.lf,five.osf,five.sc" k="5" />
  6908. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="one,one.lf,one.osf,one.sc" k="-5" />
  6909. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="25" />
  6910. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="fraction" k="83" />
  6911. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="M" k="15" />
  6912. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="m.sc" k="49" />
  6913. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="integral" k="15" />
  6914. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="mu" k="8" />
  6915. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="partialdiff" k="15" />
  6916. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="product" k="8" />
  6917. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="summation" k="8" />
  6918. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="Delta" k="20" />
  6919. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="Schwa" k="15" />
  6920. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="at" k="35" />
  6921. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="8" />
  6922. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="30" />
  6923. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="13" />
  6924. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="125" />
  6925. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="15" />
  6926. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="33" />
  6927. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="15" />
  6928. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
  6929. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  6930. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
  6931. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="85" />
  6932. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="slash,slash.caps,slash.sc" k="60" />
  6933. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="23" />
  6934. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="103" />
  6935. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="53" />
  6936. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="75" />
  6937. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="68" />
  6938. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="4" />
  6939. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="f,germandbls,Germandbls,fi,fl" k="15" />
  6940. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="48" />
  6941. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="33" />
  6942. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="15" />
  6943. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="15" />
  6944. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="53" />
  6945. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="J,Jcircumflex,Nhookleft,Jacute" k="15" />
  6946. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="8" />
  6947. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="30" />
  6948. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="two,two.lf,two.osf,two.sc" k="3" />
  6949. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="four,four.lf,four.osf,four.sc" k="95" />
  6950. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="seven,seven.lf,seven.osf,seven.sc" k="-3" />
  6951. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="eight,eight.lf,eight.osf,eight.sc" k="8" />
  6952. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="cent,cent.lf,cent.osf,cent.sc" k="34" />
  6953. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="currency,currency.lf,currency.osf,currency.sc" k="8" />
  6954. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  6955. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="florin,florin.lf,florin.osf,florin.sc" k="93" />
  6956. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="38" />
  6957. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="-3" />
  6958. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="one,one.lf,one.osf,one.sc" k="-8" />
  6959. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="20" />
  6960. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="fraction" k="185" />
  6961. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="M" k="23" />
  6962. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="m.sc" k="40" />
  6963. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="x" k="4" />
  6964. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="mu" k="8" />
  6965. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="partialdiff" k="15" />
  6966. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="product" k="11" />
  6967. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="summation" k="4" />
  6968. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="Delta" k="60" />
  6969. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="at" k="28" />
  6970. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="8" />
  6971. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="15" />
  6972. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="15" />
  6973. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="23" />
  6974. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="slash,slash.caps,slash.sc" k="60" />
  6975. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="80" />
  6976. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  6977. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="38" />
  6978. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="23" />
  6979. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="41" />
  6980. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="30" />
  6981. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="23" />
  6982. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="18" />
  6983. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="8" />
  6984. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="three,three.lf,three.osf,three.sc" k="-10" />
  6985. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="four,four.lf,four.osf,four.sc" k="45" />
  6986. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="30" />
  6987. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="m.sc" k="43" />
  6988. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="15" />
  6989. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="88" />
  6990. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="28" />
  6991. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="43" />
  6992. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="28" />
  6993. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="33" />
  6994. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="f,germandbls,Germandbls,fi,fl" k="5" />
  6995. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="23" />
  6996. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="20" />
  6997. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="13" />
  6998. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  6999. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="8" />
  7000. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
  7001. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="40" />
  7002. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="J,Jcircumflex,Nhookleft,Jacute" k="15" />
  7003. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="M" k="18" />
  7004. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="x" k="8" />
  7005. <hkern g1="quotedblright.sc,quoteright.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
  7006. <hkern g1="quotedblright.sc,quoteright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="78" />
  7007. <hkern g1="quotedblright.sc,quoteright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  7008. <hkern g1="quotedblright.sc,quoteright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="15" />
  7009. <hkern g1="quotedblright.sc,quoteright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="68" />
  7010. <hkern g1="quotedblright.sc,quoteright.sc" g2="slash,slash.caps,slash.sc" k="113" />
  7011. <hkern g1="quotedblright.sc,quoteright.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="83" />
  7012. <hkern g1="quotedblright.sc,quoteright.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="25" />
  7013. <hkern g1="quotedblright.sc,quoteright.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="70" />
  7014. <hkern g1="quotedblright.sc,quoteright.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="28" />
  7015. <hkern g1="quotedblright.sc,quoteright.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="23" />
  7016. <hkern g1="quotedblright.sc,quoteright.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="8" />
  7017. <hkern g1="quotedblright.sc,quoteright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="38" />
  7018. <hkern g1="quotedblright.sc,quoteright.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="15" />
  7019. <hkern g1="quotedblright.sc,quoteright.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="23" />
  7020. <hkern g1="quotedblright.sc,quoteright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="63" />
  7021. <hkern g1="quotedblright.sc,quoteright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="145" />
  7022. <hkern g1="quotedblright.sc,quoteright.sc" g2="m.sc" k="43" />
  7023. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="5" />
  7024. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="parenright,parenright.caps,parenright.sc" k="5" />
  7025. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="45" />
  7026. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-3" />
  7027. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="slash,slash.caps,slash.sc" k="3" />
  7028. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  7029. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="24" />
  7030. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="3" />
  7031. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="16" />
  7032. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="1" />
  7033. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="-1" />
  7034. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="question,question.caps,question.sc" k="5" />
  7035. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="underscore" k="15" />
  7036. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="braceright,braceright.caps,braceright.sc" k="5" />
  7037. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="3" />
  7038. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="18" />
  7039. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="23" />
  7040. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="3" />
  7041. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="13" />
  7042. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="backslash,backslash.caps,backslash.sc" k="8" />
  7043. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="4" />
  7044. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="23" />
  7045. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="26" />
  7046. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="18" />
  7047. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="28" />
  7048. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="4" />
  7049. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="8" />
  7050. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="quotedblleft.sc,quoteleft.sc" k="23" />
  7051. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="quotedblright.sc,quoteright.sc" k="18" />
  7052. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="8" />
  7053. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="11" />
  7054. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-8" />
  7055. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="15" />
  7056. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="m.sc" k="8" />
  7057. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="trademark" k="43" />
  7058. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="x.sc" k="4" />
  7059. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="braceright,braceright.caps,braceright.sc" k="15" />
  7060. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  7061. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="parenright,parenright.caps,parenright.sc" k="8" />
  7062. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="15" />
  7063. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="8" />
  7064. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="11" />
  7065. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="38" />
  7066. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
  7067. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="14" />
  7068. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  7069. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="14" />
  7070. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="10" />
  7071. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="2" />
  7072. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="11" />
  7073. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  7074. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="question,question.caps,question.sc" k="15" />
  7075. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="x" k="9" />
  7076. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="braceright,braceright.caps,braceright.sc" k="3" />
  7077. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="1" />
  7078. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="5" />
  7079. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  7080. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="15" />
  7081. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  7082. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="parenright,parenright.caps,parenright.sc" k="5" />
  7083. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  7084. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="13" />
  7085. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="10" />
  7086. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="40" />
  7087. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="slash,slash.caps,slash.sc" k="3" />
  7088. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="backslash,backslash.caps,backslash.sc" k="8" />
  7089. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="9" />
  7090. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="13" />
  7091. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  7092. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="19" />
  7093. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="25" />
  7094. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="3" />
  7095. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="50" />
  7096. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="46" />
  7097. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="44" />
  7098. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="18" />
  7099. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  7100. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="f,germandbls,Germandbls,fi,fl" k="13" />
  7101. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="6" />
  7102. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="9" />
  7103. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="9" />
  7104. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="29" />
  7105. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="24" />
  7106. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
  7107. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="6" />
  7108. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="21" />
  7109. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="10" />
  7110. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="10" />
  7111. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="quotedblleft.sc,quoteleft.sc" k="18" />
  7112. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="quotedblright.sc,quoteright.sc" k="18" />
  7113. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="23" />
  7114. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="23" />
  7115. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="11" />
  7116. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="8" />
  7117. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="question,question.caps,question.sc" k="13" />
  7118. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="dagger" k="15" />
  7119. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="underscore" k="26" />
  7120. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="m.sc" k="18" />
  7121. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="trademark" k="76" />
  7122. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="x.sc" k="25" />
  7123. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="x" k="20" />
  7124. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="braceright,braceright.caps,braceright.sc" k="10" />
  7125. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="4" />
  7126. <hkern g1="slash,slash.caps,slash.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="35" />
  7127. <hkern g1="slash,slash.caps,slash.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="11" />
  7128. <hkern g1="slash,slash.caps,slash.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  7129. <hkern g1="slash,slash.caps,slash.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="15" />
  7130. <hkern g1="slash,slash.caps,slash.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="65" />
  7131. <hkern g1="slash,slash.caps,slash.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="23" />
  7132. <hkern g1="slash,slash.caps,slash.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="95" />
  7133. <hkern g1="slash,slash.caps,slash.sc" g2="slash,slash.caps,slash.sc" k="90" />
  7134. <hkern g1="slash,slash.caps,slash.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="38" />
  7135. <hkern g1="slash,slash.caps,slash.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="63" />
  7136. <hkern g1="slash,slash.caps,slash.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="8" />
  7137. <hkern g1="slash,slash.caps,slash.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="38" />
  7138. <hkern g1="slash,slash.caps,slash.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="38" />
  7139. <hkern g1="slash,slash.caps,slash.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="8" />
  7140. <hkern g1="slash,slash.caps,slash.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="15" />
  7141. <hkern g1="slash,slash.caps,slash.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="23" />
  7142. <hkern g1="slash,slash.caps,slash.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="15" />
  7143. <hkern g1="slash,slash.caps,slash.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="33" />
  7144. <hkern g1="slash,slash.caps,slash.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="20" />
  7145. <hkern g1="slash,slash.caps,slash.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="40" />
  7146. <hkern g1="slash,slash.caps,slash.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="15" />
  7147. <hkern g1="slash,slash.caps,slash.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="23" />
  7148. <hkern g1="slash,slash.caps,slash.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  7149. <hkern g1="slash,slash.caps,slash.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="8" />
  7150. <hkern g1="slash,slash.caps,slash.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="5" />
  7151. <hkern g1="slash,slash.caps,slash.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="43" />
  7152. <hkern g1="slash,slash.caps,slash.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="30" />
  7153. <hkern g1="slash,slash.caps,slash.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="15" />
  7154. <hkern g1="slash,slash.caps,slash.sc" g2="two,two.lf,two.osf,two.sc" k="23" />
  7155. <hkern g1="slash,slash.caps,slash.sc" g2="three,three.lf,three.osf,three.sc" k="-5" />
  7156. <hkern g1="slash,slash.caps,slash.sc" g2="four,four.lf,four.osf,four.sc" k="35" />
  7157. <hkern g1="slash,slash.caps,slash.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="18" />
  7158. <hkern g1="slash,slash.caps,slash.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="40" />
  7159. <hkern g1="slash,slash.caps,slash.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="20" />
  7160. <hkern g1="slash,slash.caps,slash.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="20" />
  7161. <hkern g1="slash,slash.caps,slash.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="25" />
  7162. <hkern g1="slash,slash.caps,slash.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="65" />
  7163. <hkern g1="slash,slash.caps,slash.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="21" />
  7164. <hkern g1="slash,slash.caps,slash.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="15" />
  7165. <hkern g1="slash,slash.caps,slash.sc" g2="one,one.lf,one.osf,one.sc" k="3" />
  7166. <hkern g1="slash,slash.caps,slash.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="4" />
  7167. <hkern g1="slash,slash.caps,slash.sc" g2="underscore" k="48" />
  7168. <hkern g1="slash,slash.caps,slash.sc" g2="fraction" k="23" />
  7169. <hkern g1="slash,slash.caps,slash.sc" g2="m.sc" k="38" />
  7170. <hkern g1="slash,slash.caps,slash.sc" g2="x" k="19" />
  7171. <hkern g1="slash,slash.caps,slash.sc" g2="integral" k="53" />
  7172. <hkern g1="slash,slash.caps,slash.sc" g2="mu" k="15" />
  7173. <hkern g1="slash,slash.caps,slash.sc" g2="partialdiff" k="15" />
  7174. <hkern g1="slash,slash.caps,slash.sc" g2="pi" k="15" />
  7175. <hkern g1="slash,slash.caps,slash.sc" g2="product" k="8" />
  7176. <hkern g1="slash,slash.caps,slash.sc" g2="Delta" k="38" />
  7177. <hkern g1="slash,slash.caps,slash.sc" g2="Schwa" k="23" />
  7178. <hkern g1="slash,slash.caps,slash.sc" g2="at" k="13" />
  7179. <hkern g1="slash,slash.caps,slash.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="10" />
  7180. <hkern g1="slash,slash.caps,slash.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="5" />
  7181. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="asterisk,asterisk.caps,asterisk.sc" k="-3" />
  7182. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  7183. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="slash,slash.caps,slash.sc" k="3" />
  7184. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="backslash,backslash.caps,backslash.sc" k="5" />
  7185. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="11" />
  7186. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  7187. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="f,germandbls,Germandbls,fi,fl" k="1" />
  7188. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  7189. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="6" />
  7190. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="7" />
  7191. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="4" />
  7192. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="6" />
  7193. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="question,question.caps,question.sc" k="10" />
  7194. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="trademark" k="23" />
  7195. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="braceright,braceright.caps,braceright.sc" k="8" />
  7196. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  7197. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="68" />
  7198. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="55" />
  7199. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="slash,slash.caps,slash.sc" k="38" />
  7200. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="backslash,backslash.caps,backslash.sc" k="3" />
  7201. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="40" />
  7202. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="36" />
  7203. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="4" />
  7204. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="4" />
  7205. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="15" />
  7206. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="23" />
  7207. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="23" />
  7208. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="15" />
  7209. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="4" />
  7210. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="15" />
  7211. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  7212. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="50" />
  7213. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="underscore" k="43" />
  7214. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="emdash" k="8" />
  7215. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="endash" k="8" />
  7216. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="hyphen" k="15" />
  7217. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="m.sc" k="25" />
  7218. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="18" />
  7219. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  7220. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="parenright,parenright.caps,parenright.sc" k="15" />
  7221. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="8" />
  7222. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="13" />
  7223. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="15" />
  7224. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="4" />
  7225. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="8" />
  7226. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="15" />
  7227. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="1" />
  7228. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="4" />
  7229. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="question,question.caps,question.sc" k="18" />
  7230. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="trademark" k="30" />
  7231. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="x" k="4" />
  7232. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  7233. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  7234. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="35" />
  7235. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="slash,slash.caps,slash.sc" k="3" />
  7236. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="15" />
  7237. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="8" />
  7238. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="6" />
  7239. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="8" />
  7240. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="4" />
  7241. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  7242. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="quotedblleft.sc,quoteleft.sc" k="8" />
  7243. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="quotedblright.sc,quoteright.sc" k="8" />
  7244. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="9" />
  7245. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="8" />
  7246. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="underscore" k="15" />
  7247. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="m.sc" k="8" />
  7248. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="trademark" k="15" />
  7249. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="x.sc" k="8" />
  7250. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  7251. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  7252. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="parenright,parenright.caps,parenright.sc" k="8" />
  7253. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="33" />
  7254. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="4" />
  7255. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="18" />
  7256. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="bracketright,bracketright.caps,bracketright.sc" k="48" />
  7257. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="6" />
  7258. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  7259. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="2" />
  7260. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="-1" />
  7261. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="8" />
  7262. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="15" />
  7263. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="question,question.caps,question.sc" k="15" />
  7264. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="underscore" k="30" />
  7265. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="trademark" k="8" />
  7266. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="braceright,braceright.caps,braceright.sc" k="6" />
  7267. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="33" />
  7268. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="25" />
  7269. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="65" />
  7270. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="slash,slash.caps,slash.sc" k="38" />
  7271. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="38" />
  7272. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="4" />
  7273. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  7274. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="4" />
  7275. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  7276. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="15" />
  7277. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="8" />
  7278. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="13" />
  7279. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="23" />
  7280. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="23" />
  7281. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="40" />
  7282. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="underscore" k="43" />
  7283. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="endash" k="8" />
  7284. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="m.sc" k="19" />
  7285. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  7286. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="parenright,parenright.caps,parenright.sc" k="10" />
  7287. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  7288. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="9" />
  7289. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="18" />
  7290. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="bracketright,bracketright.caps,bracketright.sc" k="5" />
  7291. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="6" />
  7292. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="1" />
  7293. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="1" />
  7294. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="4" />
  7295. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="question,question.caps,question.sc" k="13" />
  7296. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="underscore" k="30" />
  7297. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="braceright,braceright.caps,braceright.sc" k="6" />
  7298. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="43" />
  7299. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="38" />
  7300. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="50" />
  7301. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="slash,slash.caps,slash.sc" k="45" />
  7302. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="39" />
  7303. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="36" />
  7304. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="15" />
  7305. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  7306. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="23" />
  7307. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="5" />
  7308. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="8" />
  7309. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="15" />
  7310. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="23" />
  7311. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="40" />
  7312. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="underscore" k="13" />
  7313. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="m.sc" k="20" />
  7314. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="5" />
  7315. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="parenright,parenright.caps,parenright.sc" k="13" />
  7316. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="11" />
  7317. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  7318. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="9" />
  7319. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="1" />
  7320. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="trademark" k="8" />
  7321. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="braceright,braceright.caps,braceright.sc" k="8" />
  7322. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="5" />
  7323. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="5" />
  7324. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="backslash,backslash.caps,backslash.sc" k="5" />
  7325. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="1" />
  7326. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="16" />
  7327. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="3" />
  7328. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="6" />
  7329. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="4" />
  7330. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="8" />
  7331. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="15" />
  7332. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="15" />
  7333. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="6" />
  7334. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="8" />
  7335. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="15" />
  7336. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="emdash" k="15" />
  7337. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="m.sc" k="6" />
  7338. <hkern g1="one,one.lf,one.osf,one.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="25" />
  7339. <hkern g1="one,one.lf,one.osf,one.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  7340. <hkern g1="one,one.lf,one.osf,one.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  7341. <hkern g1="one,one.lf,one.osf,one.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="25" />
  7342. <hkern g1="one,one.lf,one.osf,one.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="8" />
  7343. <hkern g1="one,one.lf,one.osf,one.sc" g2="slash,slash.caps,slash.sc" k="15" />
  7344. <hkern g1="one,one.lf,one.osf,one.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="15" />
  7345. <hkern g1="one,one.lf,one.osf,one.sc" g2="two,two.lf,two.osf,two.sc" k="26" />
  7346. <hkern g1="one,one.lf,one.osf,one.sc" g2="four,four.lf,four.osf,four.sc" k="19" />
  7347. <hkern g1="one,one.lf,one.osf,one.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="8" />
  7348. <hkern g1="one,one.lf,one.osf,one.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="8" />
  7349. <hkern g1="one,one.lf,one.osf,one.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="8" />
  7350. <hkern g1="one,one.lf,one.osf,one.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="5" />
  7351. <hkern g1="one,one.lf,one.osf,one.sc" g2="five,five.lf,five.osf,five.sc" k="8" />
  7352. <hkern g1="one,one.lf,one.osf,one.sc" g2="one,one.lf,one.osf,one.sc" k="-15" />
  7353. <hkern g1="one,one.lf,one.osf,one.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="16" />
  7354. <hkern g1="one,one.lf,one.osf,one.sc" g2="braceright,braceright.caps,braceright.sc" k="8" />
  7355. <hkern g1="two,two.lf,two.osf,two.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="33" />
  7356. <hkern g1="two,two.lf,two.osf,two.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  7357. <hkern g1="two,two.lf,two.osf,two.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="38" />
  7358. <hkern g1="two,two.lf,two.osf,two.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="13" />
  7359. <hkern g1="two,two.lf,two.osf,two.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="20" />
  7360. <hkern g1="two,two.lf,two.osf,two.sc" g2="slash,slash.caps,slash.sc" k="25" />
  7361. <hkern g1="two,two.lf,two.osf,two.sc" g2="backslash,backslash.caps,backslash.sc" k="13" />
  7362. <hkern g1="two,two.lf,two.osf,two.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="10" />
  7363. <hkern g1="two,two.lf,two.osf,two.sc" g2="two,two.lf,two.osf,two.sc" k="49" />
  7364. <hkern g1="two,two.lf,two.osf,two.sc" g2="three,three.lf,three.osf,three.sc" k="10" />
  7365. <hkern g1="two,two.lf,two.osf,two.sc" g2="four,four.lf,four.osf,four.sc" k="60" />
  7366. <hkern g1="two,two.lf,two.osf,two.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="24" />
  7367. <hkern g1="two,two.lf,two.osf,two.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="21" />
  7368. <hkern g1="two,two.lf,two.osf,two.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="18" />
  7369. <hkern g1="two,two.lf,two.osf,two.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="15" />
  7370. <hkern g1="two,two.lf,two.osf,two.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="10" />
  7371. <hkern g1="two,two.lf,two.osf,two.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="8" />
  7372. <hkern g1="two,two.lf,two.osf,two.sc" g2="five,five.lf,five.osf,five.sc" k="33" />
  7373. <hkern g1="two,two.lf,two.osf,two.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="5" />
  7374. <hkern g1="two,two.lf,two.osf,two.sc" g2="one,one.lf,one.osf,one.sc" k="-21" />
  7375. <hkern g1="two,two.lf,two.osf,two.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="41" />
  7376. <hkern g1="two,two.lf,two.osf,two.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="8" />
  7377. <hkern g1="four,four.lf,four.osf,four.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="15" />
  7378. <hkern g1="four,four.lf,four.osf,four.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="23" />
  7379. <hkern g1="four,four.lf,four.osf,four.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  7380. <hkern g1="four,four.lf,four.osf,four.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="43" />
  7381. <hkern g1="four,four.lf,four.osf,four.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="20" />
  7382. <hkern g1="four,four.lf,four.osf,four.sc" g2="slash,slash.caps,slash.sc" k="5" />
  7383. <hkern g1="four,four.lf,four.osf,four.sc" g2="backslash,backslash.caps,backslash.sc" k="5" />
  7384. <hkern g1="four,four.lf,four.osf,four.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="15" />
  7385. <hkern g1="four,four.lf,four.osf,four.sc" g2="two,two.lf,two.osf,two.sc" k="46" />
  7386. <hkern g1="four,four.lf,four.osf,four.sc" g2="four,four.lf,four.osf,four.sc" k="13" />
  7387. <hkern g1="four,four.lf,four.osf,four.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="51" />
  7388. <hkern g1="four,four.lf,four.osf,four.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="16" />
  7389. <hkern g1="four,four.lf,four.osf,four.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="8" />
  7390. <hkern g1="four,four.lf,four.osf,four.sc" g2="five,five.lf,five.osf,five.sc" k="35" />
  7391. <hkern g1="four,four.lf,four.osf,four.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="3" />
  7392. <hkern g1="four,four.lf,four.osf,four.sc" g2="one,one.lf,one.osf,one.sc" k="-16" />
  7393. <hkern g1="four,four.lf,four.osf,four.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="41" />
  7394. <hkern g1="five,five.lf,five.osf,five.sc" g2="two,two.lf,two.osf,two.sc" k="16" />
  7395. <hkern g1="five,five.lf,five.osf,five.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="8" />
  7396. <hkern g1="ordfeminine,ordmasculine" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  7397. <hkern g1="ordfeminine,ordmasculine" g2="bracketright,bracketright.caps,bracketright.sc" k="3" />
  7398. <hkern g1="ordfeminine,ordmasculine" g2="question,question.caps,question.sc" k="10" />
  7399. <hkern g1="ordfeminine,ordmasculine" g2="braceright,braceright.caps,braceright.sc" k="5" />
  7400. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="105" />
  7401. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="48" />
  7402. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="15" />
  7403. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  7404. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="23" />
  7405. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="slash,slash.caps,slash.sc" k="18" />
  7406. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="backslash,backslash.caps,backslash.sc" k="40" />
  7407. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  7408. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="8" />
  7409. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="25" />
  7410. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="48" />
  7411. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="58" />
  7412. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="8" />
  7413. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="45" />
  7414. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="23" />
  7415. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="23" />
  7416. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="quotedblleft.sc,quoteleft.sc" k="30" />
  7417. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="quotedblright.sc,quoteright.sc" k="53" />
  7418. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="3" />
  7419. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="two,two.lf,two.osf,two.sc" k="13" />
  7420. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="four,four.lf,four.osf,four.sc" k="5" />
  7421. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="45" />
  7422. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="5" />
  7423. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="15" />
  7424. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="30" />
  7425. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="15" />
  7426. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="five,five.lf,five.osf,five.sc" k="3" />
  7427. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="53" />
  7428. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="one,one.lf,one.osf,one.sc" k="15" />
  7429. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="13" />
  7430. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="question,question.caps,question.sc" k="15" />
  7431. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="braceright,braceright.caps,braceright.sc" k="8" />
  7432. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="15" />
  7433. <hkern g1="braceright,braceright.caps,braceright.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="15" />
  7434. <hkern g1="braceright,braceright.caps,braceright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="13" />
  7435. <hkern g1="braceright,braceright.caps,braceright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  7436. <hkern g1="braceright,braceright.caps,braceright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="18" />
  7437. <hkern g1="braceright,braceright.caps,braceright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  7438. <hkern g1="braceright,braceright.caps,braceright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="13" />
  7439. <hkern g1="braceright,braceright.caps,braceright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="13" />
  7440. <hkern g1="braceright,braceright.caps,braceright.sc" g2="slash,slash.caps,slash.sc" k="40" />
  7441. <hkern g1="braceright,braceright.caps,braceright.sc" g2="backslash,backslash.caps,backslash.sc" k="23" />
  7442. <hkern g1="braceright,braceright.caps,braceright.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="23" />
  7443. <hkern g1="braceright,braceright.caps,braceright.sc" g2="quotedblright.sc,quoteright.sc" k="10" />
  7444. <hkern g1="braceright,braceright.caps,braceright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="10" />
  7445. <hkern g1="braceright,braceright.caps,braceright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="13" />
  7446. <hkern g1="braceright,braceright.caps,braceright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="10" />
  7447. <hkern g1="braceright,braceright.caps,braceright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="13" />
  7448. <hkern g1="braceright,braceright.caps,braceright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="13" />
  7449. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="13" />
  7450. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="13" />
  7451. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  7452. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="18" />
  7453. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="13" />
  7454. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="13" />
  7455. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="slash,slash.caps,slash.sc" k="23" />
  7456. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="backslash,backslash.caps,backslash.sc" k="18" />
  7457. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="10" />
  7458. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="5" />
  7459. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="18" />
  7460. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="8" />
  7461. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="18" />
  7462. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="8" />
  7463. <hkern g1="cent,cent.osf" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  7464. <hkern g1="cent,cent.osf" g2="slash,slash.caps,slash.sc" k="3" />
  7465. <hkern g1="currency,currency.osf" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="3" />
  7466. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="5" />
  7467. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="3" />
  7468. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="slash,slash.caps,slash.sc" k="3" />
  7469. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="13" />
  7470. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="two,two.lf,two.osf,two.sc" k="15" />
  7471. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="four,four.lf,four.osf,four.sc" k="5" />
  7472. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="1" />
  7473. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="3" />
  7474. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="five,five.lf,five.osf,five.sc" k="3" />
  7475. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="3" />
  7476. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="78" />
  7477. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="8" />
  7478. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="60" />
  7479. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="33" />
  7480. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="48" />
  7481. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="3" />
  7482. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="15" />
  7483. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="parenright,parenright.caps,parenright.sc" k="30" />
  7484. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="38" />
  7485. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="5" />
  7486. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="slash,slash.caps,slash.sc" k="48" />
  7487. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="backslash,backslash.caps,backslash.sc" k="23" />
  7488. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="23" />
  7489. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="15" />
  7490. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="8" />
  7491. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="15" />
  7492. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="60" />
  7493. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="20" />
  7494. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="quotedblright.sc,quoteright.sc" k="3" />
  7495. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="8" />
  7496. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="15" />
  7497. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="23" />
  7498. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="15" />
  7499. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="5" />
  7500. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="38" />
  7501. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="question,question.caps,question.sc" k="8" />
  7502. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="braceright,braceright.caps,braceright.sc" k="23" />
  7503. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="5" />
  7504. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="slash,slash.caps,slash.sc" k="8" />
  7505. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="quotedblright.sc,quoteright.sc" k="3" />
  7506. <hkern g1="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,dotlessi,icaron,idotbelow,fi" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="23" />
  7507. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="14" />
  7508. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="1" />
  7509. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="1" />
  7510. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="1" />
  7511. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="3" />
  7512. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="4" />
  7513. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="1" />
  7514. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jcircumflex.sc,jacute.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="13" />
  7515. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jcircumflex.sc,jacute.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="3" />
  7516. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jcircumflex.sc,jacute.sc" g2="slash,slash.caps,slash.sc" k="9" />
  7517. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jcircumflex.sc,jacute.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="8" />
  7518. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jcircumflex.sc,jacute.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="1" />
  7519. <hkern g1="l,lacute,lcommaaccent,lcaron,ldot,lslash,fl" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  7520. <hkern g1="l,lacute,lcommaaccent,lcaron,ldot,lslash,fl" g2="question,question.caps,question.sc" k="5" />
  7521. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  7522. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="28" />
  7523. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="35" />
  7524. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="5" />
  7525. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  7526. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="15" />
  7527. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="slash,slash.caps,slash.sc" k="20" />
  7528. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="backslash,backslash.caps,backslash.sc" k="5" />
  7529. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="23" />
  7530. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  7531. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="5" />
  7532. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="4" />
  7533. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="48" />
  7534. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="two,two.lf,two.osf,two.sc" k="8" />
  7535. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="four,four.lf,four.osf,four.sc" k="13" />
  7536. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="5" />
  7537. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="15" />
  7538. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="28" />
  7539. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="five,five.lf,five.osf,five.sc" k="3" />
  7540. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="25" />
  7541. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="5" />
  7542. <hkern g1="parenright,parenright.caps,parenright.sc" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="23" />
  7543. <hkern g1="parenright,parenright.caps,parenright.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="15" />
  7544. <hkern g1="parenright,parenright.caps,parenright.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="30" />
  7545. <hkern g1="parenright,parenright.caps,parenright.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="38" />
  7546. <hkern g1="parenright,parenright.caps,parenright.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="38" />
  7547. <hkern g1="parenright,parenright.caps,parenright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="25" />
  7548. <hkern g1="parenright,parenright.caps,parenright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="50" />
  7549. <hkern g1="parenright,parenright.caps,parenright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="13" />
  7550. <hkern g1="parenright,parenright.caps,parenright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="15" />
  7551. <hkern g1="parenright,parenright.caps,parenright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="13" />
  7552. <hkern g1="parenright,parenright.caps,parenright.sc" g2="slash,slash.caps,slash.sc" k="75" />
  7553. <hkern g1="parenright,parenright.caps,parenright.sc" g2="backslash,backslash.caps,backslash.sc" k="55" />
  7554. <hkern g1="parenright,parenright.caps,parenright.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="8" />
  7555. <hkern g1="parenright,parenright.caps,parenright.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="35" />
  7556. <hkern g1="parenright,parenright.caps,parenright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="15" />
  7557. <hkern g1="parenright,parenright.caps,parenright.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="15" />
  7558. <hkern g1="parenright,parenright.caps,parenright.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="23" />
  7559. <hkern g1="parenright,parenright.caps,parenright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="23" />
  7560. <hkern g1="parenright,parenright.caps,parenright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="10" />
  7561. <hkern g1="parenright,parenright.caps,parenright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="48" />
  7562. <hkern g1="parenright,parenright.caps,parenright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="5" />
  7563. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="78" />
  7564. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  7565. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="45" />
  7566. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="38" />
  7567. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="backslash,backslash.caps,backslash.sc" k="13" />
  7568. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="-8" />
  7569. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="8" />
  7570. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="15" />
  7571. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="23" />
  7572. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="quotedblright.sc,quoteright.sc" k="30" />
  7573. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="two,two.lf,two.osf,two.sc" k="8" />
  7574. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="three,three.lf,three.osf,three.sc" k="-5" />
  7575. <hkern g1="percent.lf,perthousand.lf" g2="asterisk,asterisk.caps,asterisk.sc" k="68" />
  7576. <hkern g1="percent.lf,perthousand.lf" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  7577. <hkern g1="percent.lf,perthousand.lf" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="60" />
  7578. <hkern g1="question,question.caps,question.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="13" />
  7579. <hkern g1="question,question.caps,question.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  7580. <hkern g1="question,question.caps,question.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="23" />
  7581. <hkern g1="question,question.caps,question.sc" g2="slash,slash.caps,slash.sc" k="10" />
  7582. <hkern g1="question,question.caps,question.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="23" />
  7583. <hkern g1="sterling,sterling.osf" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="13" />
  7584. <hkern g1="sterling,sterling.osf" g2="slash,slash.caps,slash.sc" k="30" />
  7585. <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="5" />
  7586. <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="15" />
  7587. <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="23" />
  7588. <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="38" />
  7589. </font>
  7590. </defs></svg>