IndivisaTextSans-Bold.svg 886 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617
  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_sansbold" horiz-adv-x="596" >
  7. <font-face units-per-em="1000" ascent="752" descent="-248" />
  8. <missing-glyph horiz-adv-x="254" />
  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="254" />
  15. <glyph unicode="&#x09;" horiz-adv-x="254" />
  16. <glyph unicode="&#xa0;" horiz-adv-x="254" />
  17. <glyph unicode="!" horiz-adv-x="313" d="M196 216h-78q-11 188 -30 472l120 10l14 -14q-4 -228 -26 -468zM227 69q0 -32 -22 -55.5t-55 -23.5q-29 0 -47.5 19t-18.5 47q0 32 23.5 55.5t55.5 23.5q28 0 46 -18.5t18 -47.5z" />
  18. <glyph unicode="&#x22;" horiz-adv-x="349" d="M146 758l8 -20l-34 -264h-43l-31 284h100zM301 758l8 -20l-34 -264h-44l-30 284h100z" />
  19. <glyph unicode="#" horiz-adv-x="705" d="M208 -10l-61 10l-8 8l33 129h-124l-8 8l9 61h140l32 128h-130l-8 8l9 61h146l36 145l61 -10l8 -8l-32 -127h153l36 145l61 -10l8 -8l-32 -127h120l8 -8l-9 -61h-136l-32 -128h131l8 -8l-9 -61h-147l-37 -147l-61 10l-8 8l32 129h-152zM262 206h153l32 128h-153z" />
  20. <glyph unicode="$" horiz-adv-x="497" d="M221 -140l-8 8v122q-108 2 -163 37l8 109q33 -22 80.5 -34t84.5 -12q44 0 68 22.5t24 61.5q0 31 -18.5 57t-40 40.5t-59.5 35.5q-9 4 -13 7q-41 24 -65 43t-45.5 57.5t-21.5 88.5q0 78 48 128t129 63v131l47 3l8 -8v-122q86 0 145 -28l-15 -111q-61 39 -132 39 q-47 0 -72.5 -23t-25.5 -62q0 -12 3.5 -24t7.5 -20.5t14 -18.5l15.5 -15.5t20.5 -15.5t21 -13.5t24.5 -14t23.5 -13.5q62 -35 97.5 -78.5t35.5 -116.5q0 -80 -48.5 -129.5t-130.5 -60.5v-130z" />
  21. <glyph unicode="%" horiz-adv-x="963" d="M431 499q0 -97 -56.5 -151t-138.5 -54t-133.5 52t-51.5 144q0 97 55.5 152.5t140.5 55.5q83 0 133.5 -54t50.5 -145zM737 698l-424 -708h-55l423 708h56zM158 499q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139zM912 127q0 -97 -56.5 -151t-138.5 -54 t-133.5 52t-51.5 144q0 97 55.5 152.5t140.5 55.5q83 0 133.5 -54t50.5 -145zM639 127q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139z" />
  22. <glyph unicode="&#x26;" horiz-adv-x="775" d="M352 604q-34 0 -57 -19t-23 -52q0 -26 18 -60.5t31 -51t40 -49.5l154 -184q25 58 25 127q0 44 -7 82l122 15l17 -16q-7 -161 -100 -272q46 -44 89 -44q32 0 56 14l10 -78q-39 -26 -100 -26q-71 0 -141 58q-92 -58 -199 -58q-99 0 -157 50t-58 130q0 65 39 115t102 75 q-72 86 -72 165q0 73 57 123t154 50q65 0 115 -25t78 -68l-61 -97q-60 96 -132 96zM198 199q0 -56 38 -94.5t102 -38.5q54 0 100 29q-14 16 -57 65l-130 155q-53 -43 -53 -116z" />
  23. <glyph unicode="'" horiz-adv-x="194" d="M143 758l8 -20l-34 -264h-43l-31 284h100z" />
  24. <glyph unicode="(" horiz-adv-x="417" d="M343 -197q-120 78 -185.5 200.5t-65.5 277.5q0 154 65.5 276.5t185.5 200.5l46 -62q-167 -164 -167 -415q0 -250 167 -416z" />
  25. <glyph unicode=")" horiz-adv-x="417" d="M325 281q0 -155 -65.5 -277.5t-185.5 -200.5l-46 62q166 165 166 416q0 252 -166 415l46 62q120 -78 185.5 -200.5t65.5 -276.5z" />
  26. <glyph unicode="*" horiz-adv-x="496" d="M212 352l-6 16l25 152l-132 -106l-40 68l11 13l147 54l-161 62l39 67l17 -2l120 -99l-26 169h77l7 -16l-27 -155l134 109l39 -68l-11 -13l-144 -54l158 -62l-39 -67l-17 2l-120 100l27 -170h-78z" />
  27. <glyph unicode="+" d="M519 313h-184v-188h-69l-1 188h-196v65q48 2 196 4l-1 183h71v-183q72 1 185 1l7 -7z" />
  28. <glyph unicode="," horiz-adv-x="263" d="M41 -159q56 82 71 150q-27 4 -44 24t-17 49q0 34 24.5 59.5t58.5 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -61 -41.5 -133t-89.5 -121z" />
  29. <glyph unicode="-" horiz-adv-x="388" d="M30 262v44h328v-44h-328z" />
  30. <glyph unicode="." horiz-adv-x="265" d="M212 71q0 -34 -23.5 -57.5t-57.5 -23.5q-33 0 -55.5 22t-22.5 55q0 34 24.5 58t59.5 24q32 0 53.5 -22t21.5 -56z" />
  31. <glyph unicode="/" horiz-adv-x="359" d="M311 748l8 -8l-187 -747l-62 11l-8 8l187 747z" />
  32. <glyph unicode="0" horiz-adv-x="661" d="M603 347q0 -169 -80.5 -263t-198.5 -94q-117 0 -191 92.5t-74 254.5q0 167 79.5 264t199.5 97q119 0 192 -95t73 -256zM188 347q0 -276 143 -276q71 0 106.5 70.5t35.5 199.5q0 276 -142 276q-69 0 -106 -68t-37 -202z" />
  33. <glyph unicode="1" horiz-adv-x="364" d="M139 566h-2l-106 -19l-18 76l235 74l14 -14v-683h-125v426q0 101 2 140z" />
  34. <glyph unicode="2" horiz-adv-x="603" d="M91 0l-15 93q56 44 105.5 89.5t98 99.5t77 108.5t28.5 100.5q0 50 -32 82t-89 32q-79 0 -175 -62l-13 100q106 55 217 55q98 0 159.5 -50t61.5 -130q0 -100 -95 -213t-224 -205h162q87 0 160 10l-10 -110h-416z" />
  35. <glyph unicode="3" horiz-adv-x="522" d="M51 644q38 22 95 38t110 16q84 0 138 -41t54 -107q0 -58 -43 -108t-118 -74q89 -9 141.5 -54.5t52.5 -120.5q0 -90 -75 -146.5t-197 -56.5q-87 0 -168 23l12 87q73 -23 151 -23q66 0 107 29.5t41 81.5q0 55 -46.5 80t-120.5 25q-40 0 -78 -7v86q97 16 154.5 56t57.5 95 q0 37 -25.5 59.5t-73.5 22.5q-76 0 -163 -49z" />
  36. <glyph unicode="4" horiz-adv-x="618" d="M29 253l288 433l136 11l14 -14v-420q62 2 117 9l-10 -103h-107v-169h-119l1 169h-305zM133 263v-3q52 2 209 2h7v155q0 124 5 177h-3z" />
  37. <glyph unicode="5" horiz-adv-x="555" d="M69 13l12 90q71 -23 145 -23q66 0 107 34t41 96q0 60 -37.5 90t-96.5 30q-67 0 -130 -25l-20 13v370h232q87 0 160 10l-8 -110h-281v-180q44 11 94 11q94 0 155.5 -52t61.5 -148q0 -107 -76.5 -168t-199.5 -61q-79 0 -159 23z" />
  38. <glyph unicode="6" horiz-adv-x="597" d="M312 -10q-112 0 -179 79t-67 226q0 179 96.5 291t253.5 112q61 0 85 -12l-11 -94q-29 13 -73 13q-85 0 -148 -63.5t-72 -183.5h2q57 49 148 49q90 0 144 -52.5t54 -143.5q0 -102 -67 -161.5t-166 -59.5zM311 326q-34 0 -67 -15t-48 -40q2 -102 27.5 -151t83.5 -49 q51 0 80 35t29 93t-27 92.5t-78 34.5z" />
  39. <glyph unicode="7" horiz-adv-x="536" d="M37 572l12 116h432l16 -14v-72q-117 -128 -186.5 -283t-76.5 -319h-129q9 156 89.5 318t184.5 268v2h-151q-108 0 -191 -16z" />
  40. <glyph unicode="8" horiz-adv-x="600" d="M294 -10q-106 0 -172.5 48.5t-66.5 125.5q0 65 46.5 114.5t112.5 71.5v3q-134 73 -134 172q0 74 64 123.5t162 49.5t156 -49.5t58 -116.5q0 -52 -36.5 -97.5t-96.5 -73.5v-3q159 -68 159 -181q0 -78 -68.5 -132.5t-183.5 -54.5zM302 623q-43 0 -74 -25.5t-31 -65.5 q0 -77 116 -130q40 25 65 59.5t25 70.5q0 40 -29 65.5t-72 25.5zM287 300q-48 -21 -80 -56.5t-32 -77.5q0 -44 34.5 -72.5t88.5 -28.5q55 0 91 28t37 73q1 43 -35 75t-104 59z" />
  41. <glyph unicode="9" horiz-adv-x="597" d="M257 263q-93 0 -149 54.5t-56 148.5q0 106 67.5 169t167.5 63q108 0 176 -77.5t68 -222.5q0 -111 -41 -203.5t-121 -148.5t-184 -56q-49 0 -77 8l-1 92q29 -7 68 -7q96 0 154.5 61t72.5 172h-2q-47 -53 -143 -53zM285 611q-47 0 -75.5 -38.5t-28.5 -99.5q0 -60 29 -95 t83 -35q73 0 108 52q-1 106 -31.5 161t-84.5 55z" />
  42. <glyph unicode=":" horiz-adv-x="265" d="M212 392q0 -34 -23.5 -57.5t-57.5 -23.5q-33 0 -55.5 22.5t-22.5 54.5q0 34 24.5 58t59.5 24q32 0 53.5 -22t21.5 -56zM212 71q0 -34 -23.5 -57.5t-57.5 -23.5q-33 0 -55.5 22t-22.5 55q0 34 24.5 58t59.5 24q32 0 53.5 -22t21.5 -56z" />
  43. <glyph unicode=";" horiz-adv-x="268" d="M216 392q0 -34 -23.5 -57.5t-58.5 -23.5q-34 0 -56 22.5t-22 54.5q0 34 25 58t59 24q33 0 54.5 -22t21.5 -56zM41 -159q56 82 71 150q-27 4 -44 24t-17 49q0 34 24.5 59.5t58.5 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -61 -41.5 -133t-89.5 -121z" />
  44. <glyph unicode="&#x3c;" d="M509 108l-440 216v43l4 9q75 39 219.5 106t215.5 96v-73l-330 -156l331 -168v-73z" />
  45. <glyph unicode="=" d="M519 410h-450v65q170 5 451 5l7 -6zM519 216h-450v66q170 5 451 5l7 -7z" />
  46. <glyph unicode="&#x3e;" d="M87 108v73l332 168l-331 156v73q71 -29 215 -96t220 -106l4 -9v-43z" />
  47. <glyph unicode="?" horiz-adv-x="477" d="M235 219l-73 -3q-13 28 -13 56t16.5 53.5t40.5 45.5t48 40.5t40.5 47t16.5 56.5q0 41 -27 66t-72 25q-38 0 -78 -20t-68 -56l-48 66q80 102 219 102q93 0 148 -46t55 -120q0 -43 -20.5 -81t-50 -63t-58.5 -46t-49.5 -41t-20.5 -37t2 -37zM277 69q0 -32 -21.5 -55.5 t-54.5 -23.5q-30 0 -48.5 19t-18.5 47q0 32 23.5 55.5t56.5 23.5q28 0 45.5 -18.5t17.5 -47.5z" />
  48. <glyph unicode="@" horiz-adv-x="1138" d="M803 -161q-127 -97 -304 -97q-192 0 -314.5 121.5t-122.5 314.5q0 157 84 292t220 211.5t287 76.5q187 0 305 -115.5t118 -286.5q0 -152 -91 -259t-223 -107q-52 0 -85 18.5t-44 50.5t-10.5 66t11.5 73h-5q-29 -80 -84 -144t-118 -64q-49 0 -78 41.5t-29 115.5 q0 88 38 169.5t115 136.5t175 55q95 0 164 -33l-46 -197q-6 -26 -8.5 -38.5t-7 -37.5t-5 -38.5t-1 -34t4.5 -32t12.5 -23.5t21 -17t31.5 -5q76 0 144 87t68 214q0 157 -106 259t-268 102q-76 0 -153.5 -24.5t-146.5 -71.5t-123 -110.5t-85.5 -147t-31.5 -174.5 q0 -175 110 -287.5t289 -112.5q82 0 145 22t130 60zM493 95q31 0 67 47.5t62.5 109.5t38.5 116l12 52q-32 13 -53 13q-43 0 -83.5 -42.5t-64 -103t-23.5 -115.5q0 -77 44 -77z" />
  49. <glyph unicode="A" horiz-adv-x="630" d="M137 0h-122l186 585q20 61 30 106l147 6l20 -17l217 -680h-129l-53 166h-243zM250 357l-31 -98h184l-30 97q-47 160 -59 223h-4q-21 -91 -60 -222z" />
  50. <glyph unicode="B" horiz-adv-x="615" d="M309 0h-224v522q0 102 -9 166h238q105 0 167 -50t62 -130q0 -107 -110 -150q138 -38 138 -169q0 -87 -73 -138t-189 -51zM293 595h-80v-203h79q59 0 90 27t31 73q0 48 -30.5 75.5t-89.5 27.5zM299 306h-86v-213h88q66 0 101.5 28t35.5 77q0 50 -34.5 79t-104.5 29z" />
  51. <glyph unicode="C" horiz-adv-x="583" d="M536 142l15 -105q-77 -47 -191 -47q-143 0 -226.5 91.5t-83.5 253.5q0 164 89 263.5t230 99.5q106 0 177 -42l-25 -111q-73 47 -150 47q-84 0 -136 -67.5t-52 -184.5q0 -112 51.5 -178t143.5 -66q85 0 158 46z" />
  52. <glyph unicode="D" horiz-adv-x="686" d="M636 348q0 -163 -98 -255.5t-253 -92.5h-200v522q0 102 -9 166h225q152 0 243.5 -91.5t91.5 -248.5zM293 595h-80v-502h81q105 0 157 66.5t52 182.5q0 114 -54 183.5t-156 69.5z" />
  53. <glyph unicode="E" horiz-adv-x="537" d="M504 100v-100h-419v522q0 102 -9 166h407l14 -14l-3 -86l-281 7v-212l235 4l-3 -93l-232 5v-206z" />
  54. <glyph unicode="F" horiz-adv-x="505" d="M213 0h-128v522q0 102 -9 166h395l14 -14l-3 -86l-269 7v-228l222 4l-3 -93l-219 5v-283z" />
  55. <glyph unicode="G" horiz-adv-x="642" d="M572 315l14 -14l-3 -267q-93 -44 -213 -44q-151 0 -235.5 90t-84.5 248q0 168 92.5 269t247.5 101q105 0 180 -39l-22 -111q-67 47 -152 47q-97 0 -155 -67t-58 -190q0 -114 51.5 -181t149.5 -67q34 0 79 8v12q0 106 -12 195z" />
  56. <glyph unicode="H" horiz-adv-x="710" d="M213 0h-128v517q0 95 -9 171l123 10l14 -14v-296h283v129q0 95 -9 171l124 10l14 -14v-684h-129v295h-283v-295z" />
  57. <glyph unicode="I" horiz-adv-x="298" d="M213 0h-128v517q0 95 -9 171l123 10l14 -14v-684z" />
  58. <glyph unicode="J" horiz-adv-x="293" d="M40 -208l-40 56q80 89 80 254v415q0 79 -12 166l127 15l13 -13v-583q0 -120 -36.5 -188.5t-131.5 -121.5z" />
  59. <glyph unicode="K" horiz-adv-x="625" d="M85 517q0 95 -9 171l123 10l14 -14v-310h79q46 83 176 324l117 -11l8 -14l-196 -317l219 -356l-146 -7q-74 113 -177 287h-80v-280h-128v517z" />
  60. <glyph unicode="L" horiz-adv-x="505" d="M489 100v-100h-404v517q0 95 -9 171l123 10l14 -14v-591z" />
  61. <glyph unicode="M" horiz-adv-x="880" d="M739 698l17 -14l75 -684h-126l-28 253q-15 118 -27 306h-2q-22 -115 -75 -306l-71 -253h-143l-70 253q-51 177 -75 306h-2q-7 -112 -28 -306l-28 -253h-107l76 690l167 7l84 -281q42 -156 63 -297h3q24 153 63 297l81 274z" />
  62. <glyph unicode="N" horiz-adv-x="706" d="M370 419q93 -153 136 -250h3q-10 101 -10 313q0 112 -9 206l118 9l14 -14v-683h-124q-33 54 -87 145.5t-78 130.5q-92 150 -133 237h-2q9 -81 9 -215v-298h-122v522q0 90 -9 166l130 8q142 -240 164 -277z" />
  63. <glyph unicode="O" horiz-adv-x="707" d="M657 346q0 -168 -88 -262t-223 -94q-132 0 -214 91.5t-82 251.5q0 165 88 265t224 100q134 0 214.5 -95.5t80.5 -256.5zM183 345q0 -115 44.5 -186.5t126.5 -71.5q83 0 126.5 68.5t43.5 187.5q0 117 -41.5 187.5t-124.5 70.5q-82 0 -128.5 -69t-46.5 -187z" />
  64. <glyph unicode="P" horiz-adv-x="581" d="M213 0h-128v522q0 102 -9 166h227q115 0 183 -61t68 -165q0 -109 -75 -170t-193 -61h-73v-231zM277 595h-64v-272h63q145 0 145 135q0 64 -35 100.5t-109 36.5z" />
  65. <glyph unicode="Q" horiz-adv-x="705" d="M657 346q0 -146 -68 -237t-178 -113q134 -70 331 -70l-18 -114q-108 0 -218.5 52t-192.5 128q-118 12 -190.5 102t-72.5 239q0 165 88 265t224 100q134 0 214.5 -95.5t80.5 -256.5zM183 345q0 -115 44.5 -186.5t126.5 -71.5q83 0 126.5 68.5t43.5 187.5 q0 117 -41.5 187.5t-124.5 70.5q-82 0 -128.5 -69t-46.5 -187z" />
  66. <glyph unicode="R" horiz-adv-x="606" d="M213 0h-128v522q0 102 -9 166h210q127 0 197.5 -57.5t70.5 -157.5q0 -70 -34 -117.5t-91 -71.5l158 -284l-146 -7q-62 119 -124 258h-104v-251zM277 595h-64v-255h63q145 0 145 126q0 129 -144 129z" />
  67. <glyph unicode="S" horiz-adv-x="531" d="M481 183q0 -91 -67 -142t-177 -51q-119 0 -187 37l9 109q36 -22 88 -34t92 -12q53 0 81.5 22.5t28.5 61.5q0 11 -2.5 21t-5.5 17.5t-10.5 16.5t-12 14.5t-16 14t-16.5 12t-20 11.5t-20 11t-22.5 11.5t-21.5 10.5q-34 17 -55.5 31.5t-45.5 37t-36 52.5t-12 68q0 91 69 143 t181 52q93 0 160 -28l-16 -111q-68 39 -146 39q-56 0 -86 -22.5t-30 -62.5q0 -14 3.5 -26.5t14 -24.5t17 -19t25 -18.5t26 -15.5t31.5 -16l30 -15q32 -17 54.5 -31.5t46 -38t36 -55t12.5 -70.5z" />
  68. <glyph unicode="T" horiz-adv-x="560" d="M345 0h-129v592q-66 -1 -200 -7l7 103h514l7 -103q-135 6 -199 7v-592z" />
  69. <glyph unicode="U" horiz-adv-x="666" d="M73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63t-71.5 179v286z" />
  70. <glyph unicode="V" horiz-adv-x="624" d="M245 -2l-231 687l137 13l123 -391q39 -124 49 -175q15 69 54 183l122 383l103 -8l8 -14l-231 -678h-134z" />
  71. <glyph unicode="W" horiz-adv-x="970" d="M210 -2l-192 687l135 13l98 -379q29 -115 40 -187q13 65 49 194l95 364l124 8l98 -379q33 -117 45 -187q12 71 45 196l95 370l103 -8l8 -14l-192 -678h-134l-95 329q-9 35 -24 101t-21 90h-2q-26 -118 -47 -193l-94 -327h-134z" />
  72. <glyph unicode="X" horiz-adv-x="584" d="M23 0l-7 14l196 320l-196 351l137 13l151 -282h2l144 282l112 -9l7 -14l-194 -335l194 -340h-144l-142 258h-2l-144 -258h-114z" />
  73. <glyph unicode="Y" horiz-adv-x="571" d="M221 232l-207 453l137 13l91 -220q42 -109 54 -146h3q27 71 58 146l89 220l104 -8l8 -14l-208 -446v-230h-129v232z" />
  74. <glyph unicode="Z" horiz-adv-x="550" d="M51 0l-21 83l340 500l-327 -7l8 112h431l32 -83l-336 -499l335 6l-7 -112h-455z" />
  75. <glyph unicode="[" horiz-adv-x="387" d="M104 758h242v-95h-122v-764h122v-96h-242v955z" />
  76. <glyph unicode="\" horiz-adv-x="378" d="M247 -7l-187 747l8 8l62 11l187 -747l-8 -8z" />
  77. <glyph unicode="]" horiz-adv-x="387" d="M282 758v-955h-242v96h123v764h-123v95h242z" />
  78. <glyph unicode="^" horiz-adv-x="526" d="M159 210h-75l147 338h62l149 -338h-75l-107 243z" />
  79. <glyph unicode="_" horiz-adv-x="419" d="M0 -218v44h419v-44h-419z" />
  80. <glyph unicode="`" horiz-adv-x="302" d="M205 571q-97 69 -158 163l7 21l113 12q27 -83 85 -184z" />
  81. <glyph unicode="a" horiz-adv-x="514" d="M434 137q0 -74 22 -137l-105 -10q-17 28 -27 69h-3q-22 -29 -62 -49t-87 -20q-60 0 -95.5 32t-35.5 88q0 81 74.5 122t196.5 46v48q0 89 -93 89q-76 0 -151 -44l-7 98q94 39 189 39q92 0 139.5 -42.5t47.5 -122.5q0 -36 -1.5 -107t-1.5 -99zM164 131q0 -28 17.5 -47 t47.5 -19q46 0 83 34v135q-65 -6 -106.5 -32t-41.5 -71z" />
  82. <glyph unicode="b" horiz-adv-x="568" d="M518 252q0 -125 -60 -193.5t-165 -68.5q-62 0 -113 17l-106 -17v587q0 70 -12 166l122 15l15 -14v-282q54 46 126 46q89 0 141 -69t52 -187zM276 427q-44 0 -77 -25v-331q36 -12 71 -12q118 0 118 186q0 182 -112 182z" />
  83. <glyph unicode="c" horiz-adv-x="485" d="M449 471l-28 -97q-59 41 -118 41q-56 0 -89.5 -42t-33.5 -117q0 -82 37.5 -129t104.5 -47q51 0 112 34l8 -83q-62 -41 -151 -41q-109 1 -174.5 69t-65.5 185q0 120 69 192t179 72q87 0 150 -37z" />
  84. <glyph unicode="d" horiz-adv-x="576" d="M359 743l122 15l14 -14v-609q0 -71 23 -135l-108 -10q-10 19 -27 68h-2q-50 -68 -137 -68t-140 65.5t-53 177.5q0 130 71 202.5t185 72.5q30 0 63 -7v76q0 96 -11 166zM180 249q0 -84 31 -134t85 -50q44 0 74 32v337q-28 5 -49 5q-66 0 -103.5 -49t-37.5 -141z" />
  85. <glyph unicode="e" horiz-adv-x="523" d="M477 251l-15 -15h-281q7 -79 46.5 -117.5t103.5 -38.5q63 0 124 36l8 -83q-65 -43 -165 -43q-113 0 -180 66t-67 186q0 121 67 193.5t168 72.5q88 0 140 -56t52 -146q0 -37 -1 -55zM280 433q-43 0 -70 -40.5t-30 -110.5l174 7q1 11 1 36q0 48 -19.5 78t-55.5 30z" />
  86. <glyph unicode="f" horiz-adv-x="357" d="M220 0h-125v421l-73 4v46l73 15q-3 45 -3 79q0 92 52 142.5t147 50.5q77 0 130 -31l-26 -95q-53 33 -102 33q-78 0 -78 -92q0 -18 3 -87h128l9 -13l-4 -56l-131 4v-421z" />
  87. <glyph unicode="g" horiz-adv-x="513" d="M105 63q0 53 53 89q-53 19 -84 61.5t-31 101.5q0 81 56 137t149 56q74 0 117 -33q17 28 49.5 43.5t67.5 15.5l15 -11l-3 -83h-102q51 -41 51 -119q0 -79 -55 -131.5t-145 -52.5q-19 0 -35 3q-8 -16 -8 -30q0 -22 12 -31.5t39 -11.5l90 -6q70 -4 113 -37t43 -94 q0 -81 -72 -134.5t-193 -53.5q-100 0 -160 36.5t-60 92.5q0 34 22 59t53 35l46 -20q-14 -18 -14 -37q0 -43 35 -73.5t94 -30.5q55 0 89.5 26t34.5 67q0 65 -88 75l-82 8q-47 4 -72 26t-25 57zM323 322q0 121 -78 121q-82 0 -82 -121q0 -119 82 -119q78 0 78 119z" />
  88. <glyph unicode="h" horiz-adv-x="572" d="M199 0h-125v577q0 89 -12 166l122 15l15 -14v-303q75 67 157 67q64 0 100.5 -40t36.5 -113v-355h-126v331q0 90 -73 90q-48 0 -95 -37v-384z" />
  89. <glyph unicode="i" horiz-adv-x="281" d="M217 672q0 -35 -24 -60.5t-60 -25.5q-32 0 -52 21t-20 51q0 35 25.5 60t61.5 25q30 0 49.5 -19.5t19.5 -51.5zM77 0v327q0 89 -12 166l123 15l14 -14v-494h-125z" />
  90. <glyph unicode="j" horiz-adv-x="283" d="M216 672q0 -35 -24 -60.5t-59 -25.5q-32 0 -52.5 21t-20.5 51q0 34 26 59.5t61 25.5q31 0 50 -19.5t19 -51.5zM55 -258l-47 46q70 81 70 216v323q0 86 -11 166l122 15l14 -14v-484q0 -101 -33.5 -162t-114.5 -106z" />
  91. <glyph unicode="k" horiz-adv-x="533" d="M74 577q0 79 -12 166l122 15l15 -14v-463h55q61 100 129 227l102 -11l8 -14l-135 -196q53 -97 165 -287l-141 -10q-62 104 -124 224h-59v-214h-125v577z" />
  92. <glyph unicode="l" horiz-adv-x="281" d="M202 0h-125v577q0 79 -12 166l123 15l14 -14v-744z" />
  93. <glyph unicode="m" horiz-adv-x="862" d="M204 0h-125v328q0 74 -20 157l117 23q15 -38 22 -72q75 72 160 72q92 0 123 -79q77 79 166 79q64 0 99.5 -39.5t35.5 -109.5v-359h-125v335q0 86 -72 86q-44 0 -93 -38q0 -3 0.5 -11.5t0.5 -12.5v-359h-125v335q0 86 -73 86q-44 0 -91 -37v-384z" />
  94. <glyph unicode="n" horiz-adv-x="577" d="M204 0h-125v328q0 74 -20 157l117 23q15 -39 22 -73q76 73 163 73q64 0 100.5 -40t36.5 -113v-355h-126v331q0 90 -73 90q-46 0 -95 -37v-384z" />
  95. <glyph unicode="o" horiz-adv-x="563" d="M513 252q0 -125 -68.5 -193.5t-169.5 -68.5q-99 0 -161.5 67t-62.5 185q0 124 67.5 195t169.5 71q101 0 163 -69.5t62 -186.5zM180 252q0 -187 102 -187q49 0 75 47.5t26 132.5q0 188 -101 188q-49 0 -75.5 -46t-26.5 -135z" />
  96. <glyph unicode="p" horiz-adv-x="574" d="M79 -244v572q0 72 -20 157l117 23q11 -28 18 -55q57 55 138 55q85 0 138 -68.5t53 -184.5q0 -123 -59 -194t-166 -71q-49 0 -94 14v-83q0 -84 11 -164l-122 -15zM204 400v-325q32 -16 70 -16q120 0 120 188q0 180 -114 180q-46 0 -76 -27z" />
  97. <glyph unicode="q" horiz-adv-x="575" d="M370 -244v285q-51 -51 -125 -51q-87 0 -140.5 68t-53.5 182q0 126 68.5 197t180.5 71q48 0 100 -14l95 14v-585q0 -79 12 -166l-123 -15zM180 250q0 -85 29.5 -135t83.5 -50q46 0 77 28v342q-20 4 -42 4q-72 0 -110 -49t-38 -140z" />
  98. <glyph unicode="r" horiz-adv-x="399" d="M204 0h-125v328q0 74 -20 157l117 23q21 -53 27 -104q61 104 133 104q32 0 49 -14l-13 -118q-27 8 -56 8q-63 0 -112 -40v-344z" />
  99. <glyph unicode="s" horiz-adv-x="445" d="M389 480l-9 -96q-74 40 -135 40q-36 0 -57.5 -15t-21.5 -40q0 -24 24.5 -43t59.5 -33.5t70.5 -32.5t60 -49.5t24.5 -74.5q0 -67 -54.5 -106.5t-145.5 -39.5q-98 0 -164 36l9 95q80 -47 158 -47q36 0 56 15t20 38q0 24 -24.5 43t-59.5 33.5t-70 32t-59.5 49t-24.5 74.5 q0 67 55 108t145 41q74 0 143 -28z" />
  100. <glyph unicode="t" horiz-adv-x="388" d="M351 430l-140 3v-258q0 -95 69 -95q39 0 79 24l9 -78q-55 -36 -128 -36q-75 0 -114.5 45.5t-39.5 135.5v264l-70 1v47l73 15l31 124l78 6l15 -15l-2 -115h136l9 -14z" />
  101. <glyph unicode="u" horiz-adv-x="569" d="M77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  102. <glyph unicode="v" horiz-adv-x="487" d="M473 486l-162 -488h-135l-161 499l131 11l67 -251q34 -106 42 -170h2q10 61 45 170l67 251l96 -8z" />
  103. <glyph unicode="w" horiz-adv-x="786" d="M153 -2l-138 499l128 11l57 -244q27 -89 38 -159h2q13 71 36 156l54 241h149l54 -236q35 -133 38 -160h2q7 44 37 158l56 244l97 -8l8 -14l-137 -488h-148l-56 225q-29 105 -37 171h-2q-6 -50 -36 -171l-57 -225h-145z" />
  104. <glyph unicode="x" horiz-adv-x="485" d="M334 0l-108 190l-100 -190h-101l-6 14l145 235l-145 246l127 13l111 -206l103 206l100 -8l7 -14l-147 -237l147 -249h-133z" />
  105. <glyph unicode="y" horiz-adv-x="483" d="M473 486l-150 -456q-20 -62 -41.5 -107.5t-55 -88t-81 -66t-108.5 -26.5l-18 110q148 8 205 155h-52l-157 490l131 11l67 -251q34 -106 42 -170h2q10 58 45 170l67 251l96 -8z" />
  106. <glyph unicode="z" horiz-adv-x="446" d="M29 395l7 103h363l13 -80l-249 -320l102 1q85 0 155 7l-7 -106h-373l-14 80l255 320z" />
  107. <glyph unicode="{" horiz-adv-x="398" d="M170 125q0 53 -23.5 82.5t-78.5 36.5v72q55 7 78.5 36t23.5 84q0 36 -15.5 98t-15.5 94q0 71 51 100.5t167 29.5l3 -72q-98 0 -98 -84q0 -27 14.5 -89.5t14.5 -93.5q0 -55 -31 -90.5t-83 -48.5q51 -12 82.5 -48t31.5 -90q0 -27 -14.5 -91.5t-14.5 -92.5q0 -84 98 -84 l-3 -72q-117 0 -167.5 29.5t-50.5 100.5q0 33 15.5 98t15.5 95z" />
  108. <glyph unicode="|" horiz-adv-x="323" d="M135 -258l-7 8v1005l60 3l7 -8v-1005z" />
  109. <glyph unicode="}" horiz-adv-x="398" d="M330 244l-102 -119q0 -30 15.5 -95t15.5 -98q0 -71 -50.5 -100.5t-167.5 -29.5l-3 72q98 0 98 84q0 28 -14.5 92.5t-14.5 91.5q0 54 32 90t82 48q-51 13 -82.5 48.5t-31.5 90.5q0 31 14.5 93.5t14.5 89.5q0 84 -98 84l3 72q116 0 167 -29.5t51 -100.5q0 -32 -15.5 -94 t-15.5 -98q0 -55 23.5 -84t78.5 -36v-72z" />
  110. <glyph unicode="~" d="M428 218q-26 0 -138 30t-125 30q-3 0 -6.5 -1.5t-8.5 -6t-8.5 -8t-9.5 -11.5t-10 -12.5t-11.5 -14.5t-11.5 -15l-41 27q17 32 30.5 53t36.5 42t44 21q25 0 137.5 -30t125.5 -30t61 62q4 4 6 7l40 -27q-63 -116 -111 -116z" />
  111. <glyph unicode="&#xa1;" horiz-adv-x="313" d="M87 429q0 32 22 55.5t54 23.5q30 0 48.5 -19t18.5 -47q0 -32 -23.5 -55.5t-56.5 -23.5q-28 0 -45.5 18.5t-17.5 47.5zM118 283h78q15 -268 29 -473l-120 -10l-14 14q4 213 27 469z" />
  112. <glyph unicode="&#xa2;" horiz-adv-x="492" d="M261 -140l-8 8v126q-93 14 -147.5 85.5t-54.5 183.5q0 116 59 192.5t155 89.5v132l46 3l8 -8v-125q80 -5 133 -39l-26 -97q-57 43 -118 43q-59 0 -93.5 -48.5t-34.5 -130.5q0 -90 39.5 -142t108.5 -52q54 0 113 35l8 -83q-55 -39 -142 -42v-128z" />
  113. <glyph unicode="&#xa3;" horiz-adv-x="571" d="M529 -159q-21 -8 -66 -8q-33 0 -68.5 9t-62 20t-61 32.5t-53 34.5t-53 39t-45.5 34q-27 -12 -59 -12q-34 0 -52.5 13t-18.5 35t16.5 35t42.5 13q28 0 61 -14q20 47 34 168l4 46l-113 4l10 47l108 15h1q15 165 72 255.5t176 90.5q92 0 146 -43l-42 -98q-53 48 -104 48 q-55 0 -83 -56t-45 -197h180l6 -13l-15 -53h-180l-3 -17q-27 -158 -90 -227q3 -2 34.5 -19t40.5 -21t37.5 -18t44.5 -19t42 -12.5t49.5 -10.5t47.5 -3q52 0 93 12z" />
  114. <glyph unicode="&#xa4;" horiz-adv-x="566" d="M466 37l-76 78q-49 -36 -116 -36q-60 0 -105 29l-70 -70l-48 48l68 69q-33 47 -33 109q0 70 39 121l-71 72l45 45q4 -4 31 -30t42 -42q47 31 108 31q63 0 112 -34l75 75l48 -48l-77 -77q29 -46 29 -103q0 -62 -31 -109q12 -12 42 -42.5t37 -38.5v-8zM276 393 q-55 0 -86 -36t-31 -87q0 -50 31.5 -86.5t88.5 -36.5t86 35.5t29 87.5t-32 87.5t-86 35.5z" />
  115. <glyph unicode="&#xa5;" horiz-adv-x="554" d="M66 108v50h149v82h-149v49h149l-201 396l131 13l84 -178q27 -61 58 -148h2q22 61 58 143l87 183l98 -8l8 -14l-201 -387h149v-49h-150v-82h150v-50h-150v-108h-123v108h-149z" />
  116. <glyph unicode="&#xa6;" horiz-adv-x="323" d="M195 359l-56 -3l-11 8v391l60 3l7 -8v-391zM195 -255l-56 -3l-11 8v388l60 3l7 -7v-389z" />
  117. <glyph unicode="&#xa7;" horiz-adv-x="567" d="M355 587q-39 0 -59.5 -19.5t-20.5 -51.5t25 -72t60.5 -81.5t71 -87t60.5 -102t25 -112.5q0 -103 -79 -167.5t-207 -64.5q-86 0 -145 25l16 121q52 -35 105 -35q40 0 62.5 20.5t22.5 53.5q0 31 -25 71t-60.5 81t-71 86.5t-60.5 101.5t-25 112q0 103 77.5 167.5t203.5 64.5 q88 0 145 -24l-16 -121q-50 34 -105 34zM283 -102q82 10 122.5 56t40.5 107q0 47 -25 96t-60.5 92t-71 84.5t-60.5 88t-25 88.5q0 39 20.5 70.5t62.5 40.5l-4 8q-82 -10 -122.5 -55.5t-40.5 -107.5q0 -47 25 -96t60.5 -91.5t71.5 -84.5t61 -88t25 -88q0 -39 -20.5 -71 t-63.5 -40z" />
  118. <glyph unicode="&#xa8;" horiz-adv-x="457" d="M190 672q0 -34 -22 -58t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t55.5 24q28 0 46 -18.5t18 -47.5zM409 672q0 -34 -22 -58t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t55.5 24q28 0 46 -18.5t18 -47.5z" />
  119. <glyph unicode="&#xa9;" horiz-adv-x="685" d="M342 -45q-125 0 -209.5 85t-84.5 210q0 122 86.5 208.5t207.5 86.5q125 0 210 -86t85 -209q0 -122 -86.5 -208.5t-208.5 -86.5zM342 0q103 0 176.5 73.5t73.5 176.5q0 104 -73 177t-177 73q-103 0 -176.5 -73.5t-73.5 -176.5q0 -106 72 -178t178 -72zM462 393l-19 -68 q-37 26 -77 26q-36 0 -58 -25t-22 -66q0 -50 24.5 -77.5t68.5 -27.5q35 0 73 20l6 -57q-42 -26 -101 -26q-73 0 -117.5 43t-44.5 117q0 72 47.5 118t121.5 46q57 0 98 -23z" />
  120. <glyph unicode="&#xaa;" horiz-adv-x="430" d="M361 396q0 -62 18 -106l-88 -8q-13 23 -21 54h-3q-17 -24 -50 -39t-72 -15q-49 0 -78.5 25t-29.5 69q0 63 61 95t161 36v35q0 68 -75 68q-65 0 -125 -33l-5 79q76 30 156 30q75 0 114.5 -33.5t39.5 -96.5q0 -28 -1.5 -83t-1.5 -77zM140 393q0 -22 14 -36.5t39 -14.5 q37 0 66 26v104q-52 -4 -85.5 -24.5t-33.5 -54.5z" />
  121. <glyph unicode="&#xab;" horiz-adv-x="483" d="M46 276v34q78 66 171 188l32 -14q-31 -96 -100 -191q69 -95 100 -191l-32 -14q-93 122 -171 188zM240 276v34q80 67 171 188l33 -14q-33 -97 -101 -191q68 -94 101 -191l-33 -14q-91 121 -171 188z" />
  122. <glyph unicode="&#xac;" d="M511 326v-236h-71v173h-379v66q167 5 442 5z" />
  123. <glyph unicode="&#xae;" horiz-adv-x="685" d="M341 -45q-124 0 -208.5 85t-84.5 209q0 123 86.5 209.5t208.5 86.5q124 0 209 -86.5t85 -208.5t-86.5 -208.5t-209.5 -86.5zM342 0q104 0 177 73.5t73 176.5q0 104 -73 177t-177 73q-103 0 -176.5 -73.5t-73.5 -177.5q0 -106 72 -177.5t178 -71.5zM304 92h-74v217 q0 72 -8 112h106q73 0 112.5 -29.5t39.5 -84.5q0 -71 -66 -101l66 -114l-78 -5q-7 12 -15.5 29t-19 38.5t-15.5 32.5h-48v-95zM335 357h-31v-106h31q67 0 67 52q0 25 -17.5 39.5t-49.5 14.5z" />
  124. <glyph unicode="&#xaf;" horiz-adv-x="376" d="M47 629v72h285v-72h-285z" />
  125. <glyph unicode="&#xb0;" horiz-adv-x="340" d="M166 301q-52 0 -85.5 33t-33.5 86q0 55 36 91.5t91 36.5q52 0 85.5 -33t33.5 -85q0 -55 -36.5 -92t-90.5 -37zM170 504q-34 0 -54.5 -23.5t-20.5 -58.5q0 -33 21 -55t53 -22q33 0 54 23.5t21 59.5q0 33 -20.5 54.5t-53.5 21.5z" />
  126. <glyph unicode="&#xb1;" d="M501 407h-166v-152h-70v152h-176v65q43 2 175 4l-1 149h72v-149q65 1 167 1l7 -6zM519 84h-450v65q170 5 451 5l7 -6z" />
  127. <glyph unicode="&#xb2;" horiz-adv-x="377" d="M49 352l-11 63q191 129 191 217q0 31 -19 50t-52 19q-53 0 -110 -43l-9 71q62 37 142 37q64 0 105.5 -31.5t41.5 -82.5q0 -60 -58 -120.5t-141 -109.5h93q54 0 105 6l-7 -76h-271z" />
  128. <glyph unicode="&#xb3;" horiz-adv-x="373" d="M45 734q60 32 134 32q58 0 95.5 -25.5t37.5 -65.5q0 -34 -27 -63.5t-73 -41.5q56 -7 88.5 -34t32.5 -70q0 -54 -50.5 -88t-131.5 -34q-63 0 -111 14l9 60q46 -14 98 -14q39 0 63 15.5t24 43.5q0 55 -102 55q-16 0 -52 -4v60q58 7 95.5 28.5t37.5 52.5q0 21 -16 33.5 t-46 12.5q-48 0 -101 -28z" />
  129. <glyph unicode="&#xb4;" horiz-adv-x="261" d="M224 754l7 -21q-60 -92 -158 -163l-46 11q61 111 85 184z" />
  130. <glyph unicode="&#xb6;" horiz-adv-x="601" d="M234 -100q164 0 164 208v533h-72v-423h-26q-109 0 -181 64t-72 172q0 110 75.5 172t191.5 62h167v-591q0 -124 -65 -195.5t-179 -71.5q-74 0 -141 26l7 73q73 -29 131 -29z" />
  131. <glyph unicode="&#xb7;" horiz-adv-x="312" d="M236 277q0 -34 -24 -57.5t-58 -23.5t-56 22t-22 55t25 57t59 24q33 0 54.5 -21.5t21.5 -55.5z" />
  132. <glyph unicode="&#xb8;" horiz-adv-x="302" d="M247 -136q0 -52 -56 -77t-135 -28l1 45q98 11 98 56q0 35 -71 37l-14 23l32 107l68 -1l-26 -80q103 -14 103 -82z" />
  133. <glyph unicode="&#xb9;" horiz-adv-x="275" d="M105 676h-1l-66 -9l-14 54l165 45l11 -10v-404h-96v242q0 58 1 82z" />
  134. <glyph unicode="&#xba;" horiz-adv-x="473" d="M427 487q0 -97 -56.5 -151t-139.5 -54q-82 0 -133 52t-51 144q0 97 55.5 152.5t139.5 55.5q83 0 134 -54t51 -145zM154 487q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139z" />
  135. <glyph unicode="&#xbb;" horiz-adv-x="483" d="M437 276q-82 -70 -171 -188l-32 14q31 96 100 191q-69 95 -100 191l32 14q89 -118 171 -188v-34zM243 276q-80 -67 -171 -188l-33 14q34 102 101 191q-67 89 -101 191l33 14q91 -121 171 -188v-34z" />
  136. <glyph unicode="&#xbc;" horiz-adv-x="870" d="M135 616h-1l-66 -9l-14 54l165 45l11 -10v-404h-96v242q0 58 1 82zM639 700l-425 -710h-55l424 710h56zM458 143l166 255l106 6l11 -9v-244q20 1 58 5l-7 -71h-51v-95h-91v95h-181zM537 151v-2q8 0 44 0.5t69 0.5v77q0 76 4 110h-2z" />
  137. <glyph unicode="&#xbd;" horiz-adv-x="891" d="M135 616h-1l-66 -9l-14 54l165 45l11 -10v-404h-96v242q0 58 1 82zM639 700l-425 -710h-55l424 710h56zM533 -10l-11 63q191 129 191 217q0 31 -19 50t-52 19q-53 0 -110 -43l-9 71q62 37 142 37q64 0 105.5 -31.5t41.5 -82.5q0 -60 -58 -120.5t-141 -109.5h93 q54 0 105 6l-7 -76h-271z" />
  138. <glyph unicode="&#xbe;" horiz-adv-x="941" d="M75 672q62 33 134 33q58 0 95.5 -25.5t37.5 -65.5q0 -34 -27 -63.5t-73 -41.5q56 -7 88.5 -34.5t32.5 -69.5q0 -54 -50.5 -88t-131.5 -34q-63 0 -111 14l9 60q46 -14 98 -14q39 0 63 15.5t24 42.5q0 56 -102 56q-16 0 -52 -4v60q59 7 96 28t37 53q0 21 -16 33.5t-46 12.5 q-49 0 -101 -28zM709 700l-425 -710h-55l424 710h56zM529 143l166 255l106 6l10 -9v-244q22 1 59 5l-7 -71h-52v-95h-91v95h-180zM607 151v-2q9 0 45 0.5t68 0.5v77q0 76 4 110h-2z" />
  139. <glyph unicode="&#xbf;" horiz-adv-x="477" d="M200 429q0 32 21.5 55.5t54.5 23.5q29 0 48 -19t19 -47q0 -32 -23.5 -55.5t-56.5 -23.5q-28 0 -45.5 18.5t-17.5 47.5zM242 279l72 3q14 -26 14 -56q0 -28 -16.5 -53.5t-40.5 -45.5t-48 -40.5t-40.5 -47t-16.5 -56.5q0 -41 27 -66t72 -25q38 0 78 20t68 56l48 -66 q-80 -102 -219 -102q-93 0 -148 46t-55 120q0 43 20.5 81t49.5 63t58.5 46t50 41t20.5 37t-2 37z" />
  140. <glyph unicode="&#xc0;" horiz-adv-x="630" d="M447 774q-154 10 -267 69l-7 21l77 67q84 -64 207 -125zM137 0h-122l186 585q20 61 30 106l147 6l20 -17l217 -680h-129l-53 166h-243zM250 357l-31 -98h184l-30 97q-47 160 -59 223h-4q-21 -91 -60 -222z" />
  141. <glyph unicode="&#xc1;" horiz-adv-x="630" d="M457 864l-6 -21q-115 -59 -268 -69l-10 32q122 60 208 125zM137 0h-122l186 585q20 61 30 106l147 6l20 -17l217 -680h-129l-53 166h-243zM250 357l-31 -98h184l-30 97q-47 160 -59 223h-4q-21 -91 -60 -222z" />
  142. <glyph unicode="&#xc2;" horiz-adv-x="630" d="M184 771l-34 30q58 50 118 119l88 8q59 -68 123 -127l-33 -30q-55 26 -134 74q-75 -48 -128 -74zM137 0h-122l186 585q20 61 30 106l147 6l20 -17l217 -680h-129l-53 166h-243zM250 357l-31 -98h184l-30 97q-47 160 -59 223h-4q-21 -91 -60 -222z" />
  143. <glyph unicode="&#xc3;" horiz-adv-x="630" d="M244 922q32 0 79 -28t71 -28q35 0 62 48l33 -5q-2 -52 -28 -90t-72 -38q-31 0 -82 28t-72 28q-35 0 -61 -48l-33 5q3 52 28 90t75 38zM137 0h-122l186 585q20 61 30 106l147 6l20 -17l217 -680h-129l-53 166h-243zM250 357l-31 -98h184l-30 97q-47 160 -59 223h-4 q-21 -91 -60 -222z" />
  144. <glyph unicode="&#xc4;" horiz-adv-x="630" d="M496 857q0 -31 -21.5 -52.5t-54.5 -21.5q-29 0 -46.5 17t-17.5 42q0 30 22.5 51.5t54.5 21.5q27 0 45 -16.5t18 -41.5zM275 857q0 -31 -21.5 -52.5t-54.5 -21.5q-29 0 -46.5 17t-17.5 42q0 30 22.5 51.5t54.5 21.5q27 0 45 -16.5t18 -41.5zM137 0h-122l186 585 q20 61 30 106l147 6l20 -17l217 -680h-129l-53 166h-243zM250 357l-31 -98h184l-30 97q-47 160 -59 223h-4q-21 -91 -60 -222z" />
  145. <glyph unicode="&#xc5;" horiz-adv-x="630" d="M423 861q0 -44 -33.5 -75t-81.5 -31q-43 0 -72 25.5t-29 63.5q0 43 35.5 74t83.5 31q42 0 69.5 -25t27.5 -63zM264 848q0 -21 13.5 -34.5t34.5 -13.5q22 0 38 16.5t16 39.5q0 22 -12 35.5t-33 13.5q-24 0 -40.5 -17t-16.5 -40zM137 0h-122l186 585q20 61 30 106l147 6 l20 -17l217 -680h-129l-53 166h-243zM250 357l-31 -98h184l-30 97q-47 160 -59 223h-4q-21 -91 -60 -222z" />
  146. <glyph unicode="&#xc6;" horiz-adv-x="879" d="M137 0h-122l261 585q26 56 46 103h429l14 -14l-2 -86l-264 6l27 -211l223 4l-3 -93l-209 5l27 -206l282 7v-100h-399l-20 166h-217zM294 357l-43 -98h164l-12 97q-12 113 -16 223h-4q-28 -77 -89 -222z" />
  147. <glyph unicode="&#xc7;" horiz-adv-x="583" d="M469 -140q0 -52 -56 -77t-135 -28v45q99 11 99 56q0 35 -71 37l-14 23l23 77q-123 14 -194 103.5t-71 238.5q0 164 89 263.5t230 99.5q106 0 177 -42l-25 -111q-73 47 -150 47q-84 0 -136 -67.5t-52 -184.5q0 -112 51.5 -178t143.5 -66q85 0 158 46l15 -105 q-71 -43 -169 -46l-16 -49q103 -14 103 -82z" />
  148. <glyph unicode="&#xc8;" horiz-adv-x="537" d="M424 774q-154 10 -267 69l-7 21l77 67q84 -64 207 -125zM504 100v-100h-419v522q0 102 -9 166h407l14 -14l-3 -86l-281 7v-212l235 4l-3 -93l-232 5v-206z" />
  149. <glyph unicode="&#xc9;" horiz-adv-x="537" d="M434 864l-6 -21q-115 -59 -268 -69l-10 32q119 58 208 125zM504 100v-100h-419v522q0 102 -9 166h407l14 -14l-3 -86l-281 7v-212l235 4l-3 -93l-232 5v-206z" />
  150. <glyph unicode="&#xca;" horiz-adv-x="537" d="M161 771l-34 30q58 50 118 119l88 8q60 -69 124 -127l-34 -30q-59 28 -133 74q-72 -46 -129 -74zM504 100v-100h-419v522q0 102 -9 166h407l14 -14l-3 -86l-281 7v-212l235 4l-3 -93l-232 5v-206z" />
  151. <glyph unicode="&#xcb;" horiz-adv-x="537" d="M473 857q0 -31 -21.5 -52.5t-54.5 -21.5q-29 0 -46.5 17t-17.5 42q0 30 22.5 51.5t55.5 21.5q26 0 44 -16.5t18 -41.5zM252 857q0 -31 -21.5 -52.5t-54.5 -21.5q-29 0 -46.5 17t-17.5 42q0 30 22.5 51.5t55.5 21.5q26 0 44 -16.5t18 -41.5zM504 100v-100h-419v522 q0 102 -9 166h407l14 -14l-3 -86l-281 7v-212l235 4l-3 -93l-232 5v-206z" />
  152. <glyph unicode="&#xcc;" horiz-adv-x="298" d="M275 774q-154 10 -267 69l-7 21l77 67q84 -64 207 -125zM213 0h-128v517q0 95 -9 171l123 10l14 -14v-684z" />
  153. <glyph unicode="&#xcd;" horiz-adv-x="298" d="M285 864l-6 -21q-115 -59 -268 -69l-10 32q119 58 208 125zM213 0h-128v517q0 95 -9 171l123 10l14 -14v-684z" />
  154. <glyph unicode="&#xce;" horiz-adv-x="298" d="M12 771l-34 30q58 50 118 119l88 8q60 -69 124 -127l-34 -30q-59 28 -133 74q-72 -46 -129 -74zM213 0h-128v517q0 95 -9 171l123 10l14 -14v-684z" />
  155. <glyph unicode="&#xcf;" horiz-adv-x="298" d="M324 857q0 -31 -21.5 -52.5t-54.5 -21.5q-29 0 -46.5 17t-17.5 42q0 30 22.5 51.5t55.5 21.5q26 0 44 -16.5t18 -41.5zM103 857q0 -31 -21.5 -52.5t-54.5 -21.5q-29 0 -46.5 17t-17.5 42q0 30 22.5 51.5t55.5 21.5q26 0 44 -16.5t18 -41.5zM213 0h-128v517q0 95 -9 171 l123 10l14 -14v-684z" />
  156. <glyph unicode="&#xd0;" horiz-adv-x="686" d="M636 348q0 -163 -98 -255.5t-253 -92.5h-200v311h-78v66h78v145q0 102 -9 166h225q152 0 243.5 -91.5t91.5 -248.5zM383 311h-170v-218h81q105 0 157 66.5t52 182.5q0 114 -54 183.5t-156 69.5h-80v-218h170v-66z" />
  157. <glyph unicode="&#xd1;" horiz-adv-x="706" d="M271 922q33 0 80 -28t70 -28q35 0 62 48l33 -5q-2 -52 -27.5 -90t-72.5 -38q-31 0 -81.5 28t-72.5 28q-35 0 -60 -48l-33 5q2 52 27 90t75 38zM370 419q93 -153 136 -250h3q-10 101 -10 313q0 112 -9 206l118 9l14 -14v-683h-124q-33 54 -87 145.5t-78 130.5 q-92 150 -133 237h-2q9 -81 9 -215v-298h-122v522q0 90 -9 166l130 8q142 -240 164 -277z" />
  158. <glyph unicode="&#xd2;" horiz-adv-x="707" d="M490 768q-153 10 -268 69l-6 21l76 67q84 -65 208 -125zM657 346q0 -168 -88 -262t-223 -94q-132 0 -214 91.5t-82 251.5q0 165 88 265t224 100q134 0 214.5 -95.5t80.5 -256.5zM183 345q0 -115 44.5 -186.5t126.5 -71.5q83 0 126.5 68.5t43.5 187.5q0 117 -41.5 187.5 t-124.5 70.5q-82 0 -128.5 -69t-46.5 -187z" />
  159. <glyph unicode="&#xd3;" horiz-adv-x="707" d="M500 858l-7 -21q-113 -59 -267 -69l-10 32q128 63 207 125zM657 346q0 -168 -88 -262t-223 -94q-132 0 -214 91.5t-82 251.5q0 165 88 265t224 100q134 0 214.5 -95.5t80.5 -256.5zM183 345q0 -115 44.5 -186.5t126.5 -71.5q83 0 126.5 68.5t43.5 187.5 q0 117 -41.5 187.5t-124.5 70.5q-82 0 -128.5 -69t-46.5 -187z" />
  160. <glyph unicode="&#xd4;" horiz-adv-x="707" d="M226 765l-34 30q62 54 119 119l88 8q52 -62 123 -127l-34 -30q-63 30 -133 74q-72 -46 -129 -74zM657 346q0 -168 -88 -262t-223 -94q-132 0 -214 91.5t-82 251.5q0 165 88 265t224 100q134 0 214.5 -95.5t80.5 -256.5zM183 345q0 -115 44.5 -186.5t126.5 -71.5 q83 0 126.5 68.5t43.5 187.5q0 117 -41.5 187.5t-124.5 70.5q-82 0 -128.5 -69t-46.5 -187z" />
  161. <glyph unicode="&#xd5;" horiz-adv-x="707" d="M286 916q33 0 80 -28t70 -28q35 0 62 48l33 -5q-2 -52 -28 -90t-72 -38q-31 0 -81.5 28t-72.5 28q-34 0 -61 -48l-33 5q3 52 28 90t75 38zM657 346q0 -168 -88 -262t-223 -94q-132 0 -214 91.5t-82 251.5q0 165 88 265t224 100q134 0 214.5 -95.5t80.5 -256.5zM183 345 q0 -115 44.5 -186.5t126.5 -71.5q83 0 126.5 68.5t43.5 187.5q0 117 -41.5 187.5t-124.5 70.5q-82 0 -128.5 -69t-46.5 -187z" />
  162. <glyph unicode="&#xd6;" horiz-adv-x="707" d="M538 851q0 -31 -21.5 -52.5t-54.5 -21.5q-28 0 -46 17t-18 42q0 30 22.5 51.5t55.5 21.5q27 0 44.5 -16.5t17.5 -41.5zM317 851q0 -31 -21.5 -52.5t-54.5 -21.5q-28 0 -46 17t-18 42q0 30 22.5 51.5t55.5 21.5q27 0 44.5 -16.5t17.5 -41.5zM657 346q0 -168 -88 -262 t-223 -94q-132 0 -214 91.5t-82 251.5q0 165 88 265t224 100q134 0 214.5 -95.5t80.5 -256.5zM183 345q0 -115 44.5 -186.5t126.5 -71.5q83 0 126.5 68.5t43.5 187.5q0 117 -41.5 187.5t-124.5 70.5q-82 0 -128.5 -69t-46.5 -187z" />
  163. <glyph unicode="&#xd7;" d="M455 139l-156 158l-158 -158l-48 49l158 158l-156 159l46 46q92 -90 158 -157l157 158l49 -49l-158 -158q30 -29 83 -82.5t74 -74.5l-1 -10z" />
  164. <glyph unicode="&#xd8;" horiz-adv-x="707" d="M657 346q0 -168 -88 -262t-223 -94q-120 0 -198 75l-65 -74l-49 43l72 82q-56 87 -56 217q0 165 88 265t224 100q112 0 189 -69l60 69l50 -42l-67 -77q63 -92 63 -233zM183 345q0 -70 16 -122l276 318q-43 60 -117 60q-82 0 -128.5 -69t-46.5 -187zM524 343q0 77 -18 134 l-278 -320q46 -70 126 -70q83 0 126.5 68.5t43.5 187.5z" />
  165. <glyph unicode="&#xd9;" horiz-adv-x="666" d="M465 768q-153 10 -268 69l-6 21l77 67q79 -62 207 -125zM73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63t-71.5 179v286z" />
  166. <glyph unicode="&#xda;" horiz-adv-x="666" d="M475 858l-6 -21q-114 -59 -268 -69l-10 32q128 63 207 125zM73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63t-71.5 179v286z" />
  167. <glyph unicode="&#xdb;" horiz-adv-x="666" d="M201 765l-33 30q58 50 118 119l88 8q52 -62 123 -127l-33 -30q-55 26 -134 74q-75 -48 -129 -74zM73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63 t-71.5 179v286z" />
  168. <glyph unicode="&#xdc;" horiz-adv-x="666" d="M513 851q0 -31 -21.5 -52.5t-54.5 -21.5q-28 0 -45.5 17t-17.5 42q0 30 22.5 51.5t54.5 21.5q27 0 44.5 -16.5t17.5 -41.5zM292 851q0 -31 -21 -52.5t-55 -21.5q-28 0 -45.5 17t-17.5 42q0 30 22.5 51.5t54.5 21.5q27 0 44.5 -16.5t17.5 -41.5zM73 518q0 87 -10 171 l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63t-71.5 179v286z" />
  169. <glyph unicode="&#xdd;" horiz-adv-x="571" d="M442 858l-7 -21q-113 -59 -267 -69l-10 32q128 63 207 125zM221 232l-207 453l137 13l91 -220q42 -109 54 -146h3q27 71 58 146l89 220l104 -8l8 -14l-208 -446v-230h-129v232z" />
  170. <glyph unicode="&#xde;" horiz-adv-x="581" d="M213 0h-128v522q0 102 -9 166h137v-105h90q115 0 183 -61t68 -164q0 -110 -75 -171t-193 -61h-73v-126zM277 491h-64v-273h63q145 0 145 135q0 64 -35 101t-109 37z" />
  171. <glyph unicode="&#xdf;" horiz-adv-x="643" d="M95 433l-73 4v46l73 15v16q0 123 63.5 183.5t167.5 60.5q92 0 147 -44t55 -115q0 -56 -32 -99.5t-84 -67.5q83 -30 132 -93t49 -146q0 -91 -57 -147t-152 -56q-62 0 -105 17v81q46 -17 83 -17q54 0 82 34t28 87q0 67 -45.5 121.5t-128.5 82.5v59q113 46 113 135 q0 39 -23.5 66t-65.5 27q-46 0 -74 -35t-28 -112v-536h-125v433z" />
  172. <glyph unicode="&#xe0;" horiz-adv-x="514" d="M304 571q-97 69 -158 163l7 21l113 12q27 -83 85 -184zM434 137q0 -74 22 -137l-105 -10q-17 28 -27 69h-3q-22 -29 -62 -49t-87 -20q-60 0 -95.5 32t-35.5 88q0 81 74.5 122t196.5 46v48q0 89 -93 89q-76 0 -151 -44l-7 98q94 39 189 39q92 0 139.5 -42.5t47.5 -122.5 q0 -36 -1.5 -107t-1.5 -99zM164 131q0 -28 17.5 -47t47.5 -19q46 0 83 34v135q-65 -6 -106.5 -32t-41.5 -71z" />
  173. <glyph unicode="&#xe1;" horiz-adv-x="514" d="M344 754l7 -21q-59 -91 -159 -163l-46 11q59 103 85 184zM434 137q0 -74 22 -137l-105 -10q-17 28 -27 69h-3q-22 -29 -62 -49t-87 -20q-60 0 -95.5 32t-35.5 88q0 81 74.5 122t196.5 46v48q0 89 -93 89q-76 0 -151 -44l-7 98q94 39 189 39q92 0 139.5 -42.5t47.5 -122.5 q0 -36 -1.5 -107t-1.5 -99zM164 131q0 -28 17.5 -47t47.5 -19q46 0 83 34v135q-65 -6 -106.5 -32t-41.5 -71z" />
  174. <glyph unicode="&#xe2;" horiz-adv-x="514" d="M136 563l-39 28q52 69 109 160l88 8q51 -86 114 -168l-40 -28q-47 34 -118 105q-72 -74 -114 -105zM434 137q0 -74 22 -137l-105 -10q-17 28 -27 69h-3q-22 -29 -62 -49t-87 -20q-60 0 -95.5 32t-35.5 88q0 81 74.5 122t196.5 46v48q0 89 -93 89q-76 0 -151 -44l-7 98 q94 39 189 39q92 0 139.5 -42.5t47.5 -122.5q0 -36 -1.5 -107t-1.5 -99zM164 131q0 -28 17.5 -47t47.5 -19q46 0 83 34v135q-65 -6 -106.5 -32t-41.5 -71z" />
  175. <glyph unicode="&#xe3;" horiz-adv-x="514" d="M176 742q32 0 79.5 -28.5t68.5 -28.5q19 0 31 12t25 36l37 -5q-3 -57 -28 -98.5t-70 -41.5q-30 0 -81 28.5t-70 28.5q-31 0 -55 -49l-36 6q4 57 28 98.5t71 41.5zM434 137q0 -74 22 -137l-105 -10q-17 28 -27 69h-3q-22 -29 -62 -49t-87 -20q-60 0 -95.5 32t-35.5 88 q0 81 74.5 122t196.5 46v48q0 89 -93 89q-76 0 -151 -44l-7 98q94 39 189 39q92 0 139.5 -42.5t47.5 -122.5q0 -36 -1.5 -107t-1.5 -99zM164 131q0 -28 17.5 -47t47.5 -19q46 0 83 34v135q-65 -6 -106.5 -32t-41.5 -71z" />
  176. <glyph unicode="&#xe4;" horiz-adv-x="514" d="M210 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM429 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM434 137q0 -74 22 -137l-105 -10 q-17 28 -27 69h-3q-22 -29 -62 -49t-87 -20q-60 0 -95.5 32t-35.5 88q0 81 74.5 122t196.5 46v48q0 89 -93 89q-76 0 -151 -44l-7 98q94 39 189 39q92 0 139.5 -42.5t47.5 -122.5q0 -36 -1.5 -107t-1.5 -99zM164 131q0 -28 17.5 -47t47.5 -19q46 0 83 34v135 q-65 -6 -106.5 -32t-41.5 -71z" />
  177. <glyph unicode="&#xe5;" horiz-adv-x="514" d="M366 675q0 -43 -33.5 -74t-81.5 -31q-43 0 -71.5 25.5t-28.5 62.5q0 43 35 74.5t83 31.5q43 0 70 -25t27 -64zM207 663q0 -21 13.5 -35t35.5 -14t38 16.5t16 39.5t-12 36t-33 13q-24 0 -41 -16.5t-17 -39.5zM434 137q0 -74 22 -137l-105 -10q-17 28 -27 69h-3 q-22 -29 -62 -49t-87 -20q-60 0 -95.5 32t-35.5 88q0 81 74.5 122t196.5 46v48q0 89 -93 89q-76 0 -151 -44l-7 98q94 39 189 39q92 0 139.5 -42.5t47.5 -122.5q0 -36 -1.5 -107t-1.5 -99zM164 131q0 -28 17.5 -47t47.5 -19q46 0 83 34v135q-65 -6 -106.5 -32t-41.5 -71z " />
  178. <glyph unicode="&#xe6;" horiz-adv-x="783" d="M737 251l-15 -15h-280q7 -79 46 -117.5t103 -38.5q63 0 124 36l8 -83q-65 -43 -164 -43q-141 0 -208 99q-28 -43 -76.5 -71t-104.5 -28q-58 0 -93.5 32.5t-35.5 88.5q0 80 74.5 121t196.5 46v48q0 89 -95 89q-76 0 -149 -44l-7 98q94 39 191 39q101 0 147 -52 q63 52 147 52q88 0 140 -56t52 -146q0 -37 -1 -55zM540 433q-42 0 -69.5 -40.5t-30.5 -110.5l175 7q0 5 0.5 16.5t0.5 17.5q0 50 -19.5 80t-56.5 30zM164 131q0 -28 17.5 -47t47.5 -19q62 0 104 59q-21 49 -22 110q-64 -6 -105.5 -32t-41.5 -71z" />
  179. <glyph unicode="&#xe7;" horiz-adv-x="485" d="M398 -140q0 -52 -56 -77t-134 -28v45q99 11 99 56q0 35 -71 37l-14 23l23 78q-90 14 -142 79.5t-52 170.5q0 120 69 192t179 72q87 0 150 -37l-28 -97q-59 41 -118 41q-56 0 -89.5 -42t-33.5 -117q0 -82 37.5 -129t104.5 -47q51 0 112 34l8 -83q-52 -36 -130 -40l-16 -49 q102 -14 102 -82z" />
  180. <glyph unicode="&#xe8;" horiz-adv-x="523" d="M324 571q-97 69 -158 163l7 21l113 12q27 -83 85 -184zM477 251l-15 -15h-281q7 -79 46.5 -117.5t103.5 -38.5q63 0 124 36l8 -83q-65 -43 -165 -43q-113 0 -180 66t-67 186q0 121 67 193.5t168 72.5q88 0 140 -56t52 -146q0 -37 -1 -55zM280 433q-43 0 -70 -40.5 t-30 -110.5l174 7q1 11 1 36q0 48 -19.5 78t-55.5 30z" />
  181. <glyph unicode="&#xe9;" horiz-adv-x="523" d="M364 754l7 -21q-59 -91 -159 -163l-46 11q59 103 85 184zM477 251l-15 -15h-281q7 -79 46.5 -117.5t103.5 -38.5q63 0 124 36l8 -83q-65 -43 -165 -43q-113 0 -180 66t-67 186q0 121 67 193.5t168 72.5q88 0 140 -56t52 -146q0 -37 -1 -55zM280 433q-43 0 -70 -40.5 t-30 -110.5l174 7q1 11 1 36q0 48 -19.5 78t-55.5 30z" />
  182. <glyph unicode="&#xea;" horiz-adv-x="523" d="M156 563l-39 28q52 69 109 160l88 8q51 -86 114 -168l-40 -28q-47 34 -118 105q-72 -74 -114 -105zM477 251l-15 -15h-281q7 -79 46.5 -117.5t103.5 -38.5q63 0 124 36l8 -83q-65 -43 -165 -43q-113 0 -180 66t-67 186q0 121 67 193.5t168 72.5q88 0 140 -56t52 -146 q0 -37 -1 -55zM280 433q-43 0 -70 -40.5t-30 -110.5l174 7q1 11 1 36q0 48 -19.5 78t-55.5 30z" />
  183. <glyph unicode="&#xeb;" horiz-adv-x="523" d="M230 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM449 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM477 251l-15 -15h-281 q7 -79 46.5 -117.5t103.5 -38.5q63 0 124 36l8 -83q-65 -43 -165 -43q-113 0 -180 66t-67 186q0 121 67 193.5t168 72.5q88 0 140 -56t52 -146q0 -37 -1 -55zM280 433q-43 0 -70 -40.5t-30 -110.5l174 7q1 11 1 36q0 48 -19.5 78t-55.5 30z" />
  184. <glyph unicode="&#xec;" horiz-adv-x="281" d="M195 571q-97 69 -158 163l7 21l112 12q24 -76 85 -184zM77 0v327q0 89 -12 166l123 15l14 -14v-494h-125z" />
  185. <glyph unicode="&#xed;" horiz-adv-x="281" d="M234 754l7 -21q-60 -92 -158 -163l-46 11q61 111 85 184zM77 0v327q0 89 -12 166l123 15l14 -14v-494h-125z" />
  186. <glyph unicode="&#xee;" horiz-adv-x="281" d="M58 571l-43 18q34 79 62 168l118 8q30 -91 67 -176l-43 -18q-35 36 -83 108q-37 -63 -78 -108zM77 0v327q0 89 -12 166l123 15l14 -14v-494h-125z" />
  187. <glyph unicode="&#xef;" horiz-adv-x="281" d="M119 674q0 -33 -20 -57t-50 -24q-27 0 -44.5 19.5t-17.5 47.5q0 32 22.5 56.5t51.5 24.5q26 0 42 -18.5t16 -48.5zM290 674q0 -33 -20.5 -57t-50.5 -24q-26 0 -43 19.5t-17 47.5q0 32 21.5 56.5t50.5 24.5q26 0 42.5 -18.5t16.5 -48.5zM77 0v327q0 89 -12 166l123 15 l14 -14v-494h-125z" />
  188. <glyph unicode="&#xf0;" horiz-adv-x="585" d="M292 -10q-99 0 -162.5 68t-63.5 187q0 112 56.5 176t146.5 64q73 0 118 -45q-26 81 -88 147l-103 -64l-35 54l90 56q-35 29 -79 56l42 69q70 -30 123 -71l108 68l35 -55l-92 -57q145 -147 145 -366q0 -141 -68.5 -214t-172.5 -73zM300 405q-48 0 -76.5 -41.5 t-28.5 -122.5q0 -75 26 -119.5t77 -44.5q50 0 77.5 43t27.5 120q0 79 -27 122t-76 43z" />
  189. <glyph unicode="&#xf1;" horiz-adv-x="577" d="M210 742q32 0 79 -28.5t68 -28.5q31 0 57 48l36 -5q-3 -56 -28 -98t-70 -42q-30 0 -81 28.5t-70 28.5q-31 0 -55 -49l-36 6q4 57 28 98.5t72 41.5zM204 0h-125v328q0 74 -20 157l117 23q15 -39 22 -73q76 73 163 73q64 0 100.5 -40t36.5 -113v-355h-126v331q0 90 -73 90 q-46 0 -95 -37v-384z" />
  190. <glyph unicode="&#xf2;" horiz-adv-x="563" d="M338 571q-98 71 -159 163l7 21l113 12q27 -83 85 -184zM513 252q0 -125 -68.5 -193.5t-169.5 -68.5q-99 0 -161.5 67t-62.5 185q0 124 67.5 195t169.5 71q101 0 163 -69.5t62 -186.5zM180 252q0 -187 102 -187q49 0 75 47.5t26 132.5q0 188 -101 188q-49 0 -75.5 -46 t-26.5 -135z" />
  191. <glyph unicode="&#xf3;" horiz-adv-x="563" d="M377 754l7 -21q-60 -92 -158 -163l-47 11q59 103 85 184zM513 252q0 -125 -68.5 -193.5t-169.5 -68.5q-99 0 -161.5 67t-62.5 185q0 124 67.5 195t169.5 71q101 0 163 -69.5t62 -186.5zM180 252q0 -187 102 -187q49 0 75 47.5t26 132.5q0 188 -101 188q-49 0 -75.5 -46 t-26.5 -135z" />
  192. <glyph unicode="&#xf4;" horiz-adv-x="563" d="M170 563l-40 28q61 80 109 160l88 8q58 -95 114 -168l-40 -28q-50 37 -118 105q-72 -74 -113 -105zM513 252q0 -125 -68.5 -193.5t-169.5 -68.5q-99 0 -161.5 67t-62.5 185q0 124 67.5 195t169.5 71q101 0 163 -69.5t62 -186.5zM180 252q0 -187 102 -187q49 0 75 47.5 t26 132.5q0 188 -101 188q-49 0 -75.5 -46t-26.5 -135z" />
  193. <glyph unicode="&#xf5;" horiz-adv-x="563" d="M210 742q32 0 79 -28.5t68 -28.5q31 0 57 48l36 -5q-3 -56 -28 -98t-70 -42q-30 0 -81 28.5t-70 28.5q-31 0 -55 -49l-36 6q4 57 28 98.5t72 41.5zM513 252q0 -125 -68.5 -193.5t-169.5 -68.5q-99 0 -161.5 67t-62.5 185q0 124 67.5 195t169.5 71q101 0 163 -69.5 t62 -186.5zM180 252q0 -187 102 -187q49 0 75 47.5t26 132.5q0 188 -101 188q-49 0 -75.5 -46t-26.5 -135z" />
  194. <glyph unicode="&#xf6;" horiz-adv-x="563" d="M243 672q0 -33 -22 -57t-54 -24q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56.5t56 24.5q28 0 45.5 -18.5t17.5 -48.5zM462 672q0 -33 -22 -57t-54 -24q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56.5t56 24.5q28 0 45.5 -18.5t17.5 -48.5zM513 252q0 -125 -68.5 -193.5 t-169.5 -68.5q-99 0 -161.5 67t-62.5 185q0 124 67.5 195t169.5 71q101 0 163 -69.5t62 -186.5zM180 252q0 -187 102 -187q49 0 75 47.5t26 132.5q0 188 -101 188q-49 0 -75.5 -46t-26.5 -135z" />
  195. <glyph unicode="&#xf7;" d="M363 541q0 -30 -20.5 -51t-50.5 -21q-25 0 -41 17t-16 41q0 29 21 50.5t51 21.5q24 0 40 -16.5t16 -41.5zM519 313h-450v65q170 5 451 5l7 -7zM364 169q0 -30 -20.5 -51t-50.5 -21q-25 0 -41 17t-16 41q0 29 21 50.5t51 21.5q24 0 40 -16.5t16 -41.5z" />
  196. <glyph unicode="&#xf8;" horiz-adv-x="563" d="M513 252q0 -125 -68.5 -193.5t-169.5 -68.5q-86 0 -146 51l-54 -58l-45 43l59 63q-38 63 -38 153q0 124 67.5 195t169.5 71q87 0 144 -51l55 58l46 -42l-60 -64q40 -66 40 -157zM180 252q0 -37 4 -62l176 190q-25 53 -78 53q-49 0 -75.5 -46t-26.5 -135zM383 245 q0 35 -3 64l-177 -189q25 -55 79 -55q49 0 75 47.5t26 132.5z" />
  197. <glyph unicode="&#xf9;" horiz-adv-x="569" d="M341 571q-97 69 -158 163l7 21l113 12q27 -83 85 -184zM77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  198. <glyph unicode="&#xfa;" horiz-adv-x="569" d="M380 754l8 -21q-59 -91 -159 -163l-46 11q59 103 85 184zM77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  199. <glyph unicode="&#xfb;" horiz-adv-x="569" d="M173 563l-39 28q52 69 109 160l88 8q51 -86 114 -168l-40 -28q-47 34 -118 105q-72 -74 -114 -105zM77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5 t-36.5 101.5v197z" />
  200. <glyph unicode="&#xfc;" horiz-adv-x="569" d="M247 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM466 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM77 326q0 78 -11 166l122 16l14 -14 v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  201. <glyph unicode="&#xfd;" horiz-adv-x="483" d="M345 754l8 -21q-59 -91 -159 -163l-46 11q61 111 85 184zM473 486l-150 -456q-20 -62 -41.5 -107.5t-55 -88t-81 -66t-108.5 -26.5l-18 110q148 8 205 155h-52l-157 490l131 11l67 -251q34 -106 42 -170h2q10 58 45 170l67 251l96 -8z" />
  202. <glyph unicode="&#xfe;" horiz-adv-x="569" d="M74 577q0 70 -12 166l122 15l15 -14v-282q55 46 128 46q85 0 138 -68.5t53 -184.5q0 -123 -59 -194t-166 -71q-49 0 -94 14v-77q0 -85 11 -163l-122 -16l-14 14v815zM275 427q-46 0 -76 -27v-325q32 -16 70 -16q120 0 120 188q0 180 -114 180z" />
  203. <glyph unicode="&#xff;" horiz-adv-x="483" d="M212 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM431 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM473 486l-150 -456 q-20 -62 -41.5 -107.5t-55 -88t-81 -66t-108.5 -26.5l-18 110q148 8 205 155h-52l-157 490l131 11l67 -251q34 -106 42 -170h2q10 58 45 170l67 251l96 -8z" />
  204. <glyph unicode="&#x100;" horiz-adv-x="630" d="M175 812v74h281v-74h-281zM137 0h-122l186 585q20 61 30 106l147 6l20 -17l217 -680h-129l-53 166h-243zM250 357l-31 -98h184l-30 97q-47 160 -59 223h-4q-21 -91 -60 -222z" />
  205. <glyph unicode="&#x101;" horiz-adv-x="514" d="M106 629v72h285v-72h-285zM434 137q0 -74 22 -137l-105 -10q-17 28 -27 69h-3q-22 -29 -62 -49t-87 -20q-60 0 -95.5 32t-35.5 88q0 81 74.5 122t196.5 46v48q0 89 -93 89q-76 0 -151 -44l-7 98q94 39 189 39q92 0 139.5 -42.5t47.5 -122.5q0 -36 -1.5 -107t-1.5 -99z M164 131q0 -28 17.5 -47t47.5 -19q46 0 83 34v135q-65 -6 -106.5 -32t-41.5 -71z" />
  206. <glyph unicode="&#x102;" horiz-adv-x="630" d="M406 916l51 4q-7 -64 -46 -102.5t-101 -38.5q-56 0 -94 35.5t-44 94.5l52 8q8 -25 33 -39.5t59 -14.5q33 0 57.5 14.5t32.5 38.5zM137 0h-122l186 585q20 61 30 106l147 6l20 -17l217 -680h-129l-53 166h-243zM250 357l-31 -98h184l-30 97q-47 160 -59 223h-4 q-21 -91 -60 -222z" />
  207. <glyph unicode="&#x103;" horiz-adv-x="514" d="M338 750l51 4q-7 -75 -46 -121t-101 -46q-56 0 -94 42.5t-44 113.5l52 8q8 -37 33 -58.5t59 -21.5q33 0 57.5 22t32.5 57zM434 137q0 -74 22 -137l-105 -10q-17 28 -27 69h-3q-22 -29 -62 -49t-87 -20q-60 0 -95.5 32t-35.5 88q0 81 74.5 122t196.5 46v48q0 89 -93 89 q-76 0 -151 -44l-7 98q94 39 189 39q92 0 139.5 -42.5t47.5 -122.5q0 -36 -1.5 -107t-1.5 -99zM164 131q0 -28 17.5 -47t47.5 -19q46 0 83 34v135q-65 -6 -106.5 -32t-41.5 -71z" />
  208. <glyph unicode="&#x104;" horiz-adv-x="630" d="M137 0h-122l186 585q20 61 30 106l147 6l20 -17l217 -680q-113 -59 -113 -123q0 -46 48 -46q25 0 55 13l18 -45q-53 -44 -117 -44q-48 0 -78 25.5t-30 68.5q0 42 34 81.5t96 69.5h-42l-53 166h-243zM250 357l-31 -98h184l-30 97q-47 160 -59 223h-4q-21 -91 -60 -222z " />
  209. <glyph unicode="&#x105;" horiz-adv-x="514" d="M434 137q0 -74 22 -137q-113 -59 -113 -123q0 -46 48 -46q25 0 55 13l18 -45q-53 -44 -117 -44q-48 0 -78 25.5t-30 68.5q0 80 111 141q-16 29 -26 69h-3q-22 -29 -62 -49t-87 -20q-60 0 -95.5 32t-35.5 88q0 81 74.5 122t196.5 46v48q0 89 -93 89q-76 0 -151 -44l-7 98 q94 39 189 39q92 0 139.5 -42.5t47.5 -122.5q0 -36 -1.5 -107t-1.5 -99zM164 131q0 -28 17.5 -47t47.5 -19q46 0 83 34v135q-65 -6 -106.5 -32t-41.5 -71z" />
  210. <glyph unicode="&#x106;" horiz-adv-x="583" d="M483 864l-6 -21q-114 -59 -268 -69l-10 32q123 61 207 125zM536 142l15 -105q-77 -47 -191 -47q-143 0 -226.5 91.5t-83.5 253.5q0 164 89 263.5t230 99.5q106 0 177 -42l-25 -111q-73 47 -150 47q-84 0 -136 -67.5t-52 -184.5q0 -112 51.5 -178t143.5 -66q85 0 158 46z " />
  211. <glyph unicode="&#x107;" horiz-adv-x="485" d="M372 754l7 -21q-60 -92 -158 -163l-47 11q59 103 85 184zM449 471l-28 -97q-59 41 -118 41q-56 0 -89.5 -42t-33.5 -117q0 -82 37.5 -129t104.5 -47q51 0 112 34l8 -83q-62 -41 -151 -41q-109 1 -174.5 69t-65.5 185q0 120 69 192t179 72q87 0 150 -37z" />
  212. <glyph unicode="&#x108;" horiz-adv-x="583" d="M209 771l-33 30q58 50 118 119l88 8q52 -62 123 -127l-33 -30q-55 26 -134 74q-75 -48 -129 -74zM536 142l15 -105q-77 -47 -191 -47q-143 0 -226.5 91.5t-83.5 253.5q0 164 89 263.5t230 99.5q106 0 177 -42l-25 -111q-73 47 -150 47q-84 0 -136 -67.5t-52 -184.5 q0 -112 51.5 -178t143.5 -66q85 0 158 46z" />
  213. <glyph unicode="&#x109;" horiz-adv-x="485" d="M165 563l-40 28q61 80 109 160l88 8q58 -95 114 -168l-40 -28q-47 34 -118 105q-72 -74 -113 -105zM449 471l-28 -97q-59 41 -118 41q-56 0 -89.5 -42t-33.5 -117q0 -82 37.5 -129t104.5 -47q51 0 112 34l8 -83q-62 -41 -151 -41q-109 1 -174.5 69t-65.5 185 q0 120 69 192t179 72q87 0 150 -37z" />
  214. <glyph unicode="&#x10a;" horiz-adv-x="583" d="M419 861q0 -34 -23.5 -57t-60.5 -23q-32 0 -52 18.5t-20 46.5q0 32 25.5 55t61.5 23q30 0 49.5 -17.5t19.5 -45.5zM536 142l15 -105q-77 -47 -191 -47q-143 0 -226.5 91.5t-83.5 253.5q0 164 89 263.5t230 99.5q106 0 177 -42l-25 -111q-73 47 -150 47q-84 0 -136 -67.5 t-52 -184.5q0 -112 51.5 -178t143.5 -66q85 0 158 46z" />
  215. <glyph unicode="&#x10b;" horiz-adv-x="485" d="M354 672q0 -35 -24 -60.5t-59 -25.5q-32 0 -52 21t-20 51q0 35 25.5 60t60.5 25q31 0 50 -19.5t19 -51.5zM449 471l-28 -97q-59 41 -118 41q-56 0 -89.5 -42t-33.5 -117q0 -82 37.5 -129t104.5 -47q51 0 112 34l8 -83q-62 -41 -151 -41q-109 1 -174.5 69t-65.5 185 q0 120 69 192t179 72q87 0 150 -37z" />
  216. <glyph unicode="&#x10c;" horiz-adv-x="583" d="M472 931l33 -29q-59 -53 -118 -120l-88 -8q-57 66 -123 128l33 29q48 -22 134 -74q81 52 129 74zM536 142l15 -105q-77 -47 -191 -47q-143 0 -226.5 91.5t-83.5 253.5q0 164 89 263.5t230 99.5q106 0 177 -42l-25 -111q-73 47 -150 47q-84 0 -136 -67.5t-52 -184.5 q0 -112 51.5 -178t143.5 -66q85 0 158 46z" />
  217. <glyph unicode="&#x10d;" horiz-adv-x="485" d="M396 771l40 -29q-60 -77 -109 -160l-88 -8q-53 87 -114 168l40 29q46 -35 117 -106q69 71 114 106zM449 471l-28 -97q-59 41 -118 41q-56 0 -89.5 -42t-33.5 -117q0 -82 37.5 -129t104.5 -47q51 0 112 34l8 -83q-62 -41 -151 -41q-109 1 -174.5 69t-65.5 185 q0 120 69 192t179 72q87 0 150 -37z" />
  218. <glyph unicode="&#x10e;" horiz-adv-x="686" d="M460 931l34 -29q-56 -50 -119 -120l-87 -8q-58 68 -124 128l34 29q52 -23 133 -74q79 50 129 74zM636 348q0 -163 -98 -255.5t-253 -92.5h-200v522q0 102 -9 166h225q152 0 243.5 -91.5t91.5 -248.5zM293 595h-80v-502h81q105 0 157 66.5t52 182.5q0 114 -54 183.5 t-156 69.5z" />
  219. <glyph unicode="&#x10f;" horiz-adv-x="576" d="M359 743l122 15l14 -14v-609q0 -71 23 -135l-108 -10q-10 19 -27 68h-2q-50 -68 -137 -68t-140 65.5t-53 177.5q0 130 71 202.5t185 72.5q30 0 63 -7v76q0 96 -11 166zM701 758l8 -21q-27 -103 -92 -210l-42 2q22 126 26 227zM180 249q0 -84 31 -134t85 -50q44 0 74 32 v337q-28 5 -49 5q-66 0 -103.5 -49t-37.5 -141z" />
  220. <glyph unicode="&#x110;" horiz-adv-x="686" d="M636 348q0 -163 -98 -255.5t-253 -92.5h-200v311h-78v66h78v145q0 102 -9 166h225q152 0 243.5 -91.5t91.5 -248.5zM383 311h-170v-218h81q105 0 157 66.5t52 182.5q0 114 -54 183.5t-156 69.5h-80v-218h170v-66z" />
  221. <glyph unicode="&#x111;" horiz-adv-x="576" d="M585 578h-90v-443q0 -71 23 -135l-108 -10q-10 19 -27 68h-2q-50 -68 -137 -68t-140 65.5t-53 177.5q0 130 71 202.5t185 72.5q30 0 63 -7v76v1h-160v67h159q-3 52 -10 98l122 15l14 -14v-99h90v-67zM180 249q0 -84 31 -134t85 -50q44 0 74 32v337q-28 5 -49 5 q-66 0 -103.5 -49t-37.5 -141z" />
  222. <glyph unicode="&#x112;" horiz-adv-x="537" d="M152 812v74h281v-74h-281zM504 100v-100h-419v522q0 102 -9 166h407l14 -14l-3 -86l-281 7v-212l235 4l-3 -93l-232 5v-206z" />
  223. <glyph unicode="&#x113;" horiz-adv-x="523" d="M126 629v72h285v-72h-285zM477 251l-15 -15h-281q7 -79 46.5 -117.5t103.5 -38.5q63 0 124 36l8 -83q-65 -43 -165 -43q-113 0 -180 66t-67 186q0 121 67 193.5t168 72.5q88 0 140 -56t52 -146q0 -37 -1 -55zM280 433q-43 0 -70 -40.5t-30 -110.5l174 7q1 11 1 36 q0 48 -19.5 78t-55.5 30z" />
  224. <glyph unicode="&#x114;" horiz-adv-x="537" d="M383 916l51 4q-7 -63 -46 -102t-100 -39q-57 0 -95 35.5t-43 94.5l51 8q8 -25 33 -39.5t59 -14.5q33 0 57.5 14.5t32.5 38.5zM504 100v-100h-419v522q0 102 -9 166h407l14 -14l-3 -86l-281 7v-212l235 4l-3 -93l-232 5v-206z" />
  225. <glyph unicode="&#x115;" horiz-adv-x="523" d="M358 750l51 4q-7 -75 -46 -121t-101 -46q-56 0 -94 42.5t-44 113.5l52 8q8 -37 33 -58.5t59 -21.5q33 0 57.5 22t32.5 57zM477 251l-15 -15h-281q7 -79 46.5 -117.5t103.5 -38.5q63 0 124 36l8 -83q-65 -43 -165 -43q-113 0 -180 66t-67 186q0 121 67 193.5t168 72.5 q88 0 140 -56t52 -146q0 -37 -1 -55zM280 433q-43 0 -70 -40.5t-30 -110.5l174 7q1 11 1 36q0 48 -19.5 78t-55.5 30z" />
  226. <glyph unicode="&#x116;" horiz-adv-x="537" d="M371 861q0 -34 -24 -57t-61 -23q-31 0 -51.5 18.5t-20.5 46.5q0 32 26 55t62 23q30 0 49.5 -17.5t19.5 -45.5zM504 100v-100h-419v522q0 102 -9 166h407l14 -14l-3 -86l-281 7v-212l235 4l-3 -93l-232 5v-206z" />
  227. <glyph unicode="&#x117;" horiz-adv-x="523" d="M346 672q0 -35 -24 -60.5t-59 -25.5q-32 0 -52.5 21t-20.5 51q0 34 26 59.5t61 25.5q31 0 50 -19.5t19 -51.5zM477 251l-15 -15h-281q7 -79 46.5 -117.5t103.5 -38.5q63 0 124 36l8 -83q-65 -43 -165 -43q-113 0 -180 66t-67 186q0 121 67 193.5t168 72.5q88 0 140 -56 t52 -146q0 -37 -1 -55zM280 433q-43 0 -70 -40.5t-30 -110.5l174 7q1 11 1 36q0 48 -19.5 78t-55.5 30z" />
  228. <glyph unicode="&#x118;" horiz-adv-x="537" d="M504 0q-113 -59 -113 -123q0 -46 48 -46q25 0 55 13l19 -45q-53 -44 -117 -44q-48 0 -78 25.5t-30 68.5q0 42 34 81.5t96 69.5h-333v522q0 102 -9 166h407l14 -14l-3 -86l-281 7v-212l235 4l-3 -93l-232 5v-206l291 7v-100z" />
  229. <glyph unicode="&#x119;" horiz-adv-x="525" d="M477 251l-15 -15h-281q7 -79 46.5 -117.5t103.5 -38.5q63 0 124 36l8 -83q-1 0 -3 -1q-133 -88 -133 -152q0 -45 48 -45q25 0 55 13l19 -45q-51 -44 -118 -44q-48 0 -77.5 25t-29.5 66q0 73 107 141q-5 0 -16 -0.5t-17 -0.5q-113 0 -180 66t-67 186q0 121 67 193.5 t168 72.5q88 0 140 -56t52 -146q0 -37 -1 -55zM280 433q-43 0 -70 -40.5t-30 -110.5l174 7q1 11 1 36q0 48 -19.5 78t-55.5 30z" />
  230. <glyph unicode="&#x11a;" horiz-adv-x="537" d="M423 931l34 -29q-64 -57 -119 -120l-88 -8q-50 59 -123 128l34 29q55 -25 133 -74q79 50 129 74zM504 100v-100h-419v522q0 102 -9 166h407l14 -14l-3 -86l-281 7v-212l235 4l-3 -93l-232 5v-206z" />
  231. <glyph unicode="&#x11b;" horiz-adv-x="523" d="M388 771l40 -29q-57 -73 -110 -160l-87 -8q-53 87 -114 168l39 29q47 -35 118 -106q69 71 114 106zM477 251l-15 -15h-281q7 -79 46.5 -117.5t103.5 -38.5q63 0 124 36l8 -83q-65 -43 -165 -43q-113 0 -180 66t-67 186q0 121 67 193.5t168 72.5q88 0 140 -56t52 -146 q0 -37 -1 -55zM280 433q-43 0 -70 -40.5t-30 -110.5l174 7q1 11 1 36q0 48 -19.5 78t-55.5 30z" />
  232. <glyph unicode="&#x11c;" horiz-adv-x="642" d="M215 771l-33 30q58 50 118 119l88 8q59 -68 123 -127l-33 -30q-55 26 -134 74q-75 -48 -129 -74zM572 315l14 -14l-3 -267q-93 -44 -213 -44q-151 0 -235.5 90t-84.5 248q0 168 92.5 269t247.5 101q105 0 180 -39l-22 -111q-67 47 -152 47q-97 0 -155 -67t-58 -190 q0 -114 51.5 -181t149.5 -67q34 0 79 8v12q0 106 -12 195z" />
  233. <glyph unicode="&#x11d;" horiz-adv-x="513" d="M134 563l-39 28q52 69 109 160l88 8q51 -86 114 -168l-40 -28q-47 34 -118 105q-72 -74 -114 -105zM105 63q0 53 53 89q-53 19 -84 61.5t-31 101.5q0 81 56 137t149 56q74 0 117 -33q17 28 49.5 43.5t67.5 15.5l15 -11l-3 -83h-102q51 -41 51 -119q0 -79 -55 -131.5 t-145 -52.5q-19 0 -35 3q-8 -16 -8 -30q0 -22 12 -31.5t39 -11.5l90 -6q70 -4 113 -37t43 -94q0 -81 -72 -134.5t-193 -53.5q-100 0 -160 36.5t-60 92.5q0 34 22 59t53 35l46 -20q-14 -18 -14 -37q0 -43 35 -73.5t94 -30.5q55 0 89.5 26t34.5 67q0 65 -88 75l-82 8 q-47 4 -72 26t-25 57zM323 322q0 121 -78 121q-82 0 -82 -121q0 -119 82 -119q78 0 78 119z" />
  234. <glyph unicode="&#x11e;" horiz-adv-x="642" d="M438 916l51 4q-7 -64 -46 -102.5t-101 -38.5q-56 0 -94 35.5t-44 94.5l51 8q19 -54 93 -54q33 0 57.5 14.5t32.5 38.5zM572 315l14 -14l-3 -267q-93 -44 -213 -44q-151 0 -235.5 90t-84.5 248q0 168 92.5 269t247.5 101q105 0 180 -39l-22 -111q-67 47 -152 47 q-97 0 -155 -67t-58 -190q0 -114 51.5 -181t149.5 -67q34 0 79 8v12q0 106 -12 195z" />
  235. <glyph unicode="&#x11f;" horiz-adv-x="513" d="M336 750l51 4q-7 -75 -46 -121t-101 -46q-56 0 -94 42.5t-43 113.5l51 8q8 -37 33 -58.5t59 -21.5q33 0 57.5 22t32.5 57zM105 63q0 53 53 89q-53 19 -84 61.5t-31 101.5q0 81 56 137t149 56q74 0 117 -33q17 28 49.5 43.5t67.5 15.5l15 -11l-3 -83h-102q51 -41 51 -119 q0 -79 -55 -131.5t-145 -52.5q-19 0 -35 3q-8 -16 -8 -30q0 -22 12 -31.5t39 -11.5l90 -6q70 -4 113 -37t43 -94q0 -81 -72 -134.5t-193 -53.5q-100 0 -160 36.5t-60 92.5q0 34 22 59t53 35l46 -20q-14 -18 -14 -37q0 -43 35 -73.5t94 -30.5q55 0 89.5 26t34.5 67 q0 65 -88 75l-82 8q-47 4 -72 26t-25 57zM323 322q0 121 -78 121q-82 0 -82 -121q0 -119 82 -119q78 0 78 119z" />
  236. <glyph unicode="&#x120;" horiz-adv-x="642" d="M425 861q0 -34 -23.5 -57t-60.5 -23q-31 0 -51.5 18.5t-20.5 46.5q0 32 25.5 55t61.5 23q30 0 49.5 -17.5t19.5 -45.5zM572 315l14 -14l-3 -267q-93 -44 -213 -44q-151 0 -235.5 90t-84.5 248q0 168 92.5 269t247.5 101q105 0 180 -39l-22 -111q-67 47 -152 47 q-97 0 -155 -67t-58 -190q0 -114 51.5 -181t149.5 -67q34 0 79 8v12q0 106 -12 195z" />
  237. <glyph unicode="&#x121;" horiz-adv-x="513" d="M324 672q0 -35 -24 -60.5t-59 -25.5q-32 0 -52 21t-20 51q0 35 25.5 60t60.5 25q31 0 50 -19.5t19 -51.5zM105 63q0 53 53 89q-53 19 -84 61.5t-31 101.5q0 81 56 137t149 56q74 0 117 -33q17 28 49.5 43.5t67.5 15.5l15 -11l-3 -83h-102q51 -41 51 -119 q0 -79 -55 -131.5t-145 -52.5q-19 0 -35 3q-8 -16 -8 -30q0 -22 12 -31.5t39 -11.5l90 -6q70 -4 113 -37t43 -94q0 -81 -72 -134.5t-193 -53.5q-100 0 -160 36.5t-60 92.5q0 34 22 59t53 35l46 -20q-14 -18 -14 -37q0 -43 35 -73.5t94 -30.5q55 0 89.5 26t34.5 67 q0 65 -88 75l-82 8q-47 4 -72 26t-25 57zM323 322q0 121 -78 121q-82 0 -82 -121q0 -119 82 -119q78 0 78 119z" />
  238. <glyph unicode="&#x122;" horiz-adv-x="642" d="M572 315l14 -14l-3 -267q-93 -44 -213 -44q-151 0 -235.5 90t-84.5 248q0 168 92.5 269t247.5 101q105 0 180 -39l-22 -111q-67 47 -152 47q-97 0 -155 -67t-58 -190q0 -114 51.5 -181t149.5 -67q34 0 79 8v12q0 106 -12 195zM300 -318q37 50 51 95q-23 3 -38 20.5 t-15 42.5q0 29 20 50.5t51 21.5q29 0 48 -20t19 -57q0 -82 -97 -184z" />
  239. <glyph unicode="&#x123;" horiz-adv-x="513" d="M309 802q-37 -50 -51 -95q23 -3 38 -20.5t15 -42.5q0 -29 -20 -50.5t-51 -21.5q-29 0 -48 20t-19 57q0 80 97 184zM105 63q0 53 53 89q-53 19 -84 61.5t-31 101.5q0 81 56 137t149 56q74 0 117 -33q17 28 49.5 43.5t67.5 15.5l15 -11l-3 -83h-102q51 -41 51 -119 q0 -79 -55 -131.5t-145 -52.5q-19 0 -35 3q-8 -16 -8 -30q0 -22 12 -31.5t39 -11.5l90 -6q70 -4 113 -37t43 -94q0 -81 -72 -134.5t-193 -53.5q-100 0 -160 36.5t-60 92.5q0 34 22 59t53 35l46 -20q-14 -18 -14 -37q0 -43 35 -73.5t94 -30.5q55 0 89.5 26t34.5 67 q0 65 -88 75l-82 8q-47 4 -72 26t-25 57zM323 322q0 121 -78 121q-82 0 -82 -121q0 -119 82 -119q78 0 78 119z" />
  240. <glyph unicode="&#x124;" horiz-adv-x="710" d="M224 771l-34 30q58 50 118 119l88 8q60 -69 124 -127l-34 -30q-59 28 -133 74q-80 -50 -129 -74zM213 0h-128v517q0 95 -9 171l123 10l14 -14v-296h283v129q0 95 -9 171l124 10l14 -14v-684h-129v295h-283v-295z" />
  241. <glyph unicode="&#x125;" horiz-adv-x="572" d="M1 810l-34 29q59 53 118 120l88 8q58 -68 124 -128l-34 -29q-48 22 -134 74q-81 -52 -128 -74zM199 0h-125v577q0 89 -12 166l122 15l15 -14v-303q75 67 157 67q64 0 100.5 -40t36.5 -113v-355h-126v331q0 90 -73 90q-48 0 -95 -37v-384z" />
  242. <glyph unicode="&#x126;" horiz-adv-x="710" d="M213 0h-128v493h-70v67h69q-2 77 -8 128l123 10l14 -14v-124h283q-1 68 -9 128l124 10l14 -14v-124h71v-67h-71v-493h-129v295h-283v-295zM213 388h283v105h-283v-105z" />
  243. <glyph unicode="&#x127;" horiz-adv-x="572" d="M199 0h-125v573h-88v67h86q-1 37 -10 103l122 15l15 -14v-104h163v-67h-163v-132q75 67 157 67q64 0 100.5 -40t36.5 -113v-355h-126v331q0 90 -73 90q-48 0 -95 -37v-384z" />
  244. <glyph unicode="&#x128;" horiz-adv-x="298" d="M72 922q32 0 79 -28t71 -28q35 0 62 48l33 -5q-2 -52 -28 -90t-72 -38q-31 0 -82 28t-72 28q-35 0 -61 -48l-33 5q3 52 28 90t75 38zM213 0h-128v517q0 95 -9 171l123 10l14 -14v-684z" />
  245. <glyph unicode="&#x129;" horiz-adv-x="281" d="M83 744q25 0 63 -28.5t53 -28.5q27 0 44 49l33 -6q-1 -56 -21.5 -98t-60.5 -42q-24 0 -64.5 28.5t-50.5 28.5q-28 0 -45 -49l-33 6q2 56 22.5 98t59.5 42zM77 0v327q0 89 -12 166l123 15l14 -14v-494h-125z" />
  246. <glyph unicode="&#x12a;" horiz-adv-x="298" d="M3 812v74h281v-74h-281zM213 0h-128v517q0 95 -9 171l123 10l14 -14v-684z" />
  247. <glyph unicode="&#x12b;" horiz-adv-x="281" d="M18 629v72h241v-72h-241zM77 0v327q0 89 -12 166l123 15l14 -14v-494h-125z" />
  248. <glyph unicode="&#x12c;" horiz-adv-x="298" d="M234 916l51 4q-7 -63 -46 -102t-100 -39q-57 0 -95 35.5t-43 94.5l51 8q8 -25 33 -39.5t59 -14.5q33 0 57.5 14.5t32.5 38.5zM213 0h-128v517q0 95 -9 171l123 10l14 -14v-684z" />
  249. <glyph unicode="&#x12d;" horiz-adv-x="281" d="M213 744l51 4q-5 -75 -40 -121t-90 -46q-49 0 -83 42.5t-38 113.5l51 8q5 -37 26 -59t50 -22t48.5 22.5t24.5 57.5zM77 0v327q0 89 -12 166l123 15l14 -14v-494h-125z" />
  250. <glyph unicode="&#x12e;" horiz-adv-x="286" d="M208 0q-69 -61 -69 -122q0 -47 48 -47q25 0 55 13l19 -45q-55 -44 -118 -44q-48 0 -77.5 26t-29.5 72q0 39 25.5 78t68.5 69h-45v517q0 95 -9 171l123 10l14 -14v-684h-5z" />
  251. <glyph unicode="&#x12f;" horiz-adv-x="281" d="M217 672q0 -35 -24 -60.5t-60 -25.5q-32 0 -52 21t-20 51q0 35 25.5 60t61.5 25q30 0 49.5 -19.5t19.5 -51.5zM77 0v327q0 89 -12 166l123 15l14 -14v-494q-73 -54 -73 -114q0 -23 13.5 -37t39.5 -14q24 0 50 13l19 -45q-52 -44 -117 -44q-49 0 -78.5 26t-29.5 71 q0 79 97 144h-46z" />
  252. <glyph unicode="&#x130;" horiz-adv-x="298" d="M222 861q0 -34 -24 -57t-61 -23q-31 0 -51.5 18.5t-20.5 46.5q0 32 26 55t62 23q30 0 49.5 -17.5t19.5 -45.5zM213 0h-128v517q0 95 -9 171l123 10l14 -14v-684z" />
  253. <glyph unicode="&#x131;" horiz-adv-x="281" d="M77 0v327q0 89 -12 166l123 15l14 -14v-494h-125z" />
  254. <glyph unicode="&#x132;" horiz-adv-x="591" d="M213 0h-128v517q0 95 -9 171l123 10l14 -14v-684zM338 -208l-40 56q80 89 80 254v415q0 79 -12 166l127 15l13 -13v-583q0 -120 -36.5 -188.5t-131.5 -121.5z" />
  255. <glyph unicode="&#x133;" horiz-adv-x="564" d="M217 672q0 -35 -24 -60.5t-60 -25.5q-32 0 -52 21t-20 51q0 35 25.5 60t61.5 25q30 0 49.5 -19.5t19.5 -51.5zM498 672q0 -35 -24.5 -60.5t-59.5 -25.5q-32 0 -52 21t-20 51q0 35 25.5 60t60.5 25q31 0 50.5 -19.5t19.5 -51.5zM77 0v327q0 89 -12 166l123 15l14 -14v-494 h-125zM337 -258l-47 46q70 83 70 216v323q0 79 -12 166l123 15l14 -14v-484q0 -101 -33.5 -162t-114.5 -106z" />
  256. <glyph unicode="&#x134;" horiz-adv-x="293" d="M12 771l-33 30q58 50 118 119l88 8q52 -62 123 -127l-33 -30q-55 26 -134 74q-75 -48 -129 -74zM40 -208l-40 56q80 89 80 254v415q0 79 -12 166l127 15l13 -13v-583q0 -120 -36.5 -188.5t-131.5 -121.5z" />
  257. <glyph unicode="&#x135;" horiz-adv-x="283" d="M57 571l-43 18q34 79 62 168l119 8q27 -86 66 -176l-42 -18q-41 42 -83 108q-43 -69 -79 -108zM55 -258l-47 46q70 81 70 216v323q0 86 -11 166l122 15l14 -14v-484q0 -101 -33.5 -162t-114.5 -106z" />
  258. <glyph unicode="&#x136;" horiz-adv-x="625" d="M85 517q0 95 -9 171l123 10l14 -14v-310h79q46 83 176 324l117 -11l8 -14l-196 -317l219 -356l-146 -7q-74 113 -177 287h-80v-280h-128v517zM251 -318q37 50 51 95q-23 3 -38 20.5t-15 42.5q0 29 20 50.5t51 21.5q29 0 48 -20t19 -57q0 -82 -97 -184z" />
  259. <glyph unicode="&#x137;" horiz-adv-x="533" d="M74 577q0 79 -12 166l122 15l15 -14v-463h55q61 100 129 227l102 -11l8 -14l-135 -196q53 -97 165 -287l-141 -10q-62 104 -124 224h-59v-214h-125v577zM206 -318q38 50 50 95q-22 3 -37 21t-15 42q0 29 20 50.5t51 21.5q28 0 47 -20t19 -57q0 -81 -96 -184z" />
  260. <glyph unicode="&#x138;" horiz-adv-x="533" d="M74 327q0 79 -12 166l122 15l15 -14v-213h55q61 100 129 227l102 -11l8 -14l-135 -196q53 -97 165 -287l-141 -10q-62 104 -124 224h-59v-214h-125v327z" />
  261. <glyph unicode="&#x139;" horiz-adv-x="505" d="M378 864l-7 -21q-115 -59 -267 -69l-10 32q123 61 207 125zM489 100v-100h-404v517q0 95 -9 171l123 10l14 -14v-591z" />
  262. <glyph unicode="&#x13a;" horiz-adv-x="281" d="M285 919l-6 -21q-114 -59 -268 -69l-10 32q123 61 207 125zM202 0h-125v577q0 79 -12 166l123 15l14 -14v-744z" />
  263. <glyph unicode="&#x13b;" horiz-adv-x="505" d="M489 100v-100h-404v517q0 95 -9 171l123 10l14 -14v-591zM225 -318q37 50 51 95q-23 3 -38 20.5t-15 42.5q0 29 20 50.5t51 21.5q29 0 48 -20t19 -57q0 -82 -97 -184z" />
  264. <glyph unicode="&#x13c;" horiz-adv-x="281" d="M202 0h-125v577q0 79 -12 166l123 15l14 -14v-744zM74 -318q38 50 50 95q-22 3 -37 21t-15 42q0 29 20 50.5t51 21.5q28 0 47 -20t19 -57q0 -81 -96 -184z" />
  265. <glyph unicode="&#x13d;" horiz-adv-x="505" d="M435 763l9 -21q-27 -101 -92 -211l-42 3q21 129 26 226zM489 100v-100h-404v517q0 95 -9 171l123 10l14 -14v-591z" />
  266. <glyph unicode="&#x13e;" horiz-adv-x="281" d="M391 774l8 -21q-24 -95 -91 -211l-43 3q22 126 26 226zM202 0h-125v577q0 79 -12 166l123 15l14 -14v-744z" />
  267. <glyph unicode="&#x13f;" horiz-adv-x="505" d="M461 367q0 -34 -23.5 -57.5t-57.5 -23.5t-56 22t-22 55q0 34 24.5 58t59.5 24q32 0 53.5 -22t21.5 -56zM489 100v-100h-404v517q0 95 -9 171l123 10l14 -14v-591z" />
  268. <glyph unicode="&#x140;" horiz-adv-x="539" d="M202 0h-125v577q0 79 -12 166l123 15l14 -14v-744zM488 321q0 -34 -23.5 -57.5t-57.5 -23.5q-33 0 -55.5 22t-22.5 55q0 34 24.5 58t59.5 24q33 0 54 -21.5t21 -56.5z" />
  269. <glyph unicode="&#x141;" horiz-adv-x="505" d="M489 100v-100h-404v268l-85 -47l-31 56l116 64v176q0 95 -9 171l123 10l14 -14v-272l117 65l31 -57l-148 -81v-246z" />
  270. <glyph unicode="&#x142;" horiz-adv-x="281" d="M202 0h-125v349l-101 -56l-31 57l132 73v154q0 79 -12 166l123 15l14 -14v-252l104 57l31 -56l-135 -75v-418z" />
  271. <glyph unicode="&#x143;" horiz-adv-x="706" d="M485 864l-7 -21q-113 -59 -267 -69l-10 32q123 61 207 125zM370 419q93 -153 136 -250h3q-10 101 -10 313q0 112 -9 206l118 9l14 -14v-683h-124q-33 54 -87 145.5t-78 130.5q-92 150 -133 237h-2q9 -81 9 -215v-298h-122v522q0 90 -9 166l130 8q142 -240 164 -277z" />
  272. <glyph unicode="&#x144;" horiz-adv-x="577" d="M377 754l7 -21q-60 -92 -158 -163l-47 11q59 103 85 184zM204 0h-125v328q0 74 -20 157l117 23q15 -39 22 -73q76 73 163 73q64 0 100.5 -40t36.5 -113v-355h-126v331q0 90 -73 90q-46 0 -95 -37v-384z" />
  273. <glyph unicode="&#x145;" horiz-adv-x="706" d="M370 419q93 -153 136 -250h3q-10 101 -10 313q0 112 -9 206l118 9l14 -14v-683h-124q-33 54 -87 145.5t-78 130.5q-92 150 -133 237h-2q9 -81 9 -215v-298h-122v522q0 90 -9 166l130 8q142 -240 164 -277zM293 -318q37 50 51 95q-23 3 -38 20.5t-15 42.5q0 29 20 50.5 t51 21.5q29 0 48 -20t19 -57q0 -80 -97 -184z" />
  274. <glyph unicode="&#x146;" horiz-adv-x="577" d="M204 0h-125v328q0 74 -20 157l117 23q15 -39 22 -73q76 73 163 73q64 0 100.5 -40t36.5 -113v-355h-126v331q0 90 -73 90q-46 0 -95 -37v-384zM219 -318q37 50 51 95q-23 3 -38 20.5t-15 42.5q0 29 20 50.5t51 21.5q29 0 48 -20t19 -57q0 -80 -97 -184z" />
  275. <glyph unicode="&#x147;" horiz-adv-x="706" d="M473 931l34 -29q-59 -53 -118 -120l-88 -8q-58 68 -124 128l34 29q52 -23 133 -74q87 54 129 74zM370 419q93 -153 136 -250h3q-10 101 -10 313q0 112 -9 206l118 9l14 -14v-683h-124q-33 54 -87 145.5t-78 130.5q-92 150 -133 237h-2q9 -81 9 -215v-298h-122v522 q0 90 -9 166l130 8q142 -240 164 -277z" />
  276. <glyph unicode="&#x148;" horiz-adv-x="577" d="M401 771l40 -29q-60 -77 -109 -160l-88 -8q-53 87 -114 168l40 29q42 -32 118 -106q64 68 113 106zM204 0h-125v328q0 74 -20 157l117 23q15 -39 22 -73q76 73 163 73q64 0 100.5 -40t36.5 -113v-355h-126v331q0 90 -73 90q-46 0 -95 -37v-384z" />
  277. <glyph unicode="&#x149;" horiz-adv-x="726" d="M41 451q56 82 71 150q-26 4 -43.5 24.5t-17.5 48.5q0 34 24.5 59.5t58.5 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -61 -41 -132t-90 -122zM353 0h-125v328q0 74 -20 157l117 23q15 -39 22 -73q76 73 163 73q64 0 100.5 -40t36.5 -113v-355h-125v331q0 90 -74 90 q-44 0 -95 -37v-384z" />
  278. <glyph unicode="&#x14a;" horiz-adv-x="706" d="M450 -194l-37 48q71 69 79 156q-23 38 -77.5 130t-81.5 136q-92 150 -133 237h-2q9 -81 9 -215v-298h-122v522q0 90 -9 166l130 8q142 -240 164 -277q93 -153 136 -250h3q-10 101 -10 313q0 112 -9 206l118 9l14 -14v-581q0 -117 -37.5 -183t-134.5 -113z" />
  279. <glyph unicode="&#x14b;" horiz-adv-x="577" d="M204 0h-125v328q0 74 -20 157l117 23q15 -39 22 -73q76 73 163 73q64 0 100.5 -40t36.5 -113v-319q0 -95 -27.5 -154t-96.5 -114l-50 45q48 98 48 223v295q0 90 -73 90q-46 0 -95 -37v-384z" />
  280. <glyph unicode="&#x14c;" horiz-adv-x="707" d="M217 806v74h281v-74h-281zM657 346q0 -168 -88 -262t-223 -94q-132 0 -214 91.5t-82 251.5q0 165 88 265t224 100q134 0 214.5 -95.5t80.5 -256.5zM183 345q0 -115 44.5 -186.5t126.5 -71.5q83 0 126.5 68.5t43.5 187.5q0 117 -41.5 187.5t-124.5 70.5q-82 0 -128.5 -69 t-46.5 -187z" />
  281. <glyph unicode="&#x14d;" horiz-adv-x="563" d="M139 629v72h285v-72h-285zM513 252q0 -125 -68.5 -193.5t-169.5 -68.5q-99 0 -161.5 67t-62.5 185q0 124 67.5 195t169.5 71q101 0 163 -69.5t62 -186.5zM180 252q0 -187 102 -187q49 0 75 47.5t26 132.5q0 188 -101 188q-49 0 -75.5 -46t-26.5 -135z" />
  282. <glyph unicode="&#x14e;" horiz-adv-x="707" d="M449 910l51 4q-7 -63 -46.5 -102t-100.5 -39q-57 0 -95 35.5t-43 94.5l51 8q19 -54 92 -54q33 0 57.5 14.5t33.5 38.5zM657 346q0 -168 -88 -262t-223 -94q-132 0 -214 91.5t-82 251.5q0 165 88 265t224 100q134 0 214.5 -95.5t80.5 -256.5zM183 345q0 -115 44.5 -186.5 t126.5 -71.5q83 0 126.5 68.5t43.5 187.5q0 117 -41.5 187.5t-124.5 70.5q-82 0 -128.5 -69t-46.5 -187z" />
  283. <glyph unicode="&#x14f;" horiz-adv-x="563" d="M372 750l51 4q-7 -75 -46.5 -121t-100.5 -46q-57 0 -95 42.5t-43 113.5l51 8q8 -37 33 -58.5t59 -21.5q33 0 57.5 22t33.5 57zM513 252q0 -125 -68.5 -193.5t-169.5 -68.5q-99 0 -161.5 67t-62.5 185q0 124 67.5 195t169.5 71q101 0 163 -69.5t62 -186.5zM180 252 q0 -187 102 -187q49 0 75 47.5t26 132.5q0 188 -101 188q-49 0 -75.5 -46t-26.5 -135z" />
  284. <glyph unicode="&#x150;" horiz-adv-x="707" d="M358 860l-6 -21q-88 -61 -214 -71l-10 32q104 63 168 125zM587 860l-7 -21q-88 -61 -213 -71l-10 32q104 63 168 125zM657 346q0 -168 -88 -262t-223 -94q-132 0 -214 91.5t-82 251.5q0 165 88 265t224 100q134 0 214.5 -95.5t80.5 -256.5zM183 345q0 -115 44.5 -186.5 t126.5 -71.5q83 0 126.5 68.5t43.5 187.5q0 117 -41.5 187.5t-124.5 70.5q-82 0 -128.5 -69t-46.5 -187z" />
  285. <glyph unicode="&#x151;" horiz-adv-x="563" d="M284 757l7 -22q-50 -89 -136 -164l-47 12q58 99 85 184zM446 757l7 -22q-51 -90 -137 -164l-46 12q58 99 85 184zM513 252q0 -125 -68.5 -193.5t-169.5 -68.5q-99 0 -161.5 67t-62.5 185q0 124 67.5 195t169.5 71q101 0 163 -69.5t62 -186.5zM180 252q0 -187 102 -187 q49 0 75 47.5t26 132.5q0 188 -101 188q-49 0 -75.5 -46t-26.5 -135z" />
  286. <glyph unicode="&#x152;" horiz-adv-x="953" d="M920 100v-100h-492q-37 -10 -82 -10q-132 0 -214 91.5t-82 251.5q0 165 88 265t224 100q43 0 79 -10h458l14 -14l-3 -86l-327 6q64 -82 73 -211l208 4l-3 -93l-206 5q-10 -124 -77 -205zM183 345q0 -115 44.5 -186.5t126.5 -71.5q83 0 126.5 68.5t43.5 187.5 q0 117 -41.5 187.5t-124.5 70.5q-82 0 -128.5 -69t-46.5 -187z" />
  287. <glyph unicode="&#x153;" horiz-adv-x="855" d="M810 251l-15 -15h-281q7 -79 46 -117.5t103 -38.5t125 36l7 -83q-25 -17 -69 -30t-92 -13q-121 0 -188 85q-66 -85 -175 -85q-95 0 -157.5 67.5t-62.5 184.5q0 123 67.5 194.5t165.5 71.5q107 0 169 -86q67 86 170 86q84 0 136 -56.5t52 -145.5q0 -37 -1 -55zM180 252 q0 -187 102 -187q50 0 75.5 47.5t25.5 133.5q0 187 -101 187q-49 0 -75.5 -46t-26.5 -135zM613 433q-43 0 -70.5 -40.5t-29.5 -110.5l174 7q1 11 1 34q0 50 -19.5 80t-55.5 30z" />
  288. <glyph unicode="&#x154;" horiz-adv-x="606" d="M450 858l-7 -21q-113 -59 -267 -69l-10 32q128 63 207 125zM213 0h-128v522q0 102 -9 166h210q127 0 197.5 -57.5t70.5 -157.5q0 -70 -34 -117.5t-91 -71.5l158 -284l-146 -7q-62 119 -124 258h-104v-251zM277 595h-64v-255h63q145 0 145 126q0 129 -144 129z" />
  289. <glyph unicode="&#x155;" horiz-adv-x="399" d="M304 754l7 -21q-60 -92 -158 -163l-47 11q59 103 85 184zM204 0h-125v328q0 74 -20 157l117 23q21 -53 27 -104q61 104 133 104q32 0 49 -14l-13 -118q-27 8 -56 8q-63 0 -112 -40v-344z" />
  290. <glyph unicode="&#x156;" horiz-adv-x="606" d="M213 0h-128v522q0 102 -9 166h210q127 0 197.5 -57.5t70.5 -157.5q0 -70 -34 -117.5t-91 -71.5l158 -284l-146 -7q-62 119 -124 258h-104v-251zM277 595h-64v-255h63q145 0 145 126q0 129 -144 129zM243 -318q39 55 50 95q-22 3 -37 21t-15 42q0 29 20 50.5t50 21.5 q29 0 48 -20t19 -57q0 -81 -96 -184z" />
  291. <glyph unicode="&#x157;" horiz-adv-x="399" d="M204 0h-125v328q0 74 -20 157l117 23q21 -53 27 -104q61 104 133 104q32 0 49 -14l-13 -118q-27 8 -56 8q-63 0 -112 -40v-344zM74 -318q39 55 50 95q-22 3 -37 21t-15 42q0 29 20 50.5t50 21.5q29 0 48 -20t19 -57q0 -81 -96 -184z" />
  292. <glyph unicode="&#x158;" horiz-adv-x="606" d="M438 925l34 -30q-58 -50 -118 -119l-88 -8q-59 68 -123 127l33 30q55 -26 134 -74q75 48 128 74zM213 0h-128v522q0 102 -9 166h210q127 0 197.5 -57.5t70.5 -157.5q0 -70 -34 -117.5t-91 -71.5l158 -284l-146 -7q-62 119 -124 258h-104v-251zM277 595h-64v-255h63 q145 0 145 126q0 129 -144 129z" />
  293. <glyph unicode="&#x159;" horiz-adv-x="399" d="M328 771l40 -29q-65 -85 -109 -160l-88 -8q-58 95 -114 168l40 29q50 -38 118 -106q72 74 113 106zM204 0h-125v328q0 74 -20 157l117 23q21 -53 27 -104q61 104 133 104q32 0 49 -14l-13 -118q-27 8 -56 8q-63 0 -112 -40v-344z" />
  294. <glyph unicode="&#x15a;" horiz-adv-x="531" d="M419 858l-7 -21q-113 -59 -267 -69l-10 32q128 63 207 125zM481 183q0 -91 -67 -142t-177 -51q-119 0 -187 37l9 109q36 -22 88 -34t92 -12q53 0 81.5 22.5t28.5 61.5q0 11 -2.5 21t-5.5 17.5t-10.5 16.5t-12 14.5t-16 14t-16.5 12t-20 11.5t-20 11t-22.5 11.5 t-21.5 10.5q-34 17 -55.5 31.5t-45.5 37t-36 52.5t-12 68q0 91 69 143t181 52q93 0 160 -28l-16 -111q-68 39 -146 39q-56 0 -86 -22.5t-30 -62.5q0 -14 3.5 -26.5t14 -24.5t17 -19t25 -18.5t26 -15.5t31.5 -16l30 -15q32 -17 54.5 -31.5t46 -38t36 -55t12.5 -70.5z" />
  295. <glyph unicode="&#x15b;" horiz-adv-x="445" d="M317 754l8 -21q-59 -91 -159 -163l-46 11q59 103 85 184zM389 480l-9 -96q-74 40 -135 40q-36 0 -57.5 -15t-21.5 -40q0 -24 24.5 -43t59.5 -33.5t70.5 -32.5t60 -49.5t24.5 -74.5q0 -67 -54.5 -106.5t-145.5 -39.5q-98 0 -164 36l9 95q80 -47 158 -47q36 0 56 15t20 38 q0 24 -24.5 43t-59.5 33.5t-70 32t-59.5 49t-24.5 74.5q0 67 55 108t145 41q74 0 143 -28z" />
  296. <glyph unicode="&#x15c;" horiz-adv-x="531" d="M145 765l-34 30q58 50 119 119l88 8q52 -62 123 -127l-34 -30q-54 26 -133 74q-75 -48 -129 -74zM481 183q0 -91 -67 -142t-177 -51q-119 0 -187 37l9 109q36 -22 88 -34t92 -12q53 0 81.5 22.5t28.5 61.5q0 11 -2.5 21t-5.5 17.5t-10.5 16.5t-12 14.5t-16 14t-16.5 12 t-20 11.5t-20 11t-22.5 11.5t-21.5 10.5q-34 17 -55.5 31.5t-45.5 37t-36 52.5t-12 68q0 91 69 143t181 52q93 0 160 -28l-16 -111q-68 39 -146 39q-56 0 -86 -22.5t-30 -62.5q0 -14 3.5 -26.5t14 -24.5t17 -19t25 -18.5t26 -15.5t31.5 -16l30 -15q32 -17 54.5 -31.5t46 -38 t36 -55t12.5 -70.5z" />
  297. <glyph unicode="&#x15d;" horiz-adv-x="445" d="M110 563l-39 28q52 69 109 160l88 8q51 -86 114 -168l-40 -28q-47 34 -118 105q-72 -74 -114 -105zM389 480l-9 -96q-74 40 -135 40q-36 0 -57.5 -15t-21.5 -40q0 -24 24.5 -43t59.5 -33.5t70.5 -32.5t60 -49.5t24.5 -74.5q0 -67 -54.5 -106.5t-145.5 -39.5 q-98 0 -164 36l9 95q80 -47 158 -47q36 0 56 15t20 38q0 24 -24.5 43t-59.5 33.5t-70 32t-59.5 49t-24.5 74.5q0 67 55 108t145 41q74 0 143 -28z" />
  298. <glyph unicode="&#x15e;" horiz-adv-x="531" d="M390 -140q0 -52 -56 -77t-135 -28l1 45q98 11 98 56q0 35 -70 37l-14 23l22 74q-118 0 -186 37l9 109q36 -22 88 -34t92 -12q53 0 81.5 22.5t28.5 61.5q0 11 -2.5 21t-5.5 17.5t-10.5 16.5t-12 14.5t-16 14t-16.5 12t-20 11.5t-20 11t-22.5 11.5t-21.5 10.5 q-34 17 -55.5 31.5t-45.5 37t-36 52.5t-12 68q0 91 69 143t181 52q93 0 160 -28l-16 -111q-68 39 -146 39q-56 0 -86 -22.5t-30 -62.5q0 -14 3.5 -26.5t14 -24.5t17 -19t25 -18.5t26 -15.5t31.5 -16l30 -15q32 -17 54.5 -31.5t46 -38t36 -55t12.5 -70.5q0 -76 -47 -124 t-128 -63l-18 -54q102 -14 102 -82z" />
  299. <glyph unicode="&#x15f;" horiz-adv-x="445" d="M343 -140q0 -52 -56 -77t-135 -28l1 45q98 11 98 56q0 35 -70 37l-15 23l23 74q-92 5 -148 36l9 95q80 -47 158 -47q36 0 56 15t20 38q0 24 -24.5 43t-59.5 33.5t-70 32t-59.5 49t-24.5 74.5q0 67 55 108t145 41q74 0 143 -28l-9 -96q-74 40 -135 40q-36 0 -57.5 -15 t-21.5 -40q0 -24 24.5 -43t59.5 -33.5t70.5 -32.5t60 -49.5t24.5 -74.5q0 -56 -39.5 -93.5t-107.5 -48.5l-17 -52q102 -14 102 -82z" />
  300. <glyph unicode="&#x160;" horiz-adv-x="531" d="M407 925l34 -30q-58 -50 -118 -119l-88 -8q-60 69 -124 127l34 30q55 -26 134 -74q75 48 128 74zM481 183q0 -91 -67 -142t-177 -51q-119 0 -187 37l9 109q36 -22 88 -34t92 -12q53 0 81.5 22.5t28.5 61.5q0 11 -2.5 21t-5.5 17.5t-10.5 16.5t-12 14.5t-16 14t-16.5 12 t-20 11.5t-20 11t-22.5 11.5t-21.5 10.5q-34 17 -55.5 31.5t-45.5 37t-36 52.5t-12 68q0 91 69 143t181 52q93 0 160 -28l-16 -111q-68 39 -146 39q-56 0 -86 -22.5t-30 -62.5q0 -14 3.5 -26.5t14 -24.5t17 -19t25 -18.5t26 -15.5t31.5 -16l30 -15q32 -17 54.5 -31.5t46 -38 t36 -55t12.5 -70.5z" />
  301. <glyph unicode="&#x161;" horiz-adv-x="445" d="M342 771l40 -29q-57 -73 -110 -160l-88 -8q-49 83 -113 168l39 29q47 -35 118 -106q69 71 114 106zM389 480l-9 -96q-74 40 -135 40q-36 0 -57.5 -15t-21.5 -40q0 -24 24.5 -43t59.5 -33.5t70.5 -32.5t60 -49.5t24.5 -74.5q0 -67 -54.5 -106.5t-145.5 -39.5 q-98 0 -164 36l9 95q80 -47 158 -47q36 0 56 15t20 38q0 24 -24.5 43t-59.5 33.5t-70 32t-59.5 49t-24.5 74.5q0 67 55 108t145 41q74 0 143 -28z" />
  302. <glyph unicode="&#x162;" horiz-adv-x="560" d="M345 0h-35l-19 -58q102 -14 102 -82q0 -52 -56 -77t-134 -28v45q99 11 99 56q0 35 -71 37l-14 23l25 84h-26v592q-66 -1 -200 -7l7 103h514l7 -103q-135 6 -199 7v-592z" />
  303. <glyph unicode="&#x163;" horiz-adv-x="388" d="M328 -140q0 -52 -56 -77t-135 -28l1 45q98 11 98 56q0 35 -71 37l-14 23l26 84q-91 34 -91 171v264l-70 1v47l73 15l31 124l78 6l15 -15l-2 -115h136l9 -14l-5 -54l-140 3v-258q0 -95 69 -95q39 0 79 24l9 -78q-55 -36 -127 -36l-16 -48q103 -14 103 -82z" />
  304. <glyph unicode="&#x164;" horiz-adv-x="560" d="M411 925l34 -30q-62 -54 -119 -119l-88 -8q-52 62 -123 127l34 30q59 -28 133 -74q72 46 129 74zM345 0h-129v592q-66 -1 -200 -7l7 103h514l7 -103q-135 6 -199 7v-592z" />
  305. <glyph unicode="&#x165;" horiz-adv-x="388" d="M391 774l9 -20q-27 -104 -92 -211l-42 2q21 132 26 227zM351 430l-140 3v-258q0 -95 69 -95q39 0 79 24l9 -78q-55 -36 -128 -36q-75 0 -114.5 45.5t-39.5 135.5v264l-70 1v47l73 15l31 124l78 6l15 -15l-2 -115h136l9 -14z" />
  306. <glyph unicode="&#x166;" horiz-adv-x="560" d="M345 0h-129v311h-123v66h123v215q-66 -1 -200 -7l7 103h514l7 -103q-135 6 -199 7v-215h123v-66h-123v-311z" />
  307. <glyph unicode="&#x167;" horiz-adv-x="388" d="M352 266h-141v-91q0 -95 69 -95q39 0 79 24l9 -78q-55 -36 -128 -36q-75 0 -114.5 45.5t-39.5 135.5v95h-67v66h67v103l-70 1v47l73 15l31 124l78 6l15 -15l-2 -115h136l9 -14l-5 -54l-140 3v-101h141v-66z" />
  308. <glyph unicode="&#x168;" horiz-adv-x="666" d="M261 916q33 0 80 -28t70 -28q34 0 63 48l33 -5q-3 -53 -28.5 -90.5t-72.5 -37.5q-30 0 -81 28t-72 28q-34 0 -61 -48l-33 5q2 51 27 89.5t75 38.5zM73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8 v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63t-71.5 179v286z" />
  309. <glyph unicode="&#x169;" horiz-adv-x="569" d="M213 742q32 0 79.5 -28.5t68.5 -28.5q19 0 31 12t25 36l36 -5q-3 -56 -27.5 -98t-69.5 -42q-30 0 -81 28.5t-70 28.5q-31 0 -55 -49l-36 6q4 57 28 98.5t71 41.5zM77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135 l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  310. <glyph unicode="&#x16a;" horiz-adv-x="666" d="M193 806v74h280v-74h-280zM73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63t-71.5 179v286z" />
  311. <glyph unicode="&#x16b;" horiz-adv-x="569" d="M143 629v72h285v-72h-285zM77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  312. <glyph unicode="&#x16c;" horiz-adv-x="666" d="M424 910l51 4q-7 -64 -46 -102.5t-101 -38.5q-56 0 -94 35.5t-44 94.5l51 8q19 -54 93 -54q33 0 57.5 14.5t32.5 38.5zM73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179 t-189 -63q-113 0 -184.5 63t-71.5 179v286z" />
  313. <glyph unicode="&#x16d;" horiz-adv-x="569" d="M375 750l51 4q-7 -75 -46 -121t-101 -46q-56 0 -94 42.5t-44 113.5l52 8q8 -37 33 -58.5t59 -21.5q33 0 57.5 22t32.5 57zM77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74 q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  314. <glyph unicode="&#x16e;" horiz-adv-x="666" d="M451 865q0 -43 -33.5 -74t-81.5 -31q-43 0 -72 25.5t-29 62.5q0 43 35.5 74.5t83.5 31.5q42 0 69.5 -25t27.5 -64zM292 853q0 -21 13.5 -35t34.5 -14q22 0 38.5 16.5t16.5 39.5q0 22 -12.5 35.5t-33.5 13.5q-24 0 -40.5 -16.5t-16.5 -39.5zM73 518q0 87 -10 171l126 9 l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63t-71.5 179v286z" />
  315. <glyph unicode="&#x16f;" horiz-adv-x="569" d="M403 675q0 -43 -33.5 -74t-81.5 -31q-43 0 -71.5 25.5t-28.5 62.5q0 43 35 74.5t83 31.5q43 0 70 -25t27 -64zM244 663q0 -21 13.5 -35t35.5 -14t38 16.5t16 39.5t-12 36t-33 13q-24 0 -41 -16.5t-17 -39.5zM77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83 q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  316. <glyph unicode="&#x170;" horiz-adv-x="666" d="M333 860l-6 -21q-88 -61 -214 -71l-10 32q103 62 169 125zM562 860l-7 -21q-87 -61 -213 -71l-10 32q101 60 168 125zM73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179 t-189 -63q-113 0 -184.5 63t-71.5 179v286z" />
  317. <glyph unicode="&#x171;" horiz-adv-x="569" d="M287 757l8 -22q-54 -93 -137 -164l-46 12q58 99 85 184zM449 757l8 -22q-54 -93 -137 -164l-46 12q58 99 85 184zM77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74 q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  318. <glyph unicode="&#x172;" horiz-adv-x="666" d="M482 27q-109 -72 -109 -146q0 -50 47 -50q26 0 56 13l19 -45q-55 -44 -117 -44q-49 0 -78.5 26t-29.5 70q0 74 87 140q-9 -1 -28 -1q-113 0 -184.5 63t-71.5 179v286q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301 q0 80 -10 147l133 8v-465q0 -140 -111 -205z" />
  319. <glyph unicode="&#x173;" horiz-adv-x="569" d="M77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135h-5l2 -1q-114 -59 -114 -123q0 -46 49 -46q25 0 54 13l19 -45q-53 -44 -117 -44q-48 0 -78 25.5t-30 68.5q0 82 115 143q-16 33 -25 72h-4q-71 -74 -158 -74 q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  320. <glyph unicode="&#x174;" horiz-adv-x="970" d="M353 765l-33 30q58 50 118 119l88 8q59 -68 123 -127l-33 -30q-55 26 -134 74q-75 -48 -129 -74zM210 -2l-192 687l135 13l98 -379q29 -115 40 -187q13 65 49 194l95 364l124 8l98 -379q33 -117 45 -187q12 71 45 196l95 370l103 -8l8 -14l-192 -678h-134l-95 329 q-9 35 -24 101t-21 90h-2q-26 -118 -47 -193l-94 -327h-134z" />
  321. <glyph unicode="&#x175;" horiz-adv-x="786" d="M289 563l-40 28q55 71 109 160l88 8q53 -87 114 -168l-40 -28q-42 31 -118 105q-65 -68 -113 -105zM153 -2l-138 499l128 11l57 -244q27 -89 38 -159h2q13 71 36 156l54 241h149l54 -236q35 -133 38 -160h2q7 44 37 158l56 244l97 -8l8 -14l-137 -488h-148l-56 225 q-29 105 -37 171h-2q-6 -50 -36 -171l-57 -225h-145z" />
  322. <glyph unicode="&#x176;" horiz-adv-x="571" d="M168 765l-34 30q62 54 119 119l88 8q52 -62 123 -127l-34 -30q-63 30 -133 74q-72 -46 -129 -74zM221 232l-207 453l137 13l91 -220q42 -109 54 -146h3q27 71 58 146l89 220l104 -8l8 -14l-208 -446v-230h-129v232z" />
  323. <glyph unicode="&#x177;" horiz-adv-x="483" d="M138 563l-39 28q52 69 109 160l88 8q49 -83 113 -168l-39 -28q-47 34 -118 105q-69 -71 -114 -105zM473 486l-150 -456q-20 -62 -41.5 -107.5t-55 -88t-81 -66t-108.5 -26.5l-18 110q148 8 205 155h-52l-157 490l131 11l67 -251q34 -106 42 -170h2q10 58 45 170l67 251 l96 -8z" />
  324. <glyph unicode="&#x178;" horiz-adv-x="571" d="M480 851q0 -31 -21.5 -52.5t-54.5 -21.5q-28 0 -46 17t-18 42q0 29 23 51t55 22q27 0 44.5 -16.5t17.5 -41.5zM259 851q0 -31 -21.5 -52.5t-54.5 -21.5q-28 0 -46 17t-18 42q0 29 23 51t55 22q27 0 44.5 -16.5t17.5 -41.5zM221 232l-207 453l137 13l91 -220 q42 -109 54 -146h3q27 71 58 146l89 220l104 -8l8 -14l-208 -446v-230h-129v232z" />
  325. <glyph unicode="&#x179;" horiz-adv-x="550" d="M417 858l-6 -21q-115 -59 -268 -69l-10 32q128 63 207 125zM51 0l-21 83l340 500l-327 -7l8 112h431l32 -83l-336 -499l335 6l-7 -112h-455z" />
  326. <glyph unicode="&#x17a;" horiz-adv-x="446" d="M322 754l7 -21q-60 -92 -158 -163l-46 11q61 111 85 184zM29 395l7 103h363l13 -80l-249 -320l102 1q85 0 155 7l-7 -106h-373l-14 80l255 320z" />
  327. <glyph unicode="&#x17b;" horiz-adv-x="550" d="M353 855q0 -34 -23.5 -57.5t-60.5 -23.5q-31 0 -51.5 19t-20.5 47q0 32 25.5 55t61.5 23q30 0 49.5 -17.5t19.5 -45.5zM51 0l-21 83l340 500l-327 -7l8 112h431l32 -83l-336 -499l335 6l-7 -112h-455z" />
  328. <glyph unicode="&#x17c;" horiz-adv-x="446" d="M305 672q0 -35 -24 -60.5t-60 -25.5q-32 0 -52 21t-20 51q0 35 25.5 60t61.5 25q30 0 49.5 -19.5t19.5 -51.5zM29 395l7 103h363l13 -80l-249 -320l102 1q85 0 155 7l-7 -106h-373l-14 80l255 320z" />
  329. <glyph unicode="&#x17d;" horiz-adv-x="550" d="M406 925l33 -30q-58 -50 -118 -119l-88 -8q-52 62 -123 127l33 30q55 -26 134 -74q75 48 129 74zM51 0l-21 83l340 500l-327 -7l8 112h431l32 -83l-336 -499l335 6l-7 -112h-455z" />
  330. <glyph unicode="&#x17e;" horiz-adv-x="446" d="M346 771l40 -29q-65 -85 -109 -160l-88 -8q-58 95 -114 168l40 29q47 -35 118 -106q72 74 113 106zM29 395l7 103h363l13 -80l-249 -320l102 1q85 0 155 7l-7 -106h-373l-14 80l255 320z" />
  331. <glyph unicode="&#x18f;" horiz-adv-x="653" d="M55 377l22 22h388q-15 102 -69.5 152t-141.5 50q-86 0 -167 -49l-3 97q26 18 82 33.5t120 15.5q147 0 232 -91t85 -259q0 -169 -82.5 -263.5t-217.5 -94.5q-115 0 -184 72.5t-69 213.5q0 23 5 101zM180 265q0 -89 35 -136.5t100 -47.5q77 0 116 64t39 177v9l-289 -14 q-1 -18 -1 -52z" />
  332. <glyph unicode="&#x192;" horiz-adv-x="560" d="M173 295l-114 4l10 47l109 15h3l7 64q28 273 234 273q79 0 129 -31l-41 -98q-47 36 -90 36q-51 0 -73.5 -45.5t-33.5 -137.5l-7 -61h172l7 -13l-15 -53h-172l-34 -288q-3 -24 -5 -40.5t-9.5 -47t-16.5 -51.5t-26 -46.5t-38.5 -41.5t-54 -27t-71.5 -11q-50 0 -104 20 l22 99q46 -26 84 -26q32 0 53 20.5t28.5 46.5t11.5 64l36 329h-1z" />
  333. <glyph unicode="&#x19d;" horiz-adv-x="701" d="M37 -194l-37 48q80 86 80 248v420q0 90 -9 166l130 8q142 -240 164 -277q93 -153 136 -250h2q-9 104 -9 313q0 112 -9 206l118 9l14 -14v-683h-124q-33 54 -87 145.5t-78 130.5q-92 150 -133 237h-2q9 -81 9 -215v-196q0 -117 -36 -183t-129 -113z" />
  334. <glyph unicode="&#x1cd;" horiz-adv-x="630" d="M446 931l33 -29q-59 -53 -118 -120l-88 -8q-50 59 -123 128l34 29q47 -21 133 -74q81 52 129 74zM137 0h-122l186 585q20 61 30 106l147 6l20 -17l217 -680h-129l-53 166h-243zM250 357l-31 -98h184l-30 97q-47 160 -59 223h-4q-21 -91 -60 -222z" />
  335. <glyph unicode="&#x1ce;" horiz-adv-x="514" d="M368 771l40 -29q-57 -73 -110 -160l-87 -8q-53 87 -114 168l39 29q47 -35 118 -106q69 71 114 106zM434 137q0 -74 22 -137l-105 -10q-17 28 -27 69h-3q-22 -29 -62 -49t-87 -20q-60 0 -95.5 32t-35.5 88q0 81 74.5 122t196.5 46v48q0 89 -93 89q-76 0 -151 -44l-7 98 q94 39 189 39q92 0 139.5 -42.5t47.5 -122.5q0 -36 -1.5 -107t-1.5 -99zM164 131q0 -28 17.5 -47t47.5 -19q46 0 83 34v135q-65 -6 -106.5 -32t-41.5 -71z" />
  336. <glyph unicode="&#x1cf;" horiz-adv-x="298" d="M274 931l34 -29q-64 -57 -119 -120l-88 -8q-50 59 -123 128l34 29q55 -25 133 -74q79 50 129 74zM213 0h-128v517q0 95 -9 171l123 10l14 -14v-684z" />
  337. <glyph unicode="&#x1d0;" horiz-adv-x="281" d="M219 768l43 -19q-34 -77 -62 -167l-118 -8q-31 92 -67 175l43 19q36 -38 83 -109q39 66 78 109zM77 0v327q0 89 -12 166l123 15l14 -14v-494h-125z" />
  338. <glyph unicode="&#x1d1;" horiz-adv-x="707" d="M488 925l34 -30q-55 -48 -119 -119l-87 -8q-60 69 -124 127l34 30q59 -28 133 -74q72 46 129 74zM657 346q0 -168 -88 -262t-223 -94q-132 0 -214 91.5t-82 251.5q0 165 88 265t224 100q134 0 214.5 -95.5t80.5 -256.5zM183 345q0 -115 44.5 -186.5t126.5 -71.5 q83 0 126.5 68.5t43.5 187.5q0 117 -41.5 187.5t-124.5 70.5q-82 0 -128.5 -69t-46.5 -187z" />
  339. <glyph unicode="&#x1d2;" horiz-adv-x="563" d="M401 771l40 -29q-60 -77 -109 -160l-88 -8q-53 87 -114 168l40 29q42 -32 118 -106q64 68 113 106zM513 252q0 -125 -68.5 -193.5t-169.5 -68.5q-99 0 -161.5 67t-62.5 185q0 124 67.5 195t169.5 71q101 0 163 -69.5t62 -186.5zM180 252q0 -187 102 -187q49 0 75 47.5 t26 132.5q0 188 -101 188q-49 0 -75.5 -46t-26.5 -135z" />
  340. <glyph unicode="&#x1d3;" horiz-adv-x="666" d="M464 925l33 -30q-58 -50 -118 -119l-88 -8q-59 68 -123 127l33 30q55 -26 134 -74q75 48 129 74zM73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63 t-71.5 179v286z" />
  341. <glyph unicode="&#x1d4;" horiz-adv-x="569" d="M405 771l40 -29q-57 -73 -110 -160l-88 -8q-49 83 -113 168l39 29q47 -35 118 -106q69 71 114 106zM77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5 t-36.5 101.5v197z" />
  342. <glyph unicode="&#x1d5;" horiz-adv-x="666" d="M193 1027v73h280v-73h-280zM513 851q0 -31 -21.5 -52.5t-54.5 -21.5q-28 0 -45.5 17t-17.5 42q0 30 22.5 51.5t54.5 21.5q27 0 44.5 -16.5t17.5 -41.5zM292 851q0 -31 -21 -52.5t-55 -21.5q-28 0 -45.5 17t-17.5 42q0 30 22.5 51.5t54.5 21.5q27 0 44.5 -16.5t17.5 -41.5 zM73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63t-71.5 179v286z" />
  343. <glyph unicode="&#x1d6;" horiz-adv-x="569" d="M143 870v72h285v-72h-285zM247 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM466 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM77 326 q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  344. <glyph unicode="&#x1d7;" horiz-adv-x="666" d="M475 1078l-6 -20q-115 -61 -268 -69l-10 31q125 61 207 126zM513 851q0 -31 -21.5 -52.5t-54.5 -21.5q-28 0 -45.5 17t-17.5 42q0 30 22.5 51.5t54.5 21.5q27 0 44.5 -16.5t17.5 -41.5zM292 851q0 -31 -21 -52.5t-55 -21.5q-28 0 -45.5 17t-17.5 42q0 30 22.5 51.5 t54.5 21.5q27 0 44.5 -16.5t17.5 -41.5zM73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63t-71.5 179v286z" />
  345. <glyph unicode="&#x1d8;" horiz-adv-x="569" d="M380 995l8 -21q-59 -91 -159 -163l-46 11q59 103 85 184zM247 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM466 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24 q28 0 45.5 -18.5t17.5 -48.5zM77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  346. <glyph unicode="&#x1d9;" horiz-adv-x="666" d="M464 1145l33 -29q-54 -47 -118 -120l-88 -8q-63 73 -123 128l33 29q59 -27 134 -74q71 48 129 74zM513 851q0 -31 -21.5 -52.5t-54.5 -21.5q-28 0 -45.5 17t-17.5 42q0 30 22.5 51.5t54.5 21.5q27 0 44.5 -16.5t17.5 -41.5zM292 851q0 -31 -21 -52.5t-55 -21.5 q-28 0 -45.5 17t-17.5 42q0 30 22.5 51.5t54.5 21.5q27 0 44.5 -16.5t17.5 -41.5zM73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63t-71.5 179v286z " />
  347. <glyph unicode="&#x1da;" horiz-adv-x="569" d="M405 1012l40 -29q-57 -73 -110 -160l-88 -8q-49 83 -113 168l39 29q47 -35 118 -106q69 71 114 106zM247 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM466 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5 t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  348. <glyph unicode="&#x1db;" horiz-adv-x="666" d="M465 989q-153 8 -268 69l-6 20l77 68q82 -65 207 -126zM513 851q0 -31 -21.5 -52.5t-54.5 -21.5q-28 0 -45.5 17t-17.5 42q0 30 22.5 51.5t54.5 21.5q27 0 44.5 -16.5t17.5 -41.5zM292 851q0 -31 -21 -52.5t-55 -21.5q-28 0 -45.5 17t-17.5 42q0 30 22.5 51.5t54.5 21.5 q27 0 44.5 -16.5t17.5 -41.5zM73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63t-71.5 179v286z" />
  349. <glyph unicode="&#x1dc;" horiz-adv-x="569" d="M341 812q-97 69 -158 163l7 21l113 11q27 -82 85 -183zM247 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24q28 0 45.5 -18.5t17.5 -48.5zM466 672q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 33 23.5 57t56.5 24 q28 0 45.5 -18.5t17.5 -48.5zM77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5t-36.5 101.5v197z" />
  350. <glyph unicode="&#x1e6;" horiz-adv-x="642" d="M478 931l33 -29q-59 -53 -118 -120l-88 -8q-57 66 -123 128l33 29q48 -22 134 -74q81 52 129 74zM572 315l14 -14l-3 -267q-93 -44 -213 -44q-151 0 -235.5 90t-84.5 248q0 168 92.5 269t247.5 101q105 0 180 -39l-22 -111q-67 47 -152 47q-97 0 -155 -67t-58 -190 q0 -114 51.5 -181t149.5 -67q34 0 79 8v12q0 106 -12 195z" />
  351. <glyph unicode="&#x1e7;" horiz-adv-x="513" d="M366 771l40 -29q-60 -77 -109 -160l-88 -8q-53 87 -114 168l39 29q47 -35 118 -106q69 71 114 106zM105 63q0 53 53 89q-53 19 -84 61.5t-31 101.5q0 81 56 137t149 56q74 0 117 -33q17 28 49.5 43.5t67.5 15.5l15 -11l-3 -83h-102q51 -41 51 -119q0 -79 -55 -131.5 t-145 -52.5q-19 0 -35 3q-8 -16 -8 -30q0 -22 12 -31.5t39 -11.5l90 -6q70 -4 113 -37t43 -94q0 -81 -72 -134.5t-193 -53.5q-100 0 -160 36.5t-60 92.5q0 34 22 59t53 35l46 -20q-14 -18 -14 -37q0 -43 35 -73.5t94 -30.5q55 0 89.5 26t34.5 67q0 65 -88 75l-82 8 q-47 4 -72 26t-25 57zM323 322q0 121 -78 121q-82 0 -82 -121q0 -119 82 -119q78 0 78 119z" />
  352. <glyph unicode="&#x1ea;" horiz-adv-x="707" d="M657 346q0 -112 -41 -192.5t-112 -122.5q-106 -77 -106 -144q0 -56 51 -56q22 0 52 13l19 -45q-53 -44 -118 -44q-48 0 -77.5 26t-29.5 72q0 75 90 139q-26 -2 -39 -2q-132 0 -214 91.5t-82 251.5q0 165 88 265t224 100q134 0 214.5 -95.5t80.5 -256.5zM183 345 q0 -115 44.5 -186.5t126.5 -71.5q83 0 126.5 68.5t43.5 187.5q0 117 -41.5 187.5t-124.5 70.5q-82 0 -128.5 -69t-46.5 -187z" />
  353. <glyph unicode="&#x1eb;" horiz-adv-x="563" d="M414 33q-101 -78 -101 -146q0 -52 48 -52q25 0 55 13l18 -45q-51 -44 -118 -44q-47 0 -77 25t-30 66q0 70 90 141q-7 -1 -24 -1q-99 0 -161.5 67t-62.5 185q0 124 67.5 195t169.5 71q101 0 163 -69.5t62 -186.5q0 -148 -99 -220v1zM180 252q0 -187 102 -187q49 0 75 47.5 t26 132.5q0 188 -101 188q-49 0 -75.5 -46t-26.5 -135z" />
  354. <glyph unicode="&#x1f4;" horiz-adv-x="642" d="M489 864l-6 -21q-114 -59 -268 -69l-10 32q123 61 207 125zM572 315l14 -14l-3 -267q-93 -44 -213 -44q-151 0 -235.5 90t-84.5 248q0 168 92.5 269t247.5 101q105 0 180 -39l-22 -111q-67 47 -152 47q-97 0 -155 -67t-58 -190q0 -114 51.5 -181t149.5 -67q34 0 79 8v12 q0 106 -12 195z" />
  355. <glyph unicode="&#x1f5;" horiz-adv-x="513" d="M342 754l7 -21q-59 -91 -159 -163l-46 11q59 103 85 184zM105 63q0 53 53 89q-53 19 -84 61.5t-31 101.5q0 81 56 137t149 56q74 0 117 -33q17 28 49.5 43.5t67.5 15.5l15 -11l-3 -83h-102q51 -41 51 -119q0 -79 -55 -131.5t-145 -52.5q-19 0 -35 3q-8 -16 -8 -30 q0 -22 12 -31.5t39 -11.5l90 -6q70 -4 113 -37t43 -94q0 -81 -72 -134.5t-193 -53.5q-100 0 -160 36.5t-60 92.5q0 34 22 59t53 35l46 -20q-14 -18 -14 -37q0 -43 35 -73.5t94 -30.5q55 0 89.5 26t34.5 67q0 65 -88 75l-82 8q-47 4 -72 26t-25 57zM323 322q0 121 -78 121 q-82 0 -82 -121q0 -119 82 -119q78 0 78 119z" />
  356. <glyph unicode="&#x1fa;" horiz-adv-x="630" d="M457 1119l-6 -21q-115 -59 -268 -69l-10 32q122 60 208 125zM423 861q0 -44 -33.5 -75t-81.5 -31q-43 0 -72 25.5t-29 63.5q0 43 35.5 74t83.5 31q42 0 69.5 -25t27.5 -63zM264 848q0 -21 13.5 -34.5t34.5 -13.5q22 0 38 16.5t16 39.5q0 22 -12 35.5t-33 13.5 q-24 0 -40.5 -17t-16.5 -40zM137 0h-122l186 585q20 61 30 106l147 6l20 -17l217 -680h-129l-53 166h-243zM250 357l-31 -98h184l-30 97q-47 160 -59 223h-4q-21 -91 -60 -222z" />
  357. <glyph unicode="&#x1fb;" horiz-adv-x="514" d="M354 1020l7 -21q-60 -92 -158 -163l-47 11q60 105 85 184zM366 675q0 -43 -33.5 -74t-81.5 -31q-43 0 -71.5 25.5t-28.5 62.5q0 43 35 74.5t83 31.5q43 0 70 -25t27 -64zM207 663q0 -21 13.5 -35t35.5 -14t38 16.5t16 39.5t-12 36t-33 13q-24 0 -41 -16.5t-17 -39.5z M434 137q0 -74 22 -137l-105 -10q-17 28 -27 69h-3q-22 -29 -62 -49t-87 -20q-60 0 -95.5 32t-35.5 88q0 81 74.5 122t196.5 46v48q0 89 -93 89q-76 0 -151 -44l-7 98q94 39 189 39q92 0 139.5 -42.5t47.5 -122.5q0 -36 -1.5 -107t-1.5 -99zM164 131q0 -28 17.5 -47 t47.5 -19q46 0 83 34v135q-65 -6 -106.5 -32t-41.5 -71z" />
  358. <glyph unicode="&#x1fc;" horiz-adv-x="879" d="M635 858l-6 -21q-114 -59 -268 -69l-10 32q128 63 207 125zM137 0h-122l261 585q26 56 46 103h429l14 -14l-2 -86l-264 6l27 -211l223 4l-3 -93l-209 5l27 -206l282 7v-100h-399l-20 166h-217zM294 357l-43 -98h164l-12 97q-12 113 -16 223h-4q-28 -77 -89 -222z" />
  359. <glyph unicode="&#x1fd;" horiz-adv-x="783" d="M493 754l8 -21q-59 -91 -159 -163l-46 11q61 111 85 184zM737 251l-15 -15h-280q7 -79 46 -117.5t103 -38.5q63 0 124 36l8 -83q-65 -43 -164 -43q-141 0 -208 99q-28 -43 -76.5 -71t-104.5 -28q-58 0 -93.5 32.5t-35.5 88.5q0 80 74.5 121t196.5 46v48q0 89 -95 89 q-76 0 -149 -44l-7 98q94 39 191 39q101 0 147 -52q63 52 147 52q88 0 140 -56t52 -146q0 -37 -1 -55zM540 433q-42 0 -69.5 -40.5t-30.5 -110.5l175 7q0 5 0.5 16.5t0.5 17.5q0 50 -19.5 80t-56.5 30zM164 131q0 -28 17.5 -47t47.5 -19q62 0 104 59q-21 49 -22 110 q-64 -6 -105.5 -32t-41.5 -71z" />
  360. <glyph unicode="&#x1fe;" horiz-adv-x="707" d="M500 858l-7 -21q-113 -59 -267 -69l-10 32q128 63 207 125zM657 346q0 -168 -88 -262t-223 -94q-120 0 -198 75l-65 -74l-49 43l72 82q-56 87 -56 217q0 165 88 265t224 100q112 0 189 -69l60 69l50 -42l-67 -77q63 -92 63 -233zM183 345q0 -70 16 -122l276 318 q-43 60 -117 60q-82 0 -128.5 -69t-46.5 -187zM524 343q0 77 -18 134l-278 -320q46 -70 126 -70q83 0 126.5 68.5t43.5 187.5z" />
  361. <glyph unicode="&#x1ff;" horiz-adv-x="563" d="M377 754l7 -21q-60 -92 -158 -163l-47 11q59 103 85 184zM513 252q0 -125 -68.5 -193.5t-169.5 -68.5q-86 0 -146 51l-54 -58l-45 43l59 63q-38 63 -38 153q0 124 67.5 195t169.5 71q87 0 144 -51l55 58l46 -42l-60 -64q40 -66 40 -157zM180 252q0 -37 4 -62l176 190 q-25 53 -78 53q-49 0 -75.5 -46t-26.5 -135zM383 245q0 35 -3 64l-177 -189q25 -55 79 -55q49 0 75 47.5t26 132.5z" />
  362. <glyph unicode="&#x218;" horiz-adv-x="531" d="M481 183q0 -91 -67 -142t-177 -51q-119 0 -187 37l9 109q36 -22 88 -34t92 -12q53 0 81.5 22.5t28.5 61.5q0 11 -2.5 21t-5.5 17.5t-10.5 16.5t-12 14.5t-16 14t-16.5 12t-20 11.5t-20 11t-22.5 11.5t-21.5 10.5q-34 17 -55.5 31.5t-45.5 37t-36 52.5t-12 68q0 91 69 143 t181 52q93 0 160 -28l-16 -111q-68 39 -146 39q-56 0 -86 -22.5t-30 -62.5q0 -14 3.5 -26.5t14 -24.5t17 -19t25 -18.5t26 -15.5t31.5 -16l30 -15q32 -17 54.5 -31.5t46 -38t36 -55t12.5 -70.5zM209 -318q37 50 51 95q-23 3 -38 20.5t-15 42.5q0 29 20 50.5t51 21.5 q29 0 48 -20t19 -57q0 -80 -97 -184z" />
  363. <glyph unicode="&#x219;" horiz-adv-x="445" d="M389 480l-9 -96q-74 40 -135 40q-36 0 -57.5 -15t-21.5 -40q0 -24 24.5 -43t59.5 -33.5t70.5 -32.5t60 -49.5t24.5 -74.5q0 -67 -54.5 -106.5t-145.5 -39.5q-98 0 -164 36l9 95q80 -47 158 -47q36 0 56 15t20 38q0 24 -24.5 43t-59.5 33.5t-70 32t-59.5 49t-24.5 74.5 q0 67 55 108t145 41q74 0 143 -28zM162 -318q39 55 50 95q-23 3 -37.5 20.5t-14.5 42.5q0 29 20 50.5t50 21.5q29 0 48 -20t19 -57q0 -81 -96 -184z" />
  364. <glyph unicode="&#x21a;" horiz-adv-x="560" d="M345 0h-129v592q-66 -1 -200 -7l7 103h514l7 -103q-135 6 -199 7v-592zM212 -318q37 50 51 95q-23 3 -38 20.5t-15 42.5q0 29 20 50.5t51 21.5q29 0 48 -20t19 -57q0 -82 -97 -184z" />
  365. <glyph unicode="&#x21b;" horiz-adv-x="388" d="M351 430l-140 3v-258q0 -95 69 -95q39 0 79 24l9 -78q-55 -36 -128 -36q-75 0 -114.5 45.5t-39.5 135.5v264l-70 1v47l73 15l31 124l78 6l15 -15l-2 -115h136l9 -14zM147 -318q37 52 50 95q-23 3 -38 20.5t-15 42.5q0 29 20 50.5t51 21.5q29 0 48 -20t19 -57 q0 -82 -97 -184z" />
  366. <glyph unicode="&#x232;" horiz-adv-x="571" d="M159 806v74h281v-74h-281zM221 232l-207 453l137 13l91 -220q42 -109 54 -146h3q27 71 58 146l89 220l104 -8l8 -14l-208 -446v-230h-129v232z" />
  367. <glyph unicode="&#x233;" horiz-adv-x="483" d="M108 629v72h285v-72h-285zM473 486l-150 -456q-20 -62 -41.5 -107.5t-55 -88t-81 -66t-108.5 -26.5l-18 110q148 8 205 155h-52l-157 490l131 11l67 -251q34 -106 42 -170h2q10 58 45 170l67 251l96 -8z" />
  368. <glyph unicode="&#x237;" horiz-adv-x="283" d="M55 -258l-47 46q70 81 70 216v323q0 86 -11 166l122 15l14 -14v-484q0 -101 -33.5 -162t-114.5 -106z" />
  369. <glyph unicode="&#x259;" horiz-adv-x="523" d="M46 247l15 15h281q-3 81 -32.5 117t-89.5 36q-78 0 -152 -43l-8 91q30 18 83.5 31.5t105.5 13.5q108 0 165.5 -61t57.5 -178q0 -133 -66.5 -206t-167.5 -73q-89 0 -141 56t-52 146q0 37 1 55zM167 175q0 -51 19.5 -80.5t57.5 -29.5q41 0 67.5 38t30.5 113l-174 -7 q0 -3 -0.5 -15t-0.5 -19z" />
  370. <glyph unicode="&#x272;" horiz-adv-x="577" d="M55 -258l-47 46q70 81 70 216v324q0 80 -20 157l118 23q15 -39 22 -73q76 73 163 73q64 0 100 -40t36 -113v-355h-125v331q0 90 -74 90q-44 0 -95 -37v-374q0 -101 -33.5 -162t-114.5 -106z" />
  371. <glyph unicode="&#x2c6;" horiz-adv-x="405" d="M87 563l-40 29q65 85 109 160l88 8q58 -95 114 -168l-40 -29q-46 34 -118 106q-72 -74 -113 -106z" />
  372. <glyph unicode="&#x2c7;" horiz-adv-x="405" d="M318 772l40 -28q-55 -71 -109 -160l-88 -8q-53 87 -114 168l40 28q42 -31 118 -105q60 64 113 105z" />
  373. <glyph unicode="&#x2d8;" horiz-adv-x="379" d="M281 751l51 5q-7 -76 -46.5 -122t-100.5 -46q-57 0 -95 42.5t-43 114.5l51 7q9 -37 33.5 -58.5t58.5 -21.5q33 0 57.5 22t33.5 57z" />
  374. <glyph unicode="&#x2d9;" horiz-adv-x="250" d="M203 672q0 -35 -24.5 -60.5t-59.5 -25.5q-32 0 -52 21t-20 51q0 35 25.5 60t61.5 25q30 0 49.5 -19.5t19.5 -51.5z" />
  375. <glyph unicode="&#x2da;" horiz-adv-x="309" d="M262 674q0 -44 -33.5 -75t-81.5 -31q-43 0 -71.5 25.5t-28.5 63.5q0 43 35.5 74t82.5 31q43 0 70 -25t27 -63zM103 661q0 -21 13.5 -34.5t35.5 -13.5t38 16.5t16 39.5q0 22 -12 35.5t-33 13.5q-24 0 -41 -17t-17 -40z" />
  376. <glyph unicode="&#x2db;" horiz-adv-x="365" d="M292 0q-113 -59 -113 -123q0 -46 48 -46q25 0 55 13l18 -45q-51 -44 -117 -44q-48 0 -77.5 25.5t-29.5 68.5q0 48 42 91t118 73z" />
  377. <glyph unicode="&#x2dc;" horiz-adv-x="417" d="M145 742q32 0 79 -28.5t69 -28.5q19 0 31 12t25 36l36 -5q-3 -56 -27.5 -98t-69.5 -42q-30 0 -81 28.5t-71 28.5q-30 0 -55 -49l-35 6q3 57 27 98.5t72 41.5z" />
  378. <glyph unicode="&#x2dd;" horiz-adv-x="412" d="M222 757l7 -22q-52 -92 -136 -164l-47 12q58 99 85 184zM384 757l7 -22q-52 -92 -136 -164l-47 12q58 99 85 184z" />
  379. <glyph unicode="&#x394;" horiz-adv-x="623" d="M242 690h141l225 -670l-2 -20h-589l-2 20zM154 94h291l-145 453z" />
  380. <glyph unicode="&#x3a9;" horiz-adv-x="771" d="M322 0h-272l-17 90l14 14l213 -42q-76 44 -124.5 132.5t-48.5 185.5q0 133 87 225.5t217 92.5q129 0 210.5 -91.5t81.5 -224.5q0 -100 -49 -188.5t-125 -132.5l215 43l14 -14l-17 -90h-273l-13 56q52 54 83.5 133.5t31.5 172.5q0 101 -43 170t-120 69q-76 0 -121.5 -68 t-45.5 -172q0 -174 116 -305z" />
  381. <glyph unicode="&#x3bc;" horiz-adv-x="569" d="M77 328q0 76 -11 164l122 16l14 -14v-326q0 -83 69 -83q46 0 92 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-68 -71 -151 -74q-23 -1 -44 6q15 -43 24.5 -130.5t12.5 -101.5l-122 -16l-14 14v566z" />
  382. <glyph unicode="&#x3c0;" horiz-adv-x="630" d="M102 0v411l-99 -1l18 90l581 8l8 -14l-23 -77l-72 -1v-260q0 -32 7 -46.5t26 -14.5q15 0 40 9l-7 -104q-43 -10 -80 -10q-51 0 -81 32t-30 98v295l-163 -2v-413h-125z" />
  383. <glyph unicode="&#x1e0c;" horiz-adv-x="686" d="M636 348q0 -163 -98 -255.5t-253 -92.5h-200v522q0 102 -9 166h225q152 0 243.5 -91.5t91.5 -248.5zM293 595h-80v-502h81q105 0 157 66.5t52 182.5q0 114 -54 183.5t-156 69.5zM429 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 34 26 59.5t61 25.5 q31 0 50 -19.5t19 -51.5z" />
  384. <glyph unicode="&#x1e0d;" horiz-adv-x="576" d="M359 743l122 15l14 -14v-609q0 -71 23 -135l-108 -10q-10 19 -27 68h-2q-50 -68 -137 -68t-140 65.5t-53 177.5q0 130 71 202.5t185 72.5q30 0 63 -7v76q0 96 -11 166zM180 249q0 -84 31 -134t85 -50q44 0 74 32v337q-28 5 -49 5q-66 0 -103.5 -49t-37.5 -141zM365 -157 q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 34 26 59.5t61 25.5q31 0 50 -19.5t19 -51.5z" />
  385. <glyph unicode="&#x1e24;" horiz-adv-x="710" d="M213 0h-128v517q0 95 -9 171l123 10l14 -14v-296h283v129q0 95 -9 171l124 10l14 -14v-684h-129v295h-283v-295zM433 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 34 26 59.5t61 25.5q31 0 50 -19.5t19 -51.5z" />
  386. <glyph unicode="&#x1e25;" horiz-adv-x="572" d="M199 0h-125v577q0 89 -12 166l122 15l15 -14v-303q75 67 157 67q64 0 100.5 -40t36.5 -113v-355h-126v331q0 90 -73 90q-48 0 -95 -37v-384zM367 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 35 25.5 60t61.5 25q30 0 49.5 -19.5t19.5 -51.5z" />
  387. <glyph unicode="&#x1e44;" horiz-adv-x="706" d="M421 861q0 -34 -23.5 -57t-60.5 -23q-32 0 -52.5 18.5t-20.5 46.5q0 32 26 55t62 23q30 0 49.5 -17.5t19.5 -45.5zM370 419q93 -153 136 -250h3q-10 101 -10 313q0 112 -9 206l118 9l14 -14v-683h-124q-33 54 -87 145.5t-78 130.5q-92 150 -133 237h-2q9 -81 9 -215v-298 h-122v522q0 90 -9 166l130 8q142 -240 164 -277z" />
  388. <glyph unicode="&#x1e45;" horiz-adv-x="577" d="M360 672q0 -35 -24.5 -60.5t-59.5 -25.5q-32 0 -52 21t-20 51q0 35 25.5 60t60.5 25q31 0 50.5 -19.5t19.5 -51.5zM204 0h-125v328q0 74 -20 157l117 23q15 -39 22 -73q76 73 163 73q64 0 100.5 -40t36.5 -113v-355h-126v331q0 90 -73 90q-46 0 -95 -37v-384z" />
  389. <glyph unicode="&#x1e5a;" horiz-adv-x="606" d="M213 0h-128v522q0 102 -9 166h210q127 0 197.5 -57.5t70.5 -157.5q0 -70 -34 -117.5t-91 -71.5l158 -284l-146 -7q-62 119 -124 258h-104v-251zM277 595h-64v-255h63q145 0 145 126q0 129 -144 129zM390 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5 q0 35 25.5 60t60.5 25q31 0 50.5 -19.5t19.5 -51.5z" />
  390. <glyph unicode="&#x1e5b;" horiz-adv-x="399" d="M204 0h-125v328q0 74 -20 157l117 23q21 -53 27 -104q61 104 133 104q32 0 49 -14l-13 -118q-27 8 -56 8q-63 0 -112 -40v-344zM221 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 35 25.5 60t60.5 25q31 0 50.5 -19.5t19.5 -51.5z" />
  391. <glyph unicode="&#x1e62;" horiz-adv-x="531" d="M481 183q0 -91 -67 -142t-177 -51q-119 0 -187 37l9 109q36 -22 88 -34t92 -12q53 0 81.5 22.5t28.5 61.5q0 11 -2.5 21t-5.5 17.5t-10.5 16.5t-12 14.5t-16 14t-16.5 12t-20 11.5t-20 11t-22.5 11.5t-21.5 10.5q-34 17 -55.5 31.5t-45.5 37t-36 52.5t-12 68q0 91 69 143 t181 52q93 0 160 -28l-16 -111q-68 39 -146 39q-56 0 -86 -22.5t-30 -62.5q0 -14 3.5 -26.5t14 -24.5t17 -19t25 -18.5t26 -15.5t31.5 -16l30 -15q32 -17 54.5 -31.5t46 -38t36 -55t12.5 -70.5zM356 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 35 25.5 60 t61.5 25q31 0 50 -19.5t19 -51.5z" />
  392. <glyph unicode="&#x1e63;" horiz-adv-x="445" d="M389 480l-9 -96q-74 40 -135 40q-36 0 -57.5 -15t-21.5 -40q0 -24 24.5 -43t59.5 -33.5t70.5 -32.5t60 -49.5t24.5 -74.5q0 -67 -54.5 -106.5t-145.5 -39.5q-98 0 -164 36l9 95q80 -47 158 -47q36 0 56 15t20 38q0 24 -24.5 43t-59.5 33.5t-70 32t-59.5 49t-24.5 74.5 q0 67 55 108t145 41q74 0 143 -28zM309 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 35 25.5 60t60.5 25q31 0 50.5 -19.5t19.5 -51.5z" />
  393. <glyph unicode="&#x1e6c;" horiz-adv-x="560" d="M345 0h-129v592q-66 -1 -200 -7l7 103h514l7 -103q-135 6 -199 7v-592zM359 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 34 26 59.5t61 25.5q31 0 50 -19.5t19 -51.5z" />
  394. <glyph unicode="&#x1e6d;" horiz-adv-x="388" d="M351 430l-140 3v-258q0 -95 69 -95q39 0 79 24l9 -78q-55 -36 -128 -36q-75 0 -114.5 45.5t-39.5 135.5v264l-70 1v47l73 15l31 124l78 6l15 -15l-2 -115h136l9 -14zM293 -157q0 -35 -24 -60t-59 -25q-32 0 -52 20.5t-20 50.5q0 35 25.5 60t60.5 25q31 0 50 -19.5 t19 -51.5z" />
  395. <glyph unicode="&#x1e80;" horiz-adv-x="970" d="M617 768q-154 10 -268 69l-6 21l77 67q79 -62 207 -125zM210 -2l-192 687l135 13l98 -379q29 -115 40 -187q13 65 49 194l95 364l124 8l98 -379q33 -117 45 -187q12 71 45 196l95 370l103 -8l8 -14l-192 -678h-134l-95 329q-9 35 -24 101t-21 90h-2q-26 -118 -47 -193 l-94 -327h-134z" />
  396. <glyph unicode="&#x1e81;" horiz-adv-x="786" d="M457 571q-98 71 -159 163l8 21l112 12q24 -76 85 -184zM153 -2l-138 499l128 11l57 -244q27 -89 38 -159h2q13 71 36 156l54 241h149l54 -236q35 -133 38 -160h2q7 44 37 158l56 244l97 -8l8 -14l-137 -488h-148l-56 225q-29 105 -37 171h-2q-6 -50 -36 -171l-57 -225 h-145z" />
  397. <glyph unicode="&#x1e82;" horiz-adv-x="970" d="M627 858l-6 -21q-115 -59 -268 -69l-10 32q128 63 207 125zM210 -2l-192 687l135 13l98 -379q29 -115 40 -187q13 65 49 194l95 364l124 8l98 -379q33 -117 45 -187q12 71 45 196l95 370l103 -8l8 -14l-192 -678h-134l-95 329q-9 35 -24 101t-21 90h-2q-26 -118 -47 -193 l-94 -327h-134z" />
  398. <glyph unicode="&#x1e83;" horiz-adv-x="786" d="M496 754l7 -21q-60 -92 -158 -163l-47 11q59 103 85 184zM153 -2l-138 499l128 11l57 -244q27 -89 38 -159h2q13 71 36 156l54 241h149l54 -236q35 -133 38 -160h2q7 44 37 158l56 244l97 -8l8 -14l-137 -488h-148l-56 225q-29 105 -37 171h-2q-6 -50 -36 -171l-57 -225 h-145z" />
  399. <glyph unicode="&#x1e84;" horiz-adv-x="970" d="M665 851q0 -31 -21 -52.5t-55 -21.5q-28 0 -45.5 17t-17.5 42q0 30 22.5 51.5t54.5 21.5q27 0 44.5 -16.5t17.5 -41.5zM445 851q0 -31 -21.5 -52.5t-55.5 -21.5q-28 0 -45.5 17t-17.5 42q0 30 22.5 51.5t54.5 21.5q27 0 45 -16.5t18 -41.5zM210 -2l-192 687l135 13 l98 -379q29 -115 40 -187q13 65 49 194l95 364l124 8l98 -379q33 -117 45 -187q12 71 45 196l95 370l103 -8l8 -14l-192 -678h-134l-95 329q-9 35 -24 101t-21 90h-2q-26 -118 -47 -193l-94 -327h-134z" />
  400. <glyph unicode="&#x1e85;" horiz-adv-x="786" d="M362 672q0 -33 -22 -57t-54 -24q-30 0 -48 19.5t-18 47.5q0 32 23.5 56.5t55.5 24.5q28 0 45.5 -18.5t17.5 -48.5zM581 672q0 -33 -22 -57t-54 -24q-30 0 -48 19.5t-18 47.5q0 32 23.5 56.5t55.5 24.5q28 0 45.5 -18.5t17.5 -48.5zM153 -2l-138 499l128 11l57 -244 q27 -89 38 -159h2q13 71 36 156l54 241h149l54 -236q35 -133 38 -160h2q7 44 37 158l56 244l97 -8l8 -14l-137 -488h-148l-56 225q-29 105 -37 171h-2q-6 -50 -36 -171l-57 -225h-145z" />
  401. <glyph unicode="&#x1e92;" horiz-adv-x="550" d="M51 0l-21 83l340 500l-327 -7l8 112h431l32 -83l-336 -499l335 6l-7 -112h-455zM358 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 35 25.5 60t61.5 25q30 0 49.5 -19.5t19.5 -51.5z" />
  402. <glyph unicode="&#x1e93;" horiz-adv-x="446" d="M29 395l7 103h363l13 -80l-249 -320l102 1q85 0 155 7l-7 -106h-373l-14 80l255 320zM301 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 34 26 59.5t61 25.5q31 0 50 -19.5t19 -51.5z" />
  403. <glyph unicode="&#x1e9e;" horiz-adv-x="668" d="M81 144v312q0 115 70.5 178.5t186.5 63.5q88 0 151 -38t84 -108l-147 -168q91 -37 141.5 -86.5t50.5 -127.5q0 -84 -56.5 -132t-146.5 -48q-78 0 -135 27v109q54 -36 115 -36q43 0 67 21.5t24 60.5q0 47 -41 81t-149 81v33l138 175q-28 57 -97 57q-59 0 -93 -40t-34 -112 v-345q0 -82 -29 -112l-118 10q18 56 18 144z" />
  404. <glyph unicode="&#x1ea0;" horiz-adv-x="630" d="M137 0h-122l186 585q20 61 30 106l147 6l20 -17l217 -680h-129l-53 166h-243zM250 357l-31 -98h184l-30 97q-47 160 -59 223h-4q-21 -91 -60 -222zM393 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 34 26 59.5t61 25.5q31 0 50 -19.5t19 -51.5z" />
  405. <glyph unicode="&#x1ea1;" horiz-adv-x="514" d="M434 137q0 -74 22 -137l-105 -10q-17 28 -27 69h-3q-22 -29 -62 -49t-87 -20q-60 0 -95.5 32t-35.5 88q0 81 74.5 122t196.5 46v48q0 89 -93 89q-76 0 -151 -44l-7 98q94 39 189 39q92 0 139.5 -42.5t47.5 -122.5q0 -36 -1.5 -107t-1.5 -99zM164 131q0 -28 17.5 -47 t47.5 -19q46 0 83 34v135q-65 -6 -106.5 -32t-41.5 -71zM333 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 34 26 59.5t61 25.5q31 0 50 -19.5t19 -51.5z" />
  406. <glyph unicode="&#x1eb8;" horiz-adv-x="537" d="M504 100v-100h-419v522q0 102 -9 166h407l14 -14l-3 -86l-281 7v-212l235 4l-3 -93l-232 5v-206zM390 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 35 25.5 60t60.5 25q31 0 50.5 -19.5t19.5 -51.5z" />
  407. <glyph unicode="&#x1eb9;" horiz-adv-x="523" d="M477 251l-15 -15h-281q7 -79 46.5 -117.5t103.5 -38.5q63 0 124 36l8 -83q-65 -43 -165 -43q-113 0 -180 66t-67 186q0 121 67 193.5t168 72.5q88 0 140 -56t52 -146q0 -37 -1 -55zM280 433q-43 0 -70 -40.5t-30 -110.5l174 7q1 11 1 36q0 48 -19.5 78t-55.5 30z M362 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 35 25.5 60t61.5 25q31 0 50 -19.5t19 -51.5z" />
  408. <glyph unicode="&#x1ebc;" horiz-adv-x="537" d="M221 922q33 0 80 -28t70 -28q35 0 62 48l33 -5q-2 -52 -28 -90t-72 -38q-31 0 -82 28t-72 28q-35 0 -61 -48l-33 5q3 52 28 90t75 38zM504 100v-100h-419v522q0 102 -9 166h407l14 -14l-3 -86l-281 7v-212l235 4l-3 -93l-232 5v-206z" />
  409. <glyph unicode="&#x1ebd;" horiz-adv-x="523" d="M196 742q32 0 79.5 -28.5t68.5 -28.5q19 0 31 12t25 36l37 -5q-3 -57 -28 -98.5t-70 -41.5q-30 0 -81 28.5t-70 28.5q-31 0 -55 -49l-36 6q4 57 28 98.5t71 41.5zM477 251l-15 -15h-281q7 -79 46.5 -117.5t103.5 -38.5q63 0 124 36l8 -83q-65 -43 -165 -43 q-113 0 -180 66t-67 186q0 121 67 193.5t168 72.5q88 0 140 -56t52 -146q0 -37 -1 -55zM280 433q-43 0 -70 -40.5t-30 -110.5l174 7q1 11 1 36q0 48 -19.5 78t-55.5 30z" />
  410. <glyph unicode="&#x1eca;" horiz-adv-x="298" d="M213 0h-128v517q0 95 -9 171l123 10l14 -14v-684zM228 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 35 25.5 60t61.5 25q30 0 49.5 -19.5t19.5 -51.5z" />
  411. <glyph unicode="&#x1ecb;" horiz-adv-x="281" d="M217 672q0 -35 -24 -60.5t-60 -25.5q-32 0 -52 21t-20 51q0 35 25.5 60t61.5 25q30 0 49.5 -19.5t19.5 -51.5zM77 0v327q0 89 -12 166l123 15l14 -14v-494h-125zM222 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 35 25.5 60t60.5 25q31 0 50.5 -19.5 t19.5 -51.5z" />
  412. <glyph unicode="&#x1ecc;" horiz-adv-x="707" d="M657 346q0 -168 -88 -262t-223 -94q-132 0 -214 91.5t-82 251.5q0 165 88 265t224 100q134 0 214.5 -95.5t80.5 -256.5zM183 345q0 -115 44.5 -186.5t126.5 -71.5q83 0 126.5 68.5t43.5 187.5q0 117 -41.5 187.5t-124.5 70.5q-82 0 -128.5 -69t-46.5 -187zM440 -157 q0 -35 -24 -60t-59 -25q-32 0 -52 20.5t-20 50.5q0 35 25.5 60t60.5 25q31 0 50 -19.5t19 -51.5z" />
  413. <glyph unicode="&#x1ecd;" horiz-adv-x="563" d="M513 252q0 -125 -68.5 -193.5t-169.5 -68.5q-99 0 -161.5 67t-62.5 185q0 124 67.5 195t169.5 71q101 0 163 -69.5t62 -186.5zM180 252q0 -187 102 -187q49 0 75 47.5t26 132.5q0 188 -101 188q-49 0 -75.5 -46t-26.5 -135zM360 -157q0 -35 -24 -60t-60 -25 q-32 0 -52 20.5t-20 50.5q0 35 25.5 60t60.5 25q31 0 50.5 -19.5t19.5 -51.5z" />
  414. <glyph unicode="&#x1ee4;" horiz-adv-x="666" d="M73 518q0 87 -10 171l126 9l13 -13v-444q0 -73 36.5 -112.5t98.5 -39.5q61 0 97 39.5t36 112.5v301q0 80 -10 147l133 8v-465q0 -116 -75 -179t-189 -63q-113 0 -184.5 63t-71.5 179v286zM411 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 35 25.5 60t61.5 25 q30 0 49.5 -19.5t19.5 -51.5z" />
  415. <glyph unicode="&#x1ee5;" horiz-adv-x="569" d="M77 326q0 78 -11 166l122 16l14 -14v-326q0 -83 70 -83q45 0 91 35v378l125 10v-372q0 -72 17 -135l-104 -11q-14 29 -26 74h-4q-71 -74 -158 -74q-63 0 -99.5 37.5t-36.5 101.5v197zM363 -157q0 -35 -24 -60t-60 -25q-32 0 -52 20.5t-20 50.5q0 34 26 59.5t61 25.5 q31 0 50 -19.5t19 -51.5z" />
  416. <glyph unicode="&#x1ef2;" horiz-adv-x="571" d="M432 768q-153 10 -268 69l-6 21l76 67q84 -65 208 -125zM221 232l-207 453l137 13l91 -220q42 -109 54 -146h3q27 71 58 146l89 220l104 -8l8 -14l-208 -446v-230h-129v232z" />
  417. <glyph unicode="&#x1ef3;" horiz-adv-x="483" d="M306 571q-97 69 -158 163l7 21l113 12q27 -83 85 -184zM473 486l-150 -456q-20 -62 -41.5 -107.5t-55 -88t-81 -66t-108.5 -26.5l-18 110q148 8 205 155h-52l-157 490l131 11l67 -251q34 -106 42 -170h2q10 58 45 170l67 251l96 -8z" />
  418. <glyph unicode="&#x1ef8;" horiz-adv-x="571" d="M228 916q33 0 80 -28t70 -28q35 0 62 48l33 -5q-2 -52 -27.5 -90t-72.5 -38q-31 0 -81.5 28t-72.5 28q-34 0 -60 -48l-33 5q2 52 27 90t75 38zM221 232l-207 453l137 13l91 -220q42 -109 54 -146h3q27 71 58 146l89 220l104 -8l8 -14l-208 -446v-230h-129v232z" />
  419. <glyph unicode="&#x1ef9;" horiz-adv-x="483" d="M178 742q32 0 79.5 -28.5t68.5 -28.5q19 0 31 12t25 36l36 -5q-3 -56 -27.5 -98t-69.5 -42q-30 0 -81 28.5t-70 28.5q-31 0 -56 -49l-35 6q4 57 28 98.5t71 41.5zM473 486l-150 -456q-20 -62 -41.5 -107.5t-55 -88t-81 -66t-108.5 -26.5l-18 110q148 8 205 155h-52 l-157 490l131 11l67 -251q34 -106 42 -170h2q10 58 45 170l67 251l96 -8z" />
  420. <glyph unicode="&#x2007;" />
  421. <glyph unicode="&#x2013;" horiz-adv-x="554" d="M30 262v44h494v-44h-494z" />
  422. <glyph unicode="&#x2014;" horiz-adv-x="857" d="M30 262v44h797v-44h-797z" />
  423. <glyph unicode="&#x2018;" horiz-adv-x="263" d="M222 736q-56 -82 -71 -150q26 -4 43.5 -24.5t17.5 -48.5q0 -34 -24.5 -59.5t-58.5 -25.5q-33 0 -55 22.5t-22 64.5q0 61 41.5 132t90.5 122z" />
  424. <glyph unicode="&#x2019;" horiz-adv-x="263" d="M41 451q56 82 71 150q-26 4 -43.5 24.5t-17.5 48.5q0 34 24.5 59.5t58.5 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -61 -41 -132t-90 -122z" />
  425. <glyph unicode="&#x201a;" horiz-adv-x="263" d="M41 -159q56 82 71 150q-27 4 -44 24t-17 49q0 34 24.5 59.5t58.5 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -61 -41.5 -133t-89.5 -121z" />
  426. <glyph unicode="&#x201c;" horiz-adv-x="488" d="M222 736q-56 -82 -71 -150q26 -4 43.5 -24.5t17.5 -48.5q0 -34 -24.5 -59.5t-58.5 -25.5q-33 0 -55 22.5t-22 64.5q0 61 41.5 132t90.5 122zM447 736q-57 -87 -70 -150q26 -4 43 -24.5t17 -48.5q0 -34 -24 -59.5t-59 -25.5q-33 0 -54.5 22.5t-21.5 64.5q0 60 41 131 t90 123z" />
  427. <glyph unicode="&#x201d;" horiz-adv-x="488" d="M267 451q57 86 70 151q-26 4 -43 24t-17 48q0 35 24 60t59 25q33 0 54.5 -22.5t21.5 -63.5q0 -61 -41.5 -132.5t-89.5 -121.5zM41 451q56 81 71 151q-27 4 -44 24t-17 48q0 35 24.5 60t58.5 25q33 0 54.5 -22.5t21.5 -63.5q0 -61 -41.5 -133t-89.5 -121z" />
  428. <glyph unicode="&#x201e;" horiz-adv-x="485" d="M41 -159q56 82 71 150q-27 4 -44 24t-17 49q0 34 24.5 59.5t58.5 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -61 -41.5 -133t-89.5 -121zM263 -159q56 82 71 150q-27 4 -44 24t-17 49q0 34 24 59.5t59 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -61 -41.5 -133t-89.5 -121z" />
  429. <glyph unicode="&#x2020;" horiz-adv-x="505" d="M285 0l-64 -1l-7 11l-30 147l38 297l-164 -16l-3 3q-6 44 -6 82l12 7l159 -15l-29 174l3 4q53 5 112 5l8 -8l-30 -176l163 16l3 -3q6 -44 6 -82l-11 -7l-162 16l38 -297l-30 -147z" />
  430. <glyph unicode="&#x2021;" horiz-adv-x="505" d="M194 -7l-8 7l36 180l-161 -26l-12 8q0 50 6 96l3 3l165 -26q-17 83 -17 112q0 18 17 110l-165 -26l-3 3q-6 46 -6 96l12 8l162 -26l-37 177l3 4q58 5 122 5l7 -8l-36 -178l165 26l3 -3q6 -46 6 -96l-11 -8l-163 25q17 -90 17 -109q0 -17 -17 -112l163 26l11 -8 q0 -50 -6 -96l-3 -3l-165 26l36 -178l-3 -4q-55 -5 -121 -5z" />
  431. <glyph unicode="&#x2022;" horiz-adv-x="473" d="M232 116q-57 0 -93.5 36t-38.5 88q-2 60 42 105t107 45q53 0 88 -34.5t36 -89.5q2 -61 -38 -105.5t-103 -44.5z" />
  432. <glyph unicode="&#x2026;" horiz-adv-x="733" d="M212 71q0 -34 -23.5 -57.5t-57.5 -23.5q-33 0 -55.5 22t-22.5 55q0 34 24.5 58t59.5 24q32 0 53.5 -22t21.5 -56zM446 71q0 -34 -23.5 -57.5t-57.5 -23.5t-56 22t-22 55q0 34 24.5 58t59.5 24q32 0 53.5 -22t21.5 -56zM679 71q0 -34 -23.5 -57.5t-57.5 -23.5t-56 22 t-22 55q0 34 24.5 58t59.5 24q32 0 53.5 -22t21.5 -56z" />
  433. <glyph unicode="&#x2030;" horiz-adv-x="1437" d="M431 499q0 -97 -56.5 -151t-138.5 -54t-133.5 52t-51.5 144q0 97 55.5 152.5t140.5 55.5q83 0 133.5 -54t50.5 -145zM737 698l-424 -708h-55l423 708h56zM158 499q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139zM912 127q0 -97 -56.5 -151t-138.5 -54 t-133.5 52t-51.5 144q0 97 55.5 152.5t140.5 55.5q83 0 133.5 -54t50.5 -145zM1387 127q0 -97 -56.5 -151t-139.5 -54q-82 0 -133.5 52t-51.5 144q0 97 56 152.5t140 55.5q83 0 134 -54t51 -145zM639 127q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139z M1114 127q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139z" />
  434. <glyph unicode="&#x2039;" horiz-adv-x="289" d="M46 276v34q78 66 171 188l32 -14q-30 -95 -100 -191q70 -98 100 -192l-32 -14q-92 121 -171 189z" />
  435. <glyph unicode="&#x203a;" horiz-adv-x="289" d="M243 276q-81 -69 -171 -189l-33 14q33 99 101 192q-68 91 -101 191l33 14q91 -121 171 -188v-34z" />
  436. <glyph unicode="&#x2044;" horiz-adv-x="604" d="M542 700l-425 -710h-55l424 710h56z" />
  437. <glyph unicode="&#x2070;" horiz-adv-x="460" d="M412 557q0 -101 -53.5 -157t-132.5 -56q-78 0 -127.5 55t-49.5 151q0 99 53 157.5t133 58.5q79 0 128 -57t49 -152zM148 557q0 -158 83 -158q81 0 81 154q0 157 -82 157t-82 -153z" />
  438. <glyph unicode="&#x2074;" horiz-adv-x="419" d="M37 505l166 255l106 6l11 -9v-244q20 1 58 5l-7 -71h-51v-95h-92v95h-180zM116 513v-2q8 0 43.5 0.5t68.5 0.5v77q0 76 4 110h-1z" />
  439. <glyph unicode="&#x2075;" horiz-adv-x="395" d="M58 358l9 63q42 -15 94 -15q39 0 63.5 18.5t24.5 51.5q0 32 -22 48t-57 16q-46 0 -85 -16l-14 8v226h158q64 0 104 6l-6 -76h-178v-92q25 6 59 6q61 0 100.5 -31.5t39.5 -88.5q0 -65 -51.5 -101.5t-132.5 -36.5q-58 0 -106 14z" />
  440. <glyph unicode="&#x2076;" horiz-adv-x="414" d="M214 344q-73 0 -119 46.5t-46 133.5q0 107 64.5 174.5t171.5 67.5q37 0 55 -7l-8 -65q-28 7 -47 7q-50 0 -89 -33.5t-47 -96.5h2q35 22 89 22q59 0 94.5 -31t35.5 -85q0 -62 -45 -97.5t-111 -35.5zM210 538q-43 0 -62 -24q1 -60 15 -87t46 -27q30 0 46 19t16 51 q0 31 -16 49.5t-45 18.5z" />
  441. <glyph unicode="&#x2077;" horiz-adv-x="360" d="M34 678l8 80h286l12 -10v-50q-158 -153 -165 -346h-100q6 92 57 183.5t119 150.5v2h-87q-76 0 -130 -10z" />
  442. <glyph unicode="&#x2078;" horiz-adv-x="419" d="M205 344q-73 0 -117 29.5t-44 76.5q0 40 30 68.5t72 40.5v2q-84 43 -84 101q0 45 42.5 74.5t108.5 29.5q68 0 106 -30t38 -70q0 -30 -23 -56.5t-60 -42.5v-2q101 -41 101 -106q0 -48 -46 -81.5t-124 -33.5zM211 714q-25 0 -42.5 -13t-17.5 -35q0 -43 68 -71q49 32 49 71 q0 21 -16.5 34.5t-40.5 13.5zM200 524q-65 -26 -65 -73q0 -25 20.5 -40.5t52.5 -15.5t53 15t22 40q1 24 -20.5 42t-62.5 32z" />
  443. <glyph unicode="&#x2079;" horiz-adv-x="414" d="M44 627q0 63 45 101t112 38q72 0 118 -45.5t46 -132.5q0 -102 -62.5 -173t-170.5 -71q-32 0 -49 5l-2 64q30 -4 47 -4q117 0 137 121q-36 -24 -83 -24q-63 0 -100.5 32t-37.5 89zM143 632q0 -33 17 -52t48 -19q37 0 57 24q-5 120 -64 120q-27 0 -42.5 -20t-15.5 -53z" />
  444. <glyph unicode="&#x207f;" horiz-adv-x="481" d="M172 290h-104v254q0 57 -16 124l97 18q13 -31 18 -56q62 56 134 56q52 0 82 -31t30 -88v-277h-104v257q0 69 -60 69q-39 0 -77 -28v-298z" />
  445. <glyph unicode="&#x2080;" horiz-adv-x="460" d="M412 133q0 -101 -53.5 -157t-132.5 -56q-78 0 -127.5 55t-49.5 151q0 99 53 157.5t133 58.5q79 0 128 -57t49 -152zM148 133q0 -158 83 -158q81 0 81 154q0 157 -82 157t-82 -153z" />
  446. <glyph unicode="&#x2081;" horiz-adv-x="275" d="M105 254h-1l-66 -9l-14 54l165 45l11 -10v-404h-96v242q0 58 1 82z" />
  447. <glyph unicode="&#x2082;" horiz-adv-x="377" d="M49 -70l-11 63q191 129 191 217q0 31 -19 50t-52 19q-53 0 -110 -43l-9 71q62 37 142 37q64 0 105.5 -31.5t41.5 -82.5q0 -60 -58 -120.5t-141 -109.5h93q54 0 105 6l-7 -76h-271z" />
  448. <glyph unicode="&#x2083;" horiz-adv-x="373" d="M45 310q60 32 134 32q58 0 95.5 -25.5t37.5 -65.5q0 -34 -27 -63.5t-73 -41.5q56 -7 88.5 -34t32.5 -70q0 -54 -50.5 -88t-131.5 -34q-63 0 -111 14l9 60q45 -14 98 -14q39 0 63 15.5t24 43.5q0 55 -102 55q-16 0 -52 -4v60q58 7 95.5 28.5t37.5 52.5q0 21 -16 33.5 t-46 12.5q-48 0 -101 -28z" />
  449. <glyph unicode="&#x2084;" horiz-adv-x="419" d="M37 83l166 255l106 6l11 -9v-244q20 1 58 5l-7 -71h-51v-95h-92v95h-180zM116 91v-2q8 0 43.5 0.5t68.5 0.5v77q0 76 4 110h-1z" />
  450. <glyph unicode="&#x2085;" horiz-adv-x="395" d="M58 -66l9 63q42 -15 94 -15q39 0 63.5 18.5t24.5 51.5q0 32 -22 48t-57 16q-46 0 -85 -16l-14 8v226h158q64 0 104 6l-6 -76h-178v-92q26 6 59 6q61 0 100.5 -31.5t39.5 -88.5q0 -65 -51.5 -101.5t-132.5 -36.5q-58 0 -106 14z" />
  451. <glyph unicode="&#x2086;" horiz-adv-x="414" d="M214 -80q-73 0 -119 46.5t-46 133.5q0 107 64.5 174.5t171.5 67.5q37 0 55 -7l-8 -65q-28 7 -47 7q-50 0 -89 -33.5t-47 -96.5h2q35 22 89 22q59 0 94.5 -31t35.5 -85q0 -62 -45 -97.5t-111 -35.5zM210 114q-43 0 -62 -24q1 -60 15 -87t46 -27q30 0 46 19t16 51 q0 31 -16 49.5t-45 18.5z" />
  452. <glyph unicode="&#x2087;" horiz-adv-x="360" d="M34 256l8 80h286l12 -10v-50q-158 -153 -165 -346h-100q6 92 57 183.5t119 150.5v2h-87q-76 0 -130 -10z" />
  453. <glyph unicode="&#x2088;" horiz-adv-x="419" d="M205 -80q-73 0 -117 29.5t-44 76.5q0 40 30 68.5t72 40.5v2q-84 43 -84 101q0 45 42.5 74.5t108.5 29.5q68 0 106 -30t38 -70q0 -30 -23 -56.5t-60 -42.5v-2q101 -41 101 -106q0 -48 -46 -81.5t-124 -33.5zM211 290q-25 0 -42.5 -13t-17.5 -35q0 -43 68 -71q49 32 49 71 q0 21 -16.5 34.5t-40.5 13.5zM200 100q-65 -26 -65 -73q0 -25 20.5 -40.5t52.5 -15.5t53 15t22 40q1 24 -20.5 42t-62.5 32z" />
  454. <glyph unicode="&#x2089;" horiz-adv-x="414" d="M44 203q0 63 45 101t112 38q72 0 118 -45.5t46 -132.5q0 -102 -62.5 -173t-170.5 -71q-32 0 -49 5l-2 64q30 -4 47 -4q117 0 137 121q-36 -24 -83 -24q-63 0 -100.5 32t-37.5 89zM143 208q0 -33 17 -52t48 -19q37 0 57 24q-5 120 -64 120q-27 0 -42.5 -20t-15.5 -53z" />
  455. <glyph unicode="&#x20ac;" horiz-adv-x="582" d="M30 248l4 48h58q-1 12 -1 35q0 18 2 50h-50l4 49h53q23 125 99.5 196.5t188.5 71.5q93 0 156 -42l-24 -111q-68 47 -130 47q-59 0 -100.5 -42.5t-57.5 -119.5h211l-4 -49h-213q-2 -24 -2 -39q0 -16 2 -46h204l-4 -48h-192q16 -73 58 -112.5t105 -39.5q73 0 137 46 l15 -105q-71 -47 -169 -47q-115 0 -189 67.5t-94 190.5h-67z" />
  456. <glyph unicode="&#x2122;" horiz-adv-x="580" d="M503 690l8 -5l24 -225h-55l-9 82q-5 73 -6 94h-2q-7 -48 -21 -95l-22 -81h-62l-22 81q-11 41 -22 96h-1q-4 -69 -7 -96l-9 -81h-46l25 228l75 2l22 -70q12 -48 20 -108h1q12 79 20 108l21 68zM164 460h-57v186q-23 0 -67 -2l3 43h186l4 -43q-46 2 -69 2v-186z" />
  457. <glyph unicode="&#x2202;" horiz-adv-x="668" d="M311 758q142 0 215.5 -107.5t73.5 -271.5q0 -73 -15.5 -138.5t-48 -123.5t-93 -92.5t-142.5 -34.5q-111 0 -174 61t-63 160q0 110 75 180t203 70q65 0 123 -22q-11 105 -59 164t-124 59q-84 0 -149 -56l-43 81q39 30 98 50.5t123 20.5zM196 216q0 -60 30.5 -94.5 t82.5 -34.5q73 0 116 65.5t43 187.5q-50 25 -110 25q-81 0 -121.5 -40t-40.5 -109z" />
  458. <glyph unicode="&#x220f;" horiz-adv-x="755" d="M705 674l-5 -83h-93v-731h-125v731h-211v-731h-125v731h-93l-3 95l641 2z" />
  459. <glyph unicode="&#x2211;" horiz-adv-x="583" d="M47 -46l237 326l-237 325l22 83h474l14 -14l-3 -86l-371 8l219 -300v-33l-218 -300l372 8l-1 -100h-486z" />
  460. <glyph unicode="&#x2212;" d="M519 313h-450v65q170 5 451 5l7 -7z" />
  461. <glyph unicode="&#x221a;" horiz-adv-x="628" d="M605 736l-216 -736h-135l-146 404h-97v94h186l130 -407l167 667l103 -8z" />
  462. <glyph unicode="&#x221e;" horiz-adv-x="842" d="M772 271q0 -80 -48.5 -131.5t-125.5 -51.5q-59 0 -100 29.5t-76 81.5q-75 -111 -184 -111q-75 0 -122 50.5t-47 130.5t49 131.5t125 51.5q101 0 177 -110q75 110 183 110q75 0 122 -50.5t47 -130.5zM591 384q-81 0 -135 -100l1 -2q34 -62 65.5 -94t76.5 -32q44 0 72 31.5 t28 82.5t-30.5 82.5t-77.5 31.5zM143 273q0 -52 30 -84t77 -32q39 0 75.5 28t60.5 71l-1 2q-21 34 -32 50t-30 37.5t-38.5 30t-42.5 8.5q-44 0 -71.5 -30.5t-27.5 -80.5z" />
  463. <glyph unicode="&#x222b;" horiz-adv-x="456" d="M166 -174q31 0 45 17t14 56q0 35 -55 344q-49 269 -49 331q0 91 47.5 137.5t131.5 46.5q65 0 130 -28l-10 -96q-66 40 -120 40q-60 0 -60 -71q0 -27 54 -340q3 -19 11 -60t11 -59t8.5 -50.5t8.5 -50.5t6 -41t4 -40t1 -32q0 -95 -47.5 -141.5t-131.5 -46.5q-65 0 -130 28 l10 96q66 -40 121 -40z" />
  464. <glyph unicode="&#x2248;" d="M428 317q-26 0 -138 30t-125 30q-9 0 -21.5 -14t-35.5 -44l-9 -12l-41 28q17 32 30.5 53t36.5 42t44 21q25 0 137.5 -30t125.5 -30t61 62q4 4 6 7l40 -27q-63 -116 -111 -116zM428 104q-26 0 -138 30.5t-125 30.5q-9 0 -21.5 -14t-35.5 -44l-9 -12l-41 28q13 24 22.5 39 t25 35.5t31.5 31t32 10.5q25 0 137.5 -30t125.5 -30t61 62q4 4 6 7l40 -28q-64 -116 -111 -116z" />
  465. <glyph unicode="&#x2260;" d="M145 123l46 96h-122v65q46 1 155 3l60 125h-215v66q189 3 248 4l57 119l9 2l55 -29l-44 -92q50 1 126 1l7 -7l-8 -64h-158l-60 -124q84 1 219 1l7 -7l-8 -63h-251l-59 -123l-9 -2z" />
  466. <glyph unicode="&#x2264;" d="M178 434l343 -129v-70l-458 175v43l6 9q229 88 451 163v-70zM516 86h-450v65q170 5 451 5l7 -6z" />
  467. <glyph unicode="&#x2265;" d="M75 235v70l344 129l-343 121v70q196 -65 452 -163l5 -9v-43zM522 86h-450v65q170 5 451 5l7 -6z" />
  468. <glyph unicode="&#x25ca;" horiz-adv-x="626" d="M67 323v38l211 329l78 10l220 -340v-37l-216 -323l-77 -10zM317 639l-180 -298l181 -289h4l185 290l-185 297h-5z" />
  469. <glyph unicode="&#x25fc;" horiz-adv-x="510" d="M0 510h510v-510h-510v510z" />
  470. <glyph unicode="&#xfb00;" horiz-adv-x="641" d="M220 0h-125v421l-73 4v46l73 15q-3 40 -3 71q0 86 54.5 133.5t146.5 47.5q73 0 136 -29q52 49 146 49q77 0 130 -31l-26 -95q-53 33 -103 33q-78 0 -78 -92q0 -18 3 -87h128l9 -13l-3 -56l-132 4v-421h-125v421h-158v-421zM215 554q0 -5 3 -68h160q0 10 -1.5 39t-1.5 40 q0 34 8 64q-40 25 -85 25q-83 0 -83 -100z" />
  471. <glyph unicode="&#xfb01;" horiz-adv-x="584" d="M220 0h-125v421l-73 4v46l73 15q-3 45 -3 77q0 93 53.5 144t149.5 51q115 0 188 -61l-58 -77q-65 45 -126 45q-84 0 -84 -99q0 -44 3 -80h148l123 22l14 -14v-494h-125v327q0 47 -3 90l-155 4v-421z" />
  472. <glyph unicode="&#xfb02;" horiz-adv-x="583" d="M220 0h-125v421l-73 4v46l73 15q-3 45 -3 80q0 92 55.5 142t156.5 50q44 0 92 -12l97 12l14 -14v-744h-125v417l-162 4v-421zM215 573q0 -18 3 -87h164v91q0 50 -2 73q-38 15 -76 15q-89 0 -89 -92z" />
  473. <glyph unicode="&#xfb03;" horiz-adv-x="867" d="M220 0h-125v421l-73 4v46l73 15q-3 42 -3 71q0 85 56 133t149 48q76 0 134 -29q54 49 147 49q114 0 189 -61l-59 -77q-63 45 -125 45q-45 0 -65 -24.5t-20 -74.5q0 -44 3 -80h149l123 22l14 -14v-494h-125v327q0 51 -4 90l-155 4v-421h-125v421h-158v-421zM215 554 q0 -5 3 -68h160q0 12 -1.5 40t-1.5 37q0 34 7 59q-38 23 -81 23q-86 0 -86 -91z" />
  474. <glyph unicode="&#xfb04;" horiz-adv-x="866" d="M220 0h-125v421l-73 4v46l73 15q-3 42 -3 71q0 85 56 133t149 48q72 0 135 -29q55 49 155 49q44 0 92 -12l97 12l15 -14v-744h-125v417l-163 4v-421h-125v421h-158v-421zM498 573q0 -18 3 -87h164h1v91q0 27 -2 73q-38 15 -77 15q-89 0 -89 -92zM215 554q0 -5 3 -68h160 q0 9 -1.5 38.5t-1.5 41.5q0 30 6 56q-36 23 -80 23q-86 0 -86 -91z" />
  475. <glyph unicode="&#xfb06;" horiz-adv-x="817" d="M389 480l-9 -96q-74 40 -135 40q-36 0 -57.5 -15t-21.5 -40q0 -24 24.5 -43t59.5 -33.5t70.5 -32.5t60 -49.5t24.5 -74.5q0 -67 -54.5 -106.5t-145.5 -39.5q-98 0 -164 36l9 95q80 -47 158 -47q36 0 56 15t20 38q0 24 -24.5 43t-59.5 33.5t-70 32t-59.5 49t-24.5 74.5 q0 67 55 108t145 41q37 0 69 -7q-18 41 -18 83q0 73 50.5 118.5t131.5 45.5q77 0 125 -43.5t48 -119.5q0 -39 -13 -87h136l10 -14l-6 -54l-140 3v-258q0 -95 70 -95q38 0 78 24l10 -78q-57 -36 -128 -36q-80 0 -117.5 51t-37.5 130v264l-63 1v47l66 15q12 36 12 74 q0 45 -20 71t-57 26q-38 0 -62.5 -26.5t-24.5 -71.5q0 -46 24 -91z" />
  476. <glyph horiz-adv-x="293" d="M286 864l-6 -21q-114 -59 -268 -69l-10 32q123 61 207 125zM40 -208l-40 56q80 89 80 254v415q0 79 -12 166l127 15l13 -13v-583q0 -120 -36.5 -188.5t-131.5 -121.5z" />
  477. <glyph horiz-adv-x="430" d="M361 36q0 -62 18 -106l-88 -8q-13 23 -21 54h-3q-17 -24 -50 -39t-72 -15q-49 0 -78.5 25t-29.5 69q0 63 61 95t161 36v35q0 68 -75 68q-65 0 -125 -33l-5 79q76 30 156 30q75 0 114.5 -33.5t39.5 -96.5q0 -28 -1.5 -82.5t-1.5 -77.5zM140 33q0 -22 14 -36.5t39 -14.5 q37 0 66 26v104q-52 -4 -85.5 -24.5t-33.5 -54.5z" />
  478. <glyph horiz-adv-x="476" d="M429 127q0 -98 -49 -151.5t-135 -53.5q-52 0 -94 14l-87 -14v457q0 57 -10 130l102 12l12 -11v-220q44 36 103 36q73 0 115.5 -53.5t42.5 -145.5zM230 261q-35 0 -62 -19v-255q26 -9 57 -9q97 0 97 143q0 140 -92 140z" />
  479. <glyph horiz-adv-x="408" d="M374 297l-23 -79q-48 32 -97 32q-46 0 -73 -31.5t-27 -88.5q0 -63 30.5 -98.5t86.5 -35.5q44 0 91 25l7 -67q-51 -32 -125 -32q-89 1 -143 54t-54 145q0 93 56.5 149t147.5 56q73 0 123 -29z" />
  480. <glyph horiz-adv-x="482" d="M299 509l102 12l12 -11v-475q0 -58 19 -105l-90 -8q-10 17 -23 53h-1q-41 -53 -113 -53q-71 0 -114.5 50.5t-43.5 138.5q0 102 58.5 158.5t151.5 56.5q25 0 52 -5v58q0 66 -10 130zM154 125q0 -65 25.5 -104t68.5 -39q33 0 61 24v261q-19 4 -40 4q-54 0 -84.5 -37.5 t-30.5 -108.5z" />
  481. <glyph horiz-adv-x="439" d="M397 126l-12 -12h-230q13 -118 122 -118q56 0 102 27l7 -67q-53 -34 -136 -34q-93 0 -148 52t-55 145q0 94 55 150.5t138 56.5q73 0 115.5 -43.5t42.5 -114.5q0 -28 -1 -42zM235 266q-34 0 -56.5 -31t-24.5 -84l141 5q1 8 1 28q0 36 -15.5 59t-45.5 23z" />
  482. <glyph horiz-adv-x="317" d="M185 -70h-104v326l-59 4v37l59 12q-2 46 -2 61q0 72 43.5 111.5t121.5 39.5q64 0 107 -24l-22 -77q-41 25 -84 25q-64 0 -64 -69q0 -16 3 -67h104l8 -11l-3 -45l-108 3v-326z" />
  483. <glyph horiz-adv-x="430" d="M90 -22q0 42 43 70q-43 15 -68.5 48.5t-25.5 78.5q0 64 46 107.5t122 43.5q61 0 97 -26q14 23 40.5 35.5t55.5 12.5l13 -9l-2 -66h-85q42 -34 42 -91q0 -63 -45 -104t-119 -41q-11 0 -29 2q-6 -11 -6 -23q0 -16 10 -23t32 -9l73 -5q58 -3 93.5 -28t35.5 -73 q0 -61 -59 -103t-160 -42q-82 0 -131.5 27t-49.5 70q0 26 18.5 45.5t43.5 26.5l38 -16q-11 -15 -11 -27q0 -31 29 -53t77 -22q44 0 72 19t28 49q0 49 -72 55l-66 6q-80 8 -80 65zM269 181q0 93 -64 93q-66 0 -66 -93q0 -92 66 -92q64 0 64 92z" />
  484. <glyph horiz-adv-x="477" d="M168 -70h-104v449q0 64 -10 130l102 12l12 -11v-236q60 52 129 52q52 0 82 -31t30 -88v-277h-104v257q0 69 -60 69q-39 0 -77 -28v-298z" />
  485. <glyph horiz-adv-x="239" d="M182 470q0 -29 -19.5 -49.5t-49.5 -20.5q-26 0 -42.5 16.5t-16.5 40.5q0 28 21 48.5t51 20.5q25 0 40.5 -15.5t15.5 -40.5zM66 -70v254q0 72 -10 130l103 12l11 -11v-385h-104z" />
  486. <glyph horiz-adv-x="240" d="M182 470q0 -29 -19.5 -49.5t-49.5 -20.5q-27 0 -43 16.5t-16 40.5q0 28 21 48.5t50 20.5q26 0 41.5 -15.5t15.5 -40.5zM69 -268l-41 37q40 80 40 176v239q0 64 -10 130l102 12l12 -11v-370q0 -76 -22.5 -123t-80.5 -90z" />
  487. <glyph horiz-adv-x="446" d="M64 379q0 66 -10 130l102 12l12 -11v-360h44q29 43 106 176l84 -8l7 -12l-109 -151q29 -53 134 -225l-118 -8q-54 88 -100 173h-48v-165h-104v449z" />
  488. <glyph horiz-adv-x="236" d="M167 -70h-104v449q0 66 -10 130l103 12l11 -11v-580z" />
  489. <glyph horiz-adv-x="715" d="M172 -70h-104v254q0 57 -16 124l97 18q13 -31 18 -56q61 56 131 56q76 0 101 -61q63 61 136 61q53 0 82.5 -31t29.5 -86v-279h-105v260q0 66 -59 66q-35 0 -75 -28q1 -6 1 -19v-279h-104v260q0 66 -59 66q-36 0 -74 -28v-298z" />
  490. <glyph horiz-adv-x="481" d="M172 -70h-104v254q0 57 -16 124l97 18q13 -31 18 -56q62 56 134 56q52 0 82 -31t30 -88v-277h-104v257q0 69 -60 69q-39 0 -77 -28v-298z" />
  491. <glyph horiz-adv-x="473" d="M427 127q0 -97 -56.5 -151t-139.5 -54q-82 0 -133 52t-51 144q0 97 55.5 152.5t139.5 55.5q83 0 134 -54t51 -145zM154 127q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139z" />
  492. <glyph horiz-adv-x="481" d="M68 -255v439q0 54 -16 124l97 18q8 -17 15 -42q47 42 113 42q70 0 113.5 -53.5t43.5 -143.5q0 -96 -48.5 -151.5t-136.5 -55.5q-41 0 -77 11v-58q0 -70 9 -129l-101 -13zM234 261q-37 0 -62 -20v-252q25 -11 56 -11q98 0 98 145q0 138 -92 138z" />
  493. <glyph horiz-adv-x="482" d="M309 -255v217q-43 -40 -104 -40q-71 0 -114.5 53t-43.5 142q0 98 56 153.5t148 55.5q44 0 82 -11l80 11v-450q0 -71 9 -130l-102 -13zM154 125q0 -66 24.5 -104.5t68.5 -38.5q35 0 62 22v264q-19 3 -34 3q-59 0 -90 -38t-31 -108z" />
  494. <glyph horiz-adv-x="336" d="M172 -70h-104v254q0 57 -16 124l97 18q19 -47 22 -82q51 82 110 82q23 0 40 -11l-11 -96q-33 7 -46 7q-52 0 -92 -31v-265z" />
  495. <glyph horiz-adv-x="374" d="M323 305l-7 -78q-59 31 -111 31q-30 0 -47 -11t-17 -30q0 -20 20 -34.5t49 -26t58 -25t49 -38t20 -57.5q0 -52 -44.5 -83t-120.5 -31q-82 0 -135 29l8 76q66 -37 130 -37q30 0 46 11t16 29q0 23 -30.5 41.5t-67.5 31t-67.5 40.5t-30.5 67q0 52 45.5 84t120.5 32 q63 0 116 -21z" />
  496. <glyph horiz-adv-x="327" d="M292 264l-114 2v-198q0 -72 56 -72q32 0 65 18l8 -63q-48 -29 -106 -29q-127 0 -127 143v203l-57 1v37l59 12l26 98l65 4l13 -12l-2 -90h112l7 -11z" />
  497. <glyph horiz-adv-x="475" d="M66 183q0 59 -8 131l101 12l11 -11v-252q0 -64 58 -64q36 0 73 26v293l104 8v-290q0 -51 14 -105l-86 -9q-14 25 -22 58h-4q-58 -58 -129 -58q-52 0 -82 29.5t-30 79.5v152z" />
  498. <glyph horiz-adv-x="409" d="M392 309l-131 -381h-113l-132 390l109 8l55 -197q27 -79 34 -129h1q8 47 36 129l55 197l80 -6z" />
  499. <glyph horiz-adv-x="653" d="M129 -72l-113 390l107 8l46 -190q23 -72 30 -121h2q11 58 30 119l43 188h124l44 -185q30 -113 31 -122h1q10 53 30 120l46 191l81 -6l7 -11l-112 -381h-124l-45 175q-25 90 -31 132h-1q-4 -37 -29 -132l-46 -175h-121z" />
  500. <glyph horiz-adv-x="407" d="M277 -70l-87 147l-82 -147h-83l-6 11l118 183l-118 192l106 10l90 -159l84 159l83 -6l5 -11l-119 -184l119 -195h-110z" />
  501. <glyph horiz-adv-x="405" d="M392 309l-122 -349q-16 -49 -34 -84.5t-45 -69.5t-66.5 -52.5t-89.5 -20.5l-16 90q122 5 169 111l-44 1l-128 383l109 8l55 -197q27 -79 34 -129h1q8 47 36 129l55 197l80 -6z" />
  502. <glyph horiz-adv-x="375" d="M28 235l6 83h297l11 -64l-202 -244l82 1q78 0 128 6l-7 -87h-306l-12 65l208 244z" />
  503. <glyph horiz-adv-x="430" d="M361 396q0 -62 18 -106l-88 -8q-13 23 -21 54h-3q-17 -24 -50 -39t-72 -15q-49 0 -78.5 25t-29.5 69q0 63 61 95t161 36v35q0 68 -75 68q-65 0 -125 -33l-5 79q76 30 156 30q75 0 114.5 -33.5t39.5 -96.5q0 -28 -1.5 -83t-1.5 -77zM140 393q0 -22 14 -36.5t39 -14.5 q37 0 66 26v104q-52 -4 -85.5 -24.5t-33.5 -54.5z" />
  504. <glyph horiz-adv-x="476" d="M429 487q0 -98 -49 -151.5t-135 -53.5q-52 0 -94 14l-87 -14v457q0 57 -10 130l102 12l12 -11v-220q44 36 103 36q73 0 115.5 -53.5t42.5 -145.5zM230 621q-35 0 -62 -19v-255q26 -9 57 -9q97 0 97 143q0 140 -92 140z" />
  505. <glyph horiz-adv-x="408" d="M374 657l-23 -79q-48 32 -97 32q-46 0 -73 -31.5t-27 -88.5q0 -63 30.5 -98.5t86.5 -35.5q44 0 91 25l7 -67q-51 -32 -125 -32q-89 1 -143 54t-54 145q0 93 56.5 149t147.5 56q73 0 123 -29z" />
  506. <glyph horiz-adv-x="482" d="M299 869l102 12l12 -11v-475q0 -58 19 -105l-90 -8q-10 17 -23 53h-1q-41 -53 -113 -53q-71 0 -114.5 50.5t-43.5 138.5q0 102 58.5 158.5t151.5 56.5q25 0 52 -5v58q0 66 -10 130zM154 485q0 -65 25.5 -104t68.5 -39q33 0 61 24v261q-19 4 -40 4q-54 0 -84.5 -37.5 t-30.5 -108.5z" />
  507. <glyph horiz-adv-x="439" d="M397 486l-12 -12h-230q13 -118 122 -118q56 0 102 27l7 -67q-53 -34 -136 -34q-93 0 -148 52t-55 145q0 94 55 150.5t138 56.5q73 0 115.5 -43.5t42.5 -114.5q0 -28 -1 -42zM235 626q-34 0 -56.5 -31t-24.5 -84l141 5q1 8 1 28q0 36 -15.5 59t-45.5 23z" />
  508. <glyph horiz-adv-x="317" d="M185 290h-104v326l-59 4v37l59 12q-2 46 -2 61q0 72 43.5 111.5t121.5 39.5q64 0 107 -24l-22 -77q-41 25 -84 25q-64 0 -64 -69q0 -16 3 -67h104l8 -11l-3 -45l-108 3v-326z" />
  509. <glyph horiz-adv-x="430" d="M90 338q0 42 43 70q-43 15 -68.5 48.5t-25.5 78.5q0 64 46 107.5t122 43.5q61 0 97 -26q14 23 40.5 35.5t55.5 12.5l13 -9l-2 -66h-85q42 -34 42 -91q0 -63 -45 -104t-119 -41q-11 0 -29 2q-6 -11 -6 -23q0 -16 10 -23t32 -9l73 -5q58 -3 93.5 -28t35.5 -73 q0 -61 -59 -103t-160 -42q-82 0 -131.5 27t-49.5 70q0 26 18.5 45.5t43.5 26.5l38 -16q-11 -15 -11 -27q0 -31 29 -53t77 -22q44 0 72 19t28 49q0 49 -72 55l-66 6q-80 8 -80 65zM269 541q0 93 -64 93q-66 0 -66 -93q0 -92 66 -92q64 0 64 92z" />
  510. <glyph horiz-adv-x="477" d="M168 290h-104v449q0 64 -10 130l102 12l12 -11v-236q60 52 129 52q52 0 82 -31t30 -88v-277h-104v257q0 69 -60 69q-39 0 -77 -28v-298z" />
  511. <glyph horiz-adv-x="239" d="M182 830q0 -29 -19.5 -49.5t-49.5 -20.5q-26 0 -42.5 16.5t-16.5 40.5q0 28 21 48.5t51 20.5q25 0 40.5 -15.5t15.5 -40.5zM66 290v254q0 72 -10 130l103 12l11 -11v-385h-104z" />
  512. <glyph horiz-adv-x="240" d="M182 830q0 -29 -19.5 -49.5t-49.5 -20.5q-27 0 -43 16.5t-16 40.5q0 28 21 48.5t50 20.5q26 0 41.5 -15.5t15.5 -40.5zM69 92l-41 37q40 80 40 176v239q0 64 -10 130l102 12l12 -11v-370q0 -76 -22.5 -123t-80.5 -90z" />
  513. <glyph horiz-adv-x="446" d="M64 739q0 66 -10 130l102 12l12 -11v-360h44q29 43 106 176l84 -8l7 -12l-109 -151q29 -53 134 -225l-118 -8q-54 88 -100 173h-48v-165h-104v449z" />
  514. <glyph horiz-adv-x="236" d="M167 290h-104v449q0 66 -10 130l103 12l11 -11v-580z" />
  515. <glyph horiz-adv-x="715" d="M172 290h-104v254q0 57 -16 124l97 18q13 -31 18 -56q61 56 131 56q76 0 101 -61q63 61 136 61q53 0 82.5 -31t29.5 -86v-279h-105v260q0 66 -59 66q-35 0 -75 -28q1 -6 1 -19v-279h-104v260q0 66 -59 66q-36 0 -74 -28v-298z" />
  516. <glyph horiz-adv-x="473" d="M427 487q0 -97 -56.5 -151t-139.5 -54q-82 0 -133 52t-51 144q0 97 55.5 152.5t139.5 55.5q83 0 134 -54t51 -145zM154 487q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139z" />
  517. <glyph horiz-adv-x="481" d="M68 105v439q0 54 -16 124l97 18q8 -17 15 -42q47 42 113 42q70 0 113.5 -53.5t43.5 -143.5q0 -96 -48.5 -151.5t-136.5 -55.5q-41 0 -77 11v-58q0 -70 9 -129l-101 -13zM234 621q-37 0 -62 -20v-252q25 -11 56 -11q98 0 98 145q0 138 -92 138z" />
  518. <glyph horiz-adv-x="482" d="M309 105v217q-43 -40 -104 -40q-71 0 -114.5 53t-43.5 142q0 98 56 153.5t148 55.5q44 0 82 -11l80 11v-450q0 -71 9 -130l-102 -13zM154 485q0 -66 24.5 -104.5t68.5 -38.5q35 0 62 22v264q-19 3 -34 3q-59 0 -90 -38t-31 -108z" />
  519. <glyph horiz-adv-x="336" d="M172 290h-104v254q0 57 -16 124l97 18q19 -47 22 -82q51 82 110 82q23 0 40 -11l-11 -96q-33 7 -46 7q-52 0 -92 -31v-265z" />
  520. <glyph horiz-adv-x="374" d="M323 665l-7 -78q-59 31 -111 31q-30 0 -47 -11t-17 -30q0 -20 20 -34.5t49 -26t58 -25t49 -38t20 -57.5q0 -52 -44.5 -83t-120.5 -31q-82 0 -135 29l8 76q66 -37 130 -37q30 0 46 11t16 29q0 23 -30.5 41.5t-67.5 31t-67.5 40.5t-30.5 67q0 52 45.5 84t120.5 32 q63 0 116 -21z" />
  521. <glyph horiz-adv-x="327" d="M292 624l-114 2v-198q0 -72 56 -72q32 0 65 18l8 -63q-48 -29 -106 -29q-127 0 -127 143v203l-57 1v37l59 12l26 98l65 4l13 -12l-2 -90h112l7 -11z" />
  522. <glyph horiz-adv-x="475" d="M66 543q0 59 -8 131l101 12l11 -11v-252q0 -64 58 -64q36 0 73 26v293l104 8v-290q0 -51 14 -105l-86 -9q-14 25 -22 58h-4q-58 -58 -129 -58q-52 0 -82 29.5t-30 79.5v152z" />
  523. <glyph horiz-adv-x="409" d="M392 669l-131 -381h-113l-132 390l109 8l55 -197q27 -79 34 -129h1q8 47 36 129l55 197l80 -6z" />
  524. <glyph horiz-adv-x="653" d="M129 288l-113 390l107 8l46 -190q23 -72 30 -121h2q11 58 30 119l43 188h124l44 -185q30 -113 31 -122h1q10 53 30 120l46 191l81 -6l7 -11l-112 -381h-124l-45 175q-25 90 -31 132h-1q-4 -37 -29 -132l-46 -175h-121z" />
  525. <glyph horiz-adv-x="407" d="M277 290l-87 147l-82 -147h-83l-6 11l118 183l-118 192l106 10l90 -159l84 159l83 -6l5 -11l-119 -184l119 -195h-110z" />
  526. <glyph horiz-adv-x="405" d="M392 669l-122 -349q-16 -49 -34 -84.5t-45 -69.5t-66.5 -52.5t-89.5 -20.5l-16 90q122 5 169 111l-44 1l-128 383l109 8l55 -197q27 -79 34 -129h1q8 47 36 129l55 197l80 -6z" />
  527. <glyph horiz-adv-x="375" d="M28 595l6 83h297l11 -64l-202 -244l82 1q78 0 128 6l-7 -87h-306l-12 65l208 244z" />
  528. <glyph horiz-adv-x="283" d="M234 754l7 -21q-59 -91 -159 -163l-46 11q59 103 85 184zM55 -258l-47 46q70 81 70 216v323q0 86 -11 166l122 15l14 -14v-484q0 -101 -33.5 -162t-114.5 -106z" />
  529. <glyph horiz-adv-x="1057" d="M684 0h-125v577q0 27 -2 75q-16 4 -34 4q-53 0 -85.5 -24.5t-32.5 -65.5q0 -52 44 -95l-28 -97q-59 41 -118 41q-56 0 -89.5 -42t-33.5 -117q0 -82 37.5 -129t104.5 -47q51 0 112 34l8 -83q-62 -41 -151 -41q-109 1 -174.5 69t-65.5 185q0 120 69 192t179 72q26 0 50 -3 q-29 43 -29 91q0 70 65.5 116t177.5 46q54 0 121 -14v-303q75 67 157 67q64 0 100.5 -40t36.5 -113v-355h-125v331q0 90 -74 90q-46 0 -95 -37v-384z" />
  530. <glyph horiz-adv-x="864" d="M564 498q12 36 12 74q0 45 -20 71t-56 26q-39 0 -63.5 -26t-24.5 -70q0 -53 37 -102l-28 -97q-59 41 -116 41q-58 0 -91.5 -42t-33.5 -119q0 -81 37.5 -127.5t103.5 -46.5q52 0 113 34l8 -83q-62 -41 -148 -41q-111 0 -177 68t-66 186q0 121 69 192.5t182 71.5 q28 0 60 -5q-18 39 -18 81q0 73 50.5 118.5t131.5 45.5q77 0 125 -43.5t48 -119.5q0 -39 -13 -87h136l10 -14l-6 -54l-140 3v-258q0 -95 70 -95q38 0 78 24l10 -78q-57 -36 -128 -36q-80 0 -117.5 51t-37.5 130v264l-63 1v47z" />
  531. <glyph horiz-adv-x="1012" d="M389 480l-9 -96q-74 40 -135 40q-36 0 -57.5 -15t-21.5 -40q0 -24 24.5 -43t59.5 -33.5t70.5 -32.5t60 -49.5t24.5 -74.5q0 -67 -54.5 -106.5t-145.5 -39.5q-98 0 -164 36l9 95q80 -47 158 -47q36 0 56 15t20 38q0 24 -24.5 43t-59.5 33.5t-70 32t-59.5 49t-24.5 74.5 q0 67 55 108t145 41q25 0 57 -5q-29 46 -29 92q0 71 65.5 117t178.5 46q53 0 120 -14v-303q75 67 158 67q64 0 100 -40t36 -113v-355h-125v331q0 90 -74 90q-46 0 -95 -37v-384h-125v577q0 51 -2 75q-15 4 -34 4q-52 0 -85 -24.5t-33 -66.5q0 -45 30 -85z" />
  532. <glyph horiz-adv-x="547" d="M131 0h-118l152 456q15 44 26 84l146 7l19 -17l178 -530h-125l-39 117h-200zM219 261l-20 -58h142l-19 57q-38 123 -50 180h-3q-19 -81 -50 -179z" />
  533. <glyph horiz-adv-x="547" d="M369 795l8 -22q-61 -93 -159 -162l-46 11q61 108 85 184zM131 0h-118l152 456q15 44 26 84l146 7l19 -17l178 -530h-125l-39 117h-200zM219 261l-20 -58h142l-19 57q-38 123 -50 180h-3q-19 -81 -50 -179z" />
  534. <glyph horiz-adv-x="547" d="M364 790l51 5q-7 -76 -46 -122t-101 -46q-56 0 -94 42.5t-44 114.5l51 7q9 -37 33.5 -58.5t59.5 -21.5q33 0 57.5 22t32.5 57zM131 0h-118l152 456q15 44 26 84l146 7l19 -17l178 -530h-125l-39 117h-200zM219 261l-20 -58h142l-19 57q-38 123 -50 180h-3 q-19 -81 -50 -179z" />
  535. <glyph horiz-adv-x="547" d="M394 811l39 -29q-53 -69 -109 -160l-88 -8q-45 78 -113 168l39 29q47 -34 118 -105q73 73 114 105zM131 0h-118l152 456q15 44 26 84l146 7l19 -17l178 -530h-125l-39 117h-200zM219 261l-20 -58h142l-19 57q-38 123 -50 180h-3q-19 -81 -50 -179z" />
  536. <glyph horiz-adv-x="547" d="M162 603l-39 29q53 69 109 160l88 8q49 -83 113 -168l-39 -29q-47 34 -118 105q-73 -73 -114 -105zM131 0h-118l152 456q15 44 26 84l146 7l19 -17l178 -530h-125l-39 117h-200zM219 261l-20 -58h142l-19 57q-38 123 -50 180h-3q-19 -81 -50 -179z" />
  537. <glyph horiz-adv-x="547" d="M236 713q0 -34 -22 -57.5t-55 -23.5q-29 0 -47.5 19.5t-18.5 47.5q0 32 23.5 56t56.5 24q28 0 45.5 -18t17.5 -48zM455 713q0 -34 -22 -57.5t-55 -23.5q-29 0 -47.5 19.5t-18.5 47.5q0 32 23.5 56t55.5 24q29 0 46.5 -18t17.5 -48zM131 0h-118l152 456q15 44 26 84l146 7 l19 -17l178 -530h-125l-39 117h-200zM219 261l-20 -58h142l-19 57q-38 123 -50 180h-3q-19 -81 -50 -179z" />
  538. <glyph horiz-adv-x="547" d="M131 0h-118l152 456q15 44 26 84l146 7l19 -17l178 -530h-125l-39 117h-200zM219 261l-20 -58h142l-19 57q-38 123 -50 180h-3q-19 -81 -50 -179zM352 -159q0 -35 -24 -60.5t-60 -25.5q-32 0 -52 20.5t-20 51.5q0 34 26 59.5t61 25.5q31 0 50 -19.5t19 -51.5z" />
  539. <glyph horiz-adv-x="547" d="M330 612q-98 70 -158 162l7 22l113 11q25 -79 85 -184zM131 0h-118l152 456q15 44 26 84l146 7l19 -17l178 -530h-125l-39 117h-200zM219 261l-20 -58h142l-19 57q-38 123 -50 180h-3q-19 -81 -50 -179z" />
  540. <glyph horiz-adv-x="547" d="M132 669v72h285v-72h-285zM131 0h-118l152 456q15 44 26 84l146 7l19 -17l178 -530h-125l-39 117h-200zM219 261l-20 -58h142l-19 57q-38 123 -50 180h-3q-19 -81 -50 -179z" />
  541. <glyph horiz-adv-x="547" d="M131 0h-118l152 456q15 44 26 84l146 7l19 -17l178 -530q-113 -59 -113 -123q0 -46 48 -46q25 0 54 13l19 -45q-53 -44 -117 -44q-48 0 -78 25.5t-30 68.5q0 42 34 81.5t96 69.5h-38l-39 117h-200zM219 261l-20 -58h142l-19 57q-38 123 -50 180h-3q-19 -81 -50 -179z" />
  542. <glyph horiz-adv-x="547" d="M392 716q0 -44 -33.5 -75t-81.5 -31q-43 0 -71.5 25.5t-28.5 63.5q0 43 35 74t83 31q43 0 70 -25t27 -63zM233 703q0 -21 13.5 -34.5t35.5 -13.5t38 16.5t16 39.5q0 22 -12.5 35.5t-33.5 13.5q-23 0 -40 -17t-17 -40zM131 0h-118l152 456q15 44 26 84l146 7l19 -17 l178 -530h-125l-39 117h-200zM219 261l-20 -58h142l-19 57q-38 123 -50 180h-3q-19 -81 -50 -179z" />
  543. <glyph horiz-adv-x="547" d="M380 1060l7 -21q-61 -94 -158 -163l-47 12q58 101 85 183zM392 716q0 -44 -33.5 -75t-81.5 -31q-43 0 -71.5 25.5t-28.5 63.5q0 43 35 74t83 31q43 0 70 -25t27 -63zM233 703q0 -21 13.5 -34.5t35.5 -13.5t38 16.5t16 39.5q0 22 -12.5 35.5t-33.5 13.5q-23 0 -40 -17 t-17 -40zM131 0h-118l152 456q15 44 26 84l146 7l19 -17l178 -530h-125l-39 117h-200zM219 261l-20 -58h142l-19 57q-38 123 -50 180h-3q-19 -81 -50 -179z" />
  544. <glyph horiz-adv-x="547" d="M202 782q32 0 79.5 -28.5t68.5 -28.5q18 0 30.5 12t25.5 37l36 -6q-3 -56 -27.5 -98t-69.5 -42q-30 0 -81 28.5t-70 28.5q-30 0 -56 -48l-35 5q3 57 27 98.5t72 41.5zM131 0h-118l152 456q15 44 26 84l146 7l19 -17l178 -530h-125l-39 117h-200zM219 261l-20 -58h142 l-19 57q-38 123 -50 180h-3q-19 -81 -50 -179z" />
  545. <glyph horiz-adv-x="701" d="M131 0h-118l181 456q18 46 26 84h394l14 -14l-2 -79l-214 5l20 -146l181 3l-3 -85l-167 4l19 -141l211 6v-93h-324q-2 19 -5.5 58.5t-5.5 58.5h-159q-8 -20 -25.5 -62t-22.5 -55zM298 440q-24 -86 -84 -237h116q-15 160 -18 237h-14z" />
  546. <glyph horiz-adv-x="701" d="M477 795l7 -22q-62 -95 -158 -162l-46 11q61 108 85 184zM131 0h-118l181 456q18 46 26 84h394l14 -14l-2 -79l-214 5l20 -146l181 3l-3 -85l-167 4l19 -141l211 6v-93h-324q-2 19 -5.5 58.5t-5.5 58.5h-159q-8 -20 -25.5 -62t-22.5 -55zM298 440q-24 -86 -84 -237h116 q-15 160 -18 237h-14z" />
  547. <glyph horiz-adv-x="528" d="M270 0h-207v405q0 88 -7 135h218q90 0 143.5 -40t53.5 -103q0 -80 -92 -116q115 -30 115 -133q0 -67 -62.5 -107.5t-161.5 -40.5zM254 454h-66v-142h65q45 0 69 19t24 51q0 34 -23.5 53t-68.5 19zM260 232h-72v-146h73q50 0 77.5 19.5t27.5 52.5q0 34 -26.5 54t-79.5 20z " />
  548. <glyph horiz-adv-x="495" d="M459 124l14 -97q-66 -35 -163 -35q-126 0 -198.5 72t-72.5 199t78 206t200 79q91 0 152 -33l-24 -103q-64 37 -126 37q-68 0 -109.5 -49.5t-41.5 -132.5q0 -82 42 -129t117 -47q71 0 132 33z" />
  549. <glyph horiz-adv-x="495" d="M380 795l8 -22q-61 -93 -159 -162l-46 11q58 101 85 184zM459 124l14 -97q-66 -35 -163 -35q-126 0 -198.5 72t-72.5 199t78 206t200 79q91 0 152 -33l-24 -103q-64 37 -126 37q-68 0 -109.5 -49.5t-41.5 -132.5q0 -82 42 -129t117 -47q71 0 132 33z" />
  550. <glyph horiz-adv-x="495" d="M405 811l40 -29q-53 -67 -110 -160l-88 -8q-45 78 -113 168l39 29q47 -34 118 -105q73 73 114 105zM459 124l14 -97q-66 -35 -163 -35q-126 0 -198.5 72t-72.5 199t78 206t200 79q91 0 152 -33l-24 -103q-64 37 -126 37q-68 0 -109.5 -49.5t-41.5 -132.5q0 -82 42 -129 t117 -47q71 0 132 33z" />
  551. <glyph horiz-adv-x="495" d="M411 -142q0 -36 -30.5 -60.5t-70 -34t-89.5 -11.5v45q99 13 99 56q0 36 -71 38l-14 22l25 82q-104 14 -162.5 84.5t-58.5 183.5q0 127 78 206t200 79q91 0 152 -33l-24 -103q-64 37 -126 37q-68 0 -109.5 -49.5t-41.5 -132.5q0 -82 42 -129t117 -47q71 0 132 33l14 -97 q-59 -32 -147 -35l-17 -53q102 -14 102 -81z" />
  552. <glyph horiz-adv-x="495" d="M173 603l-39 29q53 69 109 160l88 8q51 -86 114 -168l-40 -29q-47 34 -118 105q-76 -76 -114 -105zM459 124l14 -97q-66 -35 -163 -35q-126 0 -198.5 72t-72.5 199t78 206t200 79q91 0 152 -33l-24 -103q-64 37 -126 37q-68 0 -109.5 -49.5t-41.5 -132.5q0 -82 42 -129 t117 -47q71 0 132 33z" />
  553. <glyph horiz-adv-x="495" d="M363 713q0 -35 -24 -60.5t-60 -25.5q-32 0 -52 20.5t-20 50.5q0 35 26 60.5t61 25.5q31 0 50 -19.5t19 -51.5zM459 124l14 -97q-66 -35 -163 -35q-126 0 -198.5 72t-72.5 199t78 206t200 79q91 0 152 -33l-24 -103q-64 37 -126 37q-68 0 -109.5 -49.5t-41.5 -132.5 q0 -82 42 -129t117 -47q71 0 132 33z" />
  554. <glyph horiz-adv-x="581" d="M542 274q0 -128 -85 -201t-215 -73h-179v405q0 88 -7 135h199q131 0 209 -71.5t78 -194.5zM247 453h-59v-367h63q81 0 121.5 49t40.5 133q0 82 -42 133.5t-124 51.5z" />
  555. <glyph horiz-adv-x="581" d="M542 274q0 -128 -85 -201t-215 -73h-179v233h-61v67h61v105q0 88 -7 135h199q131 0 209 -71.5t78 -194.5zM321 233h-133v-147h63q81 0 121.5 49t40.5 133q0 82 -42 133.5t-124 51.5h-59v-153h133v-67z" />
  556. <glyph horiz-adv-x="581" d="M407 811l40 -29q-56 -71 -109 -160l-88 -8q-48 81 -114 168l40 29q42 -31 118 -105q68 69 113 105zM542 274q0 -128 -85 -201t-215 -73h-179v405q0 88 -7 135h199q131 0 209 -71.5t78 -194.5zM247 453h-59v-367h63q81 0 121.5 49t40.5 133q0 82 -42 133.5t-124 51.5z" />
  557. <glyph horiz-adv-x="581" d="M542 274q0 -128 -85 -201t-215 -73h-179v233h-61v67h61v105q0 88 -7 135h199q131 0 209 -71.5t78 -194.5zM321 233h-133v-147h63q81 0 121.5 49t40.5 133q0 82 -42 133.5t-124 51.5h-59v-153h133v-67z" />
  558. <glyph horiz-adv-x="581" d="M542 274q0 -128 -85 -201t-215 -73h-179v405q0 88 -7 135h199q131 0 209 -71.5t78 -194.5zM247 453h-59v-367h63q81 0 121.5 49t40.5 133q0 82 -42 133.5t-124 51.5zM368 -159q0 -35 -24.5 -60.5t-59.5 -25.5q-32 0 -52 20.5t-20 51.5q0 35 25.5 60t60.5 25 q31 0 50.5 -19.5t19.5 -51.5z" />
  559. <glyph horiz-adv-x="460" d="M432 93v-93h-369v405q0 88 -7 135h357l14 -14l-3 -79l-236 7v-148l195 3l-3 -85l-192 5v-143z" />
  560. <glyph horiz-adv-x="460" d="M339 795l7 -22q-62 -95 -158 -162l-47 11q58 101 85 184zM432 93v-93h-369v405q0 88 -7 135h357l14 -14l-3 -79l-236 7v-148l195 3l-3 -85l-192 5v-143z" />
  561. <glyph horiz-adv-x="460" d="M334 790l50 5q-6 -75 -45.5 -121.5t-100.5 -46.5q-57 0 -95 42.5t-43 114.5l51 7q8 -37 33 -58.5t59 -21.5q33 0 57.5 22t33.5 57zM432 93v-93h-369v405q0 88 -7 135h357l14 -14l-3 -79l-236 7v-148l195 3l-3 -85l-192 5v-143z" />
  562. <glyph horiz-adv-x="460" d="M363 811l40 -29q-56 -71 -109 -160l-88 -8q-48 81 -114 168l40 29q42 -31 118 -105q68 69 113 105zM432 93v-93h-369v405q0 88 -7 135h357l14 -14l-3 -79l-236 7v-148l195 3l-3 -85l-192 5v-143z" />
  563. <glyph horiz-adv-x="460" d="M132 603l-40 29q61 78 109 160l88 8q58 -95 114 -168l-40 -29q-50 37 -118 105q-77 -77 -113 -105zM432 93v-93h-369v405q0 88 -7 135h357l14 -14l-3 -79l-236 7v-148l195 3l-3 -85l-192 5v-143z" />
  564. <glyph horiz-adv-x="460" d="M205 713q0 -34 -21.5 -57.5t-54.5 -23.5q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56t56 24q28 0 45.5 -18t17.5 -48zM424 713q0 -34 -21.5 -57.5t-54.5 -23.5q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56t56 24q28 0 45.5 -18t17.5 -48zM432 93v-93h-369v405q0 88 -7 135h357 l14 -14l-3 -79l-236 7v-148l195 3l-3 -85l-192 5v-143z" />
  565. <glyph horiz-adv-x="460" d="M322 713q0 -35 -24.5 -60.5t-59.5 -25.5q-32 0 -52 20.5t-20 50.5q0 35 25.5 60.5t60.5 25.5q31 0 50.5 -20t19.5 -51zM432 93v-93h-369v405q0 88 -7 135h357l14 -14l-3 -79l-236 7v-148l195 3l-3 -85l-192 5v-143z" />
  566. <glyph horiz-adv-x="460" d="M432 93v-93h-369v405q0 88 -7 135h357l14 -14l-3 -79l-236 7v-148l195 3l-3 -85l-192 5v-143zM332 -159q0 -35 -24 -60.5t-59 -25.5q-32 0 -52.5 20.5t-20.5 51.5q0 34 26 59.5t61 25.5q31 0 50 -19.5t19 -51.5z" />
  567. <glyph horiz-adv-x="460" d="M300 612q-100 72 -159 162l7 22l113 11q25 -79 85 -184zM432 93v-93h-369v405q0 88 -7 135h357l14 -14l-3 -79l-236 7v-148l195 3l-3 -85l-192 5v-143z" />
  568. <glyph horiz-adv-x="460" d="M101 669v72h285v-72h-285zM432 93v-93h-369v405q0 88 -7 135h357l14 -14l-3 -79l-236 7v-148l195 3l-3 -85l-192 5v-143z" />
  569. <glyph horiz-adv-x="460" d="M432 0q-113 -59 -113 -123q0 -46 48 -46q25 0 55 13l19 -45q-53 -44 -118 -44q-48 0 -77.5 25.5t-29.5 68.5q0 42 34 81.5t96 69.5h-283v405q0 88 -7 135h357l14 -14l-3 -79l-236 7v-148l195 3l-3 -85l-192 5v-143l244 7v-93z" />
  570. <glyph horiz-adv-x="460" d="M172 782q32 0 79 -28.5t68 -28.5q31 0 57 49l36 -6q-3 -56 -28 -98t-70 -42q-30 0 -81 28.5t-70 28.5q-31 0 -55 -48l-36 5q4 57 28 98.5t72 41.5zM432 93v-93h-369v405q0 88 -7 135h357l14 -14l-3 -79l-236 7v-148l195 3l-3 -85l-192 5v-143z" />
  571. <glyph horiz-adv-x="549" d="M41 247l15 15h324q-2 99 -49.5 147.5t-130.5 48.5q-73 0 -138 -36l-7 83q69 43 176 43q128 0 203.5 -71.5t75.5 -200.5q0 -128 -74.5 -207t-189.5 -79q-96 0 -151.5 56t-55.5 154q0 15 2 47zM162 181q0 -116 90 -116q51 0 85.5 40t41.5 111l-215 -7q-2 -18 -2 -28z" />
  572. <glyph horiz-adv-x="429" d="M188 0h-125v405q0 88 -7 135h344l14 -14l-2 -79l-224 7v-162l183 3l-3 -85l-180 5v-215z" />
  573. <glyph horiz-adv-x="547" d="M491 253l14 -13l-2 -215q-83 -33 -183 -33q-134 0 -207.5 70.5t-73.5 193.5q0 131 80.5 211.5t216.5 80.5q89 0 156 -32l-21 -102q-61 37 -130 37q-79 0 -126 -48.5t-47 -137.5q0 -83 42 -131.5t123 -48.5q26 0 53 4q0 80 -11 156z" />
  574. <glyph horiz-adv-x="547" d="M380 795l7 -22q-62 -95 -158 -162l-46 11q61 108 85 184zM491 253l14 -13l-2 -215q-83 -33 -183 -33q-134 0 -207.5 70.5t-73.5 193.5q0 131 80.5 211.5t216.5 80.5q89 0 156 -32l-21 -102q-61 37 -130 37q-79 0 -126 -48.5t-47 -137.5q0 -83 42 -131.5t123 -48.5 q26 0 53 4q0 80 -11 156z" />
  575. <glyph horiz-adv-x="547" d="M375 790l51 5q-7 -76 -46 -122t-101 -46q-57 0 -94.5 42.5t-43.5 114.5l51 7q9 -37 33.5 -58.5t59.5 -21.5q33 0 57.5 22t32.5 57zM491 253l14 -13l-2 -215q-83 -33 -183 -33q-134 0 -207.5 70.5t-73.5 193.5q0 131 80.5 211.5t216.5 80.5q89 0 156 -32l-21 -102 q-61 37 -130 37q-79 0 -126 -48.5t-47 -137.5q0 -83 42 -131.5t123 -48.5q26 0 53 4q0 80 -11 156z" />
  576. <glyph horiz-adv-x="547" d="M405 811l39 -29q-53 -69 -109 -160l-88 -8q-47 81 -114 168l40 29q47 -34 118 -105q76 76 114 105zM491 253l14 -13l-2 -215q-83 -33 -183 -33q-134 0 -207.5 70.5t-73.5 193.5q0 131 80.5 211.5t216.5 80.5q89 0 156 -32l-21 -102q-61 37 -130 37q-79 0 -126 -48.5 t-47 -137.5q0 -83 42 -131.5t123 -48.5q26 0 53 4q0 80 -11 156z" />
  577. <glyph horiz-adv-x="547" d="M173 603l-40 29q56 71 109 160l88 8q53 -87 114 -168l-39 -29q-47 34 -118 105q-73 -73 -114 -105zM491 253l14 -13l-2 -215q-83 -33 -183 -33q-134 0 -207.5 70.5t-73.5 193.5q0 131 80.5 211.5t216.5 80.5q89 0 156 -32l-21 -102q-61 37 -130 37q-79 0 -126 -48.5 t-47 -137.5q0 -83 42 -131.5t123 -48.5q26 0 53 4q0 80 -11 156z" />
  578. <glyph horiz-adv-x="547" d="M491 253l14 -13l-2 -215q-83 -33 -183 -33q-134 0 -207.5 70.5t-73.5 193.5q0 131 80.5 211.5t216.5 80.5q89 0 156 -32l-21 -102q-61 37 -130 37q-79 0 -126 -48.5t-47 -137.5q0 -83 42 -131.5t123 -48.5q26 0 53 4q0 80 -11 156zM250 -320q38 51 51 95q-23 3 -38 20.5 t-15 42.5q0 28 20.5 49.5t50.5 21.5q29 0 48 -20t19 -57q0 -80 -97 -184z" />
  579. <glyph horiz-adv-x="547" d="M363 713q0 -35 -24 -60.5t-60 -25.5q-32 0 -52 20.5t-20 50.5q0 35 25.5 60.5t61.5 25.5q31 0 50 -19.5t19 -51.5zM491 253l14 -13l-2 -215q-83 -33 -183 -33q-134 0 -207.5 70.5t-73.5 193.5q0 131 80.5 211.5t216.5 80.5q89 0 156 -32l-21 -102q-61 37 -130 37 q-79 0 -126 -48.5t-47 -137.5q0 -83 42 -131.5t123 -48.5q26 0 53 4q0 80 -11 156z" />
  580. <glyph horiz-adv-x="598" d="M188 0h-125v400q0 81 -7 140l118 8l14 -14v-223h222v89q0 73 -8 140l119 8l14 -14v-534h-125v224h-222v-224z" />
  581. <glyph horiz-adv-x="598" d="M188 0h-125v388h-70v66h69q-1 45 -6 86l118 8l14 -14v-80h221q-1 32 -7 86l119 8l14 -14v-80h71v-66h-71v-388h-125v224h-222v-224zM188 311h222v77h-222v-77z" />
  582. <glyph horiz-adv-x="598" d="M187 603l-39 29q53 69 109 160l88 8q51 -86 114 -168l-40 -29q-47 34 -118 105q-76 -76 -114 -105zM188 0h-125v400q0 81 -7 140l118 8l14 -14v-223h222v89q0 73 -8 140l119 8l14 -14v-534h-125v224h-222v-224z" />
  583. <glyph horiz-adv-x="598" d="M188 0h-125v400q0 81 -7 140l118 8l14 -14v-223h222v89q0 73 -8 140l119 8l14 -14v-534h-125v224h-222v-224zM377 -159q0 -35 -24 -60.5t-59 -25.5q-32 0 -52.5 20.5t-20.5 51.5q0 34 26 59.5t61 25.5q31 0 50 -19.5t19 -51.5z" />
  584. <glyph horiz-adv-x="251" d="M188 0h-125v400q0 81 -7 140l118 8l14 -14v-534z" />
  585. <glyph horiz-adv-x="251" d="M188 0h-125v400q0 81 -7 140l118 8l14 -14v-534z" />
  586. <glyph horiz-adv-x="251" d="M220 795l7 -22q-62 -95 -158 -162l-47 11q58 101 85 184zM188 0h-125v400q0 81 -7 140l118 8l14 -14v-534z" />
  587. <glyph horiz-adv-x="251" d="M199 784l51 5q-6 -76 -40.5 -122t-89.5 -46q-49 0 -83 42.5t-38 114.5l51 7q5 -37 25.5 -58.5t49.5 -21.5t49 22t25 57zM188 0h-125v400q0 81 -7 140l118 8l14 -14v-534z" />
  588. <glyph horiz-adv-x="251" d="M205 808l43 -18q-34 -79 -62 -168l-119 -8q-27 86 -66 176l42 18q41 -42 83 -108q43 69 79 108zM188 0h-125v400q0 81 -7 140l118 8l14 -14v-534z" />
  589. <glyph horiz-adv-x="251" d="M43 611l-42 19q38 90 62 167l118 8q36 -105 67 -175l-43 -19q-41 44 -83 109q-44 -72 -79 -109zM188 0h-125v400q0 81 -7 140l118 8l14 -14v-534z" />
  590. <glyph horiz-adv-x="251" d="M105 715q0 -34 -20 -58t-50 -24q-27 0 -44.5 19.5t-17.5 47.5q0 33 22.5 57t51.5 24q26 0 42 -18.5t16 -47.5zM276 715q0 -34 -20.5 -58t-50.5 -24q-27 0 -43.5 19.5t-16.5 47.5q0 33 21.5 57t50.5 24q26 0 42.5 -18.5t16.5 -47.5zM188 0h-125v400q0 81 -7 140l118 8 l14 -14v-534z" />
  591. <glyph horiz-adv-x="251" d="M203 713q0 -35 -24.5 -60.5t-59.5 -25.5q-32 0 -52 20.5t-20 50.5q0 35 25.5 60.5t60.5 25.5q31 0 50.5 -20t19.5 -51zM188 0h-125v400q0 81 -7 140l118 8l14 -14v-534z" />
  592. <glyph horiz-adv-x="251" d="M188 0h-125v400q0 81 -7 140l118 8l14 -14v-534zM203 -159q0 -35 -24.5 -60.5t-59.5 -25.5q-32 0 -52 20.5t-20 51.5q0 35 25.5 60t60.5 25q31 0 50.5 -19.5t19.5 -51.5z" />
  593. <glyph horiz-adv-x="251" d="M181 612q-100 72 -159 162l8 22l112 11q25 -79 85 -184zM188 0h-125v400q0 81 -7 140l118 8l14 -14v-534z" />
  594. <glyph horiz-adv-x="503" d="M188 0h-125v400q0 81 -7 140l118 8l14 -14v-534zM284 -155l-35 43q66 77 66 205v307q0 71 -12 134l124 14l13 -13v-442q0 -97 -33 -152t-123 -96z" />
  595. <glyph horiz-adv-x="251" d="M13 669v72h224v-72h-224zM188 0h-125v400q0 81 -7 140l118 8l14 -14v-534z" />
  596. <glyph horiz-adv-x="251" d="M188 0q-71 -59 -71 -115q0 -50 48 -50q25 0 55 13l19 -45q-49 -44 -115 -44q-50 0 -80 26t-30 70q0 82 98 145h-49v400q0 81 -7 140l118 8l14 -14v-534z" />
  597. <glyph horiz-adv-x="251" d="M69 784q25 0 63 -28t52 -28q28 0 45 48l33 -5q-1 -56 -21.5 -98t-60.5 -42q-24 0 -64.5 28t-51.5 28q-26 0 -44 -48l-33 5q2 56 22.5 98t59.5 42zM188 0h-125v400q0 81 -7 140l118 8l14 -14v-534z" />
  598. <glyph horiz-adv-x="252" d="M33 -155l-35 43q66 77 66 205v307q0 71 -12 134l124 14l13 -13v-442q0 -97 -33 -152t-123 -96z" />
  599. <glyph horiz-adv-x="252" d="M33 -155l-35 43q66 77 66 205v307q0 71 -12 134l124 14l13 -13v-442q0 -97 -33 -152t-123 -96z" />
  600. <glyph horiz-adv-x="252" d="M36 611l-42 19q38 90 62 167l118 8q31 -92 67 -175l-43 -19q-41 44 -83 109q-44 -72 -79 -109zM33 -155l-35 43q66 77 66 205v307q0 71 -12 134l124 14l13 -13v-442q0 -97 -33 -152t-123 -96z" />
  601. <glyph horiz-adv-x="538" d="M63 400q0 71 -7 140l118 8l14 -14v-238h61q71 122 139 252l116 -9l7 -12l-160 -245l180 -282l-143 -5q-58 82 -137 215h-63v-210h-125v400z" />
  602. <glyph horiz-adv-x="538" d="M63 400q0 71 -7 140l118 8l14 -14v-238h61q71 122 139 252l116 -9l7 -12l-160 -245l180 -282l-143 -5q-58 82 -137 215h-63v-210h-125v400zM209 -320q38 51 51 95q-23 3 -38 20.5t-15 42.5q0 28 20.5 49.5t50.5 21.5q29 0 48 -20t19 -57q0 -80 -97 -184z" />
  603. <glyph horiz-adv-x="538" d="M63 400q0 71 -7 140l118 8l14 -14v-238h61q71 122 139 252l116 -9l7 -12l-160 -245l180 -282l-143 -5q-58 82 -137 215h-63v-210h-125v400z" />
  604. <glyph horiz-adv-x="436" d="M418 93v-93h-355v400q0 81 -7 140l118 8l14 -14v-448z" />
  605. <glyph horiz-adv-x="436" d="M287 795l7 -22q-62 -95 -158 -162l-47 11q58 101 85 184zM418 93v-93h-355v400q0 81 -7 140l118 8l14 -14v-448z" />
  606. <glyph horiz-adv-x="436" d="M399 593l8 -21q-27 -101 -92 -211l-42 3q22 141 26 226zM418 93v-93h-355v400q0 81 -7 140l118 8l14 -14v-448z" />
  607. <glyph horiz-adv-x="436" d="M418 93v-93h-355v400q0 81 -7 140l118 8l14 -14v-448zM163 -320q39 55 50 95q-22 3 -37 20.5t-15 42.5q0 28 20 49.5t50 21.5q29 0 48 -20t19 -57q0 -81 -96 -184z" />
  608. <glyph horiz-adv-x="436" d="M399 305q0 -35 -24 -60.5t-60 -25.5q-32 0 -52 20.5t-20 51.5q0 34 26 59.5t61 25.5q31 0 50 -19.5t19 -51.5zM418 93v-93h-355v400q0 81 -7 140l118 8l14 -14v-448z" />
  609. <glyph horiz-adv-x="436" d="M418 93v-93h-355v194l-87 -48l-31 56l118 66v132q0 81 -7 140l118 8l14 -14v-197l118 65l31 -56l-149 -83v-177z" />
  610. <glyph horiz-adv-x="754" d="M639 548l17 -14l60 -534h-122l-22 194q-8 57 -21 231h-2q-17 -96 -56 -231l-55 -194h-140l-55 194q-38 126 -56 232h-3q-6 -106 -21 -232l-22 -194h-103l62 541l165 5l60 -186q34 -124 52 -249h2q17 103 51 249l58 181z" />
  611. <glyph horiz-adv-x="595" d="M315 336q67 -99 105 -176h2q-9 62 -9 205q0 90 -8 175l113 6l14 -13v-533h-120q-23 35 -68 105t-67 103q-62 90 -102 166h-2q9 -62 9 -160v-214h-119v405q0 76 -7 135l125 6q79 -127 134 -210z" />
  612. <glyph horiz-adv-x="595" d="M394 795l7 -22q-62 -95 -158 -162l-47 11q58 101 85 184zM315 336q67 -99 105 -176h2q-9 62 -9 205q0 90 -8 175l113 6l14 -13v-533h-120q-23 35 -68 105t-67 103q-62 90 -102 166h-2q9 -62 9 -160v-214h-119v405q0 76 -7 135l125 6q79 -127 134 -210z" />
  613. <glyph horiz-adv-x="595" d="M418 811l40 -29q-56 -71 -109 -160l-88 -8q-48 81 -114 168l40 29q42 -31 118 -105q68 69 113 105zM315 336q67 -99 105 -176h2q-9 62 -9 205q0 90 -8 175l113 6l14 -13v-533h-120q-23 35 -68 105t-67 103q-62 90 -102 166h-2q9 -62 9 -160v-214h-119v405q0 76 -7 135 l125 6q79 -127 134 -210z" />
  614. <glyph horiz-adv-x="595" d="M315 336q67 -99 105 -176h2q-9 62 -9 205q0 90 -8 175l113 6l14 -13v-533h-120q-23 35 -68 105t-67 103q-62 90 -102 166h-2q9 -62 9 -160v-214h-119v405q0 76 -7 135l125 6q79 -127 134 -210zM236 -320q38 51 51 95q-23 3 -38 20.5t-15 42.5q0 28 20.5 49.5t50.5 21.5 q29 0 48 -20t19 -57q0 -82 -97 -184z" />
  615. <glyph horiz-adv-x="595" d="M377 713q0 -35 -24.5 -60.5t-59.5 -25.5q-32 0 -52 20.5t-20 50.5q0 35 25.5 60.5t60.5 25.5q31 0 50.5 -20t19.5 -51zM315 336q67 -99 105 -176h2q-9 62 -9 205q0 90 -8 175l113 6l14 -13v-533h-120q-23 35 -68 105t-67 103q-62 90 -102 166h-2q9 -62 9 -160v-214h-119 v405q0 76 -7 135l125 6q79 -127 134 -210z" />
  616. <glyph horiz-adv-x="595" d="M182 0h-119v405q0 76 -7 135l125 6q79 -127 134 -210q67 -99 105 -176h2q-9 81 -9 205q0 90 -8 175l113 6l14 -13v-440q0 -97 -33 -152t-123 -96l-35 43q54 56 63 124q-17 26 -43.5 67t-46.5 72t-37 57q-62 90 -102 166h-2q9 -62 9 -160v-214z" />
  617. <glyph horiz-adv-x="595" d="M33 -155l-35 43q66 77 66 205v312q0 68 -8 135l125 6q79 -127 134 -210q67 -99 105 -176h2q-9 81 -9 205q0 90 -8 175l113 6l14 -13v-533h-120q-25 37 -69 106.5t-65 101.5q-61 87 -103 166h-2q9 -62 9 -160v-121q0 -98 -31.5 -152.5t-117.5 -95.5z" />
  618. <glyph horiz-adv-x="595" d="M227 782q32 0 79 -28.5t68 -28.5q31 0 57 49l36 -6q-3 -56 -28 -98t-70 -42q-30 0 -81 28.5t-70 28.5q-29 0 -55 -48l-36 5q4 57 28 98.5t72 41.5zM315 336q67 -99 105 -176h2q-9 62 -9 205q0 90 -8 175l113 6l14 -13v-533h-120q-23 35 -68 105t-67 103q-62 90 -102 166 h-2q9 -62 9 -160v-214h-119v405q0 76 -7 135l125 6q79 -127 134 -210z" />
  619. <glyph horiz-adv-x="602" d="M563 272q0 -132 -76 -206t-192 -74q-115 0 -185.5 72t-70.5 197q0 130 75 208.5t194 78.5q116 0 185.5 -75.5t69.5 -200.5zM168 272q0 -84 34 -137t99 -53q67 0 100 50.5t33 136.5t-32 137.5t-98 51.5q-65 0 -100.5 -50.5t-35.5 -135.5z" />
  620. <glyph horiz-adv-x="602" d="M396 795l7 -22q-62 -95 -158 -162l-46 11q61 108 85 184zM563 272q0 -132 -76 -206t-192 -74q-115 0 -185.5 72t-70.5 197q0 130 75 208.5t194 78.5q116 0 185.5 -75.5t69.5 -200.5zM168 272q0 -84 34 -137t99 -53q67 0 100 50.5t33 136.5t-32 137.5t-98 51.5 q-65 0 -100.5 -50.5t-35.5 -135.5z" />
  621. <glyph horiz-adv-x="602" d="M391 790l51 5q-7 -76 -46.5 -122t-100.5 -46q-57 0 -95 42.5t-43 114.5l51 7q9 -37 33.5 -58.5t59.5 -21.5q33 0 57.5 22t32.5 57zM563 272q0 -132 -76 -206t-192 -74q-115 0 -185.5 72t-70.5 197q0 130 75 208.5t194 78.5q116 0 185.5 -75.5t69.5 -200.5zM168 272 q0 -84 34 -137t99 -53q67 0 100 50.5t33 136.5t-32 137.5t-98 51.5q-65 0 -100.5 -50.5t-35.5 -135.5z" />
  622. <glyph horiz-adv-x="602" d="M420 811l40 -29q-53 -69 -109 -160l-88 -8q-47 81 -114 168l40 29q47 -34 118 -105q77 77 113 105zM563 272q0 -132 -76 -206t-192 -74q-115 0 -185.5 72t-70.5 197q0 130 75 208.5t194 78.5q116 0 185.5 -75.5t69.5 -200.5zM168 272q0 -84 34 -137t99 -53q67 0 100 50.5 t33 136.5t-32 137.5t-98 51.5q-65 0 -100.5 -50.5t-35.5 -135.5z" />
  623. <glyph horiz-adv-x="602" d="M189 603l-40 29q56 71 109 160l88 8q53 -87 114 -168l-40 -29q-46 34 -117 105q-73 -73 -114 -105zM563 272q0 -132 -76 -206t-192 -74q-115 0 -185.5 72t-70.5 197q0 130 75 208.5t194 78.5q116 0 185.5 -75.5t69.5 -200.5zM168 272q0 -84 34 -137t99 -53q67 0 100 50.5 t33 136.5t-32 137.5t-98 51.5q-65 0 -100.5 -50.5t-35.5 -135.5z" />
  624. <glyph horiz-adv-x="602" d="M263 713q0 -33 -22 -57t-55 -24q-29 0 -47.5 19.5t-18.5 47.5q0 32 23.5 56t55.5 24q29 0 46.5 -18t17.5 -48zM482 713q0 -33 -22 -57t-55 -24q-30 0 -48 19t-18 48q0 32 23.5 56t55.5 24q29 0 46.5 -18t17.5 -48zM563 272q0 -132 -76 -206t-192 -74q-115 0 -185.5 72 t-70.5 197q0 130 75 208.5t194 78.5q116 0 185.5 -75.5t69.5 -200.5zM168 272q0 -84 34 -137t99 -53q67 0 100 50.5t33 136.5t-32 137.5t-98 51.5q-65 0 -100.5 -50.5t-35.5 -135.5z" />
  625. <glyph horiz-adv-x="602" d="M563 272q0 -132 -76 -206t-192 -74q-115 0 -185.5 72t-70.5 197q0 130 75 208.5t194 78.5q116 0 185.5 -75.5t69.5 -200.5zM168 272q0 -84 34 -137t99 -53q67 0 100 50.5t33 136.5t-32 137.5t-98 51.5q-65 0 -100.5 -50.5t-35.5 -135.5zM379 -159q0 -35 -24 -60.5 t-60 -25.5q-32 0 -52 20.5t-20 51.5q0 35 25.5 60t61.5 25q31 0 50 -19.5t19 -51.5z" />
  626. <glyph horiz-adv-x="602" d="M357 612q-98 70 -158 162l7 22l112 11q23 -71 85 -184zM563 272q0 -132 -76 -206t-192 -74q-115 0 -185.5 72t-70.5 197q0 130 75 208.5t194 78.5q116 0 185.5 -75.5t69.5 -200.5zM168 272q0 -84 34 -137t99 -53q67 0 100 50.5t33 136.5t-32 137.5t-98 51.5 q-65 0 -100.5 -50.5t-35.5 -135.5z" />
  627. <glyph horiz-adv-x="602" d="M303 797l7 -21q-52 -94 -136 -164l-47 11q57 97 85 184zM465 797l7 -21q-52 -94 -136 -164l-47 11q57 97 85 184zM563 272q0 -132 -76 -206t-192 -74q-115 0 -185.5 72t-70.5 197q0 130 75 208.5t194 78.5q116 0 185.5 -75.5t69.5 -200.5zM168 272q0 -84 34 -137t99 -53 q67 0 100 50.5t33 136.5t-32 137.5t-98 51.5q-65 0 -100.5 -50.5t-35.5 -135.5z" />
  628. <glyph horiz-adv-x="602" d="M159 669v72h284v-72h-284zM563 272q0 -132 -76 -206t-192 -74q-115 0 -185.5 72t-70.5 197q0 130 75 208.5t194 78.5q116 0 185.5 -75.5t69.5 -200.5zM168 272q0 -84 34 -137t99 -53q67 0 100 50.5t33 136.5t-32 137.5t-98 51.5q-65 0 -100.5 -50.5t-35.5 -135.5z" />
  629. <glyph horiz-adv-x="602" d="M563 272q0 -168 -121 -241q-118 -78 -118 -148q0 -48 49 -48q24 0 54 13l19 -45q-52 -44 -118 -44q-47 0 -77 25.5t-30 68.5q0 77 100 140q-8 -1 -26 -1q-115 0 -185.5 72t-70.5 197q0 130 75 208.5t194 78.5q116 0 185.5 -75.5t69.5 -200.5zM168 272q0 -84 34 -137 t99 -53q67 0 100 50.5t33 136.5t-32 137.5t-98 51.5q-65 0 -100.5 -50.5t-35.5 -135.5z" />
  630. <glyph horiz-adv-x="602" d="M563 272q0 -132 -76 -206t-192 -74q-98 0 -165 53l-59 -64l-45 43l62 66q-49 70 -49 171q0 130 75 208.5t194 78.5q95 0 160 -53l62 66l46 -42l-65 -69q52 -72 52 -178zM168 272q0 -44 11 -85l215 230q-33 41 -90 41q-65 0 -100.5 -50.5t-35.5 -135.5zM434 269 q0 47 -11 88l-215 -230q35 -45 93 -45q67 0 100 50.5t33 136.5z" />
  631. <glyph horiz-adv-x="602" d="M396 795l7 -22q-62 -95 -158 -162l-46 11q61 108 85 184zM563 272q0 -132 -76 -206t-192 -74q-98 0 -165 53l-59 -64l-45 43l62 66q-49 70 -49 171q0 130 75 208.5t194 78.5q95 0 160 -53l62 66l46 -42l-65 -69q52 -72 52 -178zM168 272q0 -44 11 -85l215 230 q-33 41 -90 41q-65 0 -100.5 -50.5t-35.5 -135.5zM434 269q0 47 -11 88l-215 -230q35 -45 93 -45q67 0 100 50.5t33 136.5z" />
  632. <glyph horiz-adv-x="602" d="M229 782q32 0 79 -28.5t69 -28.5q19 0 31 12t25 37l36 -6q-3 -56 -27.5 -98t-69.5 -42q-30 0 -81.5 28.5t-70.5 28.5q-29 0 -55 -48l-35 5q3 57 27 98.5t72 41.5zM563 272q0 -132 -76 -206t-192 -74q-115 0 -185.5 72t-70.5 197q0 130 75 208.5t194 78.5 q116 0 185.5 -75.5t69.5 -200.5zM168 272q0 -84 34 -137t99 -53q67 0 100 50.5t33 136.5t-32 137.5t-98 51.5q-65 0 -100.5 -50.5t-35.5 -135.5z" />
  633. <glyph horiz-adv-x="798" d="M771 93v-93h-405q-37 -8 -71 -8q-115 0 -185.5 72t-70.5 197q0 130 75 208.5t194 78.5q35 0 69 -8h374l14 -14l-3 -79l-252 4q43 -58 51 -145l160 3l-3 -85l-158 4q-9 -82 -54 -140zM168 272q0 -84 34 -137t99 -53q67 0 100 50.5t33 136.5t-32 137.5t-98 51.5 q-65 0 -100.5 -50.5t-35.5 -135.5z" />
  634. <glyph horiz-adv-x="492" d="M188 0h-125v405q0 88 -7 135h200q100 0 158.5 -49t58.5 -132q0 -88 -65 -137.5t-167 -49.5h-53v-172zM230 454h-42v-196h41q114 0 114 96q0 100 -113 100z" />
  635. <glyph horiz-adv-x="505" d="M188 0h-125v405q0 88 -7 135h132v-81h81q100 0 158.5 -48.5t58.5 -131.5q0 -88 -65 -137.5t-167 -49.5h-66v-92zM243 374h-55v-196h55q114 0 114 96q0 100 -114 100z" />
  636. <glyph horiz-adv-x="603" d="M563 272q0 -110 -53.5 -180t-141.5 -92q106 -40 282 -40l-16 -107q-182 0 -354 139q-108 5 -174.5 76.5t-66.5 192.5q0 130 75 208.5t194 78.5q116 0 185.5 -75.5t69.5 -200.5zM168 272q0 -84 34 -137t99 -53q67 0 100 50.5t33 136.5t-32 137.5t-98 51.5 q-65 0 -100.5 -50.5t-35.5 -135.5z" />
  637. <glyph horiz-adv-x="515" d="M188 0h-125v405q0 88 -7 135h182q112 0 173.5 -46t61.5 -126q0 -55 -28.5 -93t-75.5 -57l135 -218l-143 -5q-54 95 -102 193h-71v-188zM230 454h-42v-183h41q114 0 114 91q0 92 -113 92z" />
  638. <glyph horiz-adv-x="515" d="M354 795l7 -22q-62 -95 -158 -162l-47 11q58 101 85 184zM188 0h-125v405q0 88 -7 135h182q112 0 173.5 -46t61.5 -126q0 -55 -28.5 -93t-75.5 -57l135 -218l-143 -5q-54 95 -102 193h-71v-188zM230 454h-42v-183h41q114 0 114 91q0 92 -113 92z" />
  639. <glyph horiz-adv-x="515" d="M378 811l40 -29q-56 -71 -109 -160l-88 -8q-48 81 -114 168l40 29q46 -34 117 -105q73 73 114 105zM188 0h-125v405q0 88 -7 135h182q112 0 173.5 -46t61.5 -126q0 -55 -28.5 -93t-75.5 -57l135 -218l-143 -5q-54 95 -102 193h-71v-188zM230 454h-42v-183h41 q114 0 114 91q0 92 -113 92z" />
  640. <glyph horiz-adv-x="515" d="M188 0h-125v405q0 88 -7 135h182q112 0 173.5 -46t61.5 -126q0 -55 -28.5 -93t-75.5 -57l135 -218l-143 -5q-54 95 -102 193h-71v-188zM230 454h-42v-183h41q114 0 114 91q0 92 -113 92zM205 -320q38 51 51 95q-23 3 -38 20.5t-15 42.5q0 28 20.5 49.5t50.5 21.5 q29 0 48 -20t19 -57q0 -82 -97 -184z" />
  641. <glyph horiz-adv-x="515" d="M188 0h-125v405q0 88 -7 135h182q112 0 173.5 -46t61.5 -126q0 -55 -28.5 -93t-75.5 -57l135 -218l-143 -5q-54 95 -102 193h-71v-188zM230 454h-42v-183h41q114 0 114 91q0 92 -113 92zM352 -159q0 -35 -24 -60.5t-60 -25.5q-32 0 -52 20.5t-20 51.5q0 34 26 59.5 t61 25.5q31 0 50 -19.5t19 -51.5z" />
  642. <glyph horiz-adv-x="456" d="M417 142q0 -69 -59.5 -109.5t-155.5 -40.5q-106 0 -163 30l9 101q70 -38 160 -38q80 0 80 57q0 24 -25.5 43.5t-61.5 35t-72 35t-61.5 54.5t-25.5 82q0 72 61 114t153 42q84 0 143 -22l-14 -102q-62 31 -129 31q-40 0 -63 -16t-23 -45q0 -26 25.5 -46t62 -35.5 t72.5 -34.5t61.5 -53.5t25.5 -82.5z" />
  643. <glyph horiz-adv-x="456" d="M329 795l7 -22q-61 -93 -159 -162l-46 11q58 101 85 184zM417 142q0 -69 -59.5 -109.5t-155.5 -40.5q-106 0 -163 30l9 101q70 -38 160 -38q80 0 80 57q0 24 -25.5 43.5t-61.5 35t-72 35t-61.5 54.5t-25.5 82q0 72 61 114t153 42q84 0 143 -22l-14 -102q-62 31 -129 31 q-40 0 -63 -16t-23 -45q0 -26 25.5 -46t62 -35.5t72.5 -34.5t61.5 -53.5t25.5 -82.5z" />
  644. <glyph horiz-adv-x="456" d="M353 811l40 -29q-56 -71 -109 -160l-88 -8q-48 81 -114 168l39 29q47 -34 118 -105q73 73 114 105zM417 142q0 -69 -59.5 -109.5t-155.5 -40.5q-106 0 -163 30l9 101q70 -38 160 -38q80 0 80 57q0 24 -25.5 43.5t-61.5 35t-72 35t-61.5 54.5t-25.5 82q0 72 61 114t153 42 q84 0 143 -22l-14 -102q-62 31 -129 31q-40 0 -63 -16t-23 -45q0 -26 25.5 -46t62 -35.5t72.5 -34.5t61.5 -53.5t25.5 -82.5z" />
  645. <glyph horiz-adv-x="456" d="M343 -142q0 -36 -30.5 -60.5t-70.5 -34t-90 -11.5l1 45q98 13 98 56q0 36 -70 38l-14 22l23 79q-100 4 -151 30l9 101q70 -38 160 -38q80 0 80 57q0 24 -25.5 43.5t-61.5 35t-72 35t-61.5 54.5t-25.5 82q0 72 61 114t153 42q84 0 143 -22l-14 -102q-62 31 -129 31 q-40 0 -63 -16t-23 -45q0 -26 25.5 -46t62 -35.5t72.5 -34.5t61.5 -53.5t25.5 -82.5q0 -58 -42.5 -96.5t-115.5 -49.5l-18 -57q102 -14 102 -81z" />
  646. <glyph horiz-adv-x="456" d="M121 603l-39 29q53 69 109 160l88 8q51 -86 114 -168l-40 -29q-47 34 -118 105q-76 -76 -114 -105zM417 142q0 -69 -59.5 -109.5t-155.5 -40.5q-106 0 -163 30l9 101q70 -38 160 -38q80 0 80 57q0 24 -25.5 43.5t-61.5 35t-72 35t-61.5 54.5t-25.5 82q0 72 61 114t153 42 q84 0 143 -22l-14 -102q-62 31 -129 31q-40 0 -63 -16t-23 -45q0 -26 25.5 -46t62 -35.5t72.5 -34.5t61.5 -53.5t25.5 -82.5z" />
  647. <glyph horiz-adv-x="456" d="M417 142q0 -69 -59.5 -109.5t-155.5 -40.5q-106 0 -163 30l9 101q70 -38 160 -38q80 0 80 57q0 24 -25.5 43.5t-61.5 35t-72 35t-61.5 54.5t-25.5 82q0 72 61 114t153 42q84 0 143 -22l-14 -102q-62 31 -129 31q-40 0 -63 -16t-23 -45q0 -26 25.5 -46t62 -35.5 t72.5 -34.5t61.5 -53.5t25.5 -82.5zM162 -320q38 51 51 95q-23 3 -38 20.5t-15 42.5q0 28 20.5 49.5t50.5 21.5q29 0 48 -20t19 -57q0 -80 -97 -184z" />
  648. <glyph horiz-adv-x="456" d="M417 142q0 -69 -59.5 -109.5t-155.5 -40.5q-106 0 -163 30l9 101q70 -38 160 -38q80 0 80 57q0 24 -25.5 43.5t-61.5 35t-72 35t-61.5 54.5t-25.5 82q0 72 61 114t153 42q84 0 143 -22l-14 -102q-62 31 -129 31q-40 0 -63 -16t-23 -45q0 -26 25.5 -46t62 -35.5 t72.5 -34.5t61.5 -53.5t25.5 -82.5zM309 -159q0 -35 -24 -60.5t-60 -25.5q-32 0 -52 20.5t-20 51.5q0 35 25.5 60t61.5 25q30 0 49.5 -19.5t19.5 -51.5z" />
  649. <glyph horiz-adv-x="611" d="M162 -10l-114 10q23 56 23 133v222q0 90 68 141.5t180 51.5q115 0 195 -62v-36l-120 -128q81 -32 129 -73.5t48 -106.5q0 -64 -50 -107t-147 -43q-78 0 -114 15v95q42 -17 91 -17q41 0 66.5 17t25.5 47q0 69 -160 124v28l100 118q-31 36 -85 36q-52 0 -80 -28.5 t-28 -81.5v-202q0 -100 -28 -153z" />
  650. <glyph horiz-adv-x="483" d="M304 0h-125v450q-83 -2 -167 -6l7 96h445l7 -96q-85 5 -167 6v-450z" />
  651. <glyph horiz-adv-x="483" d="M304 0h-125v228h-125v66h125v156q-83 -2 -167 -6l7 96h445l7 -96q-85 5 -167 6v-156h126v-66h-126v-228z" />
  652. <glyph horiz-adv-x="483" d="M361 811l40 -29q-61 -78 -109 -160l-88 -8q-53 89 -114 168l40 29q50 -37 118 -105q77 77 113 105zM304 0h-125v450q-83 -2 -167 -6l7 96h445l7 -96q-85 5 -167 6v-450z" />
  653. <glyph horiz-adv-x="483" d="M304 0h-28l-19 -61q102 -14 102 -81q0 -36 -30.5 -60.5t-70.5 -34t-90 -11.5l1 45q98 13 98 56q0 36 -70 38l-15 22l26 87h-29v450q-83 -2 -167 -6l7 96h445l7 -96q-85 5 -167 6v-450z" />
  654. <glyph horiz-adv-x="483" d="M304 0h-125v450q-83 -2 -167 -6l7 96h445l7 -96q-85 5 -167 6v-450zM178 -320q39 55 50 95q-22 3 -37 20.5t-15 42.5q0 28 20 49.5t50 21.5q29 0 48 -20t19 -57q0 -81 -96 -184z" />
  655. <glyph horiz-adv-x="483" d="M304 0h-125v450q-83 -2 -167 -6l7 96h445l7 -96q-85 5 -167 6v-450zM325 -159q0 -35 -24.5 -60.5t-59.5 -25.5q-32 0 -52 20.5t-20 51.5q0 35 25.5 60t60.5 25q31 0 50.5 -19.5t19.5 -51.5z" />
  656. <glyph horiz-adv-x="570" d="M57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217z" />
  657. <glyph horiz-adv-x="570" d="M381 795l7 -22q-62 -95 -158 -162l-47 11q58 101 85 184zM57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217z" />
  658. <glyph horiz-adv-x="570" d="M376 790l51 5q-7 -76 -46.5 -122t-100.5 -46q-57 0 -95 42.5t-43 114.5l51 7q9 -37 33.5 -58.5t58.5 -21.5q33 0 57.5 22t33.5 57zM57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142 t-165.5 -50q-99 0 -162 50t-63 142v217z" />
  659. <glyph horiz-adv-x="570" d="M405 811l40 -29q-56 -71 -109 -160l-88 -8q-48 81 -114 168l40 29q42 -31 118 -105q68 69 113 105zM57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217 z" />
  660. <glyph horiz-adv-x="570" d="M174 603l-40 29q61 78 109 160l88 8q58 -95 114 -168l-40 -29q-50 37 -118 105q-77 -77 -113 -105zM57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217 z" />
  661. <glyph horiz-adv-x="570" d="M247 713q0 -34 -21.5 -57.5t-54.5 -23.5q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56t56 24q28 0 45.5 -18t17.5 -48zM466 713q0 -34 -21.5 -57.5t-54.5 -23.5q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56t56 24q28 0 45.5 -18t17.5 -48zM57 401q0 76 -9 139l121 8l13 -13v-341 q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217z" />
  662. <glyph horiz-adv-x="570" d="M381 1036l7 -22q-62 -95 -158 -162l-47 11q58 101 85 184zM247 713q0 -34 -21.5 -57.5t-54.5 -23.5q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56t56 24q28 0 45.5 -18t17.5 -48zM466 713q0 -34 -21.5 -57.5t-54.5 -23.5q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56t56 24 q28 0 45.5 -18t17.5 -48zM57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217z" />
  663. <glyph horiz-adv-x="570" d="M405 1052l40 -29q-56 -71 -109 -160l-88 -8q-53 87 -114 168l40 29q42 -31 118 -105q68 69 113 105zM247 713q0 -34 -21.5 -57.5t-54.5 -23.5q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56t56 24q28 0 45.5 -18t17.5 -48zM466 713q0 -34 -21.5 -57.5t-54.5 -23.5 q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56t56 24q28 0 45.5 -18t17.5 -48zM57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217z" />
  664. <glyph horiz-adv-x="570" d="M342 853q-98 69 -159 162l8 22l112 11q23 -71 85 -184zM247 713q0 -34 -21.5 -57.5t-54.5 -23.5q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56t56 24q28 0 45.5 -18t17.5 -48zM466 713q0 -34 -21.5 -57.5t-54.5 -23.5q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56t56 24 q28 0 45.5 -18t17.5 -48zM57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217z" />
  665. <glyph horiz-adv-x="570" d="M143 910v72h285v-72h-285zM247 713q0 -34 -21.5 -57.5t-54.5 -23.5q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56t56 24q28 0 45.5 -18t17.5 -48zM466 713q0 -34 -21.5 -57.5t-54.5 -23.5q-30 0 -48.5 19.5t-18.5 47.5q0 32 24 56t56 24q28 0 45.5 -18t17.5 -48zM57 401 q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217z" />
  666. <glyph horiz-adv-x="570" d="M57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217zM364 -159q0 -35 -24.5 -60.5t-59.5 -25.5q-32 0 -52 20.5t-20 51.5q0 35 25.5 60t60.5 25 q31 0 50.5 -19.5t19.5 -51.5z" />
  667. <glyph horiz-adv-x="570" d="M342 612q-100 72 -159 162l8 22l112 11q23 -71 85 -184zM57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217z" />
  668. <glyph horiz-adv-x="570" d="M288 797l7 -21q-50 -91 -136 -164l-47 11q57 97 85 184zM450 797l7 -21q-50 -91 -136 -164l-47 11q57 97 85 184zM57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50 q-99 0 -162 50t-63 142v217z" />
  669. <glyph horiz-adv-x="570" d="M143 669v72h285v-72h-285zM57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217z" />
  670. <glyph horiz-adv-x="570" d="M57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -106 -88 -157q-111 -65 -111 -142q0 -50 48 -50q25 0 55 13l19 -45q-51 -44 -118 -44q-48 0 -77.5 25t-29.5 66q0 79 97 143q-9 -1 -26 -1q-99 0 -162 50 t-63 142v217z" />
  671. <glyph horiz-adv-x="570" d="M404 716q0 -44 -33.5 -75t-81.5 -31q-43 0 -72 25.5t-29 63.5q0 43 35.5 74t83.5 31q42 0 69.5 -25t27.5 -63zM245 703q0 -21 13.5 -34.5t34.5 -13.5q22 0 38 16.5t16 39.5q0 22 -12 35.5t-33 13.5q-24 0 -40.5 -17t-16.5 -40zM57 401q0 76 -9 139l121 8l13 -13v-341 q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217z" />
  672. <glyph horiz-adv-x="570" d="M214 782q32 0 79 -28.5t68 -28.5q31 0 57 49l36 -6q-3 -56 -28 -98t-70 -42q-30 0 -81 28.5t-70 28.5q-29 0 -55 -48l-36 5q4 57 28 98.5t72 41.5zM57 401q0 76 -9 139l121 8l13 -13v-341q0 -53 28.5 -81t78.5 -28t77.5 28t27.5 81v231q0 66 -8 115l127 6v-362 q0 -92 -65.5 -142t-165.5 -50q-99 0 -162 50t-63 142v217z" />
  673. <glyph horiz-adv-x="538" d="M202 -1l-192 536l133 13l99 -298q31 -96 38 -127q15 64 41 129l99 296l100 -7l8 -13l-192 -529h-134z" />
  674. <glyph horiz-adv-x="825" d="M170 -1l-157 536l132 13l76 -286q13 -50 31 -140q13 58 37 142l76 277l120 7l76 -286q24 -80 36 -140q13 67 34 144l75 282l99 -7l8 -13l-158 -529h-133l-69 219q-8 31 -21.5 89t-16.5 71h-2q-21 -87 -40 -162l-69 -217h-134z" />
  675. <glyph horiz-adv-x="825" d="M517 795l7 -22q-61 -93 -159 -162l-46 11q58 101 85 184zM170 -1l-157 536l132 13l76 -286q13 -50 31 -140q13 58 37 142l76 277l120 7l76 -286q24 -80 36 -140q13 67 34 144l75 282l99 -7l8 -13l-158 -529h-133l-69 219q-8 31 -21.5 89t-16.5 71h-2q-21 -87 -40 -162 l-69 -217h-134z" />
  676. <glyph horiz-adv-x="825" d="M309 603l-39 29q53 69 109 160l88 8q51 -86 114 -168l-40 -29q-47 34 -118 105q-76 -76 -114 -105zM170 -1l-157 536l132 13l76 -286q13 -50 31 -140q13 58 37 142l76 277l120 7l76 -286q24 -80 36 -140q13 67 34 144l75 282l99 -7l8 -13l-158 -529h-133l-69 219 q-8 31 -21.5 89t-16.5 71h-2q-21 -87 -40 -162l-69 -217h-134z" />
  677. <glyph horiz-adv-x="825" d="M383 713q0 -34 -22 -57.5t-55 -23.5q-29 0 -47.5 19.5t-18.5 47.5q0 32 23.5 56t56.5 24q28 0 45.5 -18t17.5 -48zM602 713q0 -34 -22 -57.5t-55 -23.5q-29 0 -47.5 19.5t-18.5 47.5q0 32 23.5 56t56.5 24q28 0 45.5 -18t17.5 -48zM170 -1l-157 536l132 13l76 -286 q13 -50 31 -140q13 58 37 142l76 277l120 7l76 -286q24 -80 36 -140q13 67 34 144l75 282l99 -7l8 -13l-158 -529h-133l-69 219q-8 31 -21.5 89t-16.5 71h-2q-21 -87 -40 -162l-69 -217h-134z" />
  678. <glyph horiz-adv-x="825" d="M477 612q-98 70 -158 162l7 22l113 11q25 -79 85 -184zM170 -1l-157 536l132 13l76 -286q13 -50 31 -140q13 58 37 142l76 277l120 7l76 -286q24 -80 36 -140q13 67 34 144l75 282l99 -7l8 -13l-158 -529h-133l-69 219q-8 31 -21.5 89t-16.5 71h-2q-21 -87 -40 -162 l-69 -217h-134z" />
  679. <glyph horiz-adv-x="503" d="M17 0l-7 14l164 244l-164 279l133 10l120 -212h2l113 213l108 -9l7 -13l-161 -261l161 -265h-139l-112 188h-1l-115 -188h-109z" />
  680. <glyph horiz-adv-x="487" d="M181 176l-171 359l133 13l67 -164q34 -84 45 -118h2q1 3 47 118l66 164l100 -7l8 -13l-172 -353v-175h-125v176z" />
  681. <glyph horiz-adv-x="487" d="M339 795l7 -22q-62 -95 -158 -162l-47 11q58 101 85 184zM181 176l-171 359l133 13l67 -164q34 -84 45 -118h2q1 3 47 118l66 164l100 -7l8 -13l-172 -353v-175h-125v176z" />
  682. <glyph horiz-adv-x="487" d="M132 603l-40 29q56 71 109 160l88 8q53 -87 114 -168l-40 -29q-42 31 -118 105q-68 -69 -113 -105zM181 176l-171 359l133 13l67 -164q34 -84 45 -118h2q1 3 47 118l66 164l100 -7l8 -13l-172 -353v-175h-125v176z" />
  683. <glyph horiz-adv-x="487" d="M205 713q0 -34 -21.5 -57.5t-54.5 -23.5q-30 0 -48 19t-18 48q0 32 23.5 56t55.5 24q28 0 45.5 -18t17.5 -48zM424 713q0 -34 -21.5 -57.5t-54.5 -23.5q-30 0 -48 19t-18 48q0 32 23.5 56t55.5 24q28 0 45.5 -18t17.5 -48zM181 176l-171 359l133 13l67 -164 q34 -84 45 -118h2q1 3 47 118l66 164l100 -7l8 -13l-172 -353v-175h-125v176z" />
  684. <glyph horiz-adv-x="487" d="M300 612q-100 72 -159 162l8 22l112 11q23 -71 85 -184zM181 176l-171 359l133 13l67 -164q34 -84 45 -118h2q1 3 47 118l66 164l100 -7l8 -13l-172 -353v-175h-125v176z" />
  685. <glyph horiz-adv-x="487" d="M101 669v72h285v-72h-285zM181 176l-171 359l133 13l67 -164q34 -84 45 -118h2q1 3 47 118l66 164l100 -7l8 -13l-172 -353v-175h-125v176z" />
  686. <glyph horiz-adv-x="487" d="M172 782q32 0 79 -28.5t69 -28.5q30 0 56 49l36 -6q-3 -56 -27.5 -98t-69.5 -42q-30 0 -81.5 28.5t-70.5 28.5q-29 0 -55 -48l-35 5q3 57 27 98.5t72 41.5zM181 176l-171 359l133 13l67 -164q34 -84 45 -118h2q1 3 47 118l66 164l100 -7l8 -13l-172 -353v-175h-125v176z " />
  687. <glyph horiz-adv-x="479" d="M46 0l-20 78l282 363l-271 -6l7 105h373l32 -78l-278 -362l275 5l-7 -105h-393z" />
  688. <glyph horiz-adv-x="479" d="M342 795l7 -22q-62 -95 -158 -162l-46 11q61 108 85 184zM46 0l-20 78l282 363l-271 -6l7 105h373l32 -78l-278 -362l275 5l-7 -105h-393z" />
  689. <glyph horiz-adv-x="479" d="M367 811l39 -29q-53 -69 -109 -160l-88 -8q-47 81 -114 168l40 29q47 -34 118 -105q76 76 114 105zM46 0l-20 78l282 363l-271 -6l7 105h373l32 -78l-278 -362l275 5l-7 -105h-393z" />
  690. <glyph horiz-adv-x="479" d="M325 713q0 -35 -24 -60.5t-60 -25.5q-32 0 -52 20.5t-20 50.5q0 35 25.5 60.5t61.5 25.5q31 0 50 -19.5t19 -51.5zM46 0l-20 78l282 363l-271 -6l7 105h373l32 -78l-278 -362l275 5l-7 -105h-393z" />
  691. <glyph horiz-adv-x="479" d="M46 0l-20 78l282 363l-271 -6l7 105h373l32 -78l-278 -362l275 5l-7 -105h-393zM332 -159q0 -35 -24 -60.5t-60 -25.5q-32 0 -52 20.5t-20 51.5q0 35 25.5 60t61.5 25q31 0 50 -19.5t19 -51.5z" />
  692. <glyph horiz-adv-x="252" d="M213 795l7 -22q-62 -95 -158 -162l-47 11q58 101 85 184zM33 -155l-35 43q66 77 66 205v307q0 71 -12 134l124 14l13 -13v-442q0 -97 -33 -152t-123 -96z" />
  693. <glyph horiz-adv-x="460" d="M412 195q0 -101 -53.5 -157t-132.5 -56q-78 0 -127.5 55t-49.5 151q0 99 53 157.5t133 58.5q79 0 128 -57t49 -152zM148 195q0 -158 83 -158q81 0 81 154q0 157 -82 157t-82 -153z" />
  694. <glyph horiz-adv-x="275" d="M105 314h-1l-66 -9l-14 54l165 45l11 -10v-404h-96v242q0 58 1 82z" />
  695. <glyph horiz-adv-x="377" d="M49 -10l-11 63q191 129 191 217q0 31 -19 50t-52 19q-53 0 -110 -43l-9 71q62 37 142 37q64 0 105.5 -31.5t41.5 -82.5q0 -60 -58 -120.5t-141 -109.5h93q54 0 105 6l-7 -76h-271z" />
  696. <glyph horiz-adv-x="373" d="M45 372q60 32 134 32q58 0 95.5 -25.5t37.5 -65.5q0 -34 -27 -63.5t-73 -41.5q56 -7 88.5 -34t32.5 -70q0 -54 -50.5 -88t-131.5 -34q-63 0 -111 14l9 60q45 -14 98 -14q39 0 63 15.5t24 43.5q0 55 -102 55q-16 0 -52 -4v60q58 7 95.5 28.5t37.5 52.5q0 21 -16 33.5 t-46 12.5q-48 0 -101 -28z" />
  697. <glyph horiz-adv-x="419" d="M37 143l166 255l106 6l11 -9v-244q20 1 58 5l-7 -71h-51v-95h-92v95h-180zM116 151v-2q8 0 43.5 0.5t68.5 0.5v77q0 76 4 110h-1z" />
  698. <glyph horiz-adv-x="395" d="M58 -4l9 63q42 -15 94 -15q39 0 63.5 18.5t24.5 51.5q0 32 -22 48t-57 16q-46 0 -85 -16l-14 8v226h158q64 0 104 6l-6 -76h-178v-92q26 6 59 6q61 0 100.5 -31.5t39.5 -88.5q0 -65 -51.5 -101.5t-132.5 -36.5q-58 0 -106 14z" />
  699. <glyph horiz-adv-x="414" d="M214 -18q-73 0 -119 46.5t-46 133.5q0 107 64.5 174.5t171.5 67.5q37 0 55 -7l-8 -65q-28 7 -47 7q-50 0 -89 -33.5t-47 -96.5h2q35 22 89 22q59 0 94.5 -31t35.5 -85q0 -62 -45 -97.5t-111 -35.5zM210 176q-43 0 -62 -24q1 -60 15 -87t46 -27q30 0 46 19t16 51 q0 31 -16 49.5t-45 18.5z" />
  700. <glyph horiz-adv-x="360" d="M34 316l8 80h286l12 -10v-50q-158 -153 -165 -346h-100q6 92 57 183.5t119 150.5v2h-87q-76 0 -130 -10z" />
  701. <glyph horiz-adv-x="419" d="M205 -18q-73 0 -117 29.5t-44 76.5q0 40 30 68.5t72 40.5v2q-84 43 -84 101q0 45 42.5 74.5t108.5 29.5q68 0 106 -30t38 -70q0 -30 -23 -56.5t-60 -42.5v-2q101 -41 101 -106q0 -48 -46 -81.5t-124 -33.5zM211 352q-25 0 -42.5 -13t-17.5 -35q0 -43 68 -71q49 32 49 71 q0 21 -16.5 34.5t-40.5 13.5zM200 162q-65 -26 -65 -73q0 -25 20.5 -40.5t52.5 -15.5t53 15t22 40q1 24 -20.5 42t-62.5 32z" />
  702. <glyph horiz-adv-x="414" d="M44 265q0 63 45 101t112 38q72 0 118 -45.5t46 -132.5q0 -102 -62.5 -173t-170.5 -71q-32 0 -49 5l-2 64q30 -4 47 -4q117 0 137 121q-36 -24 -83 -24q-63 0 -100.5 32t-37.5 89zM143 270q0 -33 17 -52t48 -19q37 0 57 24q-5 120 -64 120q-27 0 -42.5 -20t-15.5 -53z" />
  703. <glyph horiz-adv-x="643" d="M594 347q0 -169 -80.5 -263t-198.5 -94q-117 0 -191 92.5t-74 254.5q0 167 79.5 264t199.5 97q119 0 192 -95t73 -256zM179 347q0 -276 143 -276q71 0 106.5 70.5t35.5 199.5q0 276 -142 276q-143 0 -143 -270z" />
  704. <glyph horiz-adv-x="364" d="M139 566h-2l-106 -19l-18 76l235 74l14 -14v-683h-125v426q0 101 2 140z" />
  705. <glyph horiz-adv-x="603" d="M91 0l-15 93q56 44 105.5 89.5t98 99.5t77 108.5t28.5 100.5q0 50 -32 82t-89 32q-79 0 -175 -62l-13 100q106 55 217 55q98 0 159.5 -50t61.5 -130q0 -100 -95 -213t-224 -205h162q87 0 160 10l-10 -110h-416z" />
  706. <glyph horiz-adv-x="522" d="M51 644q38 22 95 38t110 16q84 0 138 -41t54 -107q0 -58 -43 -108t-118 -74q89 -9 141.5 -54.5t52.5 -120.5q0 -90 -75 -146.5t-197 -56.5q-87 0 -168 23l12 87q73 -23 151 -23q66 0 107 29.5t41 81.5q0 55 -46.5 80t-120.5 25q-40 0 -78 -7v86q97 16 154.5 56t57.5 95 q0 37 -25.5 59.5t-73.5 22.5q-76 0 -163 -49z" />
  707. <glyph horiz-adv-x="618" d="M29 253l288 433l136 11l14 -14v-420q62 2 117 9l-10 -103h-107v-169h-119l1 169h-305zM133 263v-3q52 2 209 2h7v155q0 124 5 177h-3z" />
  708. <glyph horiz-adv-x="555" d="M69 13l12 90q71 -23 145 -23q66 0 107 34t41 96q0 60 -37.5 90t-96.5 30q-67 0 -130 -25l-20 13v370h232q87 0 160 10l-8 -110h-281v-180q44 11 94 11q94 0 155.5 -52t61.5 -148q0 -107 -76.5 -168t-199.5 -61q-79 0 -159 23z" />
  709. <glyph horiz-adv-x="597" d="M312 -10q-112 0 -179 79t-67 226q0 179 96.5 291t253.5 112q61 0 85 -12l-11 -94q-29 13 -73 13q-85 0 -148 -63.5t-72 -183.5h2q57 49 148 49q90 0 144 -52.5t54 -143.5q0 -102 -67 -161.5t-166 -59.5zM311 326q-34 0 -67 -15t-48 -40q2 -102 27.5 -151t83.5 -49 q51 0 80 35t29 93t-27 92.5t-78 34.5z" />
  710. <glyph horiz-adv-x="536" d="M37 572l12 116h432l16 -14v-72q-117 -128 -186.5 -283t-76.5 -319h-129q9 156 89.5 318t184.5 268v2h-151q-108 0 -191 -16z" />
  711. <glyph horiz-adv-x="600" d="M294 -10q-106 0 -172.5 48.5t-66.5 125.5q0 65 46.5 114.5t112.5 71.5v3q-134 73 -134 172q0 74 64 123.5t162 49.5t156 -49.5t58 -116.5q0 -52 -36.5 -97.5t-96.5 -73.5v-3q159 -68 159 -181q0 -78 -68.5 -132.5t-183.5 -54.5zM302 623q-43 0 -74 -25.5t-31 -65.5 q0 -77 116 -130q40 25 65 59.5t25 70.5q0 40 -29 65.5t-72 25.5zM287 300q-48 -21 -80 -56.5t-32 -77.5q0 -44 34.5 -72.5t88.5 -28.5q55 0 91 28t37 73q1 43 -35 75t-104 59z" />
  712. <glyph horiz-adv-x="597" d="M52 466q0 106 67.5 169t167.5 63q108 0 176 -77.5t68 -222.5q0 -111 -41 -203.5t-121 -148.5t-184 -56q-49 0 -77 8l-1 92q29 -7 68 -7q96 0 154.5 61t72.5 172h-2q-47 -53 -143 -53q-93 0 -149 54.5t-56 148.5zM181 473q0 -60 29 -95t83 -35q73 0 108 52 q-1 106 -31.5 161t-84.5 55q-47 0 -75.5 -38.5t-28.5 -99.5z" />
  713. <glyph horiz-adv-x="460" d="M412 495q0 -101 -53.5 -156.5t-132.5 -55.5q-78 0 -127.5 54.5t-49.5 150.5q0 100 53 158.5t133 58.5q79 0 128 -57t49 -153zM148 496q0 -158 83 -158q81 0 81 154q0 157 -82 157t-82 -153z" />
  714. <glyph horiz-adv-x="275" d="M105 616h-1l-66 -9l-14 54l165 45l11 -10v-404h-96v242q0 58 1 82z" />
  715. <glyph horiz-adv-x="377" d="M49 292l-11 63q191 129 191 217q0 31 -19 50t-52 19q-53 0 -110 -43l-9 71q62 37 142 37q64 0 105.5 -31.5t41.5 -82.5q0 -60 -58 -120.5t-141 -109.5h93q54 0 105 6l-7 -76h-271z" />
  716. <glyph horiz-adv-x="373" d="M45 672q62 33 134 33q58 0 95.5 -25.5t37.5 -65.5q0 -34 -27 -63.5t-73 -41.5q56 -7 88.5 -34.5t32.5 -69.5q0 -54 -50.5 -88t-131.5 -34q-63 0 -111 14l9 60q46 -14 98 -14q39 0 63 15.5t24 42.5q0 56 -102 56q-16 0 -52 -4v60q59 7 96 28t37 53q0 21 -16 33.5t-46 12.5 q-48 0 -101 -28z" />
  717. <glyph horiz-adv-x="419" d="M37 445l166 255l106 6l11 -9v-244q20 1 58 5l-7 -71h-51v-95h-92v95h-180zM116 453v-2q8 0 43.5 0.5t68.5 0.5v77q0 76 4 110h-1z" />
  718. <glyph horiz-adv-x="395" d="M58 297l9 63q42 -15 94 -15q39 0 63.5 18t24.5 51t-22 49t-57 16q-41 0 -85 -16l-14 8v226h158q64 0 104 6l-6 -76h-178v-92q26 6 59 6q61 0 100.5 -31.5t39.5 -88.5q0 -65 -51.5 -101.5t-132.5 -36.5q-58 0 -106 14z" />
  719. <glyph horiz-adv-x="414" d="M214 283q-73 0 -119 46.5t-46 133.5q0 107 64.5 174.5t171.5 67.5q37 0 55 -7l-8 -66q-24 8 -47 8q-50 0 -89 -33.5t-47 -97.5h2q34 23 89 23q59 0 94.5 -31t35.5 -86q0 -62 -44.5 -97t-111.5 -35zM210 477q-41 0 -62 -24q1 -60 15 -87t46 -27q30 0 46 19t16 50 q0 32 -16 50.5t-45 18.5z" />
  720. <glyph horiz-adv-x="360" d="M34 618l8 80h286l12 -10v-50q-158 -153 -165 -346h-100q6 92 57 183.5t119 150.5v2h-87q-76 0 -130 -10z" />
  721. <glyph horiz-adv-x="419" d="M205 284q-73 0 -117 29.5t-44 76.5q0 40 30 68.5t72 40.5v2q-84 43 -84 101q0 45 42.5 74.5t108.5 29.5q68 0 106 -30t38 -70q0 -30 -23 -56.5t-60 -42.5v-2q101 -41 101 -106q0 -48 -46 -81.5t-124 -33.5zM211 654q-25 0 -42.5 -13t-17.5 -35q0 -43 68 -71q49 32 49 71 q0 21 -16.5 34.5t-40.5 13.5zM200 464q-65 -26 -65 -73q0 -25 20.5 -40.5t52.5 -15.5t53 15t22 40q1 24 -20.5 42t-62.5 32z" />
  722. <glyph horiz-adv-x="414" d="M44 567q0 63 45 101t112 38q72 0 118 -45.5t46 -132.5q0 -102 -62.5 -173t-170.5 -71q-32 0 -49 5l-2 64q30 -4 47 -4q117 0 137 121q-36 -24 -83 -24q-63 0 -100.5 32t-37.5 89zM143 572q0 -33 17 -52t48 -19q37 0 57 24q-5 120 -64 120q-27 0 -42.5 -20t-15.5 -53z" />
  723. <glyph horiz-adv-x="575" d="M536 270q0 -133 -73.5 -206.5t-181.5 -73.5q-107 0 -174 71.5t-67 198.5q0 132 72.5 208.5t182.5 76.5q108 0 174.5 -74.5t66.5 -200.5zM169 270q0 -199 119 -199q58 0 88.5 51t30.5 143q0 199 -119 199t-119 -194z" />
  724. <glyph horiz-adv-x="424" d="M189 414h-2l-106 -19l-18 76l235 74l14 -14v-531h-125v274q0 100 2 140z" />
  725. <glyph horiz-adv-x="575" d="M91 0l-15 93q105 56 193.5 135t88.5 146q0 35 -25 56.5t-70 21.5q-77 0 -170 -62l-13 100q102 55 213 55q87 0 140.5 -38.5t53.5 -105.5q0 -82 -79.5 -162.5t-189.5 -138.5h111q90 0 166 10l-10 -110h-394z" />
  726. <glyph horiz-adv-x="522" d="M51 491q38 22 95 38t110 16q84 0 138 -40.5t54 -105.5q0 -58 -43 -108t-117 -73q88 -10 140.5 -55.5t52.5 -118.5q0 -89 -75 -145t-197 -56q-92 0 -168 23l12 87q73 -23 151 -23q66 0 107 29t41 80q0 53 -46.5 78t-120.5 25q-40 0 -78 -7v86q97 16 154.5 56t57.5 95 q0 36 -25.5 58t-73.5 22q-76 0 -163 -49z" />
  727. <glyph horiz-adv-x="591" d="M26 100l279 429l136 11l14 -15v-414q59 2 113 9l-10 -103h-103v-164h-119l1 164h-296zM130 110v-2q50 2 200 2h7v150q0 124 5 177h-3z" />
  728. <glyph horiz-adv-x="535" d="M63 -134l12 90q71 -23 146 -23q66 0 107 33.5t41 94.5q0 59 -38 88.5t-97 29.5q-71 0 -130 -25l-19 13v368h231q87 0 160 10l-8 -110h-280v-177q49 11 94 11q93 0 154.5 -52t61.5 -147q0 -106 -76.5 -166.5t-198.5 -60.5q-84 0 -160 23z" />
  729. <glyph horiz-adv-x="569" d="M304 -10q-111 0 -178.5 79t-67.5 226q0 179 96.5 291t253.5 112q61 0 85 -12l-11 -94q-29 13 -73 13q-84 0 -147 -63.5t-73 -183.5h2q58 49 149 49q89 0 143 -52.5t54 -143.5q0 -102 -67 -161.5t-166 -59.5zM303 326q-34 0 -67 -15t-48 -40q2 -102 28 -151t83 -49 q51 0 80 35t29 93t-27 92.5t-78 34.5z" />
  730. <glyph horiz-adv-x="536" d="M37 423l12 116h432l16 -14v-72q-117 -128 -186.5 -282t-76.5 -318h-129q9 155 89.5 317t184.5 267v2h-151q-108 0 -191 -16z" />
  731. <glyph horiz-adv-x="600" d="M294 -10q-106 0 -172.5 48.5t-66.5 125.5q0 65 46.5 114t112.5 72v2q-134 75 -134 172q0 74 64 123.5t162 49.5t156 -49.5t58 -116.5q0 -51 -36.5 -97t-96.5 -74v-2q159 -70 159 -181q0 -78 -68.5 -132.5t-183.5 -54.5zM302 622q-43 0 -74 -25.5t-31 -64.5 q0 -78 116 -131q40 25 65 59.5t25 70.5q0 40 -29 65.5t-72 25.5zM287 300q-48 -21 -80 -57t-32 -78q0 -44 34.5 -72.5t88.5 -28.5q55 0 91 28t37 73q1 43 -35 75.5t-104 59.5z" />
  732. <glyph horiz-adv-x="569" d="M32 315q0 105 67.5 167.5t167.5 62.5q108 0 176 -77t68 -220q0 -111 -41 -202.5t-121 -147t-184 -55.5q-49 0 -77 8l-1 92q29 -7 68 -7q96 0 154.5 60.5t72.5 169.5h-2q-48 -54 -143 -54q-93 0 -149 54.5t-56 148.5zM161 323q0 -60 29 -95t83 -35q73 0 108 52 q-1 105 -31.5 159t-84.5 54q-47 0 -75.5 -37.5t-28.5 -97.5z" />
  733. <glyph d="M556 347q0 -169 -76.5 -263t-188.5 -94q-111 0 -181 92.5t-70 254.5q0 167 75.5 264t189.5 97q113 0 182 -95.5t69 -255.5zM169 347q0 -276 129 -276q64 0 96.5 70.5t32.5 198.5q0 277 -129 277q-62 0 -95.5 -68t-33.5 -202z" />
  734. <glyph d="M108 0v92h140v334q0 101 2 140h-2l-106 -19l-18 76l234 74l15 -14v-591h139v-92h-404z" />
  735. <glyph d="M73 0l-15 93q66 55 117 102t101 102t77.5 107t27.5 95q0 48 -33 77t-91 29q-80 0 -182 -62l-12 100q108 55 221 55q102 0 164.5 -51t62.5 -136q0 -176 -320 -411h175q87 0 160 10l-10 -110h-443z" />
  736. <glyph d="M107 644q82 54 182 54q81 0 135 -41.5t54 -107.5q0 -58 -41.5 -107.5t-113.5 -72.5q86 -10 137 -56t51 -119q0 -91 -74.5 -147.5t-191.5 -56.5q-79 0 -148 23l12 87q60 -23 129 -23q63 0 103.5 30t40.5 81q0 54 -41 79.5t-110 25.5q-35 0 -68 -6v85q85 16 135.5 56 t50.5 95q0 37 -25 59.5t-70 22.5q-66 0 -141 -49z" />
  737. <glyph d="M19 253l289 433l136 11l14 -14v-419q60 4 89 8l-10 -103h-79v-169h-119v169h-304zM123 263v-3q52 2 210 2h6v155q0 124 5 177h-2z" />
  738. <glyph d="M92 13l12 90q67 -23 138 -23q63 0 102 34.5t39 96.5q0 59 -35.5 89t-91.5 30q-65 0 -123 -25l-19 13v370h216q87 0 160 10l-7 -110h-266v-180q42 11 94 11q87 0 144 -52t57 -148q0 -107 -72.5 -168t-189.5 -61q-77 0 -158 23z" />
  739. <glyph d="M302 -10q-108 0 -173 79t-65 226q0 179 93.5 291t245.5 112q60 0 84 -12l-11 -94q-29 13 -73 13q-80 0 -139.5 -63.5t-68.5 -183.5h2q54 49 140 49q87 0 140.5 -53t53.5 -143q0 -102 -66.5 -161.5t-162.5 -59.5zM302 326q-33 0 -63.5 -15t-43.5 -40q2 -103 25.5 -151.5 t77.5 -48.5q48 0 75.5 35t27.5 93t-25.5 92.5t-73.5 34.5z" />
  740. <glyph d="M98 572l12 116h416l15 -14v-72q-110 -127 -174.5 -282t-71.5 -320h-129q9 157 84.5 319t173.5 267v2h-135q-108 0 -191 -16z" />
  741. <glyph d="M292 -10q-103 0 -167 48.5t-64 125.5q0 65 44.5 114.5t106.5 71.5v3q-125 73 -125 172q0 74 62 123.5t155 49.5q94 0 149.5 -49.5t55.5 -116.5q0 -52 -34 -97.5t-90 -73.5v-3q150 -68 150 -181q0 -78 -66 -132.5t-177 -54.5zM300 623q-40 0 -68 -25.5t-28 -65.5 q0 -77 107 -130q37 25 59.5 59.5t22.5 70.5q0 40 -26.5 65.5t-66.5 25.5zM285 300q-45 -21 -74.5 -56.5t-29.5 -77.5q0 -44 32.5 -72.5t82.5 -28.5q51 0 84.5 28t34.5 73q1 43 -32.5 75t-97.5 59z" />
  742. <glyph d="M62 466q0 105 65.5 168.5t162.5 63.5q105 0 172 -78t67 -222q0 -111 -39 -203t-116.5 -148.5t-178.5 -56.5q-48 0 -76 8l-2 92q29 -7 68 -7q91 0 146 61t68 172h-2q-45 -53 -137 -53q-89 0 -143.5 54.5t-54.5 148.5zM192 474q0 -61 27 -96t77 -35q68 0 103 52 q-1 107 -30 161.5t-81 54.5q-43 0 -69.5 -38.5t-26.5 -98.5z" />
  743. <glyph d="M544 270q0 -133 -72.5 -206.5t-179.5 -73.5q-106 0 -172.5 71.5t-66.5 198.5q0 132 72 208.5t181 76.5q107 0 172.5 -74.5t65.5 -200.5zM182 270q0 -93 29 -146t88 -53q57 0 86.5 50.5t29.5 143.5q0 199 -116 199q-56 0 -86.5 -49t-30.5 -145z" />
  744. <glyph d="M112 0v92h153v182q0 100 2 140h-2l-139 -29l-18 76l268 84l14 -14v-439h127v-92h-405z" />
  745. <glyph d="M109 0l-15 93q61 34 118.5 77t104.5 100t47 104q0 35 -25 56.5t-70 21.5q-70 0 -158 -62l-12 100q93 55 202 55q85 0 138.5 -39t53.5 -105q0 -82 -77 -162.5t-183 -138.5h102q90 0 166 10l-10 -110h-382z" />
  746. <glyph d="M107 493q82 54 182 54q81 0 135 -41.5t54 -107.5q0 -58 -41.5 -107.5t-113.5 -72.5q86 -10 137 -56t51 -119q0 -91 -74.5 -147.5t-191.5 -56.5q-79 0 -148 23l12 87q60 -23 129 -23q63 0 103.5 30t40.5 81q0 54 -41 79.5t-110 25.5q-35 0 -68 -6v85q85 16 135.5 56 t50.5 95q0 37 -25 59.5t-70 22.5q-66 0 -141 -49z" />
  747. <glyph d="M19 101l289 433l136 11l14 -14v-419q46 3 89 9l-10 -104h-79v-169h-119v169h-304zM123 111v-2q104 2 210 2h6v154q0 124 5 177h-2z" />
  748. <glyph d="M92 -137l12 90q67 -23 138 -23q63 0 102 34.5t39 96.5q0 59 -35.5 89t-91.5 30q-65 0 -123 -25l-19 13v370h216q87 0 160 10l-7 -110h-266v-180q42 11 94 11q87 0 144 -52t57 -148q0 -107 -72.5 -168t-189.5 -61q-77 0 -158 23z" />
  749. <glyph d="M302 -10q-108 0 -173 79t-65 226q0 179 93.5 291t245.5 112q60 0 84 -12l-11 -94q-29 13 -73 13q-80 0 -139.5 -63.5t-68.5 -183.5h2q54 49 140 49q87 0 140.5 -53t53.5 -143q0 -102 -66.5 -161.5t-162.5 -59.5zM302 326q-33 0 -63.5 -15t-43.5 -40q2 -103 25.5 -151.5 t77.5 -48.5q48 0 75.5 35t27.5 93t-25.5 92.5t-73.5 34.5z" />
  750. <glyph d="M98 421l12 116h416l15 -14v-71q-110 -128 -174.5 -282.5t-71.5 -320.5h-129q9 157 84.5 319.5t173.5 266.5v2h-135q-115 0 -191 -16z" />
  751. <glyph d="M292 -10q-103 0 -167 48.5t-64 125.5q0 65 44.5 114.5t106.5 71.5v3q-125 73 -125 172q0 74 62 123.5t155 49.5q94 0 149.5 -49.5t55.5 -116.5q0 -52 -34 -97.5t-90 -73.5v-3q150 -68 150 -181q0 -78 -66 -132.5t-177 -54.5zM300 623q-40 0 -68 -25.5t-28 -65.5 q0 -77 107 -130q37 25 59.5 59.5t22.5 70.5q0 40 -26.5 65.5t-66.5 25.5zM285 300q-45 -21 -74.5 -56.5t-29.5 -77.5q0 -44 32.5 -72.5t82.5 -28.5q51 0 84.5 28t34.5 73q1 43 -32.5 75t-97.5 59z" />
  752. <glyph d="M62 316q0 105 65.5 168.5t162.5 63.5q105 0 172 -78t67 -222q0 -111 -39 -203t-116.5 -148.5t-178.5 -56.5q-48 0 -76 8l-2 92q29 -7 68 -7q91 0 146 61t68 172h-2q-45 -53 -137 -53q-89 0 -143.5 54.5t-54.5 148.5zM192 324q0 -61 27 -96t77 -35q68 0 103 52 q-1 107 -30 161.5t-81 54.5q-43 0 -69.5 -38.5t-26.5 -98.5z" />
  753. <glyph horiz-adv-x="570" d="M520 272q0 -133 -69.5 -206.5t-171.5 -73.5q-101 0 -165 72t-64 199q0 131 68.5 208t172.5 77q103 0 166 -75t63 -201zM175 273q0 -207 111 -207q109 0 109 201q0 206 -110 206t-110 -200z" />
  754. <glyph horiz-adv-x="341" d="M119 426h-2l-87 -11l-17 71l212 61l14 -14v-533h-122v319q0 77 2 107z" />
  755. <glyph horiz-adv-x="541" d="M90 0l-14 85q253 185 253 296q0 35 -25 57.5t-69 22.5q-67 0 -146 -50l-13 94q90 43 186 43q85 0 138.5 -40.5t53.5 -104.5q0 -77 -78 -162t-184 -149h125q66 0 136 8l-9 -100h-354z" />
  756. <glyph horiz-adv-x="463" d="M48 506q80 42 177 42q73 0 121 -33.5t48 -85.5q0 -45 -35.5 -83.5t-94.5 -54.5q72 -9 115 -45.5t43 -92.5q0 -71 -65.5 -116t-171.5 -45q-79 0 -144 18l11 80q61 -18 128 -18q52 0 84.5 20.5t32.5 56.5q0 72 -135 72q-38 0 -69 -5v80q78 9 126.5 37t48.5 70 q0 27 -20 42.5t-58 15.5q-67 0 -136 -37z" />
  757. <glyph horiz-adv-x="505" d="M29 202l220 336l132 8l14 -12v-321q73 6 76 6l-8 -93h-68v-126h-116l1 126h-236zM129 213v-3q33 2 151 2v100q0 99 4 144h-2z" />
  758. <glyph horiz-adv-x="498" d="M69 10l12 84q57 -19 122 -19q53 0 85.5 23.5t32.5 66.5t-29.5 64t-76.5 21q-59 0 -110 -22l-19 12v300h204q79 0 136 8l-7 -101h-234v-123q35 8 77 8q80 0 132 -41t52 -117q0 -86 -67 -134t-173 -48q-72 0 -137 18z" />
  759. <glyph horiz-adv-x="534" d="M280 -8q-96 0 -155 61t-59 177q0 139 84 228.5t222 89.5q49 0 71 -9l-10 -87q-27 9 -61 9q-67 0 -118.5 -43.5t-61.5 -125.5h3q46 29 118 29q77 0 123 -41t46 -112q0 -82 -58 -129t-144 -47zM276 248q-24 0 -48.5 -9t-36.5 -23q2 -80 20.5 -115t62.5 -35q40 0 61.5 25 t21.5 66q0 42 -21 66.5t-60 24.5z" />
  760. <glyph horiz-adv-x="479" d="M37 433l10 107h376l16 -14v-66q-205 -204 -217 -460h-125q9 122 74.5 244t154.5 201v2h-121q-92 0 -168 -14z" />
  761. <glyph horiz-adv-x="539" d="M264 -8q-94 0 -151.5 39t-57.5 101q0 52 39.5 90t94.5 54v2q-50 27 -80.5 58t-30.5 74q0 59 55.5 98.5t141.5 39.5q87 0 136.5 -40t49.5 -92q0 -39 -30.5 -73.5t-79.5 -56.5v-2q133 -54 133 -141q0 -63 -59.5 -107t-160.5 -44zM271 480q-34 0 -57.5 -17.5t-23.5 -45.5 q0 -56 90 -93q68 40 68 92q0 28 -22 46t-55 18zM258 229q-38 -14 -62.5 -40t-24.5 -56q0 -32 27 -52.5t70 -20.5t71.5 19.5t28.5 51.5q1 32 -27.5 55.5t-82.5 42.5z" />
  762. <glyph horiz-adv-x="534" d="M52 364q0 84 58.5 134t145.5 50q93 0 152.5 -60t59.5 -174q0 -134 -81.5 -228t-219.5 -94q-38 0 -65 6l-2 85q32 -5 58 -5q79 0 126 41t59 118q-42 -33 -115 -33q-80 0 -128 42.5t-48 117.5zM177 372q0 -45 22 -70t64 -25q54 0 81 35q-8 155 -89 155q-36 0 -57 -26.5 t-21 -68.5z" />
  763. <glyph d="M528 272q0 -133 -68 -206.5t-167 -73.5t-161.5 72t-62.5 199q0 131 67 208t169 77q100 0 161.5 -75t61.5 -201zM195 273q0 -207 104 -207q103 0 103 201q0 206 -104 206q-103 0 -103 -200z" />
  764. <glyph d="M118 0v92h152v184q0 101 2 140h-2l-139 -29l-18 76l265 84l14 -14v-441h127v-92h-401z" />
  765. <glyph d="M124 0l-14 85q248 187 248 296q0 35 -25 57.5t-69 22.5q-63 0 -141 -50l-13 94q88 43 182 43q85 0 138 -40.5t53 -104.5q0 -78 -77.5 -163.5t-180.5 -147.5h121q66 0 136 8l-9 -100h-349z" />
  766. <glyph d="M114 506q80 42 176 42q74 0 122 -33.5t48 -85.5q0 -44 -35.5 -83t-94.5 -55q72 -9 115 -45.5t43 -92.5q0 -71 -65.5 -116t-171.5 -45q-79 0 -144 18l10 80q63 -18 129 -18q52 0 84.5 20.5t32.5 56.5q0 72 -136 72q-38 0 -68 -5v80q78 9 126.5 37t48.5 70q0 26 -20 42 t-58 16q-66 0 -137 -37z" />
  767. <glyph d="M60 202l220 336l133 8l13 -12v-321q75 6 77 6l-9 -93h-68v-126h-115v126h-236zM160 213v-3q34 2 151 2v100q0 99 5 144h-2z" />
  768. <glyph d="M113 10l12 84q52 -19 114 -19q52 0 84 23.5t32 66.5t-29.5 64t-75.5 21q-55 0 -101 -22l-18 12v300h193q79 0 136 8l-7 -101h-224v-123q34 8 75 8q76 0 126 -41t50 -117q0 -85 -65 -133.5t-168 -48.5q-69 0 -134 18z" />
  769. <glyph d="M299 -8q-92 0 -148 61t-56 177q0 139 80.5 228.5t213.5 89.5q48 0 71 -9l-10 -87q-29 9 -61 9q-62 0 -110 -43.5t-58 -125.5h3q41 29 107 29q77 0 122.5 -41t45.5 -112q0 -82 -57.5 -129t-142.5 -47zM296 248q-52 0 -76 -32q2 -80 18.5 -115t56.5 -35q37 0 57.5 25 t20.5 65q0 42 -20 67t-57 25z" />
  770. <glyph d="M113 433l11 107h376l15 -14v-66q-206 -204 -216 -460h-126q9 122 75 244t155 201v2h-122q-90 0 -168 -14z" />
  771. <glyph d="M293 -8q-92 0 -148 39t-56 101q0 52 37.5 90t90.5 54v2q-48 27 -76.5 58t-28.5 74q0 58 54 98t138 40t132.5 -40t48.5 -92q0 -39 -29 -73.5t-76 -56.5v-2q128 -55 128 -141q0 -63 -58 -107t-157 -44zM300 480q-31 0 -53 -17.5t-22 -45.5q0 -56 84 -93q63 40 63 92 q0 28 -20.5 46t-51.5 18zM287 229q-35 -14 -58.5 -40t-23.5 -56q0 -32 25.5 -52.5t66.5 -20.5q40 0 67 19t28 52q0 59 -105 98z" />
  772. <glyph d="M98 364q0 84 57.5 134t142.5 50q95 0 149.5 -62.5t54.5 -171.5q0 -135 -78.5 -228.5t-211.5 -93.5q-37 0 -64 6l-2 85q32 -5 59 -5q73 0 116.5 40.5t54.5 117.5q-38 -32 -103 -32q-80 0 -127.5 42.5t-47.5 117.5zM223 372q0 -95 86 -95q47 0 68 34q-5 156 -80 156 q-34 0 -54 -26.5t-20 -68.5z" />
  773. <glyph horiz-adv-x="313" d="M196 216h-78q-11 188 -30 472l120 10l14 -14q-4 -228 -26 -468zM227 69q0 -32 -22 -55.5t-55 -23.5q-29 0 -47.5 19t-18.5 47q0 32 23.5 55.5t55.5 23.5q28 0 46 -18.5t18 -47.5z" />
  774. <glyph horiz-adv-x="313" d="M84 619q0 32 22 55.5t55 23.5q29 0 47.5 -19t18.5 -47q0 -32 -23.5 -55.5t-56.5 -23.5q-28 0 -45.5 18.5t-17.5 47.5zM115 473h78q15 -268 29 -473l-119 -10l-14 14q3 208 26 469z" />
  775. <glyph horiz-adv-x="477" d="M235 219l-73 -3q-13 28 -13 56t16.5 53.5t40.5 45.5t48 40.5t40.5 47t16.5 56.5q0 41 -27 66t-72 25q-38 0 -78 -20t-68 -56l-48 66q80 102 219 102q93 0 148 -46t55 -120q0 -43 -20.5 -81t-50 -63t-58.5 -46t-49.5 -41t-20.5 -37t2 -37zM277 69q0 -32 -21.5 -55.5 t-54.5 -23.5q-30 0 -48.5 19t-18.5 47q0 32 23.5 55.5t56.5 23.5q28 0 45.5 -18.5t17.5 -47.5z" />
  776. <glyph horiz-adv-x="477" d="M200 619q0 32 21.5 55.5t54.5 23.5q29 0 48 -19t19 -47q0 -32 -23.5 -55.5t-56.5 -23.5q-28 0 -45.5 18.5t-17.5 47.5zM242 469l72 3q14 -26 14 -56q0 -28 -16.5 -53.5t-40.5 -45.5t-48 -40.5t-40.5 -47t-16.5 -56.5q0 -41 27 -66t72 -25q38 0 78 20t68 56l48 -66 q-80 -102 -219 -102q-93 0 -148 46t-55 120q0 43 20.5 81t49.5 63t58.5 46t50 41t20.5 37t-2 37z" />
  777. <glyph horiz-adv-x="305" d="M232 354q0 -34 -23.5 -57.5t-57.5 -23.5q-33 0 -55.5 22.5t-22.5 54.5q0 33 25 57t59 24q33 0 54 -21.5t21 -55.5z" />
  778. <glyph horiz-adv-x="473" d="M232 208q-57 0 -93.5 36t-38.5 88q-2 60 42.5 105t106.5 45q53 0 88 -34.5t36 -89.5q2 -62 -38 -106t-103 -44z" />
  779. <glyph horiz-adv-x="496" d="M212 352l-6 16l25 152l-132 -106l-40 68l11 13l147 54l-161 62l39 67l17 -2l120 -99l-26 169h77l7 -16l-27 -155l134 109l39 -68l-11 -13l-144 -54l158 -62l-39 -67l-17 2l-120 100l27 -170h-78z" />
  780. <glyph horiz-adv-x="359" d="M311 720l8 -8l-187 -747l-62 11l-8 8l187 747z" />
  781. <glyph horiz-adv-x="378" d="M247 -34l-187 747l8 8l62 11l187 -747l-8 -8z" />
  782. <glyph horiz-adv-x="744" d="M200 -10l-60 10l-8 8l42 171h-124l-8 8l9 61h140l49 193h-124l-8 8l9 61h140l47 188l60 -10l8 -8l-42 -170h169l47 188l61 -10l8 -8l-43 -170h122l8 -8l-9 -61h-138l-48 -193h126l8 -8l-9 -61h-142l-47 -189l-61 10l-8 8l42 171h-169zM265 248h169l48 193h-169z" />
  783. <glyph horiz-adv-x="723" d="M59 206h139l32 128h-130l-8 8l9 61h146l36 145l61 -10l8 -8l-32 -127h153l36 145l61 -10l8 -8l-32 -127h120l8 -8l-9 -61h-136l-32 -128h131l8 -8l-8 -61h-148l-36 -147l-61 10l-8 8l32 129h-153l-36 -147l-61 10l-8 8l32 129h-124l-8 8zM271 206h153l32 128h-153z" />
  784. <glyph horiz-adv-x="409" d="M334 -10q-112 55 -177 147t-65 207q0 116 64.5 207t177.5 147l47 -62q-159 -117 -159 -292t159 -291z" />
  785. <glyph horiz-adv-x="409" d="M317 344q0 -115 -65 -207t-177 -147l-47 63q159 116 159 291t-159 292l47 62q113 -56 177.5 -147t64.5 -207z" />
  786. <glyph horiz-adv-x="398" d="M68 308v72q53 4 76 24t23 57q0 24 -14 68.5t-14 70.5q0 57 49 77.5t169 20.5l3 -72q-98 0 -98 -59q0 -15 11 -57.5t11 -63.5q0 -40 -27.5 -66t-75.5 -36q47 -10 75 -36.5t28 -66.5q0 -21 -11 -63.5t-11 -57.5q0 -58 98 -58l-3 -72q-120 0 -169 20.5t-49 77.5 q0 26 14 70.5t14 67.5q0 37 -23 57t-76 25z" />
  787. <glyph horiz-adv-x="398" d="M330 308q-53 -5 -76 -25t-23 -57q0 -23 14 -67.5t14 -70.5q0 -57 -49 -77.5t-169 -20.5l-3 72q98 0 98 58q0 15 -11 57.5t-11 63.5q0 40 28 66.5t75 36.5q-48 10 -75.5 36t-27.5 66q0 21 11 63.5t11 57.5q0 59 -98 59l3 72q120 0 169 -20.5t49 -77.5q0 -26 -14 -70.5 t-14 -68.5q0 -73 99 -81v-72z" />
  788. <glyph horiz-adv-x="387" d="M104 688h242v-95h-122v-497h122v-96h-242v688z" />
  789. <glyph horiz-adv-x="387" d="M282 688v-688h-242v96h123v497h-123v95h242z" />
  790. <glyph horiz-adv-x="388" d="M30 334v44h328v-44h-328z" />
  791. <glyph horiz-adv-x="557" d="M30 334v44h494v-44h-494z" />
  792. <glyph horiz-adv-x="857" d="M30 334v44h797v-44h-797z" />
  793. <glyph horiz-adv-x="263" d="M41 -159q56 82 71 150q-27 4 -44 24t-17 49q0 34 24.5 59.5t58.5 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -61 -41.5 -133t-89.5 -121z" />
  794. <glyph horiz-adv-x="485" d="M41 -159q56 82 71 150q-27 4 -44 24t-17 49q0 34 24.5 59.5t58.5 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -61 -41.5 -133t-89.5 -121zM263 -159q56 82 71 150q-27 4 -44 24t-17 49q0 34 24 59.5t59 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -61 -41.5 -133t-89.5 -121z" />
  795. <glyph horiz-adv-x="496" d="M210 736q-56 -82 -71 -150q26 -4 43.5 -24.5t17.5 -48.5q0 -34 -24 -59.5t-59 -25.5q-33 0 -54.5 22.5t-21.5 64.5q0 61 41 132t90 122zM436 736q-56 -82 -71 -150q26 -4 43.5 -24.5t17.5 -48.5q0 -34 -24.5 -59.5t-58.5 -25.5q-33 0 -54.5 22.5t-21.5 64.5q0 61 41 132 t90 122z" />
  796. <glyph horiz-adv-x="488" d="M267 451q57 86 70 151q-26 4 -43 24t-17 48q0 35 24 60t59 25q33 0 54.5 -22.5t21.5 -63.5q0 -61 -41.5 -132.5t-89.5 -121.5zM41 451q56 81 71 151q-27 4 -44 24t-17 48q0 35 24.5 60t58.5 25q33 0 54.5 -22.5t21.5 -63.5q0 -61 -41.5 -133t-89.5 -121z" />
  797. <glyph horiz-adv-x="263" d="M210 736q-56 -81 -71 -151q27 -4 44 -24t17 -48q0 -35 -24 -60t-59 -25q-33 0 -54.5 22t-21.5 64q0 61 41.5 133t89.5 121z" />
  798. <glyph horiz-adv-x="263" d="M41 463q56 82 71 150q-27 5 -44 25t-17 48q0 34 24.5 59.5t58.5 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -60 -41.5 -132t-89.5 -122z" />
  799. <glyph horiz-adv-x="483" d="M46 369v34q76 64 171 189l32 -14q-30 -94 -100 -192q70 -96 100 -191l-32 -14q-93 122 -171 188zM240 369v34q78 65 171 189l33 -14q-32 -95 -101 -192q69 -95 101 -191l-33 -14q-91 121 -171 188z" />
  800. <glyph horiz-adv-x="483" d="M437 369q-82 -70 -171 -188l-32 14q30 95 100 191q-70 98 -100 192l32 14q91 -121 171 -189v-34zM243 369q-80 -67 -171 -188l-33 14q33 100 101 191q-68 93 -101 192l33 14q93 -124 171 -189v-34z" />
  801. <glyph horiz-adv-x="289" d="M46 369v34q76 64 171 189l32 -14q-30 -94 -100 -192q70 -96 100 -191l-32 -14q-93 122 -171 188z" />
  802. <glyph horiz-adv-x="289" d="M243 369q-80 -67 -171 -188l-33 14q33 100 101 191q-68 93 -101 192l33 14q93 -124 171 -189v-34z" />
  803. <glyph horiz-adv-x="405" d="M143 758l8 -20l-34 -264h-43l-31 284h100zM354 758l8 -20l-34 -264h-44l-30 284h100z" />
  804. <glyph horiz-adv-x="227" d="M49 763l4 5q46 5 113 5l11 -14l-50 -302h-35l-16 142z" />
  805. <glyph horiz-adv-x="388" d="M30 259v44h328v-44h-328z" />
  806. <glyph horiz-adv-x="554" d="M30 259v44h494v-44h-494z" />
  807. <glyph horiz-adv-x="857" d="M30 260v44h797v-44h-797z" />
  808. <glyph horiz-adv-x="409" d="M334 -85q-112 55 -177 147t-65 207q0 116 64.5 207t177.5 147l47 -62q-159 -117 -159 -292t159 -291z" />
  809. <glyph horiz-adv-x="409" d="M75 625q112 -55 177 -147t65 -207q0 -116 -64.5 -207t-177.5 -147l-47 62q159 117 159 292t-159 291z" />
  810. <glyph horiz-adv-x="398" d="M68 231v72q53 4 76 24t23 57q0 24 -14 68.5t-14 70.5q0 57 49 77.5t169 20.5l3 -72q-98 0 -98 -59q0 -15 11 -57.5t11 -63.5q0 -40 -27.5 -66t-75.5 -36q47 -10 75 -36.5t28 -66.5q0 -21 -11 -63.5t-11 -57.5q0 -58 98 -58l-3 -72q-120 0 -169 20.5t-49 77.5 q0 26 14 70.5t14 67.5q0 37 -23 57t-76 25z" />
  811. <glyph horiz-adv-x="398" d="M330 231q-53 -5 -76 -25t-23 -57q0 -23 14 -67.5t14 -70.5q0 -57 -49 -77.5t-169 -20.5l-3 72q98 0 98 58q0 15 -11 57.5t-11 63.5q0 40 28 66.5t75 36.5q-48 10 -75.5 36t-27.5 66q0 21 11 63.5t11 57.5q0 59 -98 59l3 72q120 0 169 -20.5t49 -77.5q0 -26 -14 -70.5 t-14 -68.5q0 -73 99 -81v-72z" />
  812. <glyph horiz-adv-x="387" d="M104 611h242v-95h-122v-497h122v-96h-242v688z" />
  813. <glyph horiz-adv-x="387" d="M282 611v-688h-242v96h123v497h-123v95h242z" />
  814. <glyph horiz-adv-x="317" d="M200 216h-81q-30 311 -32 322l124 10l15 -14q-4 -139 -26 -318zM230 69q0 -32 -22 -55.5t-55 -23.5q-29 0 -47.5 19t-18.5 47q0 32 23.5 55.5t55.5 23.5q28 0 46 -18.5t18 -47.5z" />
  815. <glyph horiz-adv-x="317" d="M84 466q0 33 22 56.5t55 23.5q29 0 47.5 -19t18.5 -47q0 -32 -23.5 -55.5t-56.5 -23.5q-28 0 -45.5 18t-17.5 47zM113 320h82q27 -295 32 -322l-125 -10l-14 14q4 150 25 318z" />
  816. <glyph horiz-adv-x="431" d="M225 181l-80 -3q-12 18 -12 42q0 27 24 54t52.5 45.5t52.5 42.5t24 46q0 24 -20.5 39t-52.5 15q-37 0 -84.5 -18.5t-81.5 -49.5l-40 68q42 38 103 61t122 23q77 0 127 -36t50 -96q0 -42 -28 -78t-61.5 -56t-61.5 -40t-28 -33q0 -3 0.5 -9.5t0.5 -8.5zM257 64 q0 -30 -20.5 -52t-50.5 -22q-28 0 -44.5 18t-16.5 44q0 29 21.5 50.5t51.5 21.5q26 0 42.5 -16.5t16.5 -43.5z" />
  817. <glyph horiz-adv-x="431" d="M174 472q0 30 20.5 52t50.5 22q27 0 44 -18t17 -44q0 -29 -21.5 -50.5t-51.5 -21.5q-26 0 -42.5 16.5t-16.5 43.5zM206 355l80 3q12 -18 12 -42q0 -27 -24 -54t-52.5 -45.5t-52.5 -42.5t-24 -46q0 -23 20.5 -38.5t52.5 -15.5q36 0 83.5 18.5t82.5 49.5l40 -68 q-42 -38 -103 -61t-122 -23q-77 0 -127 36t-50 96q0 42 28 78t61.5 56t61.5 40t28 33q0 3 -0.5 9.5t-0.5 8.5z" />
  818. <glyph horiz-adv-x="316" d="M236 272q0 -34 -24 -57.5t-58 -23.5t-56 22.5t-22 54.5q0 33 25 57t59 24q33 0 54.5 -21.5t21.5 -55.5z" />
  819. <glyph horiz-adv-x="473" d="M232 113q-57 0 -93.5 36t-38.5 88q-2 60 42 105t107 45q53 0 88 -34.5t36 -89.5q2 -61 -38 -105.5t-103 -44.5z" />
  820. <glyph horiz-adv-x="263" d="M41 -159q56 82 71 150q-27 4 -44 24t-17 49q0 34 24.5 59.5t58.5 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -61 -41.5 -133t-89.5 -121z" />
  821. <glyph horiz-adv-x="485" d="M41 -159q56 82 71 150q-27 4 -44 24t-17 49q0 34 24.5 59.5t58.5 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -61 -41.5 -133t-89.5 -121zM263 -159q56 82 71 150q-27 4 -44 24t-17 49q0 34 24 59.5t59 25.5q33 0 54.5 -22.5t21.5 -64.5q0 -61 -41.5 -133t-89.5 -121z" />
  822. <glyph horiz-adv-x="490" d="M447 579q-49 -57 -60 -100q51 -15 51 -69q0 -36 -24 -59.5t-61 -23.5q-35 0 -57.5 23.5t-22.5 61.5q0 53 45 107t106 89zM222 579q-49 -57 -60 -100q51 -15 51 -69q0 -36 -24 -59.5t-61 -23.5q-35 0 -57.5 23.5t-22.5 61.5q0 53 45 107t106 89z" />
  823. <glyph horiz-adv-x="490" d="M43 356q47 55 60 101q-24 6 -38 24t-14 44q0 35 24.5 59t61.5 24q35 0 57.5 -23.5t22.5 -60.5q0 -53 -45.5 -107.5t-105.5 -89.5zM268 356q47 55 60 101q-24 6 -38 24t-14 44q0 35 24.5 59t61.5 24q35 0 57.5 -23.5t22.5 -60.5q0 -53 -45.5 -107.5t-105.5 -89.5z" />
  824. <glyph horiz-adv-x="265" d="M222 579q-49 -57 -60 -100q51 -15 51 -69q0 -36 -24 -59.5t-61 -23.5q-35 0 -57.5 23.5t-22.5 61.5q0 53 45 107t106 89z" />
  825. <glyph horiz-adv-x="265" d="M43 356q47 55 60 101q-24 6 -38 24t-14 44q0 35 24.5 59t61.5 24q35 0 57.5 -23.5t22.5 -60.5q0 -53 -45.5 -107.5t-105.5 -89.5z" />
  826. <glyph horiz-adv-x="496" d="M212 352l-6 16l25 152l-132 -106l-40 68l11 13l147 54l-161 62l39 67l17 -2l120 -99l-26 169h77l7 -16l-27 -155l134 109l39 -68l-11 -13l-144 -54l158 -62l-39 -67l-17 2l-120 100l27 -170h-78z" />
  827. <glyph horiz-adv-x="483" d="M46 226v34q78 66 171 188l32 -14q-31 -96 -100 -191q69 -95 100 -191l-32 -14q-93 122 -171 188zM240 226v34q80 67 171 188l33 -14q-33 -97 -101 -191q68 -94 101 -191l-33 -14q-91 121 -171 188z" />
  828. <glyph horiz-adv-x="483" d="M437 226q-82 -70 -171 -188l-32 14q31 96 100 191q-69 95 -100 191l32 14q89 -118 171 -188v-34zM243 226q-80 -67 -171 -188l-33 14q34 102 101 191q-67 89 -101 191l33 14q91 -121 171 -188v-34z" />
  829. <glyph horiz-adv-x="289" d="M46 226v34q78 66 171 188l32 -14q-31 -96 -100 -191q69 -95 100 -191l-32 -14q-93 122 -171 188z" />
  830. <glyph horiz-adv-x="289" d="M243 226q-80 -67 -171 -188l-33 14q34 102 101 191q-67 89 -101 191l33 14q91 -121 171 -188v-34z" />
  831. <glyph horiz-adv-x="705" d="M208 -10l-61 10l-8 8l33 129h-124l-8 8l9 61h140l32 128h-130l-8 8l9 61h146l36 145l61 -10l8 -8l-32 -127h153l36 145l61 -10l8 -8l-32 -127h120l8 -8l-9 -61h-136l-32 -128h131l8 -8l-9 -61h-147l-37 -147l-61 10l-8 8l32 129h-152zM262 206h153l32 128h-153z" />
  832. <glyph horiz-adv-x="316" d="M62 -18l141 571l11 4l62 -17l-142 -571l-11 -3z" />
  833. <glyph horiz-adv-x="341" d="M277 -18l-61 -16l-11 3l-141 571l62 17l10 -4z" />
  834. <glyph horiz-adv-x="391" d="M155 610l8 -20l-40 -264h-43l-37 284h112zM339 610l9 -20l-40 -264h-44l-37 284h112z" />
  835. <glyph horiz-adv-x="206" d="M155 610l8 -20l-40 -264h-43l-37 284h112z" />
  836. <glyph horiz-adv-x="492" d="M261 -140l-8 8v126q-93 14 -147.5 85.5t-54.5 183.5q0 116 59 192.5t155 89.5v132l46 3l8 -8v-125q80 -5 133 -39l-26 -97q-57 43 -118 43q-59 0 -93.5 -48.5t-34.5 -130.5q0 -90 39.5 -142t108.5 -52q54 0 113 35l8 -83q-55 -39 -142 -42v-128z" />
  837. <glyph horiz-adv-x="566" d="M466 112l-76 78q-49 -36 -116 -36q-60 0 -105 29l-70 -70l-48 48l68 69q-33 46 -33 109q0 70 39 121l-71 72l45 45q4 -4 31 -30t42 -42q47 31 108 31q63 0 112 -34l75 75l48 -48l-77 -77q29 -46 29 -103q0 -62 -31 -109q12 -12 42 -42.5t37 -38.5v-8zM276 468 q-55 0 -86 -36t-31 -87q0 -50 31.5 -86.5t88.5 -36.5t86 35.5t29 87.5t-32 87.5t-86 35.5z" />
  838. <glyph horiz-adv-x="497" d="M221 -140l-8 8v122q-108 2 -163 37l8 109q33 -22 80.5 -34t84.5 -12q44 0 68 22.5t24 61.5q0 31 -18.5 57t-40 40.5t-59.5 35.5q-9 4 -13 7q-41 24 -65 43t-45.5 57.5t-21.5 88.5q0 78 48 128t129 63v131l47 3l8 -8v-122q86 0 145 -28l-15 -111q-61 39 -132 39 q-47 0 -72.5 -23t-25.5 -62q0 -12 3.5 -24t7.5 -20.5t14 -18.5l15.5 -15.5t20.5 -15.5t21 -13.5t24.5 -14t23.5 -13.5q62 -35 97.5 -78.5t35.5 -116.5q0 -80 -48.5 -129.5t-130.5 -60.5v-130z" />
  839. <glyph horiz-adv-x="582" d="M30 248l4 48h58q-1 12 -1 35q0 18 2 50h-50l4 49h53q23 125 99.5 196.5t188.5 71.5q93 0 156 -42l-24 -111q-68 47 -130 47q-59 0 -100.5 -42.5t-57.5 -119.5h211l-4 -49h-213q-2 -24 -2 -39q0 -16 2 -46h204l-4 -48h-192q16 -73 58 -112.5t105 -39.5q73 0 137 46 l15 -105q-71 -47 -169 -47q-115 0 -189 67.5t-94 190.5h-67z" />
  840. <glyph horiz-adv-x="560" d="M173 295l-114 4l10 47l109 15h3l7 64q28 273 234 273q79 0 129 -31l-41 -98q-47 36 -90 36q-51 0 -73.5 -45.5t-33.5 -137.5l-7 -61h172l7 -13l-15 -53h-172l-34 -288q-3 -24 -5 -40.5t-9.5 -47t-16.5 -51.5t-26 -46.5t-38.5 -41.5t-54 -27t-71.5 -11q-50 0 -104 20 l22 99q46 -26 84 -26q32 0 53 20.5t28.5 46.5t11.5 64l36 329h-1z" />
  841. <glyph horiz-adv-x="560" d="M529 -159q-21 -8 -66 -8q-33 0 -68.5 9t-62 20t-61 32.5t-53 34.5t-53 39t-45.5 34q-27 -12 -59 -12q-34 0 -52.5 13t-18.5 35t16.5 35t42.5 13q28 0 61 -14q20 47 34 168l4 46l-113 4l10 47l108 15h1q15 165 72 255.5t176 90.5q92 0 146 -43l-42 -98q-53 48 -104 48 q-55 0 -83 -56t-45 -197h180l6 -13l-15 -53h-180l-3 -17q-27 -158 -90 -227q3 -2 34.5 -19t40.5 -21t37.5 -18t44.5 -19t42 -12.5t49.5 -10.5t47.5 -3q52 0 93 12z" />
  842. <glyph horiz-adv-x="554" d="M66 108v50h149v82h-149v49h149l-201 396l131 13l84 -178q27 -61 58 -148h2q22 61 58 143l87 183l98 -8l8 -14l-201 -387h149v-49h-150v-82h150v-50h-150v-108h-123v108h-149z" />
  843. <glyph horiz-adv-x="487" d="M261 -140l-8 8v126q-93 14 -147.5 85.5t-54.5 183.5q0 116 59 192.5t155 89.5v132l46 3l8 -8v-125q80 -5 133 -39l-26 -97q-57 43 -118 43q-59 0 -93.5 -48.5t-34.5 -130.5q0 -90 39.5 -142t108.5 -52q54 0 113 35l8 -83q-55 -39 -142 -42v-128z" />
  844. <glyph horiz-adv-x="566" d="M466 37l-76 78q-49 -36 -116 -36q-60 0 -105 29l-70 -70l-48 48l68 69q-33 47 -33 109q0 70 39 121l-71 72l45 45q4 -4 31 -30t42 -42q47 31 108 31q63 0 112 -34l75 75l48 -48l-77 -77q29 -46 29 -103q0 -62 -31 -109q12 -12 42 -42.5t37 -38.5v-8zM276 393 q-55 0 -86 -36t-31 -87q0 -50 31.5 -86.5t88.5 -36.5t86 35.5t29 87.5t-32 87.5t-86 35.5z" />
  845. <glyph horiz-adv-x="456" d="M204 -140l-8 8v124q-104 2 -157 30l9 101q70 -38 160 -38q80 0 80 57q0 24 -25.5 43.5t-61.5 35t-72 35t-61.5 54.5t-25.5 82q0 63 48.5 103.5t125.5 49.5v133l46 3l8 -8v-126q77 -1 129 -21l-14 -102q-62 31 -129 31q-40 0 -63 -16t-23 -45q0 -26 25.5 -46t62 -35.5 t72.5 -34.5t61.5 -53.5t25.5 -82.5q0 -60 -45.5 -98.5t-121.5 -48.5v-132z" />
  846. <glyph horiz-adv-x="549" d="M24 194l6 49h63v20q0 26 2 39h-56l5 48h60q24 91 95.5 144.5t170.5 53.5q91 0 152 -33l-24 -103q-64 37 -125 37q-49 0 -85 -26t-53 -73h184l-6 -48h-189q-2 -11 -2 -35q0 -17 1 -24h181l-5 -49h-167q16 -49 54.5 -76t94.5 -27q72 0 131 33l14 -97q-64 -35 -162 -35 q-108 0 -177 53t-88 149h-75z" />
  847. <glyph horiz-adv-x="593" d="M331 346l-1 -7h174l6 -13l-15 -53h-174l-18 -146q-3 -22 -4 -30.5t-6 -34t-9.5 -39.5t-14 -38t-20.5 -38.5t-27.5 -32.5t-36 -28t-46.5 -17t-58 -7q-51 0 -103 20l21 99q47 -26 85 -26q46 0 66 35.5t27 95.5l20 187l-113 4l10 47l109 15h1l1 11q6 56 20.5 101.5t41 84 t71 60.5t102.5 22q79 0 129 -31l-42 -98q-47 36 -92 36q-20 0 -35.5 -7.5t-26 -23t-17.5 -30.5t-12 -39.5t-7.5 -39t-5.5 -39.5z" />
  848. <glyph horiz-adv-x="565" d="M407 454q-50 0 -73 -44t-35 -132h173l6 -13l-15 -53h-171q-15 -106 -75 -167q53 -28 83 -42t82 -29.5t98 -15.5q44 0 81 12l-41 -101q-16 -8 -48 -8q-36 0 -71 7.5t-74.5 27.5t-59.5 30.5t-65.5 40.5t-52.5 34q-30 -11 -65 -11q-80 0 -80 54q0 26 17.5 40.5t46.5 14.5 q30 0 73 -18q19 44 29 131l-106 4l9 47l104 15q5 58 18 103t38.5 84.5t70 60.5t105.5 21q87 0 138 -36l-42 -95q-47 38 -98 38z" />
  849. <glyph horiz-adv-x="511" d="M62 81v48h131v68h-131v48h117l-169 290l133 13l64 -122q28 -53 59 -126h2q19 44 60 124l67 124l100 -7l7 -13l-168 -283h116v-48h-132v-68h132v-48h-132v-81h-125v81h-131z" />
  850. <glyph d="M292 -140l-8 8v126q-93 14 -147.5 85.5t-54.5 183.5q0 116 59 192.5t155 89.5v132l47 3l8 -8v-125q78 -5 133 -39l-26 -97q-57 43 -119 43q-59 0 -93.5 -48.5t-34.5 -130.5q0 -90 39.5 -142t108.5 -52q54 0 113 35l8 -83q-55 -39 -141 -42v-128z" />
  851. <glyph d="M486 190l-76 79q-47 -36 -115 -36q-61 0 -106 28l-70 -69l-48 48l68 68q-33 49 -33 109q0 70 39 122l-71 72l45 45q20 -19 73 -72q46 30 108 30q63 0 112 -34l75 76l48 -48l-77 -77q29 -46 29 -104q0 -60 -31 -109q26 -27 80 -81v-8zM297 547q-55 0 -86.5 -36.5 t-31.5 -87.5q0 -49 32 -86t88 -37q57 0 86.5 36t29.5 88q0 51 -32.5 87t-85.5 36z" />
  852. <glyph d="M263 -140l-8 8v122q-108 2 -163 37l8 109q33 -22 80.5 -34t84.5 -12q44 0 67.5 22.5t23.5 61.5q0 31 -19.5 57.5t-38 39t-60.5 36.5q-8 5 -12 7q-41 24 -65 43t-45.5 57.5t-21.5 88.5q0 78 48 128t129 63v131l47 3l8 -8v-122q86 0 144 -28l-14 -111q-61 39 -132 39 q-47 0 -72.5 -23t-25.5 -62q0 -12 3.5 -24t7.5 -20.5t14 -18.5l15.5 -15.5t20.5 -15.5t21 -13.5t24.5 -14t23.5 -13.5q62 -35 97.5 -78.5t35.5 -116.5q0 -80 -48.5 -129.5t-131.5 -60.5v-130z" />
  853. <glyph d="M37 248l4 48h58q-1 12 -1 35q0 18 2 50h-50l4 49h52q22 125 94.5 196.5t176.5 71.5q88 0 146 -42l-23 -111q-63 47 -121 47q-53 0 -90 -42.5t-51 -119.5h191l-4 -49h-193q-1 -12 -1 -39q0 -16 2 -46h183l-4 -48h-172q14 -73 51.5 -112.5t92.5 -39.5q67 0 125 46l15 -105 q-67 -47 -158 -47q-107 0 -176 67.5t-86 190.5h-67z" />
  854. <glyph d="M222 295l-106 4l10 47l101 15h4l9 80q25 257 213 257q72 0 117 -31l-42 -98q-40 36 -80 36q-19 0 -33.5 -10.5t-22 -23.5t-13.5 -38t-8 -39t-5 -41l-11 -92h165l6 -13l-15 -53h-164l-34 -288q-3 -31 -6 -49t-11.5 -55t-22 -60.5t-34 -49t-53.5 -38.5t-74 -13 q-47 0 -93 20l21 99q41 -26 73 -26q21 0 35.5 12t22.5 35.5t11 39.5t6 44l36 329h-2z" />
  855. <glyph d="M415 605q-47 0 -70.5 -56t-38.5 -197h157l6 -13l-15 -53h-156l-6 -37q-21 -144 -84 -210q3 -2 22 -13t24.5 -14t24 -13t26 -14t25.5 -12t28.5 -11.5l27 -9t30 -7.5t29.5 -4t31 -2q41 0 77 12l-31 -110q-19 -8 -54 -8q-30 0 -61.5 9t-55.5 20t-55.5 32.5t-48 34.5t-48 39 t-41.5 34q-27 -12 -59 -12q-35 0 -53.5 13t-18.5 35t16.5 35t41.5 13t62 -15q19 53 27 150l6 65l-105 4l10 47l100 15q14 175 67 260.5t166 85.5q80 0 126 -31l-41 -98q-44 36 -88 36z" />
  856. <glyph d="M87 108v50h149v82h-149v49h149l-178 396l132 13l73 -179q17 -41 46 -132h2q35 99 46 127l75 184l98 -8l8 -14l-178 -387h149v-49h-150v-82h150v-50h-150v-108h-123v108h-149z" />
  857. <glyph d="M302 -140l-8 8v126q-93 14 -147.5 85.5t-54.5 183.5q0 116 59 192.5t155 89.5v132l47 3l8 -8v-125q80 -5 133 -39l-26 -97q-57 43 -119 43q-59 0 -93.5 -48.5t-34.5 -130.5q0 -90 39.5 -142t108.5 -52q54 0 113 35l8 -83q-55 -39 -141 -42v-128z" />
  858. <glyph d="M496 37l-76 78q-49 -36 -116 -36q-60 0 -105 29l-70 -70l-48 48l68 69q-33 47 -33 109q0 70 39 121l-71 72l45 45q4 -4 31 -30t42 -42q47 31 108 31q63 0 112 -34l75 75l48 -48l-77 -77q29 -46 29 -103q0 -62 -31 -109q12 -12 42 -42.5t37 -38.5v-8zM306 393 q-55 0 -86.5 -36.5t-31.5 -86.5t32 -86.5t89 -36.5t86 35.5t29 87.5t-32 87.5t-86 35.5z" />
  859. <glyph d="M260 -140l-8 8v124q-92 4 -138 30l8 101q28 -17 68 -27.5t70 -10.5q36 0 55 14.5t19 40.5t-22.5 45.5t-54.5 35.5t-63.5 35t-54 53t-22.5 79q0 65 42 105.5t113 50.5v132l47 3l8 -8v-123q73 -2 119 -22l-15 -102q-53 31 -106 31q-38 0 -59 -15.5t-21 -43.5 q0 -27 22.5 -47.5t54.5 -36.5t63.5 -35t54 -52t22.5 -78q0 -64 -42 -104t-113 -48v-132z" />
  860. <glyph d="M42 194l6 49h64q-1 5 -1 16q0 15 2 43h-56l5 48h60q23 92 90 145t161 53q81 0 139 -33l-24 -103q-60 37 -112 37q-45 0 -77 -26t-47 -73h166l-6 -48h-170q-2 -22 -2 -34q0 -18 1 -25h162l-5 -49h-149q30 -103 133 -103q64 0 120 33l14 -97q-60 -35 -149 -35 q-103 0 -168 53t-82 149h-75z" />
  861. <glyph d="M349 346l-1 -7h168l6 -13l-15 -53h-167l-19 -146q-14 -112 -40 -164q-49 -101 -160 -101q-46 0 -94 20l21 99q42 -26 74 -26q36 0 51 35t22 96l20 187l-106 4l9 47l103 15h1l1 11q12 118 63 193t152 75q74 0 121 -31l-42 -98q-43 36 -81 36q-23 0 -39.5 -15t-25 -42 t-13 -53t-8.5 -58q-1 -7 -1 -11z" />
  862. <glyph d="M385 455q-43 0 -64 -44t-32 -134h151l7 -13l-15 -53h-152q-19 -107 -75 -168q48 -24 75 -36t76.5 -25.5t94.5 -13.5q46 0 79 12l-32 -109q-18 -9 -53 -9q-25 0 -49.5 4t-50 14.5t-43.5 18.5t-44.5 25t-38 25t-39 28t-33.5 24q-25 -11 -55 -11q-68 0 -68 47 q0 23 15.5 36.5t41.5 13.5q25 0 54 -12q20 50 30 136l-104 4l10 47l100 15q22 271 216 271q76 0 124 -31l-42 -95q-43 33 -84 33z" />
  863. <glyph d="M104 81v48h132v68h-132v48h119l-151 290l133 13l57 -121q26 -57 46 -125h3q22 70 46 122l60 124l100 -7l7 -13l-150 -283h119v-48h-132v-68h132v-48h-132v-81h-125v81h-132z" />
  864. <glyph d="M519 313h-184v-188h-69l-1 188h-196v65q48 2 196 4l-1 183h71v-183q72 1 185 1l7 -7z" />
  865. <glyph d="M519 313h-450v65q170 5 451 5l7 -7z" />
  866. <glyph d="M455 139l-156 158l-158 -158l-48 49l158 158l-156 159l46 46q92 -90 158 -157l157 158l49 -49l-158 -158q30 -29 83 -82.5t74 -74.5l-1 -10z" />
  867. <glyph d="M363 541q0 -30 -20.5 -51t-50.5 -21q-25 0 -41 17t-16 41q0 29 21 50.5t51 21.5q24 0 40 -16.5t16 -41.5zM519 313h-450v65q170 5 451 5l7 -7zM364 169q0 -30 -20.5 -51t-50.5 -21q-25 0 -41 17t-16 41q0 29 21 50.5t51 21.5q24 0 40 -16.5t16 -41.5z" />
  868. <glyph d="M519 410h-450v65q170 5 451 5l7 -6zM519 216h-450v66q170 5 451 5l7 -7z" />
  869. <glyph d="M145 123l46 96h-122v65q46 1 155 3l60 125h-215v66q189 3 248 4l57 119l9 2l55 -29l-44 -92q50 1 126 1l7 -7l-8 -64h-158l-60 -124q84 1 219 1l7 -7l-8 -63h-251l-59 -123l-9 -2z" />
  870. <glyph d="M87 108v73l332 168l-331 156v73q71 -29 215 -96t220 -106l4 -9v-43z" />
  871. <glyph d="M509 108l-440 216v43l4 9q75 39 219.5 106t215.5 96v-73l-330 -156l331 -168v-73z" />
  872. <glyph d="M75 235v70l344 129l-343 121v70q196 -65 452 -163l5 -9v-43zM522 86h-450v65q170 5 451 5l7 -6z" />
  873. <glyph d="M178 434l343 -129v-70l-458 175v43l6 9q229 88 451 163v-70zM516 86h-450v65q170 5 451 5l7 -6z" />
  874. <glyph d="M501 407h-166v-152h-70v152h-176v65q43 2 175 4l-1 149h72v-149q65 1 167 1l7 -6zM519 84h-450v65q170 5 451 5l7 -6z" />
  875. <glyph d="M428 359q-26 0 -138 30t-125 30q-9 0 -21.5 -14t-35.5 -44l-9 -12l-41 28q17 32 30.5 53t36.5 42t44 21q25 0 137.5 -30t125.5 -30t61 62q4 4 6 7l40 -27q-63 -116 -111 -116zM428 146q-26 0 -138 30.5t-125 30.5q-9 0 -21.5 -14t-35.5 -44q-3 -4 -5 -6.5t-4 -5.5l-41 28 q13 24 22.5 39t25 35.5t31.5 31t32 10.5q25 0 137.5 -30t125.5 -30t61 62q4 4 6 7l40 -28q-64 -116 -111 -116z" />
  876. <glyph d="M511 402v-236h-71v173h-379v66q167 5 442 5z" />
  877. <glyph horiz-adv-x="842" d="M772 346q0 -80 -48.5 -131.5t-125.5 -51.5q-59 0 -100 29.5t-76 81.5q-75 -111 -184 -111q-75 0 -122 50.5t-47 130.5t49 131.5t125 51.5q101 0 177 -110q75 110 183 110q75 0 122 -50.5t47 -130.5zM591 459q-81 0 -135 -100l1 -2q34 -62 65.5 -94t76.5 -32q44 0 72 31.5 t28 82.5t-30.5 82.5t-77.5 31.5zM143 348q0 -52 30 -84t77 -32q39 0 75.5 28t60.5 71l-1 2q-21 34 -32 50t-30 37.5t-38.5 30t-42.5 8.5q-44 0 -71.5 -30.5t-27.5 -80.5z" />
  878. <glyph horiz-adv-x="963" d="M431 499q0 -97 -56.5 -151t-138.5 -54t-133.5 52t-51.5 144q0 97 55.5 152.5t140.5 55.5q83 0 133.5 -54t50.5 -145zM737 698l-424 -708h-55l423 708h56zM158 499q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139zM912 127q0 -97 -56.5 -151t-138.5 -54 t-133.5 52t-51.5 144q0 97 55.5 152.5t140.5 55.5q83 0 133.5 -54t50.5 -145zM639 127q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139z" />
  879. <glyph horiz-adv-x="1437" d="M431 499q0 -97 -56.5 -151t-138.5 -54t-133.5 52t-51.5 144q0 97 55.5 152.5t140.5 55.5q83 0 133.5 -54t50.5 -145zM737 698l-424 -708h-55l423 708h56zM158 499q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139zM912 127q0 -97 -56.5 -151t-138.5 -54 t-133.5 52t-51.5 144q0 97 55.5 152.5t140.5 55.5q83 0 133.5 -54t50.5 -145zM1387 127q0 -97 -56.5 -151t-139.5 -54q-82 0 -133.5 52t-51.5 144q0 97 56 152.5t140 55.5q83 0 134 -54t51 -145zM639 127q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139z M1114 127q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139z" />
  880. <glyph d="M519 238h-184v-188h-69l-1 188h-196v65q48 2 196 4l-1 183h71v-183q72 1 185 1l7 -7z" />
  881. <glyph d="M519 235h-450v65q170 5 451 5l7 -6z" />
  882. <glyph d="M455 64l-156 158l-158 -159l-48 49l158 159l-156 158l46 47q20 -20 73.5 -73t84.5 -84l157 157l49 -49l-158 -157q22 -22 77 -78t80 -80l-1 -10z" />
  883. <glyph d="M363 466q0 -30 -20.5 -51t-50.5 -21q-25 0 -41 17t-16 41q0 29 21 50.5t51 21.5q24 0 40 -16.5t16 -41.5zM519 238h-450v65q170 5 451 5l7 -7zM364 94q0 -30 -20.5 -51t-50.5 -21q-25 0 -41 17t-16 41q0 29 21 50.5t51 21.5q24 0 40 -16.5t16 -41.5z" />
  884. <glyph d="M519 335h-450v65q170 5 451 5l7 -7zM519 141h-450v65q170 5 451 5l7 -6z" />
  885. <glyph d="M145 45l46 96h-122v65q46 1 155 3l60 126h-215v65q54 2 248 4l57 119l9 3l55 -30l-44 -91h126l7 -7l-8 -63h-158l-60 -125q84 1 219 1l7 -6l-8 -64h-251l-59 -123l-9 -2z" />
  886. <glyph d="M87 32v73l332 168l-331 156v73q71 -28 215 -95.5t220 -106.5l4 -9v-43z" />
  887. <glyph d="M178 273l331 -168v-73l-440 216v43l4 9q75 39 219.5 106t215.5 96v-73z" />
  888. <glyph d="M75 154v70l344 129l-343 121v70q241 -80 452 -163l5 -9v-43zM522 35h-450v65q170 5 451 5l7 -7z" />
  889. <glyph d="M178 353l343 -129v-70l-458 175v43l6 9q189 75 451 163v-70zM516 35h-450v65q170 5 451 5l7 -7z" />
  890. <glyph d="M507 330h-167v-152h-69l-1 152h-175v65q43 2 175 4l-1 149h71v-149q66 1 168 1l7 -6zM519 37h-450v65q170 5 451 5l7 -7z" />
  891. <glyph d="M428 317q-26 0 -138 30t-125 30q-9 0 -21.5 -14t-35.5 -44l-9 -12l-41 28q17 32 30.5 53t36.5 42t44 21q25 0 137.5 -30t125.5 -30t61 62q4 4 6 7l40 -27q-63 -116 -111 -116zM428 104q-26 0 -138 30.5t-125 30.5q-9 0 -21.5 -14t-35.5 -44l-9 -12l-41 28q13 24 22.5 39 t25 35.5t31.5 31t32 10.5q25 0 137.5 -30t125.5 -30t61 62q4 4 6 7l40 -28q-64 -116 -111 -116z" />
  892. <glyph d="M511 326v-236h-71v173h-379v66q167 5 442 5z" />
  893. <glyph horiz-adv-x="842" d="M772 271q0 -80 -48.5 -131.5t-125.5 -51.5q-59 0 -100 29.5t-76 81.5q-75 -111 -184 -111q-75 0 -122 50.5t-47 130.5t49 131.5t125 51.5q101 0 177 -110q75 110 183 110q75 0 122 -50.5t47 -130.5zM591 384q-81 0 -135 -100l1 -2q34 -62 65.5 -94t76.5 -32q44 0 72 31.5 t28 82.5t-30.5 82.5t-77.5 31.5zM143 273q0 -52 30 -84t77 -32q39 0 75.5 28t60.5 71l-1 2q-21 34 -32 50t-30 37.5t-38.5 30t-42.5 8.5q-44 0 -71.5 -30.5t-27.5 -80.5z" />
  894. <glyph horiz-adv-x="984" d="M686 548l-334 -558h-55l333 558h56zM412 395q0 -68 -50.5 -115t-132.5 -47q-81 0 -129.5 45.5t-48.5 111.5q0 68 50 113t132 45q81 0 130 -43.5t49 -109.5zM158 390q0 -49 17.5 -79.5t54.5 -30.5q38 0 56 32t18 82q0 101 -71 101q-75 0 -75 -105zM934 152 q0 -68 -50.5 -115t-132.5 -47q-81 0 -129.5 45.5t-48.5 111.5q0 68 50 113t132 45q81 0 130 -43.5t49 -109.5zM680 147q0 -45 17.5 -74.5t54.5 -29.5t55.5 30.5t18.5 77.5q0 46 -18 73.5t-54 27.5q-37 0 -55.5 -29t-18.5 -76z" />
  895. <glyph horiz-adv-x="1400" d="M686 548l-334 -558h-55l333 558h56zM412 395q0 -68 -50.5 -115t-132.5 -47q-81 0 -129.5 45.5t-48.5 111.5q0 68 50 113t132 45q81 0 130 -43.5t49 -109.5zM158 390q0 -49 17.5 -79.5t54.5 -30.5q38 0 56 32t18 82q0 101 -71 101q-75 0 -75 -105zM1349 152 q0 -68 -50 -115t-132 -47q-81 0 -129.5 45.5t-48.5 111.5q0 68 50 113t132 45q81 0 129.5 -43.5t48.5 -109.5zM934 152q0 -68 -50.5 -115t-132.5 -47q-81 0 -129.5 45.5t-48.5 111.5q0 68 50 113t132 45q81 0 130 -43.5t49 -109.5zM1096 147q0 -45 17.5 -74.5t53.5 -29.5 q38 0 56.5 30.5t18.5 77.5q0 46 -18 73.5t-54 27.5q-37 0 -55.5 -29t-18.5 -76zM680 147q0 -45 17.5 -74.5t54.5 -29.5t55.5 30.5t18.5 77.5q0 46 -18 73.5t-54 27.5q-37 0 -55.5 -29t-18.5 -76z" />
  896. <glyph horiz-adv-x="775" d="M352 604q-34 0 -57 -19t-23 -52q0 -26 18 -60.5t31 -51t40 -49.5l154 -184q25 58 25 127q0 44 -7 82l122 15l17 -16q-7 -161 -100 -272q46 -44 89 -44q32 0 56 14l10 -78q-39 -26 -100 -26q-71 0 -141 58q-92 -58 -199 -58q-99 0 -157 50t-58 130q0 65 39 115t102 75 q-72 86 -72 165q0 73 57 123t154 50q65 0 115 -25t78 -68l-61 -97q-60 96 -132 96zM198 199q0 -56 38 -94.5t102 -38.5q54 0 100 29q-14 16 -57 65l-130 155q-53 -43 -53 -116z" />
  897. <glyph horiz-adv-x="340" d="M166 452q-52 0 -85.5 33t-33.5 86q0 55 36 91.5t91 36.5q52 0 85.5 -33t33.5 -85q0 -55 -36.5 -92t-90.5 -37zM170 655q-34 0 -54.5 -23.5t-20.5 -58.5q0 -33 21 -55t53 -22q33 0 54 23.5t21 59.5q0 33 -20.5 54.5t-53.5 21.5z" />
  898. <glyph horiz-adv-x="340" d="M166 301q-52 0 -85.5 33t-33.5 86q0 55 36 91.5t91 36.5q52 0 85.5 -33t33.5 -85q0 -55 -36.5 -92t-90.5 -37zM170 504q-34 0 -54.5 -23.5t-20.5 -58.5q0 -33 21 -55t53 -22q33 0 54 23.5t21 59.5q0 33 -20.5 54.5t-53.5 21.5z" />
  899. <glyph horiz-adv-x="667" d="M303 460q-26 0 -42.5 -12t-16.5 -35q0 -6 1.5 -13t5 -14.5t6 -13.5t9 -14t9.5 -12.5t10.5 -13t10 -11t10 -11t8.5 -9.5l126 -140q16 42 16 91q0 30 -6 69l114 13l15 -14q-9 -126 -85 -215q39 -30 74 -30q25 0 47 11l9 -74q-36 -20 -90 -20q-65 0 -121 46 q-80 -46 -171 -46q-86 0 -135 39t-49 103q0 54 35.5 92.5t90.5 51.5q-64 67 -64 128q0 60 50 101t136 41q52 0 95.5 -17.5t68.5 -45.5l-58 -93q-53 68 -109 68zM176 161q0 -43 31.5 -71.5t83.5 -28.5q42 0 76 19q-9 9 -28 29.5t-21 22.5l-100 109q-42 -29 -42 -80z" />
  900. <glyph horiz-adv-x="340" d="M166 301q-52 0 -85.5 33t-33.5 86q0 55 36 91.5t91 36.5q52 0 85.5 -33t33.5 -85q0 -55 -36.5 -92t-90.5 -37zM170 504q-34 0 -54.5 -23.5t-20.5 -58.5q0 -33 21 -55t53 -22q33 0 54 23.5t21 59.5q0 33 -20.5 54.5t-53.5 21.5z" />
  901. <glyph horiz-adv-x="495" d="M253 -140l-8 8v130q-97 17 -151.5 86.5t-54.5 178.5q0 111 59.5 186t158.5 93v135l47 3l8 -8v-124h5q91 0 152 -33l-24 -103q-64 37 -126 37q-68 0 -109.5 -49.5t-41.5 -132.5q0 -82 42 -129t117 -47q71 0 132 33l14 -97q-66 -35 -163 -35h-11v-129z" />
  902. <glyph horiz-adv-x="566" d="M466 37l-76 78q-49 -36 -116 -36q-60 0 -105 29l-70 -70l-48 48l68 69q-33 47 -33 109q0 70 39 121l-71 72l45 45q4 -4 31 -30t42 -42q47 31 108 31q63 0 112 -34l75 75l48 -48l-77 -77q29 -46 29 -103q0 -62 -31 -109q12 -12 42 -42.5t37 -38.5v-8zM276 393 q-55 0 -86 -36t-31 -87q0 -50 31.5 -86.5t88.5 -36.5t86 35.5t29 87.5t-32 87.5t-86 35.5z" />
  903. <glyph horiz-adv-x="477" d="M214 -140l-8 8v124q-103 2 -156 30l8 101q70 -38 161 -38q80 0 80 57q0 24 -25.5 43.5t-61.5 35t-72.5 35t-62 54.5t-25.5 82q0 63 48.5 103.5t125.5 49.5v133l46 3l8 -8v-126q76 -1 130 -21l-15 -102q-62 31 -129 31q-39 0 -62 -16t-23 -45q0 -26 25.5 -46t61.5 -35.5 t72 -34.5t61.5 -53.5t25.5 -82.5q0 -60 -45.5 -98.5t-121.5 -48.5v-132z" />
  904. <glyph horiz-adv-x="625" d="M42 194l6 49h63v20q0 26 2 39h-56l5 48h60q24 91 95.5 144.5t170.5 53.5q91 0 152 -33l-24 -103q-64 37 -125 37q-49 0 -85 -26t-53 -73h184l-6 -48h-189q-3 -16 -3 -35q0 -10 2 -24h181l-5 -49h-167q16 -49 54.5 -76t94.5 -27q72 0 131 33l14 -97q-64 -35 -162 -35 q-108 0 -177 53t-88 149h-75z" />
  905. <glyph d="M519 313h-184v-188h-69l-1 188h-196v65q48 2 196 4l-1 183h71v-183q72 1 185 1l7 -7z" />
  906. <glyph d="M519 313h-450v65q170 5 451 5l7 -7z" />
  907. <glyph d="M455 139l-156 158l-158 -158l-48 49l158 158l-156 159l46 46q92 -90 158 -157l157 158l49 -49l-158 -158q30 -29 83 -82.5t74 -74.5l-1 -10z" />
  908. <glyph d="M363 541q0 -30 -20.5 -51t-50.5 -21q-25 0 -41 17t-16 41q0 29 21 50.5t51 21.5q24 0 40 -16.5t16 -41.5zM519 313h-450v65q170 5 451 5l7 -7zM364 169q0 -30 -20.5 -51t-50.5 -21q-25 0 -41 17t-16 41q0 29 21 50.5t51 21.5q24 0 40 -16.5t16 -41.5z" />
  909. <glyph d="M519 410h-450v65q170 5 451 5l7 -6zM519 216h-450v66q170 5 451 5l7 -7z" />
  910. <glyph d="M145 123l46 96h-122v65q46 1 155 3l60 125h-215v66q189 3 248 4l57 119l9 2l55 -29l-44 -92q50 1 126 1l7 -7l-8 -64h-158l-60 -124q84 1 219 1l7 -7l-8 -63h-251l-59 -123l-9 -2z" />
  911. <glyph d="M87 108v73l332 168l-331 156v73q71 -29 215 -96t220 -106l4 -9v-43z" />
  912. <glyph d="M509 108l-440 216v43l4 9q75 39 219.5 106t215.5 96v-73l-330 -156l331 -168v-73z" />
  913. <glyph d="M75 235v70l344 129l-343 121v70q196 -65 452 -163l5 -9v-43zM522 86h-450v65q170 5 451 5l7 -6z" />
  914. <glyph d="M178 434l343 -129v-70l-458 175v43l6 9q229 88 451 163v-70zM516 86h-450v65q170 5 451 5l7 -6z" />
  915. <glyph d="M501 407h-166v-152h-70v152h-176v65q43 2 175 4l-1 149h72v-149q65 1 167 1l7 -6zM519 84h-450v65q170 5 451 5l7 -6z" />
  916. <glyph d="M428 318q-26 0 -138 30t-125 30q-3 0 -6.5 -1.5t-8.5 -6t-8.5 -8t-9.5 -11.5t-10 -12.5t-11.5 -14.5t-11.5 -15l-41 27q17 32 30.5 53t36.5 42t44 21q25 0 137.5 -30t125.5 -30t61 62q4 4 6 7l40 -27q-63 -116 -111 -116zM428 105q-26 0 -138 30t-125 30q-3 0 -6.5 -1.5 t-8.5 -6t-8.5 -8t-9.5 -11.5t-10 -12.5t-11.5 -14.5t-11.5 -15l-41 27q17 32 30.5 53t36.5 42t44 21q25 0 137.5 -30t125.5 -30t61 62q4 4 6 7l40 -27q-63 -116 -111 -116z" />
  917. <glyph d="M511 326v-236h-71v173h-379v66q167 5 442 5z" />
  918. <glyph horiz-adv-x="842" d="M772 271q0 -80 -48.5 -131.5t-125.5 -51.5q-59 0 -100 29.5t-76 81.5q-75 -111 -184 -111q-75 0 -122 50.5t-47 130.5t49 131.5t125 51.5q101 0 177 -110q75 110 183 110q75 0 122 -50.5t47 -130.5zM591 384q-81 0 -135 -100l1 -2q34 -62 65.5 -94t76.5 -32q44 0 72 31.5 t28 82.5t-30.5 82.5t-77.5 31.5zM143 273q0 -52 30 -84t77 -32q39 0 75.5 28t60.5 71l-1 2q-21 34 -32 50t-30 37.5t-38.5 30t-42.5 8.5q-44 0 -71.5 -30.5t-27.5 -80.5z" />
  919. <glyph horiz-adv-x="963" d="M431 499q0 -97 -56.5 -151t-138.5 -54t-133.5 52t-51.5 144q0 97 55.5 152.5t140.5 55.5q83 0 133.5 -54t50.5 -145zM737 698l-424 -708h-55l423 708h56zM158 499q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139zM912 127q0 -97 -56.5 -151t-138.5 -54 t-133.5 52t-51.5 144q0 97 55.5 152.5t140.5 55.5q83 0 133.5 -54t50.5 -145zM639 127q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139z" />
  920. <glyph horiz-adv-x="1437" d="M431 499q0 -97 -56.5 -151t-138.5 -54t-133.5 52t-51.5 144q0 97 55.5 152.5t140.5 55.5q83 0 133.5 -54t50.5 -145zM737 698l-424 -708h-55l423 708h56zM158 499q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139zM912 127q0 -97 -56.5 -151t-138.5 -54 t-133.5 52t-51.5 144q0 97 55.5 152.5t140.5 55.5q83 0 133.5 -54t50.5 -145zM1387 127q0 -97 -56.5 -151t-139.5 -54q-82 0 -133.5 52t-51.5 144q0 97 56 152.5t140 55.5q83 0 134 -54t51 -145zM639 127q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139z M1114 127q0 -145 83 -145q40 0 61 37t21 102q0 145 -82 145q-83 0 -83 -139z" />
  921. <glyph horiz-adv-x="565" d="M407 454q-50 0 -73 -44t-35 -132h173l6 -13l-15 -53h-171q-15 -106 -75 -167q53 -28 83 -42t82 -29.5t98 -15.5q44 0 81 12l-41 -101q-16 -8 -48 -8q-36 0 -71 7.5t-74.5 27.5t-59.5 30.5t-65.5 40.5t-52.5 34q-30 -11 -65 -11q-80 0 -80 54q0 26 17.5 40.5t46.5 14.5 q30 0 73 -18q19 44 29 131l-106 4l9 47l104 15q5 58 18 103t38.5 84.5t70 60.5t105.5 21q87 0 138 -36l-42 -95q-47 38 -98 38z" />
  922. <glyph d="M307 -140l-8 8v126q-93 14 -147.5 85.5t-54.5 183.5q0 116 59 192.5t155 89.5v132l47 3l8 -8v-125q78 -5 133 -39l-27 -97q-57 43 -118 43q-59 0 -93.5 -48.5t-34.5 -130.5q0 -90 39.5 -142t108.5 -52q54 0 113 35l8 -83q-55 -39 -142 -42v-128z" />
  923. <glyph d="M496 37l-76 78q-49 -36 -116 -36q-60 0 -105 29l-70 -70l-48 48l68 69q-33 47 -33 109q0 70 39 121l-71 72l45 45q4 -4 31 -30t42 -42q47 31 108 31q63 0 112 -34l75 75l48 -48l-77 -77q29 -46 29 -103q0 -62 -31 -109q12 -12 42 -42.5t37 -38.5v-8zM306 393 q-55 0 -86.5 -36.5t-31.5 -86.5t32 -86.5t89 -36.5t86 35.5t29 87.5t-32 87.5t-86 35.5z" />
  924. <glyph d="M266 -140l-8 8v124q-103 2 -156 30l8 101q70 -38 161 -38q80 0 80 57q0 24 -25.5 43.5t-61.5 35t-72.5 35t-62 54.5t-25.5 82q0 63 48.5 103.5t125.5 49.5v133l46 3l8 -8v-126q76 -1 130 -21l-15 -102q-62 31 -129 31q-39 0 -62 -16t-23 -45q0 -26 25.5 -46t61.5 -35.5 t72 -34.5t61.5 -53.5t25.5 -82.5q0 -60 -45.5 -98.5t-121.5 -48.5v-132z" />
  925. <glyph horiz-adv-x="543" d="M19 194l6 49h63q-1 6 -1 20q0 13 2 39h-56l6 48h59q25 91 96.5 144.5t170.5 53.5q91 0 152 -33l-24 -103q-64 37 -126 37q-49 0 -85 -26t-52 -73h183l-5 -48h-190q-2 -22 -2 -35q0 -17 1 -24h182l-6 -49h-166q34 -103 148 -103q71 0 132 33l14 -97q-64 -35 -163 -35 q-107 0 -176.5 53t-87.5 149h-75z" />
  926. <glyph d="M383 455q-44 0 -64.5 -43.5t-31.5 -134.5h151l6 -13l-15 -53h-152q-17 -105 -74 -168q48 -24 75 -36t76.5 -25.5t93.5 -13.5q45 0 80 12l-32 -109q-18 -9 -53 -9q-25 0 -49.5 4t-50 14.5t-43.5 18.5t-44.5 25t-38 25t-39 28t-33.5 24q-27 -11 -56 -11q-68 0 -68 47 q0 23 16 36.5t42 13.5q25 0 54 -12q21 53 29 136l-104 4l10 47l101 15q22 271 216 271q76 0 123 -31l-41 -95q-43 33 -84 33z" />
  927. <glyph d="M104 81v48h132v68h-132v48h119l-151 290l133 13l57 -121q26 -57 46 -125h3q22 70 46 122l60 124l100 -7l7 -13l-150 -283h119v-48h-132v-68h132v-48h-132v-81h-125v81h-132z" />
  928. <glyph horiz-adv-x="536" d="M74 81v48h132v68h-132v48h117l-169 290l133 13l64 -122q35 -66 59 -126h2q3 7 60 124l67 124l100 -7l7 -13l-168 -283h116v-48h-131v-68h131v-48h-131v-81h-125v81h-132z" />
  929. <glyph horiz-adv-x="593" d="M331 346l-1 -7h174l6 -13l-15 -53h-174l-18 -146q-3 -22 -4 -30.5t-6 -34t-9.5 -39.5t-14 -38t-20.5 -38.5t-27.5 -32.5t-36 -28t-46.5 -17t-58 -7q-51 0 -103 20l21 99q47 -26 85 -26q46 0 66 35.5t27 95.5l20 187l-113 4l10 47l109 15h1l1 11q6 56 20.5 101.5t41 84 t71 60.5t102.5 22q79 0 129 -31l-42 -98q-47 36 -92 36q-20 0 -35.5 -7.5t-26 -23t-17.5 -30.5t-12 -39.5t-7.5 -39t-5.5 -39.5z" />
  930. <glyph d="M349 346l-1 -7h168l6 -13l-15 -53h-167l-19 -146q-14 -112 -40 -164q-49 -101 -160 -101q-46 0 -94 20l21 99q42 -26 74 -26q36 0 51 35t22 96l20 187l-106 4l9 47l103 15h1l1 11q12 118 63 193t152 75q74 0 121 -31l-42 -98q-43 36 -81 36q-23 0 -39.5 -15t-25 -42 t-13 -53t-8.5 -58q-1 -7 -1 -11z" />
  931. <glyph horiz-adv-x="591" d="M285 864l-6 -21q-115 -59 -268 -69l-10 32q119 58 208 125zM584 864l-6 -21q-114 -59 -268 -69l-10 32q123 61 207 125zM213 0h-128v517q0 95 -9 171l123 10l14 -14v-684zM338 -208l-40 56q80 89 80 254v415q0 79 -12 166l127 15l13 -13v-583q0 -120 -36.5 -188.5 t-131.5 -121.5z" />
  932. <glyph horiz-adv-x="564" d="M234 754l7 -21q-60 -92 -158 -163l-46 11q61 111 85 184zM515 754l7 -21q-60 -92 -158 -163l-47 11q59 103 85 184zM77 0v327q0 89 -12 166l123 15l14 -14v-494h-125zM337 -258l-47 46q70 83 70 216v323q0 79 -12 166l123 15l14 -14v-484q0 -101 -33.5 -162t-114.5 -106z " />
  933. <glyph horiz-adv-x="503" d="M220 795l7 -22q-62 -95 -158 -162l-47 11q58 101 85 184zM464 795l7 -22q-62 -95 -158 -162l-47 11q57 100 86 184zM188 0h-125v400q0 81 -7 140l118 8l14 -14v-534zM284 -155l-35 43q66 77 66 205v307q0 71 -12 134l124 14l13 -13v-442q0 -97 -33 -152t-123 -96z" />
  934. <hkern u1="&#x21;" u2="&#x1ef9;" k="12" />
  935. <hkern u1="&#x21;" u2="&#x1ef3;" k="12" />
  936. <hkern u1="&#x21;" u2="&#x1ee5;" k="18" />
  937. <hkern u1="&#x21;" u2="&#x233;" k="12" />
  938. <hkern u1="&#x21;" u2="&#x1dc;" k="18" />
  939. <hkern u1="&#x21;" u2="&#x1da;" k="18" />
  940. <hkern u1="&#x21;" u2="&#x1d8;" k="18" />
  941. <hkern u1="&#x21;" u2="&#x1d6;" k="18" />
  942. <hkern u1="&#x21;" u2="&#x1d4;" k="18" />
  943. <hkern u1="&#x21;" u2="&#x177;" k="12" />
  944. <hkern u1="&#x21;" u2="&#x173;" k="18" />
  945. <hkern u1="&#x21;" u2="&#x171;" k="18" />
  946. <hkern u1="&#x21;" u2="&#x16f;" k="18" />
  947. <hkern u1="&#x21;" u2="&#x16d;" k="18" />
  948. <hkern u1="&#x21;" u2="&#x16b;" k="18" />
  949. <hkern u1="&#x21;" u2="&#x169;" k="18" />
  950. <hkern u1="&#x21;" u2="&#xff;" k="12" />
  951. <hkern u1="&#x21;" u2="&#xfd;" k="12" />
  952. <hkern u1="&#x21;" u2="&#xfc;" k="18" />
  953. <hkern u1="&#x21;" u2="&#xfb;" k="18" />
  954. <hkern u1="&#x21;" u2="&#xfa;" k="18" />
  955. <hkern u1="&#x21;" u2="&#xf9;" k="18" />
  956. <hkern u1="&#x21;" u2="y" k="12" />
  957. <hkern u1="&#x21;" u2="u" k="18" />
  958. <hkern u1="&#x22;" g2="s_h" k="38" />
  959. <hkern u1="&#x22;" g2="c_t" k="44" />
  960. <hkern u1="&#x22;" g2="c_h" k="44" />
  961. <hkern u1="&#x22;" u2="&#xfb02;" k="6" />
  962. <hkern u1="&#x22;" u2="&#xfb01;" k="6" />
  963. <hkern u1="&#x22;" u2="&#x1ecd;" k="44" />
  964. <hkern u1="&#x22;" u2="&#x1ebd;" k="44" />
  965. <hkern u1="&#x22;" u2="&#x1eb9;" k="44" />
  966. <hkern u1="&#x22;" u2="&#x1e9e;" k="6" />
  967. <hkern u1="&#x22;" u2="&#x1e63;" k="38" />
  968. <hkern u1="&#x22;" u2="&#x1e0d;" k="44" />
  969. <hkern u1="&#x22;" u2="&#x259;" k="44" />
  970. <hkern u1="&#x22;" u2="&#x219;" k="38" />
  971. <hkern u1="&#x22;" u2="&#x1ff;" k="44" />
  972. <hkern u1="&#x22;" u2="&#x1eb;" k="44" />
  973. <hkern u1="&#x22;" u2="&#x1d2;" k="44" />
  974. <hkern u1="&#x22;" u2="&#x161;" k="38" />
  975. <hkern u1="&#x22;" u2="&#x15f;" k="38" />
  976. <hkern u1="&#x22;" u2="&#x15d;" k="38" />
  977. <hkern u1="&#x22;" u2="&#x15b;" k="38" />
  978. <hkern u1="&#x22;" u2="&#x153;" k="44" />
  979. <hkern u1="&#x22;" u2="&#x151;" k="44" />
  980. <hkern u1="&#x22;" u2="&#x14f;" k="44" />
  981. <hkern u1="&#x22;" u2="&#x14d;" k="44" />
  982. <hkern u1="&#x22;" u2="&#x11b;" k="44" />
  983. <hkern u1="&#x22;" u2="&#x119;" k="44" />
  984. <hkern u1="&#x22;" u2="&#x117;" k="44" />
  985. <hkern u1="&#x22;" u2="&#x115;" k="44" />
  986. <hkern u1="&#x22;" u2="&#x113;" k="44" />
  987. <hkern u1="&#x22;" u2="&#x111;" k="44" />
  988. <hkern u1="&#x22;" u2="&#x10f;" k="44" />
  989. <hkern u1="&#x22;" u2="&#x10d;" k="44" />
  990. <hkern u1="&#x22;" u2="&#x10b;" k="44" />
  991. <hkern u1="&#x22;" u2="&#x109;" k="44" />
  992. <hkern u1="&#x22;" u2="&#x107;" k="44" />
  993. <hkern u1="&#x22;" u2="&#xf8;" k="44" />
  994. <hkern u1="&#x22;" u2="&#xf6;" k="44" />
  995. <hkern u1="&#x22;" u2="&#xf5;" k="44" />
  996. <hkern u1="&#x22;" u2="&#xf4;" k="44" />
  997. <hkern u1="&#x22;" u2="&#xf3;" k="44" />
  998. <hkern u1="&#x22;" u2="&#xf2;" k="44" />
  999. <hkern u1="&#x22;" u2="&#xf0;" k="44" />
  1000. <hkern u1="&#x22;" u2="&#xeb;" k="44" />
  1001. <hkern u1="&#x22;" u2="&#xea;" k="44" />
  1002. <hkern u1="&#x22;" u2="&#xe9;" k="44" />
  1003. <hkern u1="&#x22;" u2="&#xe8;" k="44" />
  1004. <hkern u1="&#x22;" u2="&#xe7;" k="44" />
  1005. <hkern u1="&#x22;" u2="&#xdf;" k="6" />
  1006. <hkern u1="&#x22;" u2="s" k="38" />
  1007. <hkern u1="&#x22;" u2="q" k="44" />
  1008. <hkern u1="&#x22;" u2="o" k="44" />
  1009. <hkern u1="&#x22;" u2="f" k="6" />
  1010. <hkern u1="&#x22;" u2="e" k="44" />
  1011. <hkern u1="&#x22;" u2="d" k="44" />
  1012. <hkern u1="&#x22;" u2="c" k="44" />
  1013. <hkern u1="&#x2d;" g2="x.sc" k="15" />
  1014. <hkern u1="&#x2d;" u2="&#x222b;" k="14" />
  1015. <hkern u1="&#x2d;" u2="&#x2211;" k="42" />
  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="16" />
  1021. <hkern u1="A" g2="quotesingle.caps" k="68" />
  1022. <hkern u1="A" g2="quotedbl.caps" k="80" />
  1023. <hkern u1="A" g2="parenleft.caps" k="20" />
  1024. <hkern u1="A" g2="asterisk.caps" k="68" />
  1025. <hkern u1="A" g2="questiondown.caps" k="-8" />
  1026. <hkern u1="A" g2="question.caps" k="66" />
  1027. <hkern u1="A" u2="V" k="34" />
  1028. <hkern u1="B" g2="quotesingle.caps" k="26" />
  1029. <hkern u1="B" g2="quotedbl.caps" k="26" />
  1030. <hkern u1="B" g2="parenleft.caps" k="20" />
  1031. <hkern u1="B" g2="asterisk.caps" k="24" />
  1032. <hkern u1="B" g2="question.caps" k="36" />
  1033. <hkern u1="B" g2="exclam.caps" k="43" />
  1034. <hkern u1="B" u2="&#x2122;" k="12" />
  1035. <hkern u1="B" u2="&#x2021;" k="4" />
  1036. <hkern u1="B" u2="&#x2020;" k="4" />
  1037. <hkern u1="B" u2="_" k="20" />
  1038. <hkern u1="B" u2="X" k="19" />
  1039. <hkern u1="B" u2="M" k="5" />
  1040. <hkern u1="C" g2="parenleft.sc" k="16" />
  1041. <hkern u1="C" g2="parenleft.caps" k="12" />
  1042. <hkern u1="C" g2="asterisk.caps" k="12" />
  1043. <hkern u1="C" g2="question.caps" k="12" />
  1044. <hkern u1="C" g2="exclam.caps" k="24" />
  1045. <hkern u1="D" g2="ampersand.caps" k="18" />
  1046. <hkern u1="D" g2="parenleft.sc" k="16" />
  1047. <hkern u1="D" g2="quotesingle.caps" k="14" />
  1048. <hkern u1="D" g2="quotedbl.caps" k="10" />
  1049. <hkern u1="D" g2="bracketright.caps" k="24" />
  1050. <hkern u1="D" g2="asterisk.caps" k="18" />
  1051. <hkern u1="D" g2="periodcentered.caps" k="8" />
  1052. <hkern u1="D" g2="question.caps" k="43" />
  1053. <hkern u1="D" u2="&#x7d;" k="-14" />
  1054. <hkern u1="E" g2="ampersand.caps" k="20" />
  1055. <hkern u1="E" g2="parenleft.sc" k="12" />
  1056. <hkern u1="E" g2="quotesingle.caps" k="4" />
  1057. <hkern u1="E" g2="quotedbl.caps" k="16" />
  1058. <hkern u1="E" g2="parenleft.caps" k="20" />
  1059. <hkern u1="F" g2="ampersand.caps" k="26" />
  1060. <hkern u1="F" g2="parenleft.sc" k="16" />
  1061. <hkern u1="F" g2="question.caps" k="6" />
  1062. <hkern u1="F" g2="exclam.caps" k="24" />
  1063. <hkern u1="F" g2="x.sc" k="4" />
  1064. <hkern u1="F" g2="m.sc" k="27" />
  1065. <hkern u1="F" u2="M" k="17" />
  1066. <hkern u1="G" g2="ampersand.caps" k="4" />
  1067. <hkern u1="G" g2="parenleft.sc" k="16" />
  1068. <hkern u1="G" g2="quotesingle.caps" k="4" />
  1069. <hkern u1="G" g2="quotedbl.caps" k="4" />
  1070. <hkern u1="G" g2="parenleft.caps" k="8" />
  1071. <hkern u1="G" g2="asterisk.caps" k="16" />
  1072. <hkern u1="G" g2="question.caps" k="12" />
  1073. <hkern u1="G" g2="exclam.caps" k="24" />
  1074. <hkern u1="H" g2="parenleft.sc" k="12" />
  1075. <hkern u1="H" g2="parenleft.caps" k="16" />
  1076. <hkern u1="H" g2="question.caps" k="30" />
  1077. <hkern u1="H" g2="exclam.caps" k="12" />
  1078. <hkern u1="I" g2="parenleft.sc" k="12" />
  1079. <hkern u1="I" g2="parenleft.caps" k="16" />
  1080. <hkern u1="I" g2="question.caps" k="30" />
  1081. <hkern u1="I" g2="exclam.caps" k="12" />
  1082. <hkern u1="J" g2="parenleft.caps" k="8" />
  1083. <hkern u1="J" g2="asterisk.caps" k="8" />
  1084. <hkern u1="J" g2="question.caps" k="18" />
  1085. <hkern u1="J" g2="exclam.caps" k="12" />
  1086. <hkern u1="K" g2="ampersand.caps" k="30" />
  1087. <hkern u1="K" g2="quotesingle.caps" k="-4" />
  1088. <hkern u1="K" g2="quotedbl.caps" k="-8" />
  1089. <hkern u1="K" g2="question.caps" k="24" />
  1090. <hkern u1="K" g2="exclam.caps" k="12" />
  1091. <hkern u1="L" g2="quotesingle.caps" k="76" />
  1092. <hkern u1="L" g2="quotedbl.caps" k="84" />
  1093. <hkern u1="L" g2="asterisk.caps" k="96" />
  1094. <hkern u1="L" g2="periodcentered.caps" k="44" />
  1095. <hkern u1="L" g2="question.caps" k="56" />
  1096. <hkern u1="L" g2="exclam.caps" k="24" />
  1097. <hkern u1="M" g2="parenleft.sc" k="24" />
  1098. <hkern u1="M" g2="parenleft.caps" k="12" />
  1099. <hkern u1="M" g2="asterisk.caps" k="8" />
  1100. <hkern u1="M" g2="questiondown.caps" k="-12" />
  1101. <hkern u1="M" g2="question.caps" k="30" />
  1102. <hkern u1="M" g2="exclam.caps" k="24" />
  1103. <hkern u1="M" g2="x.sc" k="4" />
  1104. <hkern u1="M" u2="&#x2122;" k="16" />
  1105. <hkern u1="M" u2="&#x2020;" k="4" />
  1106. <hkern u1="N" g2="parenleft.sc" k="12" />
  1107. <hkern u1="N" g2="parenleft.caps" k="16" />
  1108. <hkern u1="N" g2="question.caps" k="30" />
  1109. <hkern u1="N" g2="exclam.caps" k="12" />
  1110. <hkern u1="O" g2="ampersand.caps" k="18" />
  1111. <hkern u1="O" g2="parenleft.sc" k="16" />
  1112. <hkern u1="O" g2="quotesingle.caps" k="14" />
  1113. <hkern u1="O" g2="quotedbl.caps" k="10" />
  1114. <hkern u1="O" g2="bracketright.caps" k="24" />
  1115. <hkern u1="O" g2="asterisk.caps" k="18" />
  1116. <hkern u1="O" g2="periodcentered.caps" k="8" />
  1117. <hkern u1="O" g2="question.caps" k="43" />
  1118. <hkern u1="O" u2="&#x7d;" k="-14" />
  1119. <hkern u1="P" g2="ampersand.caps" k="26" />
  1120. <hkern u1="P" g2="parenleft.sc" k="20" />
  1121. <hkern u1="P" g2="quotesingle.caps" k="4" />
  1122. <hkern u1="P" g2="parenleft.caps" k="16" />
  1123. <hkern u1="P" g2="asterisk.caps" k="12" />
  1124. <hkern u1="P" g2="questiondown.caps" k="6" />
  1125. <hkern u1="P" g2="question.caps" k="24" />
  1126. <hkern u1="P" g2="exclam.caps" k="18" />
  1127. <hkern u1="P" g2="x.sc" k="4" />
  1128. <hkern u1="P" g2="m.sc" k="18" />
  1129. <hkern u1="P" u2="_" k="57" />
  1130. <hkern u1="P" u2="X" k="26" />
  1131. <hkern u1="P" u2="M" k="20" />
  1132. <hkern u1="Q" g2="ampersand.caps" k="18" />
  1133. <hkern u1="Q" g2="parenleft.sc" k="16" />
  1134. <hkern u1="Q" g2="quotesingle.caps" k="14" />
  1135. <hkern u1="Q" g2="quotedbl.caps" k="10" />
  1136. <hkern u1="Q" g2="bracketright.caps" k="24" />
  1137. <hkern u1="Q" g2="asterisk.caps" k="18" />
  1138. <hkern u1="Q" g2="periodcentered.caps" k="8" />
  1139. <hkern u1="Q" g2="question.caps" k="43" />
  1140. <hkern u1="Q" u2="&#x7d;" k="-14" />
  1141. <hkern u1="R" g2="ampersand.caps" k="6" />
  1142. <hkern u1="R" g2="parenleft.sc" k="20" />
  1143. <hkern u1="R" g2="quotesingle.caps" k="12" />
  1144. <hkern u1="R" g2="parenleft.caps" k="16" />
  1145. <hkern u1="R" g2="question.caps" k="24" />
  1146. <hkern u1="R" g2="exclam.caps" k="30" />
  1147. <hkern u1="S" g2="parenleft.sc" k="20" />
  1148. <hkern u1="S" g2="parenleft.caps" k="20" />
  1149. <hkern u1="S" g2="question.caps" k="38" />
  1150. <hkern u1="S" g2="exclam.caps" k="36" />
  1151. <hkern u1="T" g2="ampersand.caps" k="40" />
  1152. <hkern u1="T" g2="parenleft.sc" k="31" />
  1153. <hkern u1="T" g2="parenleft.caps" k="24" />
  1154. <hkern u1="T" g2="exclam.caps" k="18" />
  1155. <hkern u1="U" g2="ampersand.caps" k="4" />
  1156. <hkern u1="U" g2="parenleft.sc" k="12" />
  1157. <hkern u1="U" g2="parenleft.caps" k="12" />
  1158. <hkern u1="U" g2="question.caps" k="18" />
  1159. <hkern u1="V" g2="ampersand.caps" k="52" />
  1160. <hkern u1="V" g2="parenleft.sc" k="20" />
  1161. <hkern u1="V" g2="parenleft.caps" k="20" />
  1162. <hkern u1="V" g2="question.caps" k="12" />
  1163. <hkern u1="V" u2="&#x1ebd;" k="52" />
  1164. <hkern u1="V" u2="&#x1eb9;" k="52" />
  1165. <hkern u1="V" u2="&#x1ea1;" k="39" />
  1166. <hkern u1="V" u2="&#x1ea0;" k="52" />
  1167. <hkern u1="V" u2="&#x1fb;" k="39" />
  1168. <hkern u1="V" u2="&#x1fa;" k="52" />
  1169. <hkern u1="V" u2="&#x1ce;" k="39" />
  1170. <hkern u1="V" u2="&#x1cd;" k="52" />
  1171. <hkern u1="V" u2="&#x11b;" k="52" />
  1172. <hkern u1="V" u2="&#x119;" k="52" />
  1173. <hkern u1="V" u2="&#x117;" k="52" />
  1174. <hkern u1="V" u2="&#x115;" k="52" />
  1175. <hkern u1="V" u2="&#x113;" k="52" />
  1176. <hkern u1="V" u2="&#x105;" k="39" />
  1177. <hkern u1="V" u2="&#x104;" k="52" />
  1178. <hkern u1="V" u2="&#x103;" k="39" />
  1179. <hkern u1="V" u2="&#x102;" k="52" />
  1180. <hkern u1="V" u2="&#x101;" k="39" />
  1181. <hkern u1="V" u2="&#x100;" k="52" />
  1182. <hkern u1="V" u2="&#xeb;" k="52" />
  1183. <hkern u1="V" u2="&#xea;" k="52" />
  1184. <hkern u1="V" u2="&#xe9;" k="52" />
  1185. <hkern u1="V" u2="&#xe8;" k="52" />
  1186. <hkern u1="V" u2="&#xe5;" k="39" />
  1187. <hkern u1="V" u2="&#xe4;" k="39" />
  1188. <hkern u1="V" u2="&#xe3;" k="39" />
  1189. <hkern u1="V" u2="&#xe2;" k="39" />
  1190. <hkern u1="V" u2="&#xe1;" k="39" />
  1191. <hkern u1="V" u2="&#xe0;" k="39" />
  1192. <hkern u1="V" u2="&#xc5;" k="52" />
  1193. <hkern u1="V" u2="&#xc4;" k="52" />
  1194. <hkern u1="V" u2="&#xc3;" k="52" />
  1195. <hkern u1="V" u2="&#xc2;" k="52" />
  1196. <hkern u1="V" u2="&#xc1;" k="52" />
  1197. <hkern u1="V" u2="&#xc0;" k="52" />
  1198. <hkern u1="V" u2="e" k="52" />
  1199. <hkern u1="V" u2="a" k="39" />
  1200. <hkern u1="V" u2="A" k="34" />
  1201. <hkern u1="W" g2="ampersand.caps" k="52" />
  1202. <hkern u1="W" g2="parenleft.sc" k="20" />
  1203. <hkern u1="W" g2="parenleft.caps" k="20" />
  1204. <hkern u1="W" g2="question.caps" k="12" />
  1205. <hkern u1="X" g2="ampersand.caps" k="16" />
  1206. <hkern u1="X" g2="parenleft.sc" k="12" />
  1207. <hkern u1="X" g2="hyphen.caps" k="8" />
  1208. <hkern u1="X" g2="parenleft.caps" k="16" />
  1209. <hkern u1="X" g2="periodcentered.caps" k="22" />
  1210. <hkern u1="X" g2="exclam.caps" k="18" />
  1211. <hkern u1="X" g2="x.sc" k="4" />
  1212. <hkern u1="X" g2="m.sc" k="4" />
  1213. <hkern u1="X" u2="&#x2013;" k="13" />
  1214. <hkern u1="X" u2="x" k="4" />
  1215. <hkern u1="X" u2="&#x2d;" k="20" />
  1216. <hkern u1="Y" g2="ampersand.caps" k="44" />
  1217. <hkern u1="Y" g2="parenleft.caps" k="16" />
  1218. <hkern u1="Y" g2="question.caps" k="12" />
  1219. <hkern u1="Z" g2="ampersand.caps" k="6" />
  1220. <hkern u1="Z" g2="parenleft.sc" k="12" />
  1221. <hkern u1="Z" g2="parenleft.caps" k="12" />
  1222. <hkern u1="Z" g2="question.caps" k="18" />
  1223. <hkern u1="_" u2="&#x220f;" k="8" />
  1224. <hkern u1="_" u2="&#x2202;" k="30" />
  1225. <hkern u1="_" u2="&#x3c0;" k="30" />
  1226. <hkern u1="_" u2="&#x18f;" k="40" />
  1227. <hkern u1="b" g2="asterisk.caps" k="20" />
  1228. <hkern u1="d" g2="asterisk.caps" k="4" />
  1229. <hkern u1="e" g2="asterisk.caps" k="12" />
  1230. <hkern u1="f" g2="asterisk.caps" k="-62" />
  1231. <hkern u1="f" u2="&#x22;" k="-30" />
  1232. <hkern u1="h" u2="&#x27;" k="30" />
  1233. <hkern u1="m" u2="&#x27;" k="30" />
  1234. <hkern u1="n" u2="&#x27;" k="30" />
  1235. <hkern u1="o" g2="asterisk.caps" k="20" />
  1236. <hkern u1="p" g2="asterisk.caps" k="20" />
  1237. <hkern u1="s" u2="&#x27;" k="24" />
  1238. <hkern u1="u" u2="&#x22;" k="24" />
  1239. <hkern u1="&#xc0;" g2="ampersand.caps" k="16" />
  1240. <hkern u1="&#xc0;" g2="quotesingle.caps" k="68" />
  1241. <hkern u1="&#xc0;" g2="quotedbl.caps" k="80" />
  1242. <hkern u1="&#xc0;" g2="parenleft.caps" k="20" />
  1243. <hkern u1="&#xc0;" g2="asterisk.caps" k="68" />
  1244. <hkern u1="&#xc0;" g2="questiondown.caps" k="-8" />
  1245. <hkern u1="&#xc0;" g2="question.caps" k="66" />
  1246. <hkern u1="&#xc0;" u2="V" k="34" />
  1247. <hkern u1="&#xc1;" g2="ampersand.caps" k="16" />
  1248. <hkern u1="&#xc1;" g2="quotesingle.caps" k="68" />
  1249. <hkern u1="&#xc1;" g2="quotedbl.caps" k="80" />
  1250. <hkern u1="&#xc1;" g2="parenleft.caps" k="20" />
  1251. <hkern u1="&#xc1;" g2="asterisk.caps" k="68" />
  1252. <hkern u1="&#xc1;" g2="questiondown.caps" k="-8" />
  1253. <hkern u1="&#xc1;" g2="question.caps" k="66" />
  1254. <hkern u1="&#xc1;" u2="V" k="34" />
  1255. <hkern u1="&#xc2;" g2="ampersand.caps" k="16" />
  1256. <hkern u1="&#xc2;" g2="quotesingle.caps" k="68" />
  1257. <hkern u1="&#xc2;" g2="quotedbl.caps" k="80" />
  1258. <hkern u1="&#xc2;" g2="parenleft.caps" k="20" />
  1259. <hkern u1="&#xc2;" g2="asterisk.caps" k="68" />
  1260. <hkern u1="&#xc2;" g2="questiondown.caps" k="-8" />
  1261. <hkern u1="&#xc2;" g2="question.caps" k="66" />
  1262. <hkern u1="&#xc2;" u2="V" k="34" />
  1263. <hkern u1="&#xc3;" g2="ampersand.caps" k="16" />
  1264. <hkern u1="&#xc3;" g2="quotesingle.caps" k="68" />
  1265. <hkern u1="&#xc3;" g2="quotedbl.caps" k="80" />
  1266. <hkern u1="&#xc3;" g2="parenleft.caps" k="20" />
  1267. <hkern u1="&#xc3;" g2="asterisk.caps" k="68" />
  1268. <hkern u1="&#xc3;" g2="questiondown.caps" k="-8" />
  1269. <hkern u1="&#xc3;" g2="question.caps" k="66" />
  1270. <hkern u1="&#xc3;" u2="V" k="34" />
  1271. <hkern u1="&#xc4;" g2="ampersand.caps" k="16" />
  1272. <hkern u1="&#xc4;" g2="quotesingle.caps" k="68" />
  1273. <hkern u1="&#xc4;" g2="quotedbl.caps" k="80" />
  1274. <hkern u1="&#xc4;" g2="parenleft.caps" k="20" />
  1275. <hkern u1="&#xc4;" g2="asterisk.caps" k="68" />
  1276. <hkern u1="&#xc4;" g2="questiondown.caps" k="-8" />
  1277. <hkern u1="&#xc4;" g2="question.caps" k="66" />
  1278. <hkern u1="&#xc4;" u2="V" k="34" />
  1279. <hkern u1="&#xc5;" g2="ampersand.caps" k="16" />
  1280. <hkern u1="&#xc5;" g2="quotesingle.caps" k="68" />
  1281. <hkern u1="&#xc5;" g2="quotedbl.caps" k="80" />
  1282. <hkern u1="&#xc5;" g2="parenleft.caps" k="20" />
  1283. <hkern u1="&#xc5;" g2="asterisk.caps" k="68" />
  1284. <hkern u1="&#xc5;" g2="questiondown.caps" k="-8" />
  1285. <hkern u1="&#xc5;" g2="question.caps" k="66" />
  1286. <hkern u1="&#xc5;" u2="V" k="34" />
  1287. <hkern u1="&#xc6;" g2="ampersand.caps" k="20" />
  1288. <hkern u1="&#xc6;" g2="parenleft.sc" k="12" />
  1289. <hkern u1="&#xc6;" g2="quotesingle.caps" k="4" />
  1290. <hkern u1="&#xc6;" g2="quotedbl.caps" k="16" />
  1291. <hkern u1="&#xc6;" g2="parenleft.caps" k="20" />
  1292. <hkern u1="&#xc7;" g2="parenleft.sc" k="16" />
  1293. <hkern u1="&#xc7;" g2="parenleft.caps" k="12" />
  1294. <hkern u1="&#xc7;" g2="asterisk.caps" k="12" />
  1295. <hkern u1="&#xc7;" g2="question.caps" k="12" />
  1296. <hkern u1="&#xc7;" g2="exclam.caps" k="24" />
  1297. <hkern u1="&#xc8;" g2="ampersand.caps" k="20" />
  1298. <hkern u1="&#xc8;" g2="parenleft.sc" k="12" />
  1299. <hkern u1="&#xc8;" g2="quotesingle.caps" k="4" />
  1300. <hkern u1="&#xc8;" g2="quotedbl.caps" k="16" />
  1301. <hkern u1="&#xc8;" g2="parenleft.caps" k="20" />
  1302. <hkern u1="&#xc9;" g2="ampersand.caps" k="20" />
  1303. <hkern u1="&#xc9;" g2="parenleft.sc" k="12" />
  1304. <hkern u1="&#xc9;" g2="quotesingle.caps" k="4" />
  1305. <hkern u1="&#xc9;" g2="quotedbl.caps" k="16" />
  1306. <hkern u1="&#xc9;" g2="parenleft.caps" k="20" />
  1307. <hkern u1="&#xca;" g2="ampersand.caps" k="20" />
  1308. <hkern u1="&#xca;" g2="parenleft.sc" k="12" />
  1309. <hkern u1="&#xca;" g2="quotesingle.caps" k="4" />
  1310. <hkern u1="&#xca;" g2="quotedbl.caps" k="16" />
  1311. <hkern u1="&#xca;" g2="parenleft.caps" k="20" />
  1312. <hkern u1="&#xcb;" g2="ampersand.caps" k="20" />
  1313. <hkern u1="&#xcb;" g2="parenleft.sc" k="12" />
  1314. <hkern u1="&#xcb;" g2="quotesingle.caps" k="4" />
  1315. <hkern u1="&#xcb;" g2="quotedbl.caps" k="16" />
  1316. <hkern u1="&#xcb;" g2="parenleft.caps" k="20" />
  1317. <hkern u1="&#xcc;" g2="parenleft.sc" k="12" />
  1318. <hkern u1="&#xcc;" g2="parenleft.caps" k="16" />
  1319. <hkern u1="&#xcc;" g2="question.caps" k="30" />
  1320. <hkern u1="&#xcc;" g2="exclam.caps" k="12" />
  1321. <hkern u1="&#xcd;" g2="parenleft.sc" k="12" />
  1322. <hkern u1="&#xcd;" g2="parenleft.caps" k="16" />
  1323. <hkern u1="&#xcd;" g2="question.caps" k="30" />
  1324. <hkern u1="&#xcd;" g2="exclam.caps" k="12" />
  1325. <hkern u1="&#xce;" g2="parenleft.sc" k="12" />
  1326. <hkern u1="&#xce;" g2="parenleft.caps" k="16" />
  1327. <hkern u1="&#xce;" g2="question.caps" k="30" />
  1328. <hkern u1="&#xce;" g2="exclam.caps" k="12" />
  1329. <hkern u1="&#xcf;" g2="parenleft.sc" k="12" />
  1330. <hkern u1="&#xcf;" g2="parenleft.caps" k="16" />
  1331. <hkern u1="&#xcf;" g2="question.caps" k="30" />
  1332. <hkern u1="&#xcf;" g2="exclam.caps" k="12" />
  1333. <hkern u1="&#xd0;" g2="ampersand.caps" k="18" />
  1334. <hkern u1="&#xd0;" g2="parenleft.sc" k="16" />
  1335. <hkern u1="&#xd0;" g2="quotesingle.caps" k="14" />
  1336. <hkern u1="&#xd0;" g2="quotedbl.caps" k="10" />
  1337. <hkern u1="&#xd0;" g2="bracketright.caps" k="24" />
  1338. <hkern u1="&#xd0;" g2="asterisk.caps" k="18" />
  1339. <hkern u1="&#xd0;" g2="periodcentered.caps" k="8" />
  1340. <hkern u1="&#xd0;" g2="question.caps" k="43" />
  1341. <hkern u1="&#xd0;" u2="&#x7d;" k="-14" />
  1342. <hkern u1="&#xd1;" g2="parenleft.sc" k="12" />
  1343. <hkern u1="&#xd1;" g2="parenleft.caps" k="16" />
  1344. <hkern u1="&#xd1;" g2="question.caps" k="30" />
  1345. <hkern u1="&#xd1;" g2="exclam.caps" k="12" />
  1346. <hkern u1="&#xd2;" g2="ampersand.caps" k="18" />
  1347. <hkern u1="&#xd2;" g2="parenleft.sc" k="16" />
  1348. <hkern u1="&#xd2;" g2="quotesingle.caps" k="14" />
  1349. <hkern u1="&#xd2;" g2="quotedbl.caps" k="10" />
  1350. <hkern u1="&#xd2;" g2="bracketright.caps" k="24" />
  1351. <hkern u1="&#xd2;" g2="asterisk.caps" k="18" />
  1352. <hkern u1="&#xd2;" g2="periodcentered.caps" k="8" />
  1353. <hkern u1="&#xd2;" g2="question.caps" k="43" />
  1354. <hkern u1="&#xd2;" u2="&#x7d;" k="-14" />
  1355. <hkern u1="&#xd3;" g2="ampersand.caps" k="18" />
  1356. <hkern u1="&#xd3;" g2="parenleft.sc" k="16" />
  1357. <hkern u1="&#xd3;" g2="quotesingle.caps" k="14" />
  1358. <hkern u1="&#xd3;" g2="quotedbl.caps" k="10" />
  1359. <hkern u1="&#xd3;" g2="bracketright.caps" k="24" />
  1360. <hkern u1="&#xd3;" g2="asterisk.caps" k="18" />
  1361. <hkern u1="&#xd3;" g2="periodcentered.caps" k="8" />
  1362. <hkern u1="&#xd3;" g2="question.caps" k="43" />
  1363. <hkern u1="&#xd3;" u2="&#x7d;" k="-14" />
  1364. <hkern u1="&#xd4;" g2="ampersand.caps" k="18" />
  1365. <hkern u1="&#xd4;" g2="parenleft.sc" k="16" />
  1366. <hkern u1="&#xd4;" g2="quotesingle.caps" k="14" />
  1367. <hkern u1="&#xd4;" g2="quotedbl.caps" k="10" />
  1368. <hkern u1="&#xd4;" g2="bracketright.caps" k="24" />
  1369. <hkern u1="&#xd4;" g2="asterisk.caps" k="18" />
  1370. <hkern u1="&#xd4;" g2="periodcentered.caps" k="8" />
  1371. <hkern u1="&#xd4;" g2="question.caps" k="43" />
  1372. <hkern u1="&#xd4;" u2="&#x7d;" k="-14" />
  1373. <hkern u1="&#xd5;" g2="ampersand.caps" k="18" />
  1374. <hkern u1="&#xd5;" g2="parenleft.sc" k="16" />
  1375. <hkern u1="&#xd5;" g2="quotesingle.caps" k="14" />
  1376. <hkern u1="&#xd5;" g2="quotedbl.caps" k="10" />
  1377. <hkern u1="&#xd5;" g2="bracketright.caps" k="24" />
  1378. <hkern u1="&#xd5;" g2="asterisk.caps" k="18" />
  1379. <hkern u1="&#xd5;" g2="periodcentered.caps" k="8" />
  1380. <hkern u1="&#xd5;" g2="question.caps" k="43" />
  1381. <hkern u1="&#xd5;" u2="&#x7d;" k="-14" />
  1382. <hkern u1="&#xd6;" g2="ampersand.caps" k="18" />
  1383. <hkern u1="&#xd6;" g2="parenleft.sc" k="16" />
  1384. <hkern u1="&#xd6;" g2="quotesingle.caps" k="14" />
  1385. <hkern u1="&#xd6;" g2="quotedbl.caps" k="10" />
  1386. <hkern u1="&#xd6;" g2="bracketright.caps" k="24" />
  1387. <hkern u1="&#xd6;" g2="asterisk.caps" k="18" />
  1388. <hkern u1="&#xd6;" g2="periodcentered.caps" k="8" />
  1389. <hkern u1="&#xd6;" g2="question.caps" k="43" />
  1390. <hkern u1="&#xd6;" u2="&#x7d;" k="-14" />
  1391. <hkern u1="&#xd8;" g2="ampersand.caps" k="18" />
  1392. <hkern u1="&#xd8;" g2="parenleft.sc" k="16" />
  1393. <hkern u1="&#xd8;" g2="quotesingle.caps" k="14" />
  1394. <hkern u1="&#xd8;" g2="quotedbl.caps" k="10" />
  1395. <hkern u1="&#xd8;" g2="bracketright.caps" k="24" />
  1396. <hkern u1="&#xd8;" g2="asterisk.caps" k="18" />
  1397. <hkern u1="&#xd8;" g2="periodcentered.caps" k="8" />
  1398. <hkern u1="&#xd8;" g2="question.caps" k="43" />
  1399. <hkern u1="&#xd8;" u2="&#x7d;" k="-14" />
  1400. <hkern u1="&#xd9;" g2="ampersand.caps" k="4" />
  1401. <hkern u1="&#xd9;" g2="parenleft.sc" k="12" />
  1402. <hkern u1="&#xd9;" g2="parenleft.caps" k="12" />
  1403. <hkern u1="&#xd9;" g2="question.caps" k="18" />
  1404. <hkern u1="&#xda;" g2="ampersand.caps" k="4" />
  1405. <hkern u1="&#xda;" g2="parenleft.sc" k="12" />
  1406. <hkern u1="&#xda;" g2="parenleft.caps" k="12" />
  1407. <hkern u1="&#xda;" g2="question.caps" k="18" />
  1408. <hkern u1="&#xdb;" g2="ampersand.caps" k="4" />
  1409. <hkern u1="&#xdb;" g2="parenleft.sc" k="12" />
  1410. <hkern u1="&#xdb;" g2="parenleft.caps" k="12" />
  1411. <hkern u1="&#xdb;" g2="question.caps" k="18" />
  1412. <hkern u1="&#xdc;" g2="ampersand.caps" k="4" />
  1413. <hkern u1="&#xdc;" g2="parenleft.sc" k="12" />
  1414. <hkern u1="&#xdc;" g2="parenleft.caps" k="12" />
  1415. <hkern u1="&#xdc;" g2="question.caps" k="18" />
  1416. <hkern u1="&#xdd;" g2="ampersand.caps" k="44" />
  1417. <hkern u1="&#xdd;" g2="parenleft.caps" k="16" />
  1418. <hkern u1="&#xdd;" g2="question.caps" k="12" />
  1419. <hkern u1="&#xde;" g2="hyphen.caps" k="-8" />
  1420. <hkern u1="&#xde;" g2="asterisk.caps" k="12" />
  1421. <hkern u1="&#xde;" g2="x.sc" k="12" />
  1422. <hkern u1="&#xde;" g2="m.sc" k="10" />
  1423. <hkern u1="&#xde;" u2="&#x2122;" k="24" />
  1424. <hkern u1="&#xde;" u2="x" k="4" />
  1425. <hkern u1="&#xde;" u2="_" k="56" />
  1426. <hkern u1="&#xde;" u2="X" k="8" />
  1427. <hkern u1="&#xde;" u2="M" k="4" />
  1428. <hkern u1="&#xdf;" g2="quotesingle.sc" k="12" />
  1429. <hkern u1="&#xdf;" g2="quotedbl.sc" k="12" />
  1430. <hkern u1="&#xdf;" g2="asterisk.sc" k="20" />
  1431. <hkern u1="&#xdf;" g2="question.sc" k="12" />
  1432. <hkern u1="&#xdf;" g2="exclam.sc" k="24" />
  1433. <hkern u1="&#xdf;" g2="bracketright.sc" k="28" />
  1434. <hkern u1="&#xdf;" g2="braceright.sc" k="18" />
  1435. <hkern u1="&#xe6;" g2="asterisk.caps" k="12" />
  1436. <hkern u1="&#xe8;" g2="asterisk.caps" k="12" />
  1437. <hkern u1="&#xe9;" g2="asterisk.caps" k="12" />
  1438. <hkern u1="&#xea;" g2="asterisk.caps" k="12" />
  1439. <hkern u1="&#xeb;" g2="asterisk.caps" k="12" />
  1440. <hkern u1="&#xf0;" g2="ampersand.caps" k="18" />
  1441. <hkern u1="&#xf0;" g2="parenleft.sc" k="16" />
  1442. <hkern u1="&#xf0;" g2="quotesingle.caps" k="14" />
  1443. <hkern u1="&#xf0;" g2="quotedbl.caps" k="10" />
  1444. <hkern u1="&#xf0;" g2="bracketright.caps" k="24" />
  1445. <hkern u1="&#xf0;" g2="asterisk.caps" k="18" />
  1446. <hkern u1="&#xf0;" g2="periodcentered.caps" k="8" />
  1447. <hkern u1="&#xf0;" g2="question.caps" k="43" />
  1448. <hkern u1="&#xf0;" u2="&#x7d;" k="-14" />
  1449. <hkern u1="&#xf1;" u2="&#x27;" k="30" />
  1450. <hkern u1="&#xf2;" g2="asterisk.caps" k="20" />
  1451. <hkern u1="&#xf3;" g2="asterisk.caps" k="20" />
  1452. <hkern u1="&#xf4;" g2="asterisk.caps" k="20" />
  1453. <hkern u1="&#xf5;" g2="asterisk.caps" k="20" />
  1454. <hkern u1="&#xf6;" g2="asterisk.caps" k="20" />
  1455. <hkern u1="&#xf8;" g2="asterisk.caps" k="20" />
  1456. <hkern u1="&#xf9;" u2="&#x22;" k="24" />
  1457. <hkern u1="&#xfa;" u2="&#x22;" k="24" />
  1458. <hkern u1="&#xfb;" u2="&#x22;" k="24" />
  1459. <hkern u1="&#xfc;" u2="&#x22;" k="24" />
  1460. <hkern u1="&#xfe;" g2="asterisk.caps" k="20" />
  1461. <hkern u1="&#x100;" g2="ampersand.caps" k="16" />
  1462. <hkern u1="&#x100;" g2="quotesingle.caps" k="68" />
  1463. <hkern u1="&#x100;" g2="quotedbl.caps" k="80" />
  1464. <hkern u1="&#x100;" g2="parenleft.caps" k="20" />
  1465. <hkern u1="&#x100;" g2="asterisk.caps" k="68" />
  1466. <hkern u1="&#x100;" g2="questiondown.caps" k="-8" />
  1467. <hkern u1="&#x100;" g2="question.caps" k="66" />
  1468. <hkern u1="&#x100;" u2="V" k="34" />
  1469. <hkern u1="&#x102;" g2="ampersand.caps" k="16" />
  1470. <hkern u1="&#x102;" g2="quotesingle.caps" k="68" />
  1471. <hkern u1="&#x102;" g2="quotedbl.caps" k="80" />
  1472. <hkern u1="&#x102;" g2="parenleft.caps" k="20" />
  1473. <hkern u1="&#x102;" g2="asterisk.caps" k="68" />
  1474. <hkern u1="&#x102;" g2="questiondown.caps" k="-8" />
  1475. <hkern u1="&#x102;" g2="question.caps" k="66" />
  1476. <hkern u1="&#x102;" u2="V" k="34" />
  1477. <hkern u1="&#x104;" g2="ampersand.caps" k="16" />
  1478. <hkern u1="&#x104;" g2="quotesingle.caps" k="68" />
  1479. <hkern u1="&#x104;" g2="quotedbl.caps" k="80" />
  1480. <hkern u1="&#x104;" g2="parenleft.caps" k="20" />
  1481. <hkern u1="&#x104;" g2="asterisk.caps" k="68" />
  1482. <hkern u1="&#x104;" g2="questiondown.caps" k="-8" />
  1483. <hkern u1="&#x104;" g2="question.caps" k="66" />
  1484. <hkern u1="&#x104;" u2="V" k="34" />
  1485. <hkern u1="&#x106;" g2="parenleft.sc" k="16" />
  1486. <hkern u1="&#x106;" g2="parenleft.caps" k="12" />
  1487. <hkern u1="&#x106;" g2="asterisk.caps" k="12" />
  1488. <hkern u1="&#x106;" g2="question.caps" k="12" />
  1489. <hkern u1="&#x106;" g2="exclam.caps" k="24" />
  1490. <hkern u1="&#x108;" g2="parenleft.sc" k="16" />
  1491. <hkern u1="&#x108;" g2="parenleft.caps" k="12" />
  1492. <hkern u1="&#x108;" g2="asterisk.caps" k="12" />
  1493. <hkern u1="&#x108;" g2="question.caps" k="12" />
  1494. <hkern u1="&#x108;" g2="exclam.caps" k="24" />
  1495. <hkern u1="&#x10a;" g2="parenleft.sc" k="16" />
  1496. <hkern u1="&#x10a;" g2="parenleft.caps" k="12" />
  1497. <hkern u1="&#x10a;" g2="asterisk.caps" k="12" />
  1498. <hkern u1="&#x10a;" g2="question.caps" k="12" />
  1499. <hkern u1="&#x10a;" g2="exclam.caps" k="24" />
  1500. <hkern u1="&#x10c;" g2="parenleft.sc" k="16" />
  1501. <hkern u1="&#x10c;" g2="parenleft.caps" k="12" />
  1502. <hkern u1="&#x10c;" g2="asterisk.caps" k="12" />
  1503. <hkern u1="&#x10c;" g2="question.caps" k="12" />
  1504. <hkern u1="&#x10c;" g2="exclam.caps" k="24" />
  1505. <hkern u1="&#x10e;" g2="ampersand.caps" k="18" />
  1506. <hkern u1="&#x10e;" g2="parenleft.sc" k="16" />
  1507. <hkern u1="&#x10e;" g2="quotesingle.caps" k="14" />
  1508. <hkern u1="&#x10e;" g2="quotedbl.caps" k="10" />
  1509. <hkern u1="&#x10e;" g2="bracketright.caps" k="24" />
  1510. <hkern u1="&#x10e;" g2="asterisk.caps" k="18" />
  1511. <hkern u1="&#x10e;" g2="periodcentered.caps" k="8" />
  1512. <hkern u1="&#x10e;" g2="question.caps" k="43" />
  1513. <hkern u1="&#x10e;" u2="&#x7d;" k="-14" />
  1514. <hkern u1="&#x10f;" g2="asterisk.caps" k="4" />
  1515. <hkern u1="&#x110;" g2="ampersand.caps" k="18" />
  1516. <hkern u1="&#x110;" g2="parenleft.sc" k="16" />
  1517. <hkern u1="&#x110;" g2="quotesingle.caps" k="14" />
  1518. <hkern u1="&#x110;" g2="quotedbl.caps" k="10" />
  1519. <hkern u1="&#x110;" g2="bracketright.caps" k="24" />
  1520. <hkern u1="&#x110;" g2="asterisk.caps" k="18" />
  1521. <hkern u1="&#x110;" g2="periodcentered.caps" k="8" />
  1522. <hkern u1="&#x110;" g2="question.caps" k="43" />
  1523. <hkern u1="&#x110;" u2="&#x7d;" k="-14" />
  1524. <hkern u1="&#x111;" g2="asterisk.caps" k="4" />
  1525. <hkern u1="&#x112;" g2="ampersand.caps" k="20" />
  1526. <hkern u1="&#x112;" g2="parenleft.sc" k="12" />
  1527. <hkern u1="&#x112;" g2="quotesingle.caps" k="4" />
  1528. <hkern u1="&#x112;" g2="quotedbl.caps" k="16" />
  1529. <hkern u1="&#x112;" g2="parenleft.caps" k="20" />
  1530. <hkern u1="&#x113;" g2="asterisk.caps" k="12" />
  1531. <hkern u1="&#x114;" g2="ampersand.caps" k="20" />
  1532. <hkern u1="&#x114;" g2="parenleft.sc" k="12" />
  1533. <hkern u1="&#x114;" g2="quotesingle.caps" k="4" />
  1534. <hkern u1="&#x114;" g2="quotedbl.caps" k="16" />
  1535. <hkern u1="&#x114;" g2="parenleft.caps" k="20" />
  1536. <hkern u1="&#x115;" g2="asterisk.caps" k="12" />
  1537. <hkern u1="&#x116;" g2="ampersand.caps" k="20" />
  1538. <hkern u1="&#x116;" g2="parenleft.sc" k="12" />
  1539. <hkern u1="&#x116;" g2="quotesingle.caps" k="4" />
  1540. <hkern u1="&#x116;" g2="quotedbl.caps" k="16" />
  1541. <hkern u1="&#x116;" g2="parenleft.caps" k="20" />
  1542. <hkern u1="&#x117;" g2="asterisk.caps" k="12" />
  1543. <hkern u1="&#x118;" g2="ampersand.caps" k="20" />
  1544. <hkern u1="&#x118;" g2="parenleft.sc" k="12" />
  1545. <hkern u1="&#x118;" g2="quotesingle.caps" k="4" />
  1546. <hkern u1="&#x118;" g2="quotedbl.caps" k="16" />
  1547. <hkern u1="&#x118;" g2="parenleft.caps" k="20" />
  1548. <hkern u1="&#x119;" g2="asterisk.caps" k="12" />
  1549. <hkern u1="&#x11a;" g2="ampersand.caps" k="20" />
  1550. <hkern u1="&#x11a;" g2="parenleft.sc" k="12" />
  1551. <hkern u1="&#x11a;" g2="quotesingle.caps" k="4" />
  1552. <hkern u1="&#x11a;" g2="quotedbl.caps" k="16" />
  1553. <hkern u1="&#x11a;" g2="parenleft.caps" k="20" />
  1554. <hkern u1="&#x11b;" g2="asterisk.caps" k="12" />
  1555. <hkern u1="&#x11c;" g2="ampersand.caps" k="4" />
  1556. <hkern u1="&#x11c;" g2="parenleft.sc" k="16" />
  1557. <hkern u1="&#x11c;" g2="quotesingle.caps" k="4" />
  1558. <hkern u1="&#x11c;" g2="quotedbl.caps" k="4" />
  1559. <hkern u1="&#x11c;" g2="parenleft.caps" k="8" />
  1560. <hkern u1="&#x11c;" g2="asterisk.caps" k="16" />
  1561. <hkern u1="&#x11c;" g2="question.caps" k="12" />
  1562. <hkern u1="&#x11c;" g2="exclam.caps" k="24" />
  1563. <hkern u1="&#x11e;" g2="ampersand.caps" k="4" />
  1564. <hkern u1="&#x11e;" g2="parenleft.sc" k="16" />
  1565. <hkern u1="&#x11e;" g2="quotesingle.caps" k="4" />
  1566. <hkern u1="&#x11e;" g2="quotedbl.caps" k="4" />
  1567. <hkern u1="&#x11e;" g2="parenleft.caps" k="8" />
  1568. <hkern u1="&#x11e;" g2="asterisk.caps" k="16" />
  1569. <hkern u1="&#x11e;" g2="question.caps" k="12" />
  1570. <hkern u1="&#x11e;" g2="exclam.caps" k="24" />
  1571. <hkern u1="&#x120;" g2="ampersand.caps" k="4" />
  1572. <hkern u1="&#x120;" g2="parenleft.sc" k="16" />
  1573. <hkern u1="&#x120;" g2="quotesingle.caps" k="4" />
  1574. <hkern u1="&#x120;" g2="quotedbl.caps" k="4" />
  1575. <hkern u1="&#x120;" g2="parenleft.caps" k="8" />
  1576. <hkern u1="&#x120;" g2="asterisk.caps" k="16" />
  1577. <hkern u1="&#x120;" g2="question.caps" k="12" />
  1578. <hkern u1="&#x120;" g2="exclam.caps" k="24" />
  1579. <hkern u1="&#x122;" g2="ampersand.caps" k="4" />
  1580. <hkern u1="&#x122;" g2="parenleft.sc" k="16" />
  1581. <hkern u1="&#x122;" g2="quotesingle.caps" k="4" />
  1582. <hkern u1="&#x122;" g2="quotedbl.caps" k="4" />
  1583. <hkern u1="&#x122;" g2="parenleft.caps" k="8" />
  1584. <hkern u1="&#x122;" g2="asterisk.caps" k="16" />
  1585. <hkern u1="&#x122;" g2="question.caps" k="12" />
  1586. <hkern u1="&#x122;" g2="exclam.caps" k="24" />
  1587. <hkern u1="&#x124;" g2="parenleft.sc" k="12" />
  1588. <hkern u1="&#x124;" g2="parenleft.caps" k="16" />
  1589. <hkern u1="&#x124;" g2="question.caps" k="30" />
  1590. <hkern u1="&#x124;" g2="exclam.caps" k="12" />
  1591. <hkern u1="&#x125;" u2="&#x27;" k="30" />
  1592. <hkern u1="&#x126;" g2="parenleft.sc" k="12" />
  1593. <hkern u1="&#x126;" g2="parenleft.caps" k="16" />
  1594. <hkern u1="&#x126;" g2="question.caps" k="30" />
  1595. <hkern u1="&#x126;" g2="exclam.caps" k="12" />
  1596. <hkern u1="&#x127;" u2="&#x27;" k="30" />
  1597. <hkern u1="&#x128;" g2="parenleft.sc" k="12" />
  1598. <hkern u1="&#x128;" g2="parenleft.caps" k="16" />
  1599. <hkern u1="&#x128;" g2="question.caps" k="30" />
  1600. <hkern u1="&#x128;" g2="exclam.caps" k="12" />
  1601. <hkern u1="&#x12a;" g2="parenleft.sc" k="12" />
  1602. <hkern u1="&#x12a;" g2="parenleft.caps" k="16" />
  1603. <hkern u1="&#x12a;" g2="question.caps" k="30" />
  1604. <hkern u1="&#x12a;" g2="exclam.caps" k="12" />
  1605. <hkern u1="&#x12c;" g2="parenleft.sc" k="12" />
  1606. <hkern u1="&#x12c;" g2="parenleft.caps" k="16" />
  1607. <hkern u1="&#x12c;" g2="question.caps" k="30" />
  1608. <hkern u1="&#x12c;" g2="exclam.caps" k="12" />
  1609. <hkern u1="&#x12e;" g2="parenleft.sc" k="12" />
  1610. <hkern u1="&#x12e;" g2="parenleft.caps" k="16" />
  1611. <hkern u1="&#x12e;" g2="question.caps" k="30" />
  1612. <hkern u1="&#x12e;" g2="exclam.caps" k="12" />
  1613. <hkern u1="&#x130;" g2="parenleft.sc" k="12" />
  1614. <hkern u1="&#x130;" g2="parenleft.caps" k="16" />
  1615. <hkern u1="&#x130;" g2="question.caps" k="30" />
  1616. <hkern u1="&#x130;" g2="exclam.caps" k="12" />
  1617. <hkern u1="&#x132;" g2="parenleft.caps" k="8" />
  1618. <hkern u1="&#x132;" g2="asterisk.caps" k="8" />
  1619. <hkern u1="&#x132;" g2="question.caps" k="18" />
  1620. <hkern u1="&#x132;" g2="exclam.caps" k="12" />
  1621. <hkern u1="&#x134;" g2="parenleft.caps" k="8" />
  1622. <hkern u1="&#x134;" g2="asterisk.caps" k="8" />
  1623. <hkern u1="&#x134;" g2="question.caps" k="18" />
  1624. <hkern u1="&#x134;" g2="exclam.caps" k="12" />
  1625. <hkern u1="&#x136;" g2="ampersand.caps" k="30" />
  1626. <hkern u1="&#x136;" g2="quotesingle.caps" k="-4" />
  1627. <hkern u1="&#x136;" g2="quotedbl.caps" k="-8" />
  1628. <hkern u1="&#x136;" g2="question.caps" k="24" />
  1629. <hkern u1="&#x136;" g2="exclam.caps" k="12" />
  1630. <hkern u1="&#x139;" g2="quotesingle.caps" k="76" />
  1631. <hkern u1="&#x139;" g2="quotedbl.caps" k="84" />
  1632. <hkern u1="&#x139;" g2="asterisk.caps" k="96" />
  1633. <hkern u1="&#x139;" g2="periodcentered.caps" k="44" />
  1634. <hkern u1="&#x139;" g2="question.caps" k="56" />
  1635. <hkern u1="&#x139;" g2="exclam.caps" k="24" />
  1636. <hkern u1="&#x13b;" g2="quotesingle.caps" k="76" />
  1637. <hkern u1="&#x13b;" g2="quotedbl.caps" k="84" />
  1638. <hkern u1="&#x13b;" g2="asterisk.caps" k="96" />
  1639. <hkern u1="&#x13b;" g2="periodcentered.caps" k="44" />
  1640. <hkern u1="&#x13b;" g2="question.caps" k="56" />
  1641. <hkern u1="&#x13b;" g2="exclam.caps" k="24" />
  1642. <hkern u1="&#x13d;" g2="quotesingle.caps" k="76" />
  1643. <hkern u1="&#x13d;" g2="quotedbl.caps" k="84" />
  1644. <hkern u1="&#x13d;" g2="asterisk.caps" k="96" />
  1645. <hkern u1="&#x13d;" g2="periodcentered.caps" k="44" />
  1646. <hkern u1="&#x13d;" g2="question.caps" k="56" />
  1647. <hkern u1="&#x13d;" g2="exclam.caps" k="24" />
  1648. <hkern u1="&#x13f;" g2="quotesingle.caps" k="76" />
  1649. <hkern u1="&#x13f;" g2="quotedbl.caps" k="84" />
  1650. <hkern u1="&#x13f;" g2="asterisk.caps" k="96" />
  1651. <hkern u1="&#x13f;" g2="periodcentered.caps" k="44" />
  1652. <hkern u1="&#x13f;" g2="question.caps" k="56" />
  1653. <hkern u1="&#x13f;" g2="exclam.caps" k="24" />
  1654. <hkern u1="&#x141;" g2="quotesingle.caps" k="76" />
  1655. <hkern u1="&#x141;" g2="quotedbl.caps" k="84" />
  1656. <hkern u1="&#x141;" g2="asterisk.caps" k="96" />
  1657. <hkern u1="&#x141;" g2="periodcentered.caps" k="44" />
  1658. <hkern u1="&#x141;" g2="question.caps" k="56" />
  1659. <hkern u1="&#x141;" g2="exclam.caps" k="24" />
  1660. <hkern u1="&#x143;" g2="parenleft.sc" k="12" />
  1661. <hkern u1="&#x143;" g2="parenleft.caps" k="16" />
  1662. <hkern u1="&#x143;" g2="question.caps" k="30" />
  1663. <hkern u1="&#x143;" g2="exclam.caps" k="12" />
  1664. <hkern u1="&#x144;" u2="&#x27;" k="30" />
  1665. <hkern u1="&#x145;" g2="parenleft.sc" k="12" />
  1666. <hkern u1="&#x145;" g2="parenleft.caps" k="16" />
  1667. <hkern u1="&#x145;" g2="question.caps" k="30" />
  1668. <hkern u1="&#x145;" g2="exclam.caps" k="12" />
  1669. <hkern u1="&#x146;" u2="&#x27;" k="30" />
  1670. <hkern u1="&#x147;" g2="parenleft.sc" k="12" />
  1671. <hkern u1="&#x147;" g2="parenleft.caps" k="16" />
  1672. <hkern u1="&#x147;" g2="question.caps" k="30" />
  1673. <hkern u1="&#x147;" g2="exclam.caps" k="12" />
  1674. <hkern u1="&#x148;" u2="&#x27;" k="30" />
  1675. <hkern u1="&#x149;" u2="&#x27;" k="30" />
  1676. <hkern u1="&#x14a;" g2="parenleft.sc" k="12" />
  1677. <hkern u1="&#x14a;" g2="parenleft.caps" k="16" />
  1678. <hkern u1="&#x14a;" g2="question.caps" k="30" />
  1679. <hkern u1="&#x14a;" g2="exclam.caps" k="12" />
  1680. <hkern u1="&#x14b;" u2="&#x27;" k="30" />
  1681. <hkern u1="&#x14c;" g2="ampersand.caps" k="18" />
  1682. <hkern u1="&#x14c;" g2="parenleft.sc" k="16" />
  1683. <hkern u1="&#x14c;" g2="quotesingle.caps" k="14" />
  1684. <hkern u1="&#x14c;" g2="quotedbl.caps" k="10" />
  1685. <hkern u1="&#x14c;" g2="bracketright.caps" k="24" />
  1686. <hkern u1="&#x14c;" g2="asterisk.caps" k="18" />
  1687. <hkern u1="&#x14c;" g2="periodcentered.caps" k="8" />
  1688. <hkern u1="&#x14c;" g2="question.caps" k="43" />
  1689. <hkern u1="&#x14c;" u2="&#x7d;" k="-14" />
  1690. <hkern u1="&#x14d;" g2="asterisk.caps" k="20" />
  1691. <hkern u1="&#x14e;" g2="ampersand.caps" k="18" />
  1692. <hkern u1="&#x14e;" g2="parenleft.sc" k="16" />
  1693. <hkern u1="&#x14e;" g2="quotesingle.caps" k="14" />
  1694. <hkern u1="&#x14e;" g2="quotedbl.caps" k="10" />
  1695. <hkern u1="&#x14e;" g2="bracketright.caps" k="24" />
  1696. <hkern u1="&#x14e;" g2="asterisk.caps" k="18" />
  1697. <hkern u1="&#x14e;" g2="periodcentered.caps" k="8" />
  1698. <hkern u1="&#x14e;" g2="question.caps" k="43" />
  1699. <hkern u1="&#x14e;" u2="&#x7d;" k="-14" />
  1700. <hkern u1="&#x14f;" g2="asterisk.caps" k="20" />
  1701. <hkern u1="&#x150;" g2="ampersand.caps" k="18" />
  1702. <hkern u1="&#x150;" g2="parenleft.sc" k="16" />
  1703. <hkern u1="&#x150;" g2="quotesingle.caps" k="14" />
  1704. <hkern u1="&#x150;" g2="quotedbl.caps" k="10" />
  1705. <hkern u1="&#x150;" g2="bracketright.caps" k="24" />
  1706. <hkern u1="&#x150;" g2="asterisk.caps" k="18" />
  1707. <hkern u1="&#x150;" g2="periodcentered.caps" k="8" />
  1708. <hkern u1="&#x150;" g2="question.caps" k="43" />
  1709. <hkern u1="&#x150;" u2="&#x7d;" k="-14" />
  1710. <hkern u1="&#x151;" g2="asterisk.caps" k="20" />
  1711. <hkern u1="&#x152;" g2="ampersand.caps" k="20" />
  1712. <hkern u1="&#x152;" g2="parenleft.sc" k="12" />
  1713. <hkern u1="&#x152;" g2="quotesingle.caps" k="4" />
  1714. <hkern u1="&#x152;" g2="quotedbl.caps" k="16" />
  1715. <hkern u1="&#x152;" g2="parenleft.caps" k="20" />
  1716. <hkern u1="&#x153;" g2="asterisk.caps" k="12" />
  1717. <hkern u1="&#x154;" g2="ampersand.caps" k="6" />
  1718. <hkern u1="&#x154;" g2="parenleft.sc" k="20" />
  1719. <hkern u1="&#x154;" g2="quotesingle.caps" k="12" />
  1720. <hkern u1="&#x154;" g2="parenleft.caps" k="16" />
  1721. <hkern u1="&#x154;" g2="question.caps" k="24" />
  1722. <hkern u1="&#x154;" g2="exclam.caps" k="30" />
  1723. <hkern u1="&#x156;" g2="ampersand.caps" k="6" />
  1724. <hkern u1="&#x156;" g2="parenleft.sc" k="20" />
  1725. <hkern u1="&#x156;" g2="quotesingle.caps" k="12" />
  1726. <hkern u1="&#x156;" g2="parenleft.caps" k="16" />
  1727. <hkern u1="&#x156;" g2="question.caps" k="24" />
  1728. <hkern u1="&#x156;" g2="exclam.caps" k="30" />
  1729. <hkern u1="&#x158;" g2="ampersand.caps" k="6" />
  1730. <hkern u1="&#x158;" g2="parenleft.sc" k="20" />
  1731. <hkern u1="&#x158;" g2="quotesingle.caps" k="12" />
  1732. <hkern u1="&#x158;" g2="parenleft.caps" k="16" />
  1733. <hkern u1="&#x158;" g2="question.caps" k="24" />
  1734. <hkern u1="&#x158;" g2="exclam.caps" k="30" />
  1735. <hkern u1="&#x15a;" g2="parenleft.sc" k="20" />
  1736. <hkern u1="&#x15a;" g2="parenleft.caps" k="20" />
  1737. <hkern u1="&#x15a;" g2="question.caps" k="38" />
  1738. <hkern u1="&#x15a;" g2="exclam.caps" k="36" />
  1739. <hkern u1="&#x15b;" u2="&#x27;" k="24" />
  1740. <hkern u1="&#x15c;" g2="parenleft.sc" k="20" />
  1741. <hkern u1="&#x15c;" g2="parenleft.caps" k="20" />
  1742. <hkern u1="&#x15c;" g2="question.caps" k="38" />
  1743. <hkern u1="&#x15c;" g2="exclam.caps" k="36" />
  1744. <hkern u1="&#x15d;" u2="&#x27;" k="24" />
  1745. <hkern u1="&#x15e;" g2="parenleft.sc" k="20" />
  1746. <hkern u1="&#x15e;" g2="parenleft.caps" k="20" />
  1747. <hkern u1="&#x15e;" g2="question.caps" k="38" />
  1748. <hkern u1="&#x15e;" g2="exclam.caps" k="36" />
  1749. <hkern u1="&#x15f;" u2="&#x27;" k="24" />
  1750. <hkern u1="&#x160;" g2="parenleft.sc" k="20" />
  1751. <hkern u1="&#x160;" g2="parenleft.caps" k="20" />
  1752. <hkern u1="&#x160;" g2="question.caps" k="38" />
  1753. <hkern u1="&#x160;" g2="exclam.caps" k="36" />
  1754. <hkern u1="&#x161;" u2="&#x27;" k="24" />
  1755. <hkern u1="&#x162;" g2="ampersand.caps" k="40" />
  1756. <hkern u1="&#x162;" g2="parenleft.sc" k="31" />
  1757. <hkern u1="&#x162;" g2="parenleft.caps" k="24" />
  1758. <hkern u1="&#x162;" g2="exclam.caps" k="18" />
  1759. <hkern u1="&#x164;" g2="ampersand.caps" k="40" />
  1760. <hkern u1="&#x164;" g2="parenleft.sc" k="31" />
  1761. <hkern u1="&#x164;" g2="parenleft.caps" k="24" />
  1762. <hkern u1="&#x164;" g2="exclam.caps" k="18" />
  1763. <hkern u1="&#x166;" g2="ampersand.caps" k="40" />
  1764. <hkern u1="&#x166;" g2="parenleft.sc" k="31" />
  1765. <hkern u1="&#x166;" g2="parenleft.caps" k="24" />
  1766. <hkern u1="&#x166;" g2="exclam.caps" k="18" />
  1767. <hkern u1="&#x168;" g2="ampersand.caps" k="4" />
  1768. <hkern u1="&#x168;" g2="parenleft.sc" k="12" />
  1769. <hkern u1="&#x168;" g2="parenleft.caps" k="12" />
  1770. <hkern u1="&#x168;" g2="question.caps" k="18" />
  1771. <hkern u1="&#x169;" u2="&#x22;" k="24" />
  1772. <hkern u1="&#x16a;" g2="ampersand.caps" k="4" />
  1773. <hkern u1="&#x16a;" g2="parenleft.sc" k="12" />
  1774. <hkern u1="&#x16a;" g2="parenleft.caps" k="12" />
  1775. <hkern u1="&#x16a;" g2="question.caps" k="18" />
  1776. <hkern u1="&#x16b;" u2="&#x22;" k="24" />
  1777. <hkern u1="&#x16c;" g2="ampersand.caps" k="4" />
  1778. <hkern u1="&#x16c;" g2="parenleft.sc" k="12" />
  1779. <hkern u1="&#x16c;" g2="parenleft.caps" k="12" />
  1780. <hkern u1="&#x16c;" g2="question.caps" k="18" />
  1781. <hkern u1="&#x16d;" u2="&#x22;" k="24" />
  1782. <hkern u1="&#x16e;" g2="ampersand.caps" k="4" />
  1783. <hkern u1="&#x16e;" g2="parenleft.sc" k="12" />
  1784. <hkern u1="&#x16e;" g2="parenleft.caps" k="12" />
  1785. <hkern u1="&#x16e;" g2="question.caps" k="18" />
  1786. <hkern u1="&#x16f;" u2="&#x22;" k="24" />
  1787. <hkern u1="&#x170;" g2="ampersand.caps" k="4" />
  1788. <hkern u1="&#x170;" g2="parenleft.sc" k="12" />
  1789. <hkern u1="&#x170;" g2="parenleft.caps" k="12" />
  1790. <hkern u1="&#x170;" g2="question.caps" k="18" />
  1791. <hkern u1="&#x171;" u2="&#x22;" k="24" />
  1792. <hkern u1="&#x172;" g2="ampersand.caps" k="4" />
  1793. <hkern u1="&#x172;" g2="parenleft.sc" k="12" />
  1794. <hkern u1="&#x172;" g2="parenleft.caps" k="12" />
  1795. <hkern u1="&#x172;" g2="question.caps" k="18" />
  1796. <hkern u1="&#x173;" u2="&#x22;" k="24" />
  1797. <hkern u1="&#x174;" g2="ampersand.caps" k="52" />
  1798. <hkern u1="&#x174;" g2="parenleft.sc" k="20" />
  1799. <hkern u1="&#x174;" g2="parenleft.caps" k="20" />
  1800. <hkern u1="&#x174;" g2="question.caps" k="12" />
  1801. <hkern u1="&#x176;" g2="ampersand.caps" k="44" />
  1802. <hkern u1="&#x176;" g2="parenleft.caps" k="16" />
  1803. <hkern u1="&#x176;" g2="question.caps" k="12" />
  1804. <hkern u1="&#x178;" g2="ampersand.caps" k="44" />
  1805. <hkern u1="&#x178;" g2="parenleft.caps" k="16" />
  1806. <hkern u1="&#x178;" g2="question.caps" k="12" />
  1807. <hkern u1="&#x179;" g2="ampersand.caps" k="6" />
  1808. <hkern u1="&#x179;" g2="parenleft.sc" k="12" />
  1809. <hkern u1="&#x179;" g2="parenleft.caps" k="12" />
  1810. <hkern u1="&#x179;" g2="question.caps" k="18" />
  1811. <hkern u1="&#x17b;" g2="ampersand.caps" k="6" />
  1812. <hkern u1="&#x17b;" g2="parenleft.sc" k="12" />
  1813. <hkern u1="&#x17b;" g2="parenleft.caps" k="12" />
  1814. <hkern u1="&#x17b;" g2="question.caps" k="18" />
  1815. <hkern u1="&#x17d;" g2="ampersand.caps" k="6" />
  1816. <hkern u1="&#x17d;" g2="parenleft.sc" k="12" />
  1817. <hkern u1="&#x17d;" g2="parenleft.caps" k="12" />
  1818. <hkern u1="&#x17d;" g2="question.caps" k="18" />
  1819. <hkern u1="&#x18f;" g2="ampersand.caps" k="18" />
  1820. <hkern u1="&#x18f;" g2="parenleft.sc" k="16" />
  1821. <hkern u1="&#x18f;" g2="quotesingle.caps" k="14" />
  1822. <hkern u1="&#x18f;" g2="quotedbl.caps" k="10" />
  1823. <hkern u1="&#x18f;" g2="bracketright.caps" k="24" />
  1824. <hkern u1="&#x18f;" g2="asterisk.caps" k="18" />
  1825. <hkern u1="&#x18f;" g2="periodcentered.caps" k="8" />
  1826. <hkern u1="&#x18f;" g2="question.caps" k="43" />
  1827. <hkern u1="&#x18f;" u2="&#x7d;" k="-14" />
  1828. <hkern u1="&#x19d;" g2="parenleft.sc" k="12" />
  1829. <hkern u1="&#x19d;" g2="parenleft.caps" k="16" />
  1830. <hkern u1="&#x19d;" g2="question.caps" k="30" />
  1831. <hkern u1="&#x19d;" g2="exclam.caps" k="12" />
  1832. <hkern u1="&#x1cd;" g2="ampersand.caps" k="16" />
  1833. <hkern u1="&#x1cd;" g2="quotesingle.caps" k="68" />
  1834. <hkern u1="&#x1cd;" g2="quotedbl.caps" k="80" />
  1835. <hkern u1="&#x1cd;" g2="parenleft.caps" k="20" />
  1836. <hkern u1="&#x1cd;" g2="asterisk.caps" k="68" />
  1837. <hkern u1="&#x1cd;" g2="questiondown.caps" k="-8" />
  1838. <hkern u1="&#x1cd;" g2="question.caps" k="66" />
  1839. <hkern u1="&#x1cd;" u2="V" k="34" />
  1840. <hkern u1="&#x1cf;" g2="parenleft.sc" k="12" />
  1841. <hkern u1="&#x1cf;" g2="parenleft.caps" k="16" />
  1842. <hkern u1="&#x1cf;" g2="question.caps" k="30" />
  1843. <hkern u1="&#x1cf;" g2="exclam.caps" k="12" />
  1844. <hkern u1="&#x1d1;" g2="ampersand.caps" k="18" />
  1845. <hkern u1="&#x1d1;" g2="parenleft.sc" k="16" />
  1846. <hkern u1="&#x1d1;" g2="quotesingle.caps" k="14" />
  1847. <hkern u1="&#x1d1;" g2="quotedbl.caps" k="10" />
  1848. <hkern u1="&#x1d1;" g2="bracketright.caps" k="24" />
  1849. <hkern u1="&#x1d1;" g2="asterisk.caps" k="18" />
  1850. <hkern u1="&#x1d1;" g2="periodcentered.caps" k="8" />
  1851. <hkern u1="&#x1d1;" g2="question.caps" k="43" />
  1852. <hkern u1="&#x1d1;" u2="&#x7d;" k="-14" />
  1853. <hkern u1="&#x1d2;" g2="asterisk.caps" k="20" />
  1854. <hkern u1="&#x1d3;" g2="ampersand.caps" k="4" />
  1855. <hkern u1="&#x1d3;" g2="parenleft.sc" k="12" />
  1856. <hkern u1="&#x1d3;" g2="parenleft.caps" k="12" />
  1857. <hkern u1="&#x1d3;" g2="question.caps" k="18" />
  1858. <hkern u1="&#x1d4;" u2="&#x22;" k="24" />
  1859. <hkern u1="&#x1d5;" g2="ampersand.caps" k="4" />
  1860. <hkern u1="&#x1d5;" g2="parenleft.sc" k="12" />
  1861. <hkern u1="&#x1d5;" g2="parenleft.caps" k="12" />
  1862. <hkern u1="&#x1d5;" g2="question.caps" k="18" />
  1863. <hkern u1="&#x1d6;" u2="&#x22;" k="24" />
  1864. <hkern u1="&#x1d7;" g2="ampersand.caps" k="4" />
  1865. <hkern u1="&#x1d7;" g2="parenleft.sc" k="12" />
  1866. <hkern u1="&#x1d7;" g2="parenleft.caps" k="12" />
  1867. <hkern u1="&#x1d7;" g2="question.caps" k="18" />
  1868. <hkern u1="&#x1d8;" u2="&#x22;" k="24" />
  1869. <hkern u1="&#x1d9;" g2="ampersand.caps" k="4" />
  1870. <hkern u1="&#x1d9;" g2="parenleft.sc" k="12" />
  1871. <hkern u1="&#x1d9;" g2="parenleft.caps" k="12" />
  1872. <hkern u1="&#x1d9;" g2="question.caps" k="18" />
  1873. <hkern u1="&#x1da;" u2="&#x22;" k="24" />
  1874. <hkern u1="&#x1db;" g2="ampersand.caps" k="4" />
  1875. <hkern u1="&#x1db;" g2="parenleft.sc" k="12" />
  1876. <hkern u1="&#x1db;" g2="parenleft.caps" k="12" />
  1877. <hkern u1="&#x1db;" g2="question.caps" k="18" />
  1878. <hkern u1="&#x1dc;" u2="&#x22;" k="24" />
  1879. <hkern u1="&#x1e6;" g2="ampersand.caps" k="4" />
  1880. <hkern u1="&#x1e6;" g2="parenleft.sc" k="16" />
  1881. <hkern u1="&#x1e6;" g2="quotesingle.caps" k="4" />
  1882. <hkern u1="&#x1e6;" g2="quotedbl.caps" k="4" />
  1883. <hkern u1="&#x1e6;" g2="parenleft.caps" k="8" />
  1884. <hkern u1="&#x1e6;" g2="asterisk.caps" k="16" />
  1885. <hkern u1="&#x1e6;" g2="question.caps" k="12" />
  1886. <hkern u1="&#x1e6;" g2="exclam.caps" k="24" />
  1887. <hkern u1="&#x1ea;" g2="ampersand.caps" k="18" />
  1888. <hkern u1="&#x1ea;" g2="parenleft.sc" k="16" />
  1889. <hkern u1="&#x1ea;" g2="quotesingle.caps" k="14" />
  1890. <hkern u1="&#x1ea;" g2="quotedbl.caps" k="10" />
  1891. <hkern u1="&#x1ea;" g2="bracketright.caps" k="24" />
  1892. <hkern u1="&#x1ea;" g2="asterisk.caps" k="18" />
  1893. <hkern u1="&#x1ea;" g2="periodcentered.caps" k="8" />
  1894. <hkern u1="&#x1ea;" g2="question.caps" k="43" />
  1895. <hkern u1="&#x1ea;" u2="&#x7d;" k="-14" />
  1896. <hkern u1="&#x1eb;" g2="asterisk.caps" k="20" />
  1897. <hkern u1="&#x1f4;" g2="ampersand.caps" k="4" />
  1898. <hkern u1="&#x1f4;" g2="parenleft.sc" k="16" />
  1899. <hkern u1="&#x1f4;" g2="quotesingle.caps" k="4" />
  1900. <hkern u1="&#x1f4;" g2="quotedbl.caps" k="4" />
  1901. <hkern u1="&#x1f4;" g2="parenleft.caps" k="8" />
  1902. <hkern u1="&#x1f4;" g2="asterisk.caps" k="16" />
  1903. <hkern u1="&#x1f4;" g2="question.caps" k="12" />
  1904. <hkern u1="&#x1f4;" g2="exclam.caps" k="24" />
  1905. <hkern u1="&#x1fa;" g2="ampersand.caps" k="16" />
  1906. <hkern u1="&#x1fa;" g2="quotesingle.caps" k="68" />
  1907. <hkern u1="&#x1fa;" g2="quotedbl.caps" k="80" />
  1908. <hkern u1="&#x1fa;" g2="parenleft.caps" k="20" />
  1909. <hkern u1="&#x1fa;" g2="asterisk.caps" k="68" />
  1910. <hkern u1="&#x1fa;" g2="questiondown.caps" k="-8" />
  1911. <hkern u1="&#x1fa;" g2="question.caps" k="66" />
  1912. <hkern u1="&#x1fa;" u2="V" k="34" />
  1913. <hkern u1="&#x1fc;" g2="ampersand.caps" k="20" />
  1914. <hkern u1="&#x1fc;" g2="parenleft.sc" k="12" />
  1915. <hkern u1="&#x1fc;" g2="quotesingle.caps" k="4" />
  1916. <hkern u1="&#x1fc;" g2="quotedbl.caps" k="16" />
  1917. <hkern u1="&#x1fc;" g2="parenleft.caps" k="20" />
  1918. <hkern u1="&#x1fd;" g2="asterisk.caps" k="12" />
  1919. <hkern u1="&#x1fe;" g2="ampersand.caps" k="18" />
  1920. <hkern u1="&#x1fe;" g2="parenleft.sc" k="16" />
  1921. <hkern u1="&#x1fe;" g2="quotesingle.caps" k="14" />
  1922. <hkern u1="&#x1fe;" g2="quotedbl.caps" k="10" />
  1923. <hkern u1="&#x1fe;" g2="bracketright.caps" k="24" />
  1924. <hkern u1="&#x1fe;" g2="asterisk.caps" k="18" />
  1925. <hkern u1="&#x1fe;" g2="periodcentered.caps" k="8" />
  1926. <hkern u1="&#x1fe;" g2="question.caps" k="43" />
  1927. <hkern u1="&#x1fe;" u2="&#x7d;" k="-14" />
  1928. <hkern u1="&#x1ff;" g2="asterisk.caps" k="20" />
  1929. <hkern u1="&#x218;" g2="parenleft.sc" k="20" />
  1930. <hkern u1="&#x218;" g2="parenleft.caps" k="20" />
  1931. <hkern u1="&#x218;" g2="question.caps" k="38" />
  1932. <hkern u1="&#x218;" g2="exclam.caps" k="36" />
  1933. <hkern u1="&#x219;" u2="&#x27;" k="24" />
  1934. <hkern u1="&#x21a;" g2="ampersand.caps" k="40" />
  1935. <hkern u1="&#x21a;" g2="parenleft.sc" k="31" />
  1936. <hkern u1="&#x21a;" g2="parenleft.caps" k="24" />
  1937. <hkern u1="&#x21a;" g2="exclam.caps" k="18" />
  1938. <hkern u1="&#x232;" g2="ampersand.caps" k="44" />
  1939. <hkern u1="&#x232;" g2="parenleft.caps" k="16" />
  1940. <hkern u1="&#x232;" g2="question.caps" k="12" />
  1941. <hkern u1="&#x259;" g2="asterisk.caps" k="20" />
  1942. <hkern u1="&#x272;" u2="&#x27;" k="30" />
  1943. <hkern u1="&#x1e0c;" g2="ampersand.caps" k="18" />
  1944. <hkern u1="&#x1e0c;" g2="parenleft.sc" k="16" />
  1945. <hkern u1="&#x1e0c;" g2="quotesingle.caps" k="14" />
  1946. <hkern u1="&#x1e0c;" g2="quotedbl.caps" k="10" />
  1947. <hkern u1="&#x1e0c;" g2="bracketright.caps" k="24" />
  1948. <hkern u1="&#x1e0c;" g2="asterisk.caps" k="18" />
  1949. <hkern u1="&#x1e0c;" g2="periodcentered.caps" k="8" />
  1950. <hkern u1="&#x1e0c;" g2="question.caps" k="43" />
  1951. <hkern u1="&#x1e0c;" u2="&#x7d;" k="-14" />
  1952. <hkern u1="&#x1e0d;" g2="asterisk.caps" k="4" />
  1953. <hkern u1="&#x1e24;" g2="parenleft.sc" k="12" />
  1954. <hkern u1="&#x1e24;" g2="parenleft.caps" k="16" />
  1955. <hkern u1="&#x1e24;" g2="question.caps" k="30" />
  1956. <hkern u1="&#x1e24;" g2="exclam.caps" k="12" />
  1957. <hkern u1="&#x1e25;" u2="&#x27;" k="30" />
  1958. <hkern u1="&#x1e44;" g2="parenleft.sc" k="12" />
  1959. <hkern u1="&#x1e44;" g2="parenleft.caps" k="16" />
  1960. <hkern u1="&#x1e44;" g2="question.caps" k="30" />
  1961. <hkern u1="&#x1e44;" g2="exclam.caps" k="12" />
  1962. <hkern u1="&#x1e45;" u2="&#x27;" k="30" />
  1963. <hkern u1="&#x1e5a;" g2="ampersand.caps" k="6" />
  1964. <hkern u1="&#x1e5a;" g2="parenleft.sc" k="20" />
  1965. <hkern u1="&#x1e5a;" g2="quotesingle.caps" k="12" />
  1966. <hkern u1="&#x1e5a;" g2="parenleft.caps" k="16" />
  1967. <hkern u1="&#x1e5a;" g2="question.caps" k="24" />
  1968. <hkern u1="&#x1e5a;" g2="exclam.caps" k="30" />
  1969. <hkern u1="&#x1e62;" g2="parenleft.sc" k="20" />
  1970. <hkern u1="&#x1e62;" g2="parenleft.caps" k="20" />
  1971. <hkern u1="&#x1e62;" g2="question.caps" k="38" />
  1972. <hkern u1="&#x1e62;" g2="exclam.caps" k="36" />
  1973. <hkern u1="&#x1e63;" u2="&#x27;" k="24" />
  1974. <hkern u1="&#x1e6c;" g2="ampersand.caps" k="40" />
  1975. <hkern u1="&#x1e6c;" g2="parenleft.sc" k="31" />
  1976. <hkern u1="&#x1e6c;" g2="parenleft.caps" k="24" />
  1977. <hkern u1="&#x1e6c;" g2="exclam.caps" k="18" />
  1978. <hkern u1="&#x1e80;" g2="ampersand.caps" k="52" />
  1979. <hkern u1="&#x1e80;" g2="parenleft.sc" k="20" />
  1980. <hkern u1="&#x1e80;" g2="parenleft.caps" k="20" />
  1981. <hkern u1="&#x1e80;" g2="question.caps" k="12" />
  1982. <hkern u1="&#x1e82;" g2="ampersand.caps" k="52" />
  1983. <hkern u1="&#x1e82;" g2="parenleft.sc" k="20" />
  1984. <hkern u1="&#x1e82;" g2="parenleft.caps" k="20" />
  1985. <hkern u1="&#x1e82;" g2="question.caps" k="12" />
  1986. <hkern u1="&#x1e84;" g2="ampersand.caps" k="52" />
  1987. <hkern u1="&#x1e84;" g2="parenleft.sc" k="20" />
  1988. <hkern u1="&#x1e84;" g2="parenleft.caps" k="20" />
  1989. <hkern u1="&#x1e84;" g2="question.caps" k="12" />
  1990. <hkern u1="&#x1e92;" g2="ampersand.caps" k="6" />
  1991. <hkern u1="&#x1e92;" g2="parenleft.sc" k="12" />
  1992. <hkern u1="&#x1e92;" g2="parenleft.caps" k="12" />
  1993. <hkern u1="&#x1e92;" g2="question.caps" k="18" />
  1994. <hkern u1="&#x1e9e;" g2="parenleft.sc" k="20" />
  1995. <hkern u1="&#x1e9e;" g2="parenleft.caps" k="20" />
  1996. <hkern u1="&#x1e9e;" g2="question.caps" k="38" />
  1997. <hkern u1="&#x1e9e;" g2="exclam.caps" k="36" />
  1998. <hkern u1="&#x1ea0;" g2="ampersand.caps" k="16" />
  1999. <hkern u1="&#x1ea0;" g2="quotesingle.caps" k="68" />
  2000. <hkern u1="&#x1ea0;" g2="quotedbl.caps" k="80" />
  2001. <hkern u1="&#x1ea0;" g2="parenleft.caps" k="20" />
  2002. <hkern u1="&#x1ea0;" g2="asterisk.caps" k="68" />
  2003. <hkern u1="&#x1ea0;" g2="questiondown.caps" k="-8" />
  2004. <hkern u1="&#x1ea0;" g2="question.caps" k="66" />
  2005. <hkern u1="&#x1ea0;" u2="V" k="34" />
  2006. <hkern u1="&#x1eb8;" g2="ampersand.caps" k="20" />
  2007. <hkern u1="&#x1eb8;" g2="parenleft.sc" k="12" />
  2008. <hkern u1="&#x1eb8;" g2="quotesingle.caps" k="4" />
  2009. <hkern u1="&#x1eb8;" g2="quotedbl.caps" k="16" />
  2010. <hkern u1="&#x1eb8;" g2="parenleft.caps" k="20" />
  2011. <hkern u1="&#x1eb9;" g2="asterisk.caps" k="12" />
  2012. <hkern u1="&#x1ebc;" g2="ampersand.caps" k="20" />
  2013. <hkern u1="&#x1ebc;" g2="parenleft.sc" k="12" />
  2014. <hkern u1="&#x1ebc;" g2="quotesingle.caps" k="4" />
  2015. <hkern u1="&#x1ebc;" g2="quotedbl.caps" k="16" />
  2016. <hkern u1="&#x1ebc;" g2="parenleft.caps" k="20" />
  2017. <hkern u1="&#x1ebd;" g2="asterisk.caps" k="12" />
  2018. <hkern u1="&#x1eca;" g2="parenleft.sc" k="12" />
  2019. <hkern u1="&#x1eca;" g2="parenleft.caps" k="16" />
  2020. <hkern u1="&#x1eca;" g2="question.caps" k="30" />
  2021. <hkern u1="&#x1eca;" g2="exclam.caps" k="12" />
  2022. <hkern u1="&#x1ecc;" g2="ampersand.caps" k="18" />
  2023. <hkern u1="&#x1ecc;" g2="parenleft.sc" k="16" />
  2024. <hkern u1="&#x1ecc;" g2="quotesingle.caps" k="14" />
  2025. <hkern u1="&#x1ecc;" g2="quotedbl.caps" k="10" />
  2026. <hkern u1="&#x1ecc;" g2="bracketright.caps" k="24" />
  2027. <hkern u1="&#x1ecc;" g2="asterisk.caps" k="18" />
  2028. <hkern u1="&#x1ecc;" g2="periodcentered.caps" k="8" />
  2029. <hkern u1="&#x1ecc;" g2="question.caps" k="43" />
  2030. <hkern u1="&#x1ecc;" u2="&#x7d;" k="-14" />
  2031. <hkern u1="&#x1ecd;" g2="asterisk.caps" k="20" />
  2032. <hkern u1="&#x1ee4;" g2="ampersand.caps" k="4" />
  2033. <hkern u1="&#x1ee4;" g2="parenleft.sc" k="12" />
  2034. <hkern u1="&#x1ee4;" g2="parenleft.caps" k="12" />
  2035. <hkern u1="&#x1ee4;" g2="question.caps" k="18" />
  2036. <hkern u1="&#x1ee5;" u2="&#x22;" k="24" />
  2037. <hkern u1="&#x1ef2;" g2="ampersand.caps" k="44" />
  2038. <hkern u1="&#x1ef2;" g2="parenleft.caps" k="16" />
  2039. <hkern u1="&#x1ef2;" g2="question.caps" k="12" />
  2040. <hkern u1="&#x1ef8;" g2="ampersand.caps" k="44" />
  2041. <hkern u1="&#x1ef8;" g2="parenleft.caps" k="16" />
  2042. <hkern u1="&#x1ef8;" g2="question.caps" k="12" />
  2043. <hkern u1="&#x2013;" g2="x.sc" k="10" />
  2044. <hkern u1="&#x2013;" u2="&#x2211;" k="38" />
  2045. <hkern u1="&#x2013;" u2="&#x220f;" k="19" />
  2046. <hkern u1="&#x2013;" u2="x" k="7" />
  2047. <hkern u1="&#x2013;" u2="X" k="17" />
  2048. <hkern u1="&#x2014;" g2="m.sc" k="2" />
  2049. <hkern u1="&#x2014;" u2="X" k="17" />
  2050. <hkern u1="&#x2020;" g2="m.sc" k="12" />
  2051. <hkern u1="&#x2020;" u2="&#x222b;" k="4" />
  2052. <hkern u1="&#x2020;" u2="&#x2211;" k="16" />
  2053. <hkern u1="&#x2020;" u2="&#x220f;" k="4" />
  2054. <hkern u1="&#x2020;" u2="&#x2202;" k="4" />
  2055. <hkern u1="&#x2020;" u2="&#x2044;" k="27" />
  2056. <hkern u1="&#x2020;" u2="&#x3bc;" k="4" />
  2057. <hkern u1="&#x2020;" u2="&#x394;" k="20" />
  2058. <hkern u1="&#x2020;" u2="&#x18f;" k="8" />
  2059. <hkern u1="&#x2020;" u2="x" k="2" />
  2060. <hkern u1="&#x2020;" u2="X" k="6" />
  2061. <hkern u1="&#x2020;" u2="M" k="8" />
  2062. <hkern u1="&#x2020;" u2="&#x40;" k="8" />
  2063. <hkern u1="&#x2021;" g2="x.sc" k="4" />
  2064. <hkern u1="&#x2021;" g2="m.sc" k="4" />
  2065. <hkern u1="&#x2021;" u2="&#x222b;" k="8" />
  2066. <hkern u1="&#x2021;" u2="&#x2211;" k="20" />
  2067. <hkern u1="&#x2021;" u2="&#x220f;" k="8" />
  2068. <hkern u1="&#x2021;" u2="&#x2202;" k="8" />
  2069. <hkern u1="&#x2021;" u2="&#x2044;" k="8" />
  2070. <hkern u1="&#x2021;" u2="&#x3c0;" k="4" />
  2071. <hkern u1="&#x2021;" u2="&#x3bc;" k="4" />
  2072. <hkern u1="&#x2021;" u2="&#x394;" k="2" />
  2073. <hkern u1="&#x2021;" u2="&#x18f;" k="4" />
  2074. <hkern u1="&#x2021;" u2="x" k="4" />
  2075. <hkern u1="&#x2044;" g2="six.denominator" k="244" />
  2076. <hkern u1="&#x2044;" g2="four.denominator" k="268" />
  2077. <hkern u1="&#x2044;" g2="one.denominator" k="196" />
  2078. <hkern u1="&#x2044;" g2="zero.denominator" k="250" />
  2079. <hkern g1="c_h" u2="&#x27;" k="30" />
  2080. <hkern g1="s_h" u2="&#x27;" k="30" />
  2081. <hkern g1="a.sc" g2="quotesingle.sc" k="44" />
  2082. <hkern g1="a.sc" g2="quotedbl.sc" k="44" />
  2083. <hkern g1="a.sc" g2="asterisk.sc" k="72" />
  2084. <hkern g1="a.sc" g2="periodcentered.sc" k="28" />
  2085. <hkern g1="a.sc" g2="questiondown.sc" k="-8" />
  2086. <hkern g1="a.sc" g2="question.sc" k="28" />
  2087. <hkern g1="a.sc" g2="exclamdown.sc" k="20" />
  2088. <hkern g1="a.sc" g2="bracketright.sc" k="8" />
  2089. <hkern g1="a.sc" g2="braceright.sc" k="2" />
  2090. <hkern g1="a.sc" g2="braceleft.sc" k="6" />
  2091. <hkern g1="a.sc" g2="parenleft.sc" k="4" />
  2092. <hkern g1="aacute.sc" g2="quotesingle.sc" k="44" />
  2093. <hkern g1="aacute.sc" g2="quotedbl.sc" k="44" />
  2094. <hkern g1="aacute.sc" g2="asterisk.sc" k="72" />
  2095. <hkern g1="aacute.sc" g2="periodcentered.sc" k="28" />
  2096. <hkern g1="aacute.sc" g2="questiondown.sc" k="-8" />
  2097. <hkern g1="aacute.sc" g2="question.sc" k="28" />
  2098. <hkern g1="aacute.sc" g2="exclamdown.sc" k="20" />
  2099. <hkern g1="aacute.sc" g2="bracketright.sc" k="8" />
  2100. <hkern g1="aacute.sc" g2="braceright.sc" k="2" />
  2101. <hkern g1="aacute.sc" g2="braceleft.sc" k="6" />
  2102. <hkern g1="aacute.sc" g2="parenleft.sc" k="4" />
  2103. <hkern g1="abreve.sc" g2="quotesingle.sc" k="44" />
  2104. <hkern g1="abreve.sc" g2="quotedbl.sc" k="44" />
  2105. <hkern g1="abreve.sc" g2="asterisk.sc" k="72" />
  2106. <hkern g1="abreve.sc" g2="periodcentered.sc" k="28" />
  2107. <hkern g1="abreve.sc" g2="questiondown.sc" k="-8" />
  2108. <hkern g1="abreve.sc" g2="question.sc" k="28" />
  2109. <hkern g1="abreve.sc" g2="exclamdown.sc" k="20" />
  2110. <hkern g1="abreve.sc" g2="bracketright.sc" k="8" />
  2111. <hkern g1="abreve.sc" g2="braceright.sc" k="2" />
  2112. <hkern g1="abreve.sc" g2="braceleft.sc" k="6" />
  2113. <hkern g1="abreve.sc" g2="parenleft.sc" k="4" />
  2114. <hkern g1="acaron.sc" g2="quotesingle.sc" k="44" />
  2115. <hkern g1="acaron.sc" g2="quotedbl.sc" k="44" />
  2116. <hkern g1="acaron.sc" g2="asterisk.sc" k="72" />
  2117. <hkern g1="acaron.sc" g2="periodcentered.sc" k="28" />
  2118. <hkern g1="acaron.sc" g2="questiondown.sc" k="-8" />
  2119. <hkern g1="acaron.sc" g2="question.sc" k="28" />
  2120. <hkern g1="acaron.sc" g2="exclamdown.sc" k="20" />
  2121. <hkern g1="acaron.sc" g2="bracketright.sc" k="8" />
  2122. <hkern g1="acaron.sc" g2="braceright.sc" k="2" />
  2123. <hkern g1="acaron.sc" g2="braceleft.sc" k="6" />
  2124. <hkern g1="acaron.sc" g2="parenleft.sc" k="4" />
  2125. <hkern g1="acircumflex.sc" g2="quotesingle.sc" k="44" />
  2126. <hkern g1="acircumflex.sc" g2="quotedbl.sc" k="44" />
  2127. <hkern g1="acircumflex.sc" g2="asterisk.sc" k="72" />
  2128. <hkern g1="acircumflex.sc" g2="periodcentered.sc" k="28" />
  2129. <hkern g1="acircumflex.sc" g2="questiondown.sc" k="-8" />
  2130. <hkern g1="acircumflex.sc" g2="question.sc" k="28" />
  2131. <hkern g1="acircumflex.sc" g2="exclamdown.sc" k="20" />
  2132. <hkern g1="acircumflex.sc" g2="bracketright.sc" k="8" />
  2133. <hkern g1="acircumflex.sc" g2="braceright.sc" k="2" />
  2134. <hkern g1="acircumflex.sc" g2="braceleft.sc" k="6" />
  2135. <hkern g1="acircumflex.sc" g2="parenleft.sc" k="4" />
  2136. <hkern g1="adieresis.sc" g2="quotesingle.sc" k="44" />
  2137. <hkern g1="adieresis.sc" g2="quotedbl.sc" k="44" />
  2138. <hkern g1="adieresis.sc" g2="asterisk.sc" k="72" />
  2139. <hkern g1="adieresis.sc" g2="periodcentered.sc" k="28" />
  2140. <hkern g1="adieresis.sc" g2="questiondown.sc" k="-8" />
  2141. <hkern g1="adieresis.sc" g2="question.sc" k="28" />
  2142. <hkern g1="adieresis.sc" g2="exclamdown.sc" k="20" />
  2143. <hkern g1="adieresis.sc" g2="bracketright.sc" k="8" />
  2144. <hkern g1="adieresis.sc" g2="braceright.sc" k="2" />
  2145. <hkern g1="adieresis.sc" g2="braceleft.sc" k="6" />
  2146. <hkern g1="adieresis.sc" g2="parenleft.sc" k="4" />
  2147. <hkern g1="adotbelow.sc" g2="quotesingle.sc" k="44" />
  2148. <hkern g1="adotbelow.sc" g2="quotedbl.sc" k="44" />
  2149. <hkern g1="adotbelow.sc" g2="asterisk.sc" k="72" />
  2150. <hkern g1="adotbelow.sc" g2="periodcentered.sc" k="28" />
  2151. <hkern g1="adotbelow.sc" g2="questiondown.sc" k="-8" />
  2152. <hkern g1="adotbelow.sc" g2="question.sc" k="28" />
  2153. <hkern g1="adotbelow.sc" g2="exclamdown.sc" k="20" />
  2154. <hkern g1="adotbelow.sc" g2="bracketright.sc" k="8" />
  2155. <hkern g1="adotbelow.sc" g2="braceright.sc" k="2" />
  2156. <hkern g1="adotbelow.sc" g2="braceleft.sc" k="6" />
  2157. <hkern g1="adotbelow.sc" g2="parenleft.sc" k="4" />
  2158. <hkern g1="agrave.sc" g2="quotesingle.sc" k="44" />
  2159. <hkern g1="agrave.sc" g2="quotedbl.sc" k="44" />
  2160. <hkern g1="agrave.sc" g2="asterisk.sc" k="72" />
  2161. <hkern g1="agrave.sc" g2="periodcentered.sc" k="28" />
  2162. <hkern g1="agrave.sc" g2="questiondown.sc" k="-8" />
  2163. <hkern g1="agrave.sc" g2="question.sc" k="28" />
  2164. <hkern g1="agrave.sc" g2="exclamdown.sc" k="20" />
  2165. <hkern g1="agrave.sc" g2="bracketright.sc" k="8" />
  2166. <hkern g1="agrave.sc" g2="braceright.sc" k="2" />
  2167. <hkern g1="agrave.sc" g2="braceleft.sc" k="6" />
  2168. <hkern g1="agrave.sc" g2="parenleft.sc" k="4" />
  2169. <hkern g1="amacron.sc" g2="quotesingle.sc" k="44" />
  2170. <hkern g1="amacron.sc" g2="quotedbl.sc" k="44" />
  2171. <hkern g1="amacron.sc" g2="asterisk.sc" k="72" />
  2172. <hkern g1="amacron.sc" g2="periodcentered.sc" k="28" />
  2173. <hkern g1="amacron.sc" g2="questiondown.sc" k="-8" />
  2174. <hkern g1="amacron.sc" g2="question.sc" k="28" />
  2175. <hkern g1="amacron.sc" g2="exclamdown.sc" k="20" />
  2176. <hkern g1="amacron.sc" g2="bracketright.sc" k="8" />
  2177. <hkern g1="amacron.sc" g2="braceright.sc" k="2" />
  2178. <hkern g1="amacron.sc" g2="braceleft.sc" k="6" />
  2179. <hkern g1="amacron.sc" g2="parenleft.sc" k="4" />
  2180. <hkern g1="aogonek.sc" g2="quotesingle.sc" k="44" />
  2181. <hkern g1="aogonek.sc" g2="quotedbl.sc" k="44" />
  2182. <hkern g1="aogonek.sc" g2="asterisk.sc" k="72" />
  2183. <hkern g1="aogonek.sc" g2="periodcentered.sc" k="28" />
  2184. <hkern g1="aogonek.sc" g2="questiondown.sc" k="-8" />
  2185. <hkern g1="aogonek.sc" g2="question.sc" k="28" />
  2186. <hkern g1="aogonek.sc" g2="exclamdown.sc" k="20" />
  2187. <hkern g1="aogonek.sc" g2="bracketright.sc" k="8" />
  2188. <hkern g1="aogonek.sc" g2="braceright.sc" k="2" />
  2189. <hkern g1="aogonek.sc" g2="braceleft.sc" k="6" />
  2190. <hkern g1="aogonek.sc" g2="parenleft.sc" k="4" />
  2191. <hkern g1="aring.sc" g2="quotesingle.sc" k="44" />
  2192. <hkern g1="aring.sc" g2="quotedbl.sc" k="44" />
  2193. <hkern g1="aring.sc" g2="asterisk.sc" k="72" />
  2194. <hkern g1="aring.sc" g2="periodcentered.sc" k="28" />
  2195. <hkern g1="aring.sc" g2="questiondown.sc" k="-8" />
  2196. <hkern g1="aring.sc" g2="question.sc" k="28" />
  2197. <hkern g1="aring.sc" g2="exclamdown.sc" k="20" />
  2198. <hkern g1="aring.sc" g2="bracketright.sc" k="8" />
  2199. <hkern g1="aring.sc" g2="braceright.sc" k="2" />
  2200. <hkern g1="aring.sc" g2="braceleft.sc" k="6" />
  2201. <hkern g1="aring.sc" g2="parenleft.sc" k="4" />
  2202. <hkern g1="aringacute.sc" g2="quotesingle.sc" k="44" />
  2203. <hkern g1="aringacute.sc" g2="quotedbl.sc" k="44" />
  2204. <hkern g1="aringacute.sc" g2="asterisk.sc" k="72" />
  2205. <hkern g1="aringacute.sc" g2="periodcentered.sc" k="28" />
  2206. <hkern g1="aringacute.sc" g2="questiondown.sc" k="-8" />
  2207. <hkern g1="aringacute.sc" g2="question.sc" k="28" />
  2208. <hkern g1="aringacute.sc" g2="exclamdown.sc" k="20" />
  2209. <hkern g1="aringacute.sc" g2="bracketright.sc" k="8" />
  2210. <hkern g1="aringacute.sc" g2="braceright.sc" k="2" />
  2211. <hkern g1="aringacute.sc" g2="braceleft.sc" k="6" />
  2212. <hkern g1="aringacute.sc" g2="parenleft.sc" k="4" />
  2213. <hkern g1="atilde.sc" g2="quotesingle.sc" k="44" />
  2214. <hkern g1="atilde.sc" g2="quotedbl.sc" k="44" />
  2215. <hkern g1="atilde.sc" g2="asterisk.sc" k="72" />
  2216. <hkern g1="atilde.sc" g2="periodcentered.sc" k="28" />
  2217. <hkern g1="atilde.sc" g2="questiondown.sc" k="-8" />
  2218. <hkern g1="atilde.sc" g2="question.sc" k="28" />
  2219. <hkern g1="atilde.sc" g2="exclamdown.sc" k="20" />
  2220. <hkern g1="atilde.sc" g2="bracketright.sc" k="8" />
  2221. <hkern g1="atilde.sc" g2="braceright.sc" k="2" />
  2222. <hkern g1="atilde.sc" g2="braceleft.sc" k="6" />
  2223. <hkern g1="atilde.sc" g2="parenleft.sc" k="4" />
  2224. <hkern g1="ae.sc" g2="asterisk.sc" k="8" />
  2225. <hkern g1="aeacute.sc" g2="asterisk.sc" k="8" />
  2226. <hkern g1="b.sc" g2="quotesingle.sc" k="20" />
  2227. <hkern g1="b.sc" g2="quotedbl.sc" k="20" />
  2228. <hkern g1="b.sc" g2="asterisk.sc" k="38" />
  2229. <hkern g1="b.sc" g2="exclam.sc" k="34" />
  2230. <hkern g1="b.sc" g2="bracketright.sc" k="12" />
  2231. <hkern g1="b.sc" g2="braceright.sc" k="8" />
  2232. <hkern g1="b.sc" g2="parenright.sc" k="8" />
  2233. <hkern g1="b.sc" g2="x.sc" k="8" />
  2234. <hkern g1="b.sc" g2="m.sc" k="7" />
  2235. <hkern g1="b.sc" u2="&#x2122;" k="56" />
  2236. <hkern g1="c.sc" g2="periodcentered.sc" k="6" />
  2237. <hkern g1="c.sc" g2="braceright.sc" k="4" />
  2238. <hkern g1="c.sc" g2="parenright.sc" k="-14" />
  2239. <hkern g1="cacute.sc" g2="periodcentered.sc" k="6" />
  2240. <hkern g1="cacute.sc" g2="braceright.sc" k="4" />
  2241. <hkern g1="cacute.sc" g2="parenright.sc" k="-14" />
  2242. <hkern g1="ccaron.sc" g2="periodcentered.sc" k="6" />
  2243. <hkern g1="ccaron.sc" g2="braceright.sc" k="4" />
  2244. <hkern g1="ccaron.sc" g2="parenright.sc" k="-14" />
  2245. <hkern g1="ccedilla.sc" g2="periodcentered.sc" k="6" />
  2246. <hkern g1="ccedilla.sc" g2="braceright.sc" k="4" />
  2247. <hkern g1="ccedilla.sc" g2="parenright.sc" k="-14" />
  2248. <hkern g1="ccircumflex.sc" g2="periodcentered.sc" k="6" />
  2249. <hkern g1="ccircumflex.sc" g2="braceright.sc" k="4" />
  2250. <hkern g1="ccircumflex.sc" g2="parenright.sc" k="-14" />
  2251. <hkern g1="cdotaccent.sc" g2="periodcentered.sc" k="6" />
  2252. <hkern g1="cdotaccent.sc" g2="braceright.sc" k="4" />
  2253. <hkern g1="cdotaccent.sc" g2="parenright.sc" k="-14" />
  2254. <hkern g1="d.sc" g2="quotesingle.sc" k="14" />
  2255. <hkern g1="d.sc" g2="quotedbl.sc" k="14" />
  2256. <hkern g1="d.sc" g2="asterisk.sc" k="28" />
  2257. <hkern g1="d.sc" g2="question.sc" k="4" />
  2258. <hkern g1="d.sc" g2="exclam.sc" k="22" />
  2259. <hkern g1="d.sc" g2="bracketright.sc" k="22" />
  2260. <hkern g1="d.sc" g2="braceright.sc" k="18" />
  2261. <hkern g1="d.sc" g2="parenright.sc" k="22" />
  2262. <hkern g1="eth.sc" g2="quotesingle.sc" k="14" />
  2263. <hkern g1="eth.sc" g2="quotedbl.sc" k="14" />
  2264. <hkern g1="eth.sc" g2="asterisk.sc" k="28" />
  2265. <hkern g1="eth.sc" g2="question.sc" k="4" />
  2266. <hkern g1="eth.sc" g2="exclam.sc" k="22" />
  2267. <hkern g1="eth.sc" g2="bracketright.sc" k="22" />
  2268. <hkern g1="eth.sc" g2="braceright.sc" k="18" />
  2269. <hkern g1="eth.sc" g2="parenright.sc" k="22" />
  2270. <hkern g1="dcaron.sc" g2="quotesingle.sc" k="14" />
  2271. <hkern g1="dcaron.sc" g2="quotedbl.sc" k="14" />
  2272. <hkern g1="dcaron.sc" g2="asterisk.sc" k="28" />
  2273. <hkern g1="dcaron.sc" g2="question.sc" k="4" />
  2274. <hkern g1="dcaron.sc" g2="exclam.sc" k="22" />
  2275. <hkern g1="dcaron.sc" g2="bracketright.sc" k="22" />
  2276. <hkern g1="dcaron.sc" g2="braceright.sc" k="18" />
  2277. <hkern g1="dcaron.sc" g2="parenright.sc" k="22" />
  2278. <hkern g1="dcroat.sc" g2="quotesingle.sc" k="14" />
  2279. <hkern g1="dcroat.sc" g2="quotedbl.sc" k="14" />
  2280. <hkern g1="dcroat.sc" g2="asterisk.sc" k="28" />
  2281. <hkern g1="dcroat.sc" g2="question.sc" k="4" />
  2282. <hkern g1="dcroat.sc" g2="exclam.sc" k="22" />
  2283. <hkern g1="dcroat.sc" g2="bracketright.sc" k="22" />
  2284. <hkern g1="dcroat.sc" g2="braceright.sc" k="18" />
  2285. <hkern g1="dcroat.sc" g2="parenright.sc" k="22" />
  2286. <hkern g1="ddotbelow.sc" g2="quotesingle.sc" k="14" />
  2287. <hkern g1="ddotbelow.sc" g2="quotedbl.sc" k="14" />
  2288. <hkern g1="ddotbelow.sc" g2="asterisk.sc" k="28" />
  2289. <hkern g1="ddotbelow.sc" g2="question.sc" k="4" />
  2290. <hkern g1="ddotbelow.sc" g2="exclam.sc" k="22" />
  2291. <hkern g1="ddotbelow.sc" g2="bracketright.sc" k="22" />
  2292. <hkern g1="ddotbelow.sc" g2="braceright.sc" k="18" />
  2293. <hkern g1="ddotbelow.sc" g2="parenright.sc" k="22" />
  2294. <hkern g1="e.sc" g2="asterisk.sc" k="8" />
  2295. <hkern g1="eacute.sc" g2="asterisk.sc" k="8" />
  2296. <hkern g1="ebreve.sc" g2="asterisk.sc" k="8" />
  2297. <hkern g1="ecaron.sc" g2="asterisk.sc" k="8" />
  2298. <hkern g1="ecircumflex.sc" g2="asterisk.sc" k="8" />
  2299. <hkern g1="edieresis.sc" g2="asterisk.sc" k="8" />
  2300. <hkern g1="edotaccent.sc" g2="asterisk.sc" k="8" />
  2301. <hkern g1="edotbelow.sc" g2="asterisk.sc" k="8" />
  2302. <hkern g1="egrave.sc" g2="asterisk.sc" k="8" />
  2303. <hkern g1="emacron.sc" g2="asterisk.sc" k="8" />
  2304. <hkern g1="eogonek.sc" g2="asterisk.sc" k="8" />
  2305. <hkern g1="etilde.sc" g2="asterisk.sc" k="8" />
  2306. <hkern g1="schwa.sc" g2="quotesingle.sc" k="14" />
  2307. <hkern g1="schwa.sc" g2="quotedbl.sc" k="14" />
  2308. <hkern g1="schwa.sc" g2="asterisk.sc" k="28" />
  2309. <hkern g1="schwa.sc" g2="question.sc" k="4" />
  2310. <hkern g1="schwa.sc" g2="exclam.sc" k="22" />
  2311. <hkern g1="schwa.sc" g2="bracketright.sc" k="22" />
  2312. <hkern g1="schwa.sc" g2="braceright.sc" k="18" />
  2313. <hkern g1="schwa.sc" g2="parenright.sc" k="22" />
  2314. <hkern g1="f.sc" g2="quotesingle.sc" k="-4" />
  2315. <hkern g1="f.sc" g2="quotedbl.sc" k="-4" />
  2316. <hkern g1="f.sc" g2="asterisk.sc" k="4" />
  2317. <hkern g1="f.sc" g2="m.sc" k="16" />
  2318. <hkern g1="f.sc" u2="_" k="4" />
  2319. <hkern g1="g.sc" g2="quotesingle.sc" k="4" />
  2320. <hkern g1="g.sc" g2="quotedbl.sc" k="4" />
  2321. <hkern g1="g.sc" g2="asterisk.sc" k="6" />
  2322. <hkern g1="g.sc" g2="exclam.sc" k="18" />
  2323. <hkern g1="g.sc" g2="parenright.sc" k="4" />
  2324. <hkern g1="gacute.sc" g2="quotesingle.sc" k="4" />
  2325. <hkern g1="gacute.sc" g2="quotedbl.sc" k="4" />
  2326. <hkern g1="gacute.sc" g2="asterisk.sc" k="6" />
  2327. <hkern g1="gacute.sc" g2="exclam.sc" k="18" />
  2328. <hkern g1="gacute.sc" g2="parenright.sc" k="4" />
  2329. <hkern g1="gbreve.sc" g2="quotesingle.sc" k="4" />
  2330. <hkern g1="gbreve.sc" g2="quotedbl.sc" k="4" />
  2331. <hkern g1="gbreve.sc" g2="asterisk.sc" k="6" />
  2332. <hkern g1="gbreve.sc" g2="exclam.sc" k="18" />
  2333. <hkern g1="gbreve.sc" g2="parenright.sc" k="4" />
  2334. <hkern g1="gcaron.sc" g2="quotesingle.sc" k="4" />
  2335. <hkern g1="gcaron.sc" g2="quotedbl.sc" k="4" />
  2336. <hkern g1="gcaron.sc" g2="asterisk.sc" k="6" />
  2337. <hkern g1="gcaron.sc" g2="exclam.sc" k="18" />
  2338. <hkern g1="gcaron.sc" g2="parenright.sc" k="4" />
  2339. <hkern g1="gcircumflex.sc" g2="quotesingle.sc" k="4" />
  2340. <hkern g1="gcircumflex.sc" g2="quotedbl.sc" k="4" />
  2341. <hkern g1="gcircumflex.sc" g2="asterisk.sc" k="6" />
  2342. <hkern g1="gcircumflex.sc" g2="exclam.sc" k="18" />
  2343. <hkern g1="gcircumflex.sc" g2="parenright.sc" k="4" />
  2344. <hkern g1="gcommaaccent.sc" g2="quotesingle.sc" k="4" />
  2345. <hkern g1="gcommaaccent.sc" g2="quotedbl.sc" k="4" />
  2346. <hkern g1="gcommaaccent.sc" g2="asterisk.sc" k="6" />
  2347. <hkern g1="gcommaaccent.sc" g2="exclam.sc" k="18" />
  2348. <hkern g1="gcommaaccent.sc" g2="parenright.sc" k="4" />
  2349. <hkern g1="gdotaccent.sc" g2="quotesingle.sc" k="4" />
  2350. <hkern g1="gdotaccent.sc" g2="quotedbl.sc" k="4" />
  2351. <hkern g1="gdotaccent.sc" g2="asterisk.sc" k="6" />
  2352. <hkern g1="gdotaccent.sc" g2="exclam.sc" k="18" />
  2353. <hkern g1="gdotaccent.sc" g2="parenright.sc" k="4" />
  2354. <hkern g1="h.sc" g2="exclam.sc" k="30" />
  2355. <hkern g1="hbar.sc" g2="exclam.sc" k="30" />
  2356. <hkern g1="hcircumflex.sc" g2="exclam.sc" k="30" />
  2357. <hkern g1="hdotbelow.sc" g2="exclam.sc" k="30" />
  2358. <hkern g1="i.sc" g2="exclam.sc" k="30" />
  2359. <hkern g1="dotlessi.sc" g2="exclam.sc" k="30" />
  2360. <hkern g1="iacute.sc" g2="exclam.sc" k="30" />
  2361. <hkern g1="ibreve.sc" g2="exclam.sc" k="30" />
  2362. <hkern g1="icaron.sc" g2="exclam.sc" k="30" />
  2363. <hkern g1="icircumflex.sc" g2="exclam.sc" k="30" />
  2364. <hkern g1="idieresis.sc" g2="exclam.sc" k="30" />
  2365. <hkern g1="idotbelow.sc" g2="exclam.sc" k="30" />
  2366. <hkern g1="igrave.sc" g2="exclam.sc" k="30" />
  2367. <hkern g1="imacron.sc" g2="exclam.sc" k="30" />
  2368. <hkern g1="iogonek.sc" g2="exclam.sc" k="30" />
  2369. <hkern g1="itilde.sc" g2="exclam.sc" k="30" />
  2370. <hkern g1="k.sc" g2="quotesingle.sc" k="12" />
  2371. <hkern g1="k.sc" g2="quotedbl.sc" k="12" />
  2372. <hkern g1="k.sc" g2="asterisk.sc" k="12" />
  2373. <hkern g1="k.sc" g2="questiondown.sc" k="-20" />
  2374. <hkern g1="k.sc" g2="question.sc" k="18" />
  2375. <hkern g1="k.sc" g2="exclam.sc" k="36" />
  2376. <hkern g1="k.sc" g2="bracketright.sc" k="14" />
  2377. <hkern g1="k.sc" g2="braceright.sc" k="12" />
  2378. <hkern g1="kcommaaccent.sc" g2="quotesingle.sc" k="12" />
  2379. <hkern g1="kcommaaccent.sc" g2="quotedbl.sc" k="12" />
  2380. <hkern g1="kcommaaccent.sc" g2="asterisk.sc" k="12" />
  2381. <hkern g1="kcommaaccent.sc" g2="questiondown.sc" k="-20" />
  2382. <hkern g1="kcommaaccent.sc" g2="question.sc" k="18" />
  2383. <hkern g1="kcommaaccent.sc" g2="exclam.sc" k="36" />
  2384. <hkern g1="kcommaaccent.sc" g2="bracketright.sc" k="14" />
  2385. <hkern g1="kcommaaccent.sc" g2="braceright.sc" k="12" />
  2386. <hkern g1="kgreenlandic.sc" g2="quotesingle.sc" k="12" />
  2387. <hkern g1="kgreenlandic.sc" g2="quotedbl.sc" k="12" />
  2388. <hkern g1="kgreenlandic.sc" g2="asterisk.sc" k="12" />
  2389. <hkern g1="kgreenlandic.sc" g2="questiondown.sc" k="-20" />
  2390. <hkern g1="kgreenlandic.sc" g2="question.sc" k="18" />
  2391. <hkern g1="kgreenlandic.sc" g2="exclam.sc" k="36" />
  2392. <hkern g1="kgreenlandic.sc" g2="bracketright.sc" k="14" />
  2393. <hkern g1="kgreenlandic.sc" g2="braceright.sc" k="12" />
  2394. <hkern g1="l.sc" g2="quotesingle.sc" k="100" />
  2395. <hkern g1="l.sc" g2="quotedbl.sc" k="100" />
  2396. <hkern g1="l.sc" g2="asterisk.sc" k="118" />
  2397. <hkern g1="l.sc" g2="question.sc" k="40" />
  2398. <hkern g1="l.sc" g2="exclam.sc" k="24" />
  2399. <hkern g1="l.sc" g2="bracketright.sc" k="8" />
  2400. <hkern g1="l.sc" g2="braceright.sc" k="4" />
  2401. <hkern g1="l.sc" g2="parenright.sc" k="16" />
  2402. <hkern g1="lacute.sc" g2="quotesingle.sc" k="100" />
  2403. <hkern g1="lacute.sc" g2="quotedbl.sc" k="100" />
  2404. <hkern g1="lacute.sc" g2="asterisk.sc" k="118" />
  2405. <hkern g1="lacute.sc" g2="question.sc" k="40" />
  2406. <hkern g1="lacute.sc" g2="exclam.sc" k="24" />
  2407. <hkern g1="lacute.sc" g2="bracketright.sc" k="8" />
  2408. <hkern g1="lacute.sc" g2="braceright.sc" k="4" />
  2409. <hkern g1="lacute.sc" g2="parenright.sc" k="16" />
  2410. <hkern g1="lcaron.sc" g2="quotesingle.sc" k="100" />
  2411. <hkern g1="lcaron.sc" g2="quotedbl.sc" k="100" />
  2412. <hkern g1="lcaron.sc" g2="asterisk.sc" k="118" />
  2413. <hkern g1="lcaron.sc" g2="question.sc" k="40" />
  2414. <hkern g1="lcaron.sc" g2="exclam.sc" k="24" />
  2415. <hkern g1="lcaron.sc" g2="bracketright.sc" k="8" />
  2416. <hkern g1="lcaron.sc" g2="braceright.sc" k="4" />
  2417. <hkern g1="lcaron.sc" g2="parenright.sc" k="16" />
  2418. <hkern g1="lcommaaccent.sc" g2="quotesingle.sc" k="100" />
  2419. <hkern g1="lcommaaccent.sc" g2="quotedbl.sc" k="100" />
  2420. <hkern g1="lcommaaccent.sc" g2="asterisk.sc" k="118" />
  2421. <hkern g1="lcommaaccent.sc" g2="question.sc" k="40" />
  2422. <hkern g1="lcommaaccent.sc" g2="exclam.sc" k="24" />
  2423. <hkern g1="lcommaaccent.sc" g2="bracketright.sc" k="8" />
  2424. <hkern g1="lcommaaccent.sc" g2="braceright.sc" k="4" />
  2425. <hkern g1="lcommaaccent.sc" g2="parenright.sc" k="16" />
  2426. <hkern g1="ldot.sc" g2="quotesingle.sc" k="100" />
  2427. <hkern g1="ldot.sc" g2="quotedbl.sc" k="100" />
  2428. <hkern g1="ldot.sc" g2="asterisk.sc" k="118" />
  2429. <hkern g1="ldot.sc" g2="question.sc" k="40" />
  2430. <hkern g1="ldot.sc" g2="exclam.sc" k="24" />
  2431. <hkern g1="ldot.sc" g2="bracketright.sc" k="8" />
  2432. <hkern g1="ldot.sc" g2="braceright.sc" k="4" />
  2433. <hkern g1="ldot.sc" g2="parenright.sc" k="16" />
  2434. <hkern g1="ldot.sc" g2="germandbls.sc" k="-8" />
  2435. <hkern g1="ldot.sc" g2="rdotbelow.sc" k="-8" />
  2436. <hkern g1="ldot.sc" g2="rcommaaccent.sc" k="-8" />
  2437. <hkern g1="ldot.sc" g2="rcaron.sc" k="-8" />
  2438. <hkern g1="ldot.sc" g2="racute.sc" k="-8" />
  2439. <hkern g1="ldot.sc" g2="r.sc" k="-8" />
  2440. <hkern g1="ldot.sc" g2="thorn.sc" k="-8" />
  2441. <hkern g1="ldot.sc" g2="p.sc" k="-8" />
  2442. <hkern g1="ldot.sc" g2="ntilde.sc" k="-8" />
  2443. <hkern g1="ldot.sc" g2="eng.sc" k="-8" />
  2444. <hkern g1="ldot.sc" g2="ndotaccent.sc" k="-8" />
  2445. <hkern g1="ldot.sc" g2="ncommaaccent.sc" k="-8" />
  2446. <hkern g1="ldot.sc" g2="ncaron.sc" k="-8" />
  2447. <hkern g1="ldot.sc" g2="nacute.sc" k="-8" />
  2448. <hkern g1="ldot.sc" g2="n.sc" k="-8" />
  2449. <hkern g1="ldot.sc" g2="lslash.sc" k="-8" />
  2450. <hkern g1="ldot.sc" g2="ldot.sc" k="-8" />
  2451. <hkern g1="ldot.sc" g2="lcommaaccent.sc" k="-8" />
  2452. <hkern g1="ldot.sc" g2="lcaron.sc" k="-8" />
  2453. <hkern g1="ldot.sc" g2="lacute.sc" k="-8" />
  2454. <hkern g1="ldot.sc" g2="l.sc" k="-8" />
  2455. <hkern g1="ldot.sc" g2="kgreenlandic.sc" k="-8" />
  2456. <hkern g1="ldot.sc" g2="kcommaaccent.sc" k="-8" />
  2457. <hkern g1="ldot.sc" g2="k.sc" k="-8" />
  2458. <hkern g1="ldot.sc" g2="itilde.sc" k="-8" />
  2459. <hkern g1="ldot.sc" g2="iogonek.sc" k="-8" />
  2460. <hkern g1="ldot.sc" g2="imacron.sc" k="-8" />
  2461. <hkern g1="ldot.sc" g2="ij.sc" k="-8" />
  2462. <hkern g1="ldot.sc" g2="igrave.sc" k="-8" />
  2463. <hkern g1="ldot.sc" g2="idotbelow.sc" k="-8" />
  2464. <hkern g1="ldot.sc" g2="idotaccent.sc" k="-8" />
  2465. <hkern g1="ldot.sc" g2="idieresis.sc" k="-8" />
  2466. <hkern g1="ldot.sc" g2="icircumflex.sc" k="-8" />
  2467. <hkern g1="ldot.sc" g2="icaron.sc" k="-8" />
  2468. <hkern g1="ldot.sc" g2="ibreve.sc" k="-8" />
  2469. <hkern g1="ldot.sc" g2="iacute.sc" k="-8" />
  2470. <hkern g1="ldot.sc" g2="dotlessi.sc" k="-8" />
  2471. <hkern g1="ldot.sc" g2="i.sc" k="-8" />
  2472. <hkern g1="ldot.sc" g2="hdotbelow.sc" k="-8" />
  2473. <hkern g1="ldot.sc" g2="hcircumflex.sc" k="-8" />
  2474. <hkern g1="ldot.sc" g2="hbar.sc" k="-8" />
  2475. <hkern g1="ldot.sc" g2="h.sc" k="-8" />
  2476. <hkern g1="ldot.sc" g2="f.sc" k="-8" />
  2477. <hkern g1="ldot.sc" g2="etilde.sc" k="-8" />
  2478. <hkern g1="ldot.sc" g2="eogonek.sc" k="-8" />
  2479. <hkern g1="ldot.sc" g2="emacron.sc" k="-8" />
  2480. <hkern g1="ldot.sc" g2="egrave.sc" k="-8" />
  2481. <hkern g1="ldot.sc" g2="edotbelow.sc" k="-8" />
  2482. <hkern g1="ldot.sc" g2="edotaccent.sc" k="-8" />
  2483. <hkern g1="ldot.sc" g2="edieresis.sc" k="-8" />
  2484. <hkern g1="ldot.sc" g2="ecircumflex.sc" k="-8" />
  2485. <hkern g1="ldot.sc" g2="ecaron.sc" k="-8" />
  2486. <hkern g1="ldot.sc" g2="ebreve.sc" k="-8" />
  2487. <hkern g1="ldot.sc" g2="eacute.sc" k="-8" />
  2488. <hkern g1="ldot.sc" g2="e.sc" k="-8" />
  2489. <hkern g1="ldot.sc" g2="ddotbelow.sc" k="-8" />
  2490. <hkern g1="ldot.sc" g2="dcroat.sc" k="-8" />
  2491. <hkern g1="ldot.sc" g2="dcaron.sc" k="-8" />
  2492. <hkern g1="ldot.sc" g2="eth.sc" k="-8" />
  2493. <hkern g1="ldot.sc" g2="d.sc" k="-8" />
  2494. <hkern g1="ldot.sc" g2="b.sc" k="-8" />
  2495. <hkern g1="lslash.sc" g2="quotesingle.sc" k="100" />
  2496. <hkern g1="lslash.sc" g2="quotedbl.sc" k="100" />
  2497. <hkern g1="lslash.sc" g2="asterisk.sc" k="118" />
  2498. <hkern g1="lslash.sc" g2="question.sc" k="40" />
  2499. <hkern g1="lslash.sc" g2="exclam.sc" k="24" />
  2500. <hkern g1="lslash.sc" g2="bracketright.sc" k="8" />
  2501. <hkern g1="lslash.sc" g2="braceright.sc" k="4" />
  2502. <hkern g1="lslash.sc" g2="parenright.sc" k="16" />
  2503. <hkern g1="m.sc" g2="quotesingle.sc" k="26" />
  2504. <hkern g1="m.sc" g2="quotedbl.sc" k="26" />
  2505. <hkern g1="m.sc" g2="asterisk.sc" k="28" />
  2506. <hkern g1="m.sc" g2="question.sc" k="18" />
  2507. <hkern g1="m.sc" g2="exclam.sc" k="30" />
  2508. <hkern g1="m.sc" g2="bracketright.sc" k="14" />
  2509. <hkern g1="m.sc" g2="braceright.sc" k="18" />
  2510. <hkern g1="m.sc" g2="parenright.sc" k="6" />
  2511. <hkern g1="m.sc" g2="x.sc" k="2" />
  2512. <hkern g1="m.sc" g2="m.sc" k="2" />
  2513. <hkern g1="m.sc" u2="&#x2122;" k="16" />
  2514. <hkern g1="m.sc" u2="&#x2020;" k="4" />
  2515. <hkern g1="n.sc" g2="exclam.sc" k="30" />
  2516. <hkern g1="nacute.sc" g2="exclam.sc" k="30" />
  2517. <hkern g1="ncaron.sc" g2="exclam.sc" k="30" />
  2518. <hkern g1="ncommaaccent.sc" g2="exclam.sc" k="30" />
  2519. <hkern g1="ndotaccent.sc" g2="exclam.sc" k="30" />
  2520. <hkern g1="eng.sc" g2="exclam.sc" k="30" />
  2521. <hkern g1="nhookleft.sc" g2="exclam.sc" k="30" />
  2522. <hkern g1="ntilde.sc" g2="exclam.sc" k="30" />
  2523. <hkern g1="o.sc" g2="quotesingle.sc" k="14" />
  2524. <hkern g1="o.sc" g2="quotedbl.sc" k="14" />
  2525. <hkern g1="o.sc" g2="asterisk.sc" k="28" />
  2526. <hkern g1="o.sc" g2="question.sc" k="4" />
  2527. <hkern g1="o.sc" g2="exclam.sc" k="22" />
  2528. <hkern g1="o.sc" g2="bracketright.sc" k="22" />
  2529. <hkern g1="o.sc" g2="braceright.sc" k="18" />
  2530. <hkern g1="o.sc" g2="parenright.sc" k="22" />
  2531. <hkern g1="oacute.sc" g2="quotesingle.sc" k="14" />
  2532. <hkern g1="oacute.sc" g2="quotedbl.sc" k="14" />
  2533. <hkern g1="oacute.sc" g2="asterisk.sc" k="28" />
  2534. <hkern g1="oacute.sc" g2="question.sc" k="4" />
  2535. <hkern g1="oacute.sc" g2="exclam.sc" k="22" />
  2536. <hkern g1="oacute.sc" g2="bracketright.sc" k="22" />
  2537. <hkern g1="oacute.sc" g2="braceright.sc" k="18" />
  2538. <hkern g1="oacute.sc" g2="parenright.sc" k="22" />
  2539. <hkern g1="obreve.sc" g2="quotesingle.sc" k="14" />
  2540. <hkern g1="obreve.sc" g2="quotedbl.sc" k="14" />
  2541. <hkern g1="obreve.sc" g2="asterisk.sc" k="28" />
  2542. <hkern g1="obreve.sc" g2="question.sc" k="4" />
  2543. <hkern g1="obreve.sc" g2="exclam.sc" k="22" />
  2544. <hkern g1="obreve.sc" g2="bracketright.sc" k="22" />
  2545. <hkern g1="obreve.sc" g2="braceright.sc" k="18" />
  2546. <hkern g1="obreve.sc" g2="parenright.sc" k="22" />
  2547. <hkern g1="ocaron.sc" g2="quotesingle.sc" k="14" />
  2548. <hkern g1="ocaron.sc" g2="quotedbl.sc" k="14" />
  2549. <hkern g1="ocaron.sc" g2="asterisk.sc" k="28" />
  2550. <hkern g1="ocaron.sc" g2="question.sc" k="4" />
  2551. <hkern g1="ocaron.sc" g2="exclam.sc" k="22" />
  2552. <hkern g1="ocaron.sc" g2="bracketright.sc" k="22" />
  2553. <hkern g1="ocaron.sc" g2="braceright.sc" k="18" />
  2554. <hkern g1="ocaron.sc" g2="parenright.sc" k="22" />
  2555. <hkern g1="ocircumflex.sc" g2="quotesingle.sc" k="14" />
  2556. <hkern g1="ocircumflex.sc" g2="quotedbl.sc" k="14" />
  2557. <hkern g1="ocircumflex.sc" g2="asterisk.sc" k="28" />
  2558. <hkern g1="ocircumflex.sc" g2="question.sc" k="4" />
  2559. <hkern g1="ocircumflex.sc" g2="exclam.sc" k="22" />
  2560. <hkern g1="ocircumflex.sc" g2="bracketright.sc" k="22" />
  2561. <hkern g1="ocircumflex.sc" g2="braceright.sc" k="18" />
  2562. <hkern g1="ocircumflex.sc" g2="parenright.sc" k="22" />
  2563. <hkern g1="odieresis.sc" g2="quotesingle.sc" k="14" />
  2564. <hkern g1="odieresis.sc" g2="quotedbl.sc" k="14" />
  2565. <hkern g1="odieresis.sc" g2="asterisk.sc" k="28" />
  2566. <hkern g1="odieresis.sc" g2="question.sc" k="4" />
  2567. <hkern g1="odieresis.sc" g2="exclam.sc" k="22" />
  2568. <hkern g1="odieresis.sc" g2="bracketright.sc" k="22" />
  2569. <hkern g1="odieresis.sc" g2="braceright.sc" k="18" />
  2570. <hkern g1="odieresis.sc" g2="parenright.sc" k="22" />
  2571. <hkern g1="odotbelow.sc" g2="quotesingle.sc" k="14" />
  2572. <hkern g1="odotbelow.sc" g2="quotedbl.sc" k="14" />
  2573. <hkern g1="odotbelow.sc" g2="asterisk.sc" k="28" />
  2574. <hkern g1="odotbelow.sc" g2="question.sc" k="4" />
  2575. <hkern g1="odotbelow.sc" g2="exclam.sc" k="22" />
  2576. <hkern g1="odotbelow.sc" g2="bracketright.sc" k="22" />
  2577. <hkern g1="odotbelow.sc" g2="braceright.sc" k="18" />
  2578. <hkern g1="odotbelow.sc" g2="parenright.sc" k="22" />
  2579. <hkern g1="ograve.sc" g2="quotesingle.sc" k="14" />
  2580. <hkern g1="ograve.sc" g2="quotedbl.sc" k="14" />
  2581. <hkern g1="ograve.sc" g2="asterisk.sc" k="28" />
  2582. <hkern g1="ograve.sc" g2="question.sc" k="4" />
  2583. <hkern g1="ograve.sc" g2="exclam.sc" k="22" />
  2584. <hkern g1="ograve.sc" g2="bracketright.sc" k="22" />
  2585. <hkern g1="ograve.sc" g2="braceright.sc" k="18" />
  2586. <hkern g1="ograve.sc" g2="parenright.sc" k="22" />
  2587. <hkern g1="ohungarumlaut.sc" g2="quotesingle.sc" k="14" />
  2588. <hkern g1="ohungarumlaut.sc" g2="quotedbl.sc" k="14" />
  2589. <hkern g1="ohungarumlaut.sc" g2="asterisk.sc" k="28" />
  2590. <hkern g1="ohungarumlaut.sc" g2="question.sc" k="4" />
  2591. <hkern g1="ohungarumlaut.sc" g2="exclam.sc" k="22" />
  2592. <hkern g1="ohungarumlaut.sc" g2="bracketright.sc" k="22" />
  2593. <hkern g1="ohungarumlaut.sc" g2="braceright.sc" k="18" />
  2594. <hkern g1="ohungarumlaut.sc" g2="parenright.sc" k="22" />
  2595. <hkern g1="omacron.sc" g2="quotesingle.sc" k="14" />
  2596. <hkern g1="omacron.sc" g2="quotedbl.sc" k="14" />
  2597. <hkern g1="omacron.sc" g2="asterisk.sc" k="28" />
  2598. <hkern g1="omacron.sc" g2="question.sc" k="4" />
  2599. <hkern g1="omacron.sc" g2="exclam.sc" k="22" />
  2600. <hkern g1="omacron.sc" g2="bracketright.sc" k="22" />
  2601. <hkern g1="omacron.sc" g2="braceright.sc" k="18" />
  2602. <hkern g1="omacron.sc" g2="parenright.sc" k="22" />
  2603. <hkern g1="oogonek.sc" g2="quotesingle.sc" k="14" />
  2604. <hkern g1="oogonek.sc" g2="quotedbl.sc" k="14" />
  2605. <hkern g1="oogonek.sc" g2="asterisk.sc" k="28" />
  2606. <hkern g1="oogonek.sc" g2="question.sc" k="4" />
  2607. <hkern g1="oogonek.sc" g2="exclam.sc" k="22" />
  2608. <hkern g1="oogonek.sc" g2="bracketright.sc" k="22" />
  2609. <hkern g1="oogonek.sc" g2="braceright.sc" k="18" />
  2610. <hkern g1="oogonek.sc" g2="parenright.sc" k="22" />
  2611. <hkern g1="oslash.sc" g2="quotesingle.sc" k="14" />
  2612. <hkern g1="oslash.sc" g2="quotedbl.sc" k="14" />
  2613. <hkern g1="oslash.sc" g2="asterisk.sc" k="28" />
  2614. <hkern g1="oslash.sc" g2="question.sc" k="4" />
  2615. <hkern g1="oslash.sc" g2="exclam.sc" k="22" />
  2616. <hkern g1="oslash.sc" g2="bracketright.sc" k="22" />
  2617. <hkern g1="oslash.sc" g2="braceright.sc" k="18" />
  2618. <hkern g1="oslash.sc" g2="parenright.sc" k="22" />
  2619. <hkern g1="oslashacute.sc" g2="quotesingle.sc" k="14" />
  2620. <hkern g1="oslashacute.sc" g2="quotedbl.sc" k="14" />
  2621. <hkern g1="oslashacute.sc" g2="asterisk.sc" k="28" />
  2622. <hkern g1="oslashacute.sc" g2="question.sc" k="4" />
  2623. <hkern g1="oslashacute.sc" g2="exclam.sc" k="22" />
  2624. <hkern g1="oslashacute.sc" g2="bracketright.sc" k="22" />
  2625. <hkern g1="oslashacute.sc" g2="braceright.sc" k="18" />
  2626. <hkern g1="oslashacute.sc" g2="parenright.sc" k="22" />
  2627. <hkern g1="otilde.sc" g2="quotesingle.sc" k="14" />
  2628. <hkern g1="otilde.sc" g2="quotedbl.sc" k="14" />
  2629. <hkern g1="otilde.sc" g2="asterisk.sc" k="28" />
  2630. <hkern g1="otilde.sc" g2="question.sc" k="4" />
  2631. <hkern g1="otilde.sc" g2="exclam.sc" k="22" />
  2632. <hkern g1="otilde.sc" g2="bracketright.sc" k="22" />
  2633. <hkern g1="otilde.sc" g2="braceright.sc" k="18" />
  2634. <hkern g1="otilde.sc" g2="parenright.sc" k="22" />
  2635. <hkern g1="oe.sc" g2="asterisk.sc" k="8" />
  2636. <hkern g1="p.sc" g2="quotesingle.sc" k="6" />
  2637. <hkern g1="p.sc" g2="quotedbl.sc" k="6" />
  2638. <hkern g1="p.sc" g2="asterisk.sc" k="12" />
  2639. <hkern g1="p.sc" g2="question.sc" k="12" />
  2640. <hkern g1="p.sc" g2="exclam.sc" k="24" />
  2641. <hkern g1="p.sc" g2="bracketright.sc" k="8" />
  2642. <hkern g1="p.sc" g2="braceright.sc" k="6" />
  2643. <hkern g1="p.sc" g2="parenright.sc" k="28" />
  2644. <hkern g1="p.sc" g2="x.sc" k="10" />
  2645. <hkern g1="p.sc" g2="m.sc" k="14" />
  2646. <hkern g1="p.sc" u2="&#x2122;" k="30" />
  2647. <hkern g1="p.sc" u2="_" k="40" />
  2648. <hkern g1="thorn.sc" u2="&#x2122;" k="24" />
  2649. <hkern g1="thorn.sc" u2="_" k="28" />
  2650. <hkern g1="q.sc" g2="quotesingle.sc" k="14" />
  2651. <hkern g1="q.sc" g2="quotedbl.sc" k="14" />
  2652. <hkern g1="q.sc" g2="asterisk.sc" k="28" />
  2653. <hkern g1="q.sc" g2="question.sc" k="4" />
  2654. <hkern g1="q.sc" g2="exclam.sc" k="22" />
  2655. <hkern g1="q.sc" g2="bracketright.sc" k="22" />
  2656. <hkern g1="q.sc" g2="braceright.sc" k="18" />
  2657. <hkern g1="q.sc" g2="parenright.sc" k="22" />
  2658. <hkern g1="r.sc" g2="quotesingle.sc" k="10" />
  2659. <hkern g1="r.sc" g2="quotedbl.sc" k="10" />
  2660. <hkern g1="r.sc" g2="asterisk.sc" k="28" />
  2661. <hkern g1="r.sc" g2="exclam.sc" k="24" />
  2662. <hkern g1="r.sc" g2="bracketright.sc" k="4" />
  2663. <hkern g1="r.sc" g2="braceright.sc" k="8" />
  2664. <hkern g1="r.sc" g2="parenright.sc" k="4" />
  2665. <hkern g1="racute.sc" g2="quotesingle.sc" k="10" />
  2666. <hkern g1="racute.sc" g2="quotedbl.sc" k="10" />
  2667. <hkern g1="racute.sc" g2="asterisk.sc" k="28" />
  2668. <hkern g1="racute.sc" g2="exclam.sc" k="24" />
  2669. <hkern g1="racute.sc" g2="bracketright.sc" k="4" />
  2670. <hkern g1="racute.sc" g2="braceright.sc" k="8" />
  2671. <hkern g1="racute.sc" g2="parenright.sc" k="4" />
  2672. <hkern g1="rcaron.sc" g2="quotesingle.sc" k="10" />
  2673. <hkern g1="rcaron.sc" g2="quotedbl.sc" k="10" />
  2674. <hkern g1="rcaron.sc" g2="asterisk.sc" k="28" />
  2675. <hkern g1="rcaron.sc" g2="exclam.sc" k="24" />
  2676. <hkern g1="rcaron.sc" g2="bracketright.sc" k="4" />
  2677. <hkern g1="rcaron.sc" g2="braceright.sc" k="8" />
  2678. <hkern g1="rcaron.sc" g2="parenright.sc" k="4" />
  2679. <hkern g1="rcommaaccent.sc" g2="quotesingle.sc" k="10" />
  2680. <hkern g1="rcommaaccent.sc" g2="quotedbl.sc" k="10" />
  2681. <hkern g1="rcommaaccent.sc" g2="asterisk.sc" k="28" />
  2682. <hkern g1="rcommaaccent.sc" g2="exclam.sc" k="24" />
  2683. <hkern g1="rcommaaccent.sc" g2="bracketright.sc" k="4" />
  2684. <hkern g1="rcommaaccent.sc" g2="braceright.sc" k="8" />
  2685. <hkern g1="rcommaaccent.sc" g2="parenright.sc" k="4" />
  2686. <hkern g1="rdotbelow.sc" g2="quotesingle.sc" k="10" />
  2687. <hkern g1="rdotbelow.sc" g2="quotedbl.sc" k="10" />
  2688. <hkern g1="rdotbelow.sc" g2="asterisk.sc" k="28" />
  2689. <hkern g1="rdotbelow.sc" g2="exclam.sc" k="24" />
  2690. <hkern g1="rdotbelow.sc" g2="bracketright.sc" k="4" />
  2691. <hkern g1="rdotbelow.sc" g2="braceright.sc" k="8" />
  2692. <hkern g1="rdotbelow.sc" g2="parenright.sc" k="4" />
  2693. <hkern g1="s.sc" g2="quotesingle.sc" k="12" />
  2694. <hkern g1="s.sc" g2="quotedbl.sc" k="12" />
  2695. <hkern g1="s.sc" g2="asterisk.sc" k="20" />
  2696. <hkern g1="s.sc" g2="question.sc" k="12" />
  2697. <hkern g1="s.sc" g2="exclam.sc" k="24" />
  2698. <hkern g1="s.sc" g2="bracketright.sc" k="28" />
  2699. <hkern g1="s.sc" g2="braceright.sc" k="18" />
  2700. <hkern g1="sacute.sc" g2="quotesingle.sc" k="12" />
  2701. <hkern g1="sacute.sc" g2="quotedbl.sc" k="12" />
  2702. <hkern g1="sacute.sc" g2="asterisk.sc" k="20" />
  2703. <hkern g1="sacute.sc" g2="question.sc" k="12" />
  2704. <hkern g1="sacute.sc" g2="exclam.sc" k="24" />
  2705. <hkern g1="sacute.sc" g2="bracketright.sc" k="28" />
  2706. <hkern g1="sacute.sc" g2="braceright.sc" k="18" />
  2707. <hkern g1="scaron.sc" g2="quotesingle.sc" k="12" />
  2708. <hkern g1="scaron.sc" g2="quotedbl.sc" k="12" />
  2709. <hkern g1="scaron.sc" g2="asterisk.sc" k="20" />
  2710. <hkern g1="scaron.sc" g2="question.sc" k="12" />
  2711. <hkern g1="scaron.sc" g2="exclam.sc" k="24" />
  2712. <hkern g1="scaron.sc" g2="bracketright.sc" k="28" />
  2713. <hkern g1="scaron.sc" g2="braceright.sc" k="18" />
  2714. <hkern g1="scedilla.sc" g2="quotesingle.sc" k="12" />
  2715. <hkern g1="scedilla.sc" g2="quotedbl.sc" k="12" />
  2716. <hkern g1="scedilla.sc" g2="asterisk.sc" k="20" />
  2717. <hkern g1="scedilla.sc" g2="question.sc" k="12" />
  2718. <hkern g1="scedilla.sc" g2="exclam.sc" k="24" />
  2719. <hkern g1="scedilla.sc" g2="bracketright.sc" k="28" />
  2720. <hkern g1="scedilla.sc" g2="braceright.sc" k="18" />
  2721. <hkern g1="scircumflex.sc" g2="quotesingle.sc" k="12" />
  2722. <hkern g1="scircumflex.sc" g2="quotedbl.sc" k="12" />
  2723. <hkern g1="scircumflex.sc" g2="asterisk.sc" k="20" />
  2724. <hkern g1="scircumflex.sc" g2="question.sc" k="12" />
  2725. <hkern g1="scircumflex.sc" g2="exclam.sc" k="24" />
  2726. <hkern g1="scircumflex.sc" g2="bracketright.sc" k="28" />
  2727. <hkern g1="scircumflex.sc" g2="braceright.sc" k="18" />
  2728. <hkern g1="scommaaccent.sc" g2="quotesingle.sc" k="12" />
  2729. <hkern g1="scommaaccent.sc" g2="quotedbl.sc" k="12" />
  2730. <hkern g1="scommaaccent.sc" g2="asterisk.sc" k="20" />
  2731. <hkern g1="scommaaccent.sc" g2="question.sc" k="12" />
  2732. <hkern g1="scommaaccent.sc" g2="exclam.sc" k="24" />
  2733. <hkern g1="scommaaccent.sc" g2="bracketright.sc" k="28" />
  2734. <hkern g1="scommaaccent.sc" g2="braceright.sc" k="18" />
  2735. <hkern g1="sdotbelow.sc" g2="quotesingle.sc" k="12" />
  2736. <hkern g1="sdotbelow.sc" g2="quotedbl.sc" k="12" />
  2737. <hkern g1="sdotbelow.sc" g2="asterisk.sc" k="20" />
  2738. <hkern g1="sdotbelow.sc" g2="question.sc" k="12" />
  2739. <hkern g1="sdotbelow.sc" g2="exclam.sc" k="24" />
  2740. <hkern g1="sdotbelow.sc" g2="bracketright.sc" k="28" />
  2741. <hkern g1="sdotbelow.sc" g2="braceright.sc" k="18" />
  2742. <hkern g1="germandbls.sc" g2="quotesingle.sc" k="12" />
  2743. <hkern g1="germandbls.sc" g2="quotedbl.sc" k="12" />
  2744. <hkern g1="germandbls.sc" g2="asterisk.sc" k="20" />
  2745. <hkern g1="germandbls.sc" g2="question.sc" k="12" />
  2746. <hkern g1="germandbls.sc" g2="exclam.sc" k="24" />
  2747. <hkern g1="germandbls.sc" g2="bracketright.sc" k="28" />
  2748. <hkern g1="germandbls.sc" g2="braceright.sc" k="18" />
  2749. <hkern g1="t.sc" g2="exclam.sc" k="24" />
  2750. <hkern g1="t.sc" g2="braceright.sc" k="12" />
  2751. <hkern g1="tbar.sc" g2="exclam.sc" k="24" />
  2752. <hkern g1="tbar.sc" g2="braceright.sc" k="12" />
  2753. <hkern g1="tcaron.sc" g2="exclam.sc" k="24" />
  2754. <hkern g1="tcaron.sc" g2="braceright.sc" k="12" />
  2755. <hkern g1="tcedilla.sc" g2="exclam.sc" k="24" />
  2756. <hkern g1="tcedilla.sc" g2="braceright.sc" k="12" />
  2757. <hkern g1="tcommaaccent.sc" g2="exclam.sc" k="24" />
  2758. <hkern g1="tcommaaccent.sc" g2="braceright.sc" k="12" />
  2759. <hkern g1="tdotbelow.sc" g2="exclam.sc" k="24" />
  2760. <hkern g1="tdotbelow.sc" g2="braceright.sc" k="12" />
  2761. <hkern g1="u.sc" g2="question.sc" k="12" />
  2762. <hkern g1="u.sc" g2="exclam.sc" k="24" />
  2763. <hkern g1="u.sc" g2="bracketright.sc" k="16" />
  2764. <hkern g1="u.sc" g2="braceright.sc" k="12" />
  2765. <hkern g1="u.sc" g2="parenright.sc" k="6" />
  2766. <hkern g1="uacute.sc" g2="question.sc" k="12" />
  2767. <hkern g1="uacute.sc" g2="exclam.sc" k="24" />
  2768. <hkern g1="uacute.sc" g2="bracketright.sc" k="16" />
  2769. <hkern g1="uacute.sc" g2="braceright.sc" k="12" />
  2770. <hkern g1="uacute.sc" g2="parenright.sc" k="6" />
  2771. <hkern g1="ubreve.sc" g2="question.sc" k="12" />
  2772. <hkern g1="ubreve.sc" g2="exclam.sc" k="24" />
  2773. <hkern g1="ubreve.sc" g2="bracketright.sc" k="16" />
  2774. <hkern g1="ubreve.sc" g2="braceright.sc" k="12" />
  2775. <hkern g1="ubreve.sc" g2="parenright.sc" k="6" />
  2776. <hkern g1="ucaron.sc" g2="question.sc" k="12" />
  2777. <hkern g1="ucaron.sc" g2="exclam.sc" k="24" />
  2778. <hkern g1="ucaron.sc" g2="bracketright.sc" k="16" />
  2779. <hkern g1="ucaron.sc" g2="braceright.sc" k="12" />
  2780. <hkern g1="ucaron.sc" g2="parenright.sc" k="6" />
  2781. <hkern g1="ucircumflex.sc" g2="question.sc" k="12" />
  2782. <hkern g1="ucircumflex.sc" g2="exclam.sc" k="24" />
  2783. <hkern g1="ucircumflex.sc" g2="bracketright.sc" k="16" />
  2784. <hkern g1="ucircumflex.sc" g2="braceright.sc" k="12" />
  2785. <hkern g1="ucircumflex.sc" g2="parenright.sc" k="6" />
  2786. <hkern g1="udieresis.sc" g2="question.sc" k="12" />
  2787. <hkern g1="udieresis.sc" g2="exclam.sc" k="24" />
  2788. <hkern g1="udieresis.sc" g2="bracketright.sc" k="16" />
  2789. <hkern g1="udieresis.sc" g2="braceright.sc" k="12" />
  2790. <hkern g1="udieresis.sc" g2="parenright.sc" k="6" />
  2791. <hkern g1="udieresisacute.sc" g2="question.sc" k="12" />
  2792. <hkern g1="udieresisacute.sc" g2="exclam.sc" k="24" />
  2793. <hkern g1="udieresisacute.sc" g2="bracketright.sc" k="16" />
  2794. <hkern g1="udieresisacute.sc" g2="braceright.sc" k="12" />
  2795. <hkern g1="udieresisacute.sc" g2="parenright.sc" k="6" />
  2796. <hkern g1="udieresiscaron.sc" g2="question.sc" k="12" />
  2797. <hkern g1="udieresiscaron.sc" g2="exclam.sc" k="24" />
  2798. <hkern g1="udieresiscaron.sc" g2="bracketright.sc" k="16" />
  2799. <hkern g1="udieresiscaron.sc" g2="braceright.sc" k="12" />
  2800. <hkern g1="udieresiscaron.sc" g2="parenright.sc" k="6" />
  2801. <hkern g1="udieresisgrave.sc" g2="question.sc" k="12" />
  2802. <hkern g1="udieresisgrave.sc" g2="exclam.sc" k="24" />
  2803. <hkern g1="udieresisgrave.sc" g2="bracketright.sc" k="16" />
  2804. <hkern g1="udieresisgrave.sc" g2="braceright.sc" k="12" />
  2805. <hkern g1="udieresisgrave.sc" g2="parenright.sc" k="6" />
  2806. <hkern g1="udieresismacron.sc" g2="question.sc" k="12" />
  2807. <hkern g1="udieresismacron.sc" g2="exclam.sc" k="24" />
  2808. <hkern g1="udieresismacron.sc" g2="bracketright.sc" k="16" />
  2809. <hkern g1="udieresismacron.sc" g2="braceright.sc" k="12" />
  2810. <hkern g1="udieresismacron.sc" g2="parenright.sc" k="6" />
  2811. <hkern g1="udotbelow.sc" g2="question.sc" k="12" />
  2812. <hkern g1="udotbelow.sc" g2="exclam.sc" k="24" />
  2813. <hkern g1="udotbelow.sc" g2="bracketright.sc" k="16" />
  2814. <hkern g1="udotbelow.sc" g2="braceright.sc" k="12" />
  2815. <hkern g1="udotbelow.sc" g2="parenright.sc" k="6" />
  2816. <hkern g1="ugrave.sc" g2="question.sc" k="12" />
  2817. <hkern g1="ugrave.sc" g2="exclam.sc" k="24" />
  2818. <hkern g1="ugrave.sc" g2="bracketright.sc" k="16" />
  2819. <hkern g1="ugrave.sc" g2="braceright.sc" k="12" />
  2820. <hkern g1="ugrave.sc" g2="parenright.sc" k="6" />
  2821. <hkern g1="uhungarumlaut.sc" g2="question.sc" k="12" />
  2822. <hkern g1="uhungarumlaut.sc" g2="exclam.sc" k="24" />
  2823. <hkern g1="uhungarumlaut.sc" g2="bracketright.sc" k="16" />
  2824. <hkern g1="uhungarumlaut.sc" g2="braceright.sc" k="12" />
  2825. <hkern g1="uhungarumlaut.sc" g2="parenright.sc" k="6" />
  2826. <hkern g1="umacron.sc" g2="question.sc" k="12" />
  2827. <hkern g1="umacron.sc" g2="exclam.sc" k="24" />
  2828. <hkern g1="umacron.sc" g2="bracketright.sc" k="16" />
  2829. <hkern g1="umacron.sc" g2="braceright.sc" k="12" />
  2830. <hkern g1="umacron.sc" g2="parenright.sc" k="6" />
  2831. <hkern g1="uogonek.sc" g2="question.sc" k="12" />
  2832. <hkern g1="uogonek.sc" g2="exclam.sc" k="24" />
  2833. <hkern g1="uogonek.sc" g2="bracketright.sc" k="16" />
  2834. <hkern g1="uogonek.sc" g2="braceright.sc" k="12" />
  2835. <hkern g1="uogonek.sc" g2="parenright.sc" k="6" />
  2836. <hkern g1="uring.sc" g2="question.sc" k="12" />
  2837. <hkern g1="uring.sc" g2="exclam.sc" k="24" />
  2838. <hkern g1="uring.sc" g2="bracketright.sc" k="16" />
  2839. <hkern g1="uring.sc" g2="braceright.sc" k="12" />
  2840. <hkern g1="uring.sc" g2="parenright.sc" k="6" />
  2841. <hkern g1="utilde.sc" g2="question.sc" k="12" />
  2842. <hkern g1="utilde.sc" g2="exclam.sc" k="24" />
  2843. <hkern g1="utilde.sc" g2="bracketright.sc" k="16" />
  2844. <hkern g1="utilde.sc" g2="braceright.sc" k="12" />
  2845. <hkern g1="utilde.sc" g2="parenright.sc" k="6" />
  2846. <hkern g1="v.sc" g2="quotesingle.sc" k="-8" />
  2847. <hkern g1="v.sc" g2="quotedbl.sc" k="-8" />
  2848. <hkern g1="v.sc" g2="exclam.sc" k="30" />
  2849. <hkern g1="v.sc" g2="bracketright.sc" k="34" />
  2850. <hkern g1="v.sc" g2="braceright.sc" k="18" />
  2851. <hkern g1="w.sc" g2="quotesingle.sc" k="-8" />
  2852. <hkern g1="w.sc" g2="quotedbl.sc" k="-8" />
  2853. <hkern g1="w.sc" g2="exclam.sc" k="30" />
  2854. <hkern g1="w.sc" g2="bracketright.sc" k="34" />
  2855. <hkern g1="w.sc" g2="braceright.sc" k="18" />
  2856. <hkern g1="wacute.sc" g2="quotesingle.sc" k="-8" />
  2857. <hkern g1="wacute.sc" g2="quotedbl.sc" k="-8" />
  2858. <hkern g1="wacute.sc" g2="exclam.sc" k="30" />
  2859. <hkern g1="wacute.sc" g2="bracketright.sc" k="34" />
  2860. <hkern g1="wacute.sc" g2="braceright.sc" k="18" />
  2861. <hkern g1="wcircumflex.sc" g2="quotesingle.sc" k="-8" />
  2862. <hkern g1="wcircumflex.sc" g2="quotedbl.sc" k="-8" />
  2863. <hkern g1="wcircumflex.sc" g2="exclam.sc" k="30" />
  2864. <hkern g1="wcircumflex.sc" g2="bracketright.sc" k="34" />
  2865. <hkern g1="wcircumflex.sc" g2="braceright.sc" k="18" />
  2866. <hkern g1="wdieresis.sc" g2="quotesingle.sc" k="-8" />
  2867. <hkern g1="wdieresis.sc" g2="quotedbl.sc" k="-8" />
  2868. <hkern g1="wdieresis.sc" g2="exclam.sc" k="30" />
  2869. <hkern g1="wdieresis.sc" g2="bracketright.sc" k="34" />
  2870. <hkern g1="wdieresis.sc" g2="braceright.sc" k="18" />
  2871. <hkern g1="wgrave.sc" g2="quotesingle.sc" k="-8" />
  2872. <hkern g1="wgrave.sc" g2="quotedbl.sc" k="-8" />
  2873. <hkern g1="wgrave.sc" g2="exclam.sc" k="30" />
  2874. <hkern g1="wgrave.sc" g2="bracketright.sc" k="34" />
  2875. <hkern g1="wgrave.sc" g2="braceright.sc" k="18" />
  2876. <hkern g1="x.sc" g2="exclam.sc" k="24" />
  2877. <hkern g1="x.sc" g2="m.sc" k="2" />
  2878. <hkern g1="x.sc" u2="&#x2122;" k="4" />
  2879. <hkern g1="y.sc" g2="exclam.sc" k="30" />
  2880. <hkern g1="y.sc" g2="braceright.sc" k="12" />
  2881. <hkern g1="yacute.sc" g2="exclam.sc" k="30" />
  2882. <hkern g1="yacute.sc" g2="braceright.sc" k="12" />
  2883. <hkern g1="ycircumflex.sc" g2="exclam.sc" k="30" />
  2884. <hkern g1="ycircumflex.sc" g2="braceright.sc" k="12" />
  2885. <hkern g1="ydieresis.sc" g2="exclam.sc" k="30" />
  2886. <hkern g1="ydieresis.sc" g2="braceright.sc" k="12" />
  2887. <hkern g1="ygrave.sc" g2="exclam.sc" k="30" />
  2888. <hkern g1="ygrave.sc" g2="braceright.sc" k="12" />
  2889. <hkern g1="ymacron.sc" g2="exclam.sc" k="30" />
  2890. <hkern g1="ymacron.sc" g2="braceright.sc" k="12" />
  2891. <hkern g1="ytilde.sc" g2="exclam.sc" k="30" />
  2892. <hkern g1="ytilde.sc" g2="braceright.sc" k="12" />
  2893. <hkern g1="z.sc" g2="quotedbl.sc" k="12" />
  2894. <hkern g1="z.sc" g2="question.sc" k="12" />
  2895. <hkern g1="z.sc" g2="exclam.sc" k="24" />
  2896. <hkern g1="z.sc" g2="bracketright.sc" k="26" />
  2897. <hkern g1="z.sc" g2="braceright.sc" k="18" />
  2898. <hkern g1="z.sc" g2="parenright.sc" k="18" />
  2899. <hkern g1="zacute.sc" g2="quotedbl.sc" k="12" />
  2900. <hkern g1="zacute.sc" g2="question.sc" k="12" />
  2901. <hkern g1="zacute.sc" g2="exclam.sc" k="24" />
  2902. <hkern g1="zacute.sc" g2="bracketright.sc" k="26" />
  2903. <hkern g1="zacute.sc" g2="braceright.sc" k="18" />
  2904. <hkern g1="zacute.sc" g2="parenright.sc" k="18" />
  2905. <hkern g1="zcaron.sc" g2="quotedbl.sc" k="12" />
  2906. <hkern g1="zcaron.sc" g2="question.sc" k="12" />
  2907. <hkern g1="zcaron.sc" g2="exclam.sc" k="24" />
  2908. <hkern g1="zcaron.sc" g2="bracketright.sc" k="26" />
  2909. <hkern g1="zcaron.sc" g2="braceright.sc" k="18" />
  2910. <hkern g1="zcaron.sc" g2="parenright.sc" k="18" />
  2911. <hkern g1="zdotaccent.sc" g2="quotedbl.sc" k="12" />
  2912. <hkern g1="zdotaccent.sc" g2="question.sc" k="12" />
  2913. <hkern g1="zdotaccent.sc" g2="exclam.sc" k="24" />
  2914. <hkern g1="zdotaccent.sc" g2="bracketright.sc" k="26" />
  2915. <hkern g1="zdotaccent.sc" g2="braceright.sc" k="18" />
  2916. <hkern g1="zdotaccent.sc" g2="parenright.sc" k="18" />
  2917. <hkern g1="zdotbelow.sc" g2="quotedbl.sc" k="12" />
  2918. <hkern g1="zdotbelow.sc" g2="question.sc" k="12" />
  2919. <hkern g1="zdotbelow.sc" g2="exclam.sc" k="24" />
  2920. <hkern g1="zdotbelow.sc" g2="bracketright.sc" k="26" />
  2921. <hkern g1="zdotbelow.sc" g2="braceright.sc" k="18" />
  2922. <hkern g1="zdotbelow.sc" g2="parenright.sc" k="18" />
  2923. <hkern g1="zero.numerator" u2="&#x2044;" k="233" />
  2924. <hkern g1="four.numerator" u2="&#x2044;" k="196" />
  2925. <hkern g1="seven.numerator" u2="&#x2044;" k="258" />
  2926. <hkern g1="nine.numerator" u2="&#x2044;" k="233" />
  2927. <hkern g1="exclamdown.caps" g2="IJacute" k="24" />
  2928. <hkern g1="exclamdown.caps" g2="Jacute" k="6" />
  2929. <hkern g1="exclamdown.caps" u2="&#x1ef8;" k="34" />
  2930. <hkern g1="exclamdown.caps" u2="&#x1ef2;" k="34" />
  2931. <hkern g1="exclamdown.caps" u2="&#x1ee4;" k="24" />
  2932. <hkern g1="exclamdown.caps" u2="&#x1ecc;" k="18" />
  2933. <hkern g1="exclamdown.caps" u2="&#x1eca;" k="24" />
  2934. <hkern g1="exclamdown.caps" u2="&#x1ebc;" k="24" />
  2935. <hkern g1="exclamdown.caps" u2="&#x1eb8;" k="24" />
  2936. <hkern g1="exclamdown.caps" u2="&#x1ea0;" k="24" />
  2937. <hkern g1="exclamdown.caps" u2="&#x1e92;" k="24" />
  2938. <hkern g1="exclamdown.caps" u2="&#x1e84;" k="36" />
  2939. <hkern g1="exclamdown.caps" u2="&#x1e82;" k="36" />
  2940. <hkern g1="exclamdown.caps" u2="&#x1e80;" k="36" />
  2941. <hkern g1="exclamdown.caps" u2="&#x1e6c;" k="44" />
  2942. <hkern g1="exclamdown.caps" u2="&#x1e62;" k="38" />
  2943. <hkern g1="exclamdown.caps" u2="&#x1e5a;" k="24" />
  2944. <hkern g1="exclamdown.caps" u2="&#x1e44;" k="24" />
  2945. <hkern g1="exclamdown.caps" u2="&#x1e24;" k="24" />
  2946. <hkern g1="exclamdown.caps" u2="&#x1e0c;" k="24" />
  2947. <hkern g1="exclamdown.caps" u2="&#x232;" k="34" />
  2948. <hkern g1="exclamdown.caps" u2="&#x21a;" k="44" />
  2949. <hkern g1="exclamdown.caps" u2="&#x218;" k="38" />
  2950. <hkern g1="exclamdown.caps" u2="&#x1fe;" k="18" />
  2951. <hkern g1="exclamdown.caps" u2="&#x1fc;" k="24" />
  2952. <hkern g1="exclamdown.caps" u2="&#x1fa;" k="24" />
  2953. <hkern g1="exclamdown.caps" u2="&#x1f4;" k="18" />
  2954. <hkern g1="exclamdown.caps" u2="&#x1ea;" k="18" />
  2955. <hkern g1="exclamdown.caps" u2="&#x1e6;" k="18" />
  2956. <hkern g1="exclamdown.caps" u2="&#x1db;" k="24" />
  2957. <hkern g1="exclamdown.caps" u2="&#x1d9;" k="24" />
  2958. <hkern g1="exclamdown.caps" u2="&#x1d7;" k="24" />
  2959. <hkern g1="exclamdown.caps" u2="&#x1d5;" k="24" />
  2960. <hkern g1="exclamdown.caps" u2="&#x1d3;" k="24" />
  2961. <hkern g1="exclamdown.caps" u2="&#x1d1;" k="18" />
  2962. <hkern g1="exclamdown.caps" u2="&#x1cf;" k="24" />
  2963. <hkern g1="exclamdown.caps" u2="&#x1cd;" k="24" />
  2964. <hkern g1="exclamdown.caps" u2="&#x19d;" k="6" />
  2965. <hkern g1="exclamdown.caps" u2="&#x17d;" k="24" />
  2966. <hkern g1="exclamdown.caps" u2="&#x17b;" k="24" />
  2967. <hkern g1="exclamdown.caps" u2="&#x179;" k="24" />
  2968. <hkern g1="exclamdown.caps" u2="&#x178;" k="34" />
  2969. <hkern g1="exclamdown.caps" u2="&#x176;" k="34" />
  2970. <hkern g1="exclamdown.caps" u2="&#x174;" k="36" />
  2971. <hkern g1="exclamdown.caps" u2="&#x172;" k="24" />
  2972. <hkern g1="exclamdown.caps" u2="&#x170;" k="24" />
  2973. <hkern g1="exclamdown.caps" u2="&#x16e;" k="24" />
  2974. <hkern g1="exclamdown.caps" u2="&#x16c;" k="24" />
  2975. <hkern g1="exclamdown.caps" u2="&#x16a;" k="24" />
  2976. <hkern g1="exclamdown.caps" u2="&#x168;" k="24" />
  2977. <hkern g1="exclamdown.caps" u2="&#x166;" k="44" />
  2978. <hkern g1="exclamdown.caps" u2="&#x164;" k="44" />
  2979. <hkern g1="exclamdown.caps" u2="&#x162;" k="44" />
  2980. <hkern g1="exclamdown.caps" u2="&#x160;" k="38" />
  2981. <hkern g1="exclamdown.caps" u2="&#x15e;" k="38" />
  2982. <hkern g1="exclamdown.caps" u2="&#x15c;" k="38" />
  2983. <hkern g1="exclamdown.caps" u2="&#x15a;" k="38" />
  2984. <hkern g1="exclamdown.caps" u2="&#x158;" k="24" />
  2985. <hkern g1="exclamdown.caps" u2="&#x156;" k="24" />
  2986. <hkern g1="exclamdown.caps" u2="&#x154;" k="24" />
  2987. <hkern g1="exclamdown.caps" u2="&#x152;" k="18" />
  2988. <hkern g1="exclamdown.caps" u2="&#x150;" k="18" />
  2989. <hkern g1="exclamdown.caps" u2="&#x14e;" k="18" />
  2990. <hkern g1="exclamdown.caps" u2="&#x14c;" k="18" />
  2991. <hkern g1="exclamdown.caps" u2="&#x14a;" k="24" />
  2992. <hkern g1="exclamdown.caps" u2="&#x147;" k="24" />
  2993. <hkern g1="exclamdown.caps" u2="&#x145;" k="24" />
  2994. <hkern g1="exclamdown.caps" u2="&#x143;" k="24" />
  2995. <hkern g1="exclamdown.caps" u2="&#x141;" k="24" />
  2996. <hkern g1="exclamdown.caps" u2="&#x13f;" k="24" />
  2997. <hkern g1="exclamdown.caps" u2="&#x13d;" k="24" />
  2998. <hkern g1="exclamdown.caps" u2="&#x13b;" k="24" />
  2999. <hkern g1="exclamdown.caps" u2="&#x139;" k="24" />
  3000. <hkern g1="exclamdown.caps" u2="&#x136;" k="24" />
  3001. <hkern g1="exclamdown.caps" u2="&#x134;" k="6" />
  3002. <hkern g1="exclamdown.caps" u2="&#x132;" k="24" />
  3003. <hkern g1="exclamdown.caps" u2="&#x130;" k="24" />
  3004. <hkern g1="exclamdown.caps" u2="&#x12e;" k="24" />
  3005. <hkern g1="exclamdown.caps" u2="&#x12c;" k="24" />
  3006. <hkern g1="exclamdown.caps" u2="&#x12a;" k="24" />
  3007. <hkern g1="exclamdown.caps" u2="&#x128;" k="24" />
  3008. <hkern g1="exclamdown.caps" u2="&#x126;" k="24" />
  3009. <hkern g1="exclamdown.caps" u2="&#x124;" k="24" />
  3010. <hkern g1="exclamdown.caps" u2="&#x122;" k="18" />
  3011. <hkern g1="exclamdown.caps" u2="&#x120;" k="18" />
  3012. <hkern g1="exclamdown.caps" u2="&#x11e;" k="18" />
  3013. <hkern g1="exclamdown.caps" u2="&#x11c;" k="18" />
  3014. <hkern g1="exclamdown.caps" u2="&#x11a;" k="24" />
  3015. <hkern g1="exclamdown.caps" u2="&#x118;" k="24" />
  3016. <hkern g1="exclamdown.caps" u2="&#x116;" k="24" />
  3017. <hkern g1="exclamdown.caps" u2="&#x114;" k="24" />
  3018. <hkern g1="exclamdown.caps" u2="&#x112;" k="24" />
  3019. <hkern g1="exclamdown.caps" u2="&#x110;" k="24" />
  3020. <hkern g1="exclamdown.caps" u2="&#x10e;" k="24" />
  3021. <hkern g1="exclamdown.caps" u2="&#x10c;" k="18" />
  3022. <hkern g1="exclamdown.caps" u2="&#x10a;" k="18" />
  3023. <hkern g1="exclamdown.caps" u2="&#x108;" k="18" />
  3024. <hkern g1="exclamdown.caps" u2="&#x106;" k="18" />
  3025. <hkern g1="exclamdown.caps" u2="&#x104;" k="24" />
  3026. <hkern g1="exclamdown.caps" u2="&#x102;" k="24" />
  3027. <hkern g1="exclamdown.caps" u2="&#x100;" k="24" />
  3028. <hkern g1="exclamdown.caps" u2="&#xde;" k="24" />
  3029. <hkern g1="exclamdown.caps" u2="&#xdd;" k="34" />
  3030. <hkern g1="exclamdown.caps" u2="&#xdc;" k="24" />
  3031. <hkern g1="exclamdown.caps" u2="&#xdb;" k="24" />
  3032. <hkern g1="exclamdown.caps" u2="&#xda;" k="24" />
  3033. <hkern g1="exclamdown.caps" u2="&#xd9;" k="24" />
  3034. <hkern g1="exclamdown.caps" u2="&#xd8;" k="18" />
  3035. <hkern g1="exclamdown.caps" u2="&#xd6;" k="18" />
  3036. <hkern g1="exclamdown.caps" u2="&#xd5;" k="18" />
  3037. <hkern g1="exclamdown.caps" u2="&#xd4;" k="18" />
  3038. <hkern g1="exclamdown.caps" u2="&#xd3;" k="18" />
  3039. <hkern g1="exclamdown.caps" u2="&#xd2;" k="18" />
  3040. <hkern g1="exclamdown.caps" u2="&#xd1;" k="24" />
  3041. <hkern g1="exclamdown.caps" u2="&#xd0;" k="24" />
  3042. <hkern g1="exclamdown.caps" u2="&#xcf;" k="24" />
  3043. <hkern g1="exclamdown.caps" u2="&#xce;" k="24" />
  3044. <hkern g1="exclamdown.caps" u2="&#xcd;" k="24" />
  3045. <hkern g1="exclamdown.caps" u2="&#xcc;" k="24" />
  3046. <hkern g1="exclamdown.caps" u2="&#xcb;" k="24" />
  3047. <hkern g1="exclamdown.caps" u2="&#xca;" k="24" />
  3048. <hkern g1="exclamdown.caps" u2="&#xc9;" k="24" />
  3049. <hkern g1="exclamdown.caps" u2="&#xc8;" k="24" />
  3050. <hkern g1="exclamdown.caps" u2="&#xc7;" k="18" />
  3051. <hkern g1="exclamdown.caps" u2="&#xc6;" k="24" />
  3052. <hkern g1="exclamdown.caps" u2="&#xc5;" k="24" />
  3053. <hkern g1="exclamdown.caps" u2="&#xc4;" k="24" />
  3054. <hkern g1="exclamdown.caps" u2="&#xc3;" k="24" />
  3055. <hkern g1="exclamdown.caps" u2="&#xc2;" k="24" />
  3056. <hkern g1="exclamdown.caps" u2="&#xc1;" k="24" />
  3057. <hkern g1="exclamdown.caps" u2="&#xc0;" k="24" />
  3058. <hkern g1="exclamdown.caps" u2="Z" k="24" />
  3059. <hkern g1="exclamdown.caps" u2="Y" k="34" />
  3060. <hkern g1="exclamdown.caps" u2="X" k="12" />
  3061. <hkern g1="exclamdown.caps" u2="W" k="36" />
  3062. <hkern g1="exclamdown.caps" u2="V" k="36" />
  3063. <hkern g1="exclamdown.caps" u2="U" k="24" />
  3064. <hkern g1="exclamdown.caps" u2="T" k="44" />
  3065. <hkern g1="exclamdown.caps" u2="S" k="38" />
  3066. <hkern g1="exclamdown.caps" u2="R" k="24" />
  3067. <hkern g1="exclamdown.caps" u2="Q" k="18" />
  3068. <hkern g1="exclamdown.caps" u2="P" k="24" />
  3069. <hkern g1="exclamdown.caps" u2="O" k="18" />
  3070. <hkern g1="exclamdown.caps" u2="N" k="24" />
  3071. <hkern g1="exclamdown.caps" u2="M" k="18" />
  3072. <hkern g1="exclamdown.caps" u2="L" k="24" />
  3073. <hkern g1="exclamdown.caps" u2="K" k="24" />
  3074. <hkern g1="exclamdown.caps" u2="J" k="6" />
  3075. <hkern g1="exclamdown.caps" u2="I" k="24" />
  3076. <hkern g1="exclamdown.caps" u2="H" k="24" />
  3077. <hkern g1="exclamdown.caps" u2="G" k="18" />
  3078. <hkern g1="exclamdown.caps" u2="F" k="24" />
  3079. <hkern g1="exclamdown.caps" u2="E" k="24" />
  3080. <hkern g1="exclamdown.caps" u2="D" k="24" />
  3081. <hkern g1="exclamdown.caps" u2="C" k="18" />
  3082. <hkern g1="exclamdown.caps" u2="B" k="24" />
  3083. <hkern g1="exclamdown.caps" u2="A" k="24" />
  3084. <hkern g1="questiondown.caps" g2="IJacute" k="26" />
  3085. <hkern g1="questiondown.caps" g2="Jacute" k="22" />
  3086. <hkern g1="questiondown.caps" u2="&#x1ee4;" k="32" />
  3087. <hkern g1="questiondown.caps" u2="&#x1ecc;" k="48" />
  3088. <hkern g1="questiondown.caps" u2="&#x1eca;" k="26" />
  3089. <hkern g1="questiondown.caps" u2="&#x1ebc;" k="26" />
  3090. <hkern g1="questiondown.caps" u2="&#x1eb8;" k="26" />
  3091. <hkern g1="questiondown.caps" u2="&#x1ea0;" k="28" />
  3092. <hkern g1="questiondown.caps" u2="&#x1e92;" k="12" />
  3093. <hkern g1="questiondown.caps" u2="&#x1e6c;" k="68" />
  3094. <hkern g1="questiondown.caps" u2="&#x1e62;" k="38" />
  3095. <hkern g1="questiondown.caps" u2="&#x1e5a;" k="26" />
  3096. <hkern g1="questiondown.caps" u2="&#x1e44;" k="26" />
  3097. <hkern g1="questiondown.caps" u2="&#x1e24;" k="26" />
  3098. <hkern g1="questiondown.caps" u2="&#x1e0c;" k="26" />
  3099. <hkern g1="questiondown.caps" u2="&#x21a;" k="68" />
  3100. <hkern g1="questiondown.caps" u2="&#x218;" k="38" />
  3101. <hkern g1="questiondown.caps" u2="&#x1fe;" k="48" />
  3102. <hkern g1="questiondown.caps" u2="&#x1fc;" k="28" />
  3103. <hkern g1="questiondown.caps" u2="&#x1fa;" k="28" />
  3104. <hkern g1="questiondown.caps" u2="&#x1f4;" k="48" />
  3105. <hkern g1="questiondown.caps" u2="&#x1ea;" k="48" />
  3106. <hkern g1="questiondown.caps" u2="&#x1e6;" k="48" />
  3107. <hkern g1="questiondown.caps" u2="&#x1db;" k="32" />
  3108. <hkern g1="questiondown.caps" u2="&#x1d9;" k="32" />
  3109. <hkern g1="questiondown.caps" u2="&#x1d7;" k="32" />
  3110. <hkern g1="questiondown.caps" u2="&#x1d5;" k="32" />
  3111. <hkern g1="questiondown.caps" u2="&#x1d3;" k="32" />
  3112. <hkern g1="questiondown.caps" u2="&#x1d1;" k="48" />
  3113. <hkern g1="questiondown.caps" u2="&#x1cf;" k="26" />
  3114. <hkern g1="questiondown.caps" u2="&#x1cd;" k="28" />
  3115. <hkern g1="questiondown.caps" u2="&#x19d;" k="22" />
  3116. <hkern g1="questiondown.caps" u2="&#x17d;" k="12" />
  3117. <hkern g1="questiondown.caps" u2="&#x17b;" k="12" />
  3118. <hkern g1="questiondown.caps" u2="&#x179;" k="12" />
  3119. <hkern g1="questiondown.caps" u2="&#x172;" k="32" />
  3120. <hkern g1="questiondown.caps" u2="&#x170;" k="32" />
  3121. <hkern g1="questiondown.caps" u2="&#x16e;" k="32" />
  3122. <hkern g1="questiondown.caps" u2="&#x16c;" k="32" />
  3123. <hkern g1="questiondown.caps" u2="&#x16a;" k="32" />
  3124. <hkern g1="questiondown.caps" u2="&#x168;" k="32" />
  3125. <hkern g1="questiondown.caps" u2="&#x166;" k="68" />
  3126. <hkern g1="questiondown.caps" u2="&#x164;" k="68" />
  3127. <hkern g1="questiondown.caps" u2="&#x162;" k="68" />
  3128. <hkern g1="questiondown.caps" u2="&#x160;" k="38" />
  3129. <hkern g1="questiondown.caps" u2="&#x15e;" k="38" />
  3130. <hkern g1="questiondown.caps" u2="&#x15c;" k="38" />
  3131. <hkern g1="questiondown.caps" u2="&#x15a;" k="38" />
  3132. <hkern g1="questiondown.caps" u2="&#x158;" k="26" />
  3133. <hkern g1="questiondown.caps" u2="&#x156;" k="26" />
  3134. <hkern g1="questiondown.caps" u2="&#x154;" k="26" />
  3135. <hkern g1="questiondown.caps" u2="&#x152;" k="48" />
  3136. <hkern g1="questiondown.caps" u2="&#x150;" k="48" />
  3137. <hkern g1="questiondown.caps" u2="&#x14e;" k="48" />
  3138. <hkern g1="questiondown.caps" u2="&#x14c;" k="48" />
  3139. <hkern g1="questiondown.caps" u2="&#x14a;" k="26" />
  3140. <hkern g1="questiondown.caps" u2="&#x147;" k="26" />
  3141. <hkern g1="questiondown.caps" u2="&#x145;" k="26" />
  3142. <hkern g1="questiondown.caps" u2="&#x143;" k="26" />
  3143. <hkern g1="questiondown.caps" u2="&#x141;" k="26" />
  3144. <hkern g1="questiondown.caps" u2="&#x13f;" k="26" />
  3145. <hkern g1="questiondown.caps" u2="&#x13d;" k="26" />
  3146. <hkern g1="questiondown.caps" u2="&#x13b;" k="26" />
  3147. <hkern g1="questiondown.caps" u2="&#x139;" k="26" />
  3148. <hkern g1="questiondown.caps" u2="&#x136;" k="26" />
  3149. <hkern g1="questiondown.caps" u2="&#x134;" k="22" />
  3150. <hkern g1="questiondown.caps" u2="&#x132;" k="26" />
  3151. <hkern g1="questiondown.caps" u2="&#x130;" k="26" />
  3152. <hkern g1="questiondown.caps" u2="&#x12e;" k="26" />
  3153. <hkern g1="questiondown.caps" u2="&#x12c;" k="26" />
  3154. <hkern g1="questiondown.caps" u2="&#x12a;" k="26" />
  3155. <hkern g1="questiondown.caps" u2="&#x128;" k="26" />
  3156. <hkern g1="questiondown.caps" u2="&#x126;" k="26" />
  3157. <hkern g1="questiondown.caps" u2="&#x124;" k="26" />
  3158. <hkern g1="questiondown.caps" u2="&#x122;" k="48" />
  3159. <hkern g1="questiondown.caps" u2="&#x120;" k="48" />
  3160. <hkern g1="questiondown.caps" u2="&#x11e;" k="48" />
  3161. <hkern g1="questiondown.caps" u2="&#x11c;" k="48" />
  3162. <hkern g1="questiondown.caps" u2="&#x11a;" k="26" />
  3163. <hkern g1="questiondown.caps" u2="&#x118;" k="26" />
  3164. <hkern g1="questiondown.caps" u2="&#x116;" k="26" />
  3165. <hkern g1="questiondown.caps" u2="&#x114;" k="26" />
  3166. <hkern g1="questiondown.caps" u2="&#x112;" k="26" />
  3167. <hkern g1="questiondown.caps" u2="&#x110;" k="26" />
  3168. <hkern g1="questiondown.caps" u2="&#x10e;" k="26" />
  3169. <hkern g1="questiondown.caps" u2="&#x10c;" k="48" />
  3170. <hkern g1="questiondown.caps" u2="&#x10a;" k="48" />
  3171. <hkern g1="questiondown.caps" u2="&#x108;" k="48" />
  3172. <hkern g1="questiondown.caps" u2="&#x106;" k="48" />
  3173. <hkern g1="questiondown.caps" u2="&#x104;" k="28" />
  3174. <hkern g1="questiondown.caps" u2="&#x102;" k="28" />
  3175. <hkern g1="questiondown.caps" u2="&#x100;" k="28" />
  3176. <hkern g1="questiondown.caps" u2="&#xde;" k="26" />
  3177. <hkern g1="questiondown.caps" u2="&#xdc;" k="32" />
  3178. <hkern g1="questiondown.caps" u2="&#xdb;" k="32" />
  3179. <hkern g1="questiondown.caps" u2="&#xda;" k="32" />
  3180. <hkern g1="questiondown.caps" u2="&#xd9;" k="32" />
  3181. <hkern g1="questiondown.caps" u2="&#xd8;" k="48" />
  3182. <hkern g1="questiondown.caps" u2="&#xd6;" k="48" />
  3183. <hkern g1="questiondown.caps" u2="&#xd5;" k="48" />
  3184. <hkern g1="questiondown.caps" u2="&#xd4;" k="48" />
  3185. <hkern g1="questiondown.caps" u2="&#xd3;" k="48" />
  3186. <hkern g1="questiondown.caps" u2="&#xd2;" k="48" />
  3187. <hkern g1="questiondown.caps" u2="&#xd1;" k="26" />
  3188. <hkern g1="questiondown.caps" u2="&#xd0;" k="26" />
  3189. <hkern g1="questiondown.caps" u2="&#xcf;" k="26" />
  3190. <hkern g1="questiondown.caps" u2="&#xce;" k="26" />
  3191. <hkern g1="questiondown.caps" u2="&#xcd;" k="26" />
  3192. <hkern g1="questiondown.caps" u2="&#xcc;" k="26" />
  3193. <hkern g1="questiondown.caps" u2="&#xcb;" k="26" />
  3194. <hkern g1="questiondown.caps" u2="&#xca;" k="26" />
  3195. <hkern g1="questiondown.caps" u2="&#xc9;" k="26" />
  3196. <hkern g1="questiondown.caps" u2="&#xc8;" k="26" />
  3197. <hkern g1="questiondown.caps" u2="&#xc7;" k="48" />
  3198. <hkern g1="questiondown.caps" u2="&#xc6;" k="28" />
  3199. <hkern g1="questiondown.caps" u2="&#xc5;" k="28" />
  3200. <hkern g1="questiondown.caps" u2="&#xc4;" k="28" />
  3201. <hkern g1="questiondown.caps" u2="&#xc3;" k="28" />
  3202. <hkern g1="questiondown.caps" u2="&#xc2;" k="28" />
  3203. <hkern g1="questiondown.caps" u2="&#xc1;" k="28" />
  3204. <hkern g1="questiondown.caps" u2="&#xc0;" k="28" />
  3205. <hkern g1="questiondown.caps" u2="Z" k="12" />
  3206. <hkern g1="questiondown.caps" u2="X" k="12" />
  3207. <hkern g1="questiondown.caps" u2="U" k="32" />
  3208. <hkern g1="questiondown.caps" u2="T" k="68" />
  3209. <hkern g1="questiondown.caps" u2="S" k="38" />
  3210. <hkern g1="questiondown.caps" u2="R" k="26" />
  3211. <hkern g1="questiondown.caps" u2="Q" k="48" />
  3212. <hkern g1="questiondown.caps" u2="P" k="26" />
  3213. <hkern g1="questiondown.caps" u2="O" k="48" />
  3214. <hkern g1="questiondown.caps" u2="N" k="26" />
  3215. <hkern g1="questiondown.caps" u2="L" k="26" />
  3216. <hkern g1="questiondown.caps" u2="K" k="26" />
  3217. <hkern g1="questiondown.caps" u2="J" k="22" />
  3218. <hkern g1="questiondown.caps" u2="I" k="26" />
  3219. <hkern g1="questiondown.caps" u2="H" k="26" />
  3220. <hkern g1="questiondown.caps" u2="G" k="48" />
  3221. <hkern g1="questiondown.caps" u2="F" k="26" />
  3222. <hkern g1="questiondown.caps" u2="E" k="26" />
  3223. <hkern g1="questiondown.caps" u2="D" k="26" />
  3224. <hkern g1="questiondown.caps" u2="C" k="48" />
  3225. <hkern g1="questiondown.caps" u2="B" k="26" />
  3226. <hkern g1="questiondown.caps" u2="A" k="28" />
  3227. <hkern g1="periodcentered.caps" g2="IJacute" k="8" />
  3228. <hkern g1="periodcentered.caps" g2="Jacute" k="4" />
  3229. <hkern g1="periodcentered.caps" u2="&#x1ef8;" k="70" />
  3230. <hkern g1="periodcentered.caps" u2="&#x1ef2;" k="70" />
  3231. <hkern g1="periodcentered.caps" u2="&#x1ecc;" k="8" />
  3232. <hkern g1="periodcentered.caps" u2="&#x1eca;" k="8" />
  3233. <hkern g1="periodcentered.caps" u2="&#x1ebc;" k="8" />
  3234. <hkern g1="periodcentered.caps" u2="&#x1eb8;" k="8" />
  3235. <hkern g1="periodcentered.caps" u2="&#x1ea0;" k="31" />
  3236. <hkern g1="periodcentered.caps" u2="&#x1e5a;" k="8" />
  3237. <hkern g1="periodcentered.caps" u2="&#x1e44;" k="8" />
  3238. <hkern g1="periodcentered.caps" u2="&#x1e24;" k="8" />
  3239. <hkern g1="periodcentered.caps" u2="&#x1e0c;" k="8" />
  3240. <hkern g1="periodcentered.caps" u2="&#x232;" k="70" />
  3241. <hkern g1="periodcentered.caps" u2="&#x1fe;" k="8" />
  3242. <hkern g1="periodcentered.caps" u2="&#x1fc;" k="31" />
  3243. <hkern g1="periodcentered.caps" u2="&#x1fa;" k="31" />
  3244. <hkern g1="periodcentered.caps" u2="&#x1f4;" k="8" />
  3245. <hkern g1="periodcentered.caps" u2="&#x1ea;" k="8" />
  3246. <hkern g1="periodcentered.caps" u2="&#x1e6;" k="8" />
  3247. <hkern g1="periodcentered.caps" u2="&#x1d1;" k="8" />
  3248. <hkern g1="periodcentered.caps" u2="&#x1cf;" k="8" />
  3249. <hkern g1="periodcentered.caps" u2="&#x1cd;" k="31" />
  3250. <hkern g1="periodcentered.caps" u2="&#x19d;" k="4" />
  3251. <hkern g1="periodcentered.caps" u2="&#x178;" k="70" />
  3252. <hkern g1="periodcentered.caps" u2="&#x176;" k="70" />
  3253. <hkern g1="periodcentered.caps" u2="&#x158;" k="8" />
  3254. <hkern g1="periodcentered.caps" u2="&#x156;" k="8" />
  3255. <hkern g1="periodcentered.caps" u2="&#x154;" k="8" />
  3256. <hkern g1="periodcentered.caps" u2="&#x152;" k="8" />
  3257. <hkern g1="periodcentered.caps" u2="&#x150;" k="8" />
  3258. <hkern g1="periodcentered.caps" u2="&#x14e;" k="8" />
  3259. <hkern g1="periodcentered.caps" u2="&#x14c;" k="8" />
  3260. <hkern g1="periodcentered.caps" u2="&#x14a;" k="8" />
  3261. <hkern g1="periodcentered.caps" u2="&#x147;" k="8" />
  3262. <hkern g1="periodcentered.caps" u2="&#x145;" k="8" />
  3263. <hkern g1="periodcentered.caps" u2="&#x143;" k="8" />
  3264. <hkern g1="periodcentered.caps" u2="&#x141;" k="8" />
  3265. <hkern g1="periodcentered.caps" u2="&#x13f;" k="8" />
  3266. <hkern g1="periodcentered.caps" u2="&#x13d;" k="8" />
  3267. <hkern g1="periodcentered.caps" u2="&#x13b;" k="8" />
  3268. <hkern g1="periodcentered.caps" u2="&#x139;" k="8" />
  3269. <hkern g1="periodcentered.caps" u2="&#x136;" k="8" />
  3270. <hkern g1="periodcentered.caps" u2="&#x134;" k="4" />
  3271. <hkern g1="periodcentered.caps" u2="&#x132;" k="8" />
  3272. <hkern g1="periodcentered.caps" u2="&#x130;" k="8" />
  3273. <hkern g1="periodcentered.caps" u2="&#x12e;" k="8" />
  3274. <hkern g1="periodcentered.caps" u2="&#x12c;" k="8" />
  3275. <hkern g1="periodcentered.caps" u2="&#x12a;" k="8" />
  3276. <hkern g1="periodcentered.caps" u2="&#x128;" k="8" />
  3277. <hkern g1="periodcentered.caps" u2="&#x126;" k="8" />
  3278. <hkern g1="periodcentered.caps" u2="&#x124;" k="8" />
  3279. <hkern g1="periodcentered.caps" u2="&#x122;" k="8" />
  3280. <hkern g1="periodcentered.caps" u2="&#x120;" k="8" />
  3281. <hkern g1="periodcentered.caps" u2="&#x11e;" k="8" />
  3282. <hkern g1="periodcentered.caps" u2="&#x11c;" k="8" />
  3283. <hkern g1="periodcentered.caps" u2="&#x11a;" k="8" />
  3284. <hkern g1="periodcentered.caps" u2="&#x118;" k="8" />
  3285. <hkern g1="periodcentered.caps" u2="&#x116;" k="8" />
  3286. <hkern g1="periodcentered.caps" u2="&#x114;" k="8" />
  3287. <hkern g1="periodcentered.caps" u2="&#x112;" k="8" />
  3288. <hkern g1="periodcentered.caps" u2="&#x110;" k="8" />
  3289. <hkern g1="periodcentered.caps" u2="&#x10e;" k="8" />
  3290. <hkern g1="periodcentered.caps" u2="&#x10c;" k="8" />
  3291. <hkern g1="periodcentered.caps" u2="&#x10a;" k="8" />
  3292. <hkern g1="periodcentered.caps" u2="&#x108;" k="8" />
  3293. <hkern g1="periodcentered.caps" u2="&#x106;" k="8" />
  3294. <hkern g1="periodcentered.caps" u2="&#x104;" k="31" />
  3295. <hkern g1="periodcentered.caps" u2="&#x102;" k="31" />
  3296. <hkern g1="periodcentered.caps" u2="&#x100;" k="31" />
  3297. <hkern g1="periodcentered.caps" u2="&#xde;" k="8" />
  3298. <hkern g1="periodcentered.caps" u2="&#xdd;" k="70" />
  3299. <hkern g1="periodcentered.caps" u2="&#xd8;" k="8" />
  3300. <hkern g1="periodcentered.caps" u2="&#xd6;" k="8" />
  3301. <hkern g1="periodcentered.caps" u2="&#xd5;" k="8" />
  3302. <hkern g1="periodcentered.caps" u2="&#xd4;" k="8" />
  3303. <hkern g1="periodcentered.caps" u2="&#xd3;" k="8" />
  3304. <hkern g1="periodcentered.caps" u2="&#xd2;" k="8" />
  3305. <hkern g1="periodcentered.caps" u2="&#xd1;" k="8" />
  3306. <hkern g1="periodcentered.caps" u2="&#xd0;" k="8" />
  3307. <hkern g1="periodcentered.caps" u2="&#xcf;" k="8" />
  3308. <hkern g1="periodcentered.caps" u2="&#xce;" k="8" />
  3309. <hkern g1="periodcentered.caps" u2="&#xcd;" k="8" />
  3310. <hkern g1="periodcentered.caps" u2="&#xcc;" k="8" />
  3311. <hkern g1="periodcentered.caps" u2="&#xcb;" k="8" />
  3312. <hkern g1="periodcentered.caps" u2="&#xca;" k="8" />
  3313. <hkern g1="periodcentered.caps" u2="&#xc9;" k="8" />
  3314. <hkern g1="periodcentered.caps" u2="&#xc8;" k="8" />
  3315. <hkern g1="periodcentered.caps" u2="&#xc7;" k="8" />
  3316. <hkern g1="periodcentered.caps" u2="&#xc6;" k="31" />
  3317. <hkern g1="periodcentered.caps" u2="&#xc5;" k="31" />
  3318. <hkern g1="periodcentered.caps" u2="&#xc4;" k="31" />
  3319. <hkern g1="periodcentered.caps" u2="&#xc3;" k="31" />
  3320. <hkern g1="periodcentered.caps" u2="&#xc2;" k="31" />
  3321. <hkern g1="periodcentered.caps" u2="&#xc1;" k="31" />
  3322. <hkern g1="periodcentered.caps" u2="&#xc0;" k="31" />
  3323. <hkern g1="periodcentered.caps" u2="Y" k="70" />
  3324. <hkern g1="periodcentered.caps" u2="R" k="8" />
  3325. <hkern g1="periodcentered.caps" u2="Q" k="8" />
  3326. <hkern g1="periodcentered.caps" u2="P" k="8" />
  3327. <hkern g1="periodcentered.caps" u2="O" k="8" />
  3328. <hkern g1="periodcentered.caps" u2="N" k="8" />
  3329. <hkern g1="periodcentered.caps" u2="M" k="8" />
  3330. <hkern g1="periodcentered.caps" u2="L" k="8" />
  3331. <hkern g1="periodcentered.caps" u2="K" k="8" />
  3332. <hkern g1="periodcentered.caps" u2="J" k="4" />
  3333. <hkern g1="periodcentered.caps" u2="I" k="8" />
  3334. <hkern g1="periodcentered.caps" u2="H" k="8" />
  3335. <hkern g1="periodcentered.caps" u2="G" k="8" />
  3336. <hkern g1="periodcentered.caps" u2="F" k="8" />
  3337. <hkern g1="periodcentered.caps" u2="E" k="8" />
  3338. <hkern g1="periodcentered.caps" u2="D" k="8" />
  3339. <hkern g1="periodcentered.caps" u2="C" k="8" />
  3340. <hkern g1="periodcentered.caps" u2="B" k="8" />
  3341. <hkern g1="periodcentered.caps" u2="A" k="31" />
  3342. <hkern g1="asterisk.caps" g2="Jacute" k="4" />
  3343. <hkern g1="asterisk.caps" u2="&#x1ecc;" k="22" />
  3344. <hkern g1="asterisk.caps" u2="&#x1ea0;" k="68" />
  3345. <hkern g1="asterisk.caps" u2="&#x1fe;" k="22" />
  3346. <hkern g1="asterisk.caps" u2="&#x1fc;" k="68" />
  3347. <hkern g1="asterisk.caps" u2="&#x1fa;" k="68" />
  3348. <hkern g1="asterisk.caps" u2="&#x1f4;" k="22" />
  3349. <hkern g1="asterisk.caps" u2="&#x1ea;" k="22" />
  3350. <hkern g1="asterisk.caps" u2="&#x1e6;" k="22" />
  3351. <hkern g1="asterisk.caps" u2="&#x1d1;" k="22" />
  3352. <hkern g1="asterisk.caps" u2="&#x1cd;" k="68" />
  3353. <hkern g1="asterisk.caps" u2="&#x19d;" k="4" />
  3354. <hkern g1="asterisk.caps" u2="&#x152;" k="22" />
  3355. <hkern g1="asterisk.caps" u2="&#x150;" k="22" />
  3356. <hkern g1="asterisk.caps" u2="&#x14e;" k="22" />
  3357. <hkern g1="asterisk.caps" u2="&#x14c;" k="22" />
  3358. <hkern g1="asterisk.caps" u2="&#x134;" k="4" />
  3359. <hkern g1="asterisk.caps" u2="&#x122;" k="22" />
  3360. <hkern g1="asterisk.caps" u2="&#x120;" k="22" />
  3361. <hkern g1="asterisk.caps" u2="&#x11e;" k="22" />
  3362. <hkern g1="asterisk.caps" u2="&#x11c;" k="22" />
  3363. <hkern g1="asterisk.caps" u2="&#x10c;" k="22" />
  3364. <hkern g1="asterisk.caps" u2="&#x10a;" k="22" />
  3365. <hkern g1="asterisk.caps" u2="&#x108;" k="22" />
  3366. <hkern g1="asterisk.caps" u2="&#x106;" k="22" />
  3367. <hkern g1="asterisk.caps" u2="&#x104;" k="68" />
  3368. <hkern g1="asterisk.caps" u2="&#x102;" k="68" />
  3369. <hkern g1="asterisk.caps" u2="&#x100;" k="68" />
  3370. <hkern g1="asterisk.caps" u2="&#xd8;" k="22" />
  3371. <hkern g1="asterisk.caps" u2="&#xd6;" k="22" />
  3372. <hkern g1="asterisk.caps" u2="&#xd5;" k="22" />
  3373. <hkern g1="asterisk.caps" u2="&#xd4;" k="22" />
  3374. <hkern g1="asterisk.caps" u2="&#xd3;" k="22" />
  3375. <hkern g1="asterisk.caps" u2="&#xd2;" k="22" />
  3376. <hkern g1="asterisk.caps" u2="&#xc7;" k="22" />
  3377. <hkern g1="asterisk.caps" u2="&#xc6;" k="68" />
  3378. <hkern g1="asterisk.caps" u2="&#xc5;" k="68" />
  3379. <hkern g1="asterisk.caps" u2="&#xc4;" k="68" />
  3380. <hkern g1="asterisk.caps" u2="&#xc3;" k="68" />
  3381. <hkern g1="asterisk.caps" u2="&#xc2;" k="68" />
  3382. <hkern g1="asterisk.caps" u2="&#xc1;" k="68" />
  3383. <hkern g1="asterisk.caps" u2="&#xc0;" k="68" />
  3384. <hkern g1="asterisk.caps" u2="Q" k="22" />
  3385. <hkern g1="asterisk.caps" u2="O" k="22" />
  3386. <hkern g1="asterisk.caps" u2="M" k="8" />
  3387. <hkern g1="asterisk.caps" u2="J" k="4" />
  3388. <hkern g1="asterisk.caps" u2="G" k="22" />
  3389. <hkern g1="asterisk.caps" u2="C" k="22" />
  3390. <hkern g1="asterisk.caps" u2="A" k="68" />
  3391. <hkern g1="parenleft.caps" u2="&#x1ecc;" k="26" />
  3392. <hkern g1="parenleft.caps" u2="&#x1fe;" k="26" />
  3393. <hkern g1="parenleft.caps" u2="&#x1f4;" k="26" />
  3394. <hkern g1="parenleft.caps" u2="&#x1ea;" k="26" />
  3395. <hkern g1="parenleft.caps" u2="&#x1e6;" k="26" />
  3396. <hkern g1="parenleft.caps" u2="&#x1d1;" k="26" />
  3397. <hkern g1="parenleft.caps" u2="&#x152;" k="26" />
  3398. <hkern g1="parenleft.caps" u2="&#x150;" k="26" />
  3399. <hkern g1="parenleft.caps" u2="&#x14e;" k="26" />
  3400. <hkern g1="parenleft.caps" u2="&#x14c;" k="26" />
  3401. <hkern g1="parenleft.caps" u2="&#x122;" k="26" />
  3402. <hkern g1="parenleft.caps" u2="&#x120;" k="26" />
  3403. <hkern g1="parenleft.caps" u2="&#x11e;" k="26" />
  3404. <hkern g1="parenleft.caps" u2="&#x11c;" k="26" />
  3405. <hkern g1="parenleft.caps" u2="&#x10c;" k="26" />
  3406. <hkern g1="parenleft.caps" u2="&#x10a;" k="26" />
  3407. <hkern g1="parenleft.caps" u2="&#x108;" k="26" />
  3408. <hkern g1="parenleft.caps" u2="&#x106;" k="26" />
  3409. <hkern g1="parenleft.caps" u2="&#xd8;" k="26" />
  3410. <hkern g1="parenleft.caps" u2="&#xd6;" k="26" />
  3411. <hkern g1="parenleft.caps" u2="&#xd5;" k="26" />
  3412. <hkern g1="parenleft.caps" u2="&#xd4;" k="26" />
  3413. <hkern g1="parenleft.caps" u2="&#xd3;" k="26" />
  3414. <hkern g1="parenleft.caps" u2="&#xd2;" k="26" />
  3415. <hkern g1="parenleft.caps" u2="&#xc7;" k="26" />
  3416. <hkern g1="parenleft.caps" u2="Q" k="26" />
  3417. <hkern g1="parenleft.caps" u2="O" k="26" />
  3418. <hkern g1="parenleft.caps" u2="G" k="26" />
  3419. <hkern g1="parenleft.caps" u2="C" k="26" />
  3420. <hkern g1="parenright.caps" g2="IJacute" k="16" />
  3421. <hkern g1="parenright.caps" u2="&#x1ef8;" k="16" />
  3422. <hkern g1="parenright.caps" u2="&#x1ef2;" k="16" />
  3423. <hkern g1="parenright.caps" u2="&#x1ee4;" k="12" />
  3424. <hkern g1="parenright.caps" u2="&#x1ecc;" k="20" />
  3425. <hkern g1="parenright.caps" u2="&#x1eca;" k="16" />
  3426. <hkern g1="parenright.caps" u2="&#x1ebc;" k="16" />
  3427. <hkern g1="parenright.caps" u2="&#x1eb8;" k="16" />
  3428. <hkern g1="parenright.caps" u2="&#x1ea0;" k="20" />
  3429. <hkern g1="parenright.caps" u2="&#x1e92;" k="12" />
  3430. <hkern g1="parenright.caps" u2="&#x1e6c;" k="24" />
  3431. <hkern g1="parenright.caps" u2="&#x1e62;" k="20" />
  3432. <hkern g1="parenright.caps" u2="&#x1e5a;" k="16" />
  3433. <hkern g1="parenright.caps" u2="&#x1e44;" k="16" />
  3434. <hkern g1="parenright.caps" u2="&#x1e24;" k="16" />
  3435. <hkern g1="parenright.caps" u2="&#x1e0c;" k="16" />
  3436. <hkern g1="parenright.caps" u2="&#x232;" k="16" />
  3437. <hkern g1="parenright.caps" u2="&#x21a;" k="24" />
  3438. <hkern g1="parenright.caps" u2="&#x218;" k="20" />
  3439. <hkern g1="parenright.caps" u2="&#x1fe;" k="20" />
  3440. <hkern g1="parenright.caps" u2="&#x1fc;" k="20" />
  3441. <hkern g1="parenright.caps" u2="&#x1fa;" k="20" />
  3442. <hkern g1="parenright.caps" u2="&#x1f4;" k="20" />
  3443. <hkern g1="parenright.caps" u2="&#x1ea;" k="20" />
  3444. <hkern g1="parenright.caps" u2="&#x1e6;" k="20" />
  3445. <hkern g1="parenright.caps" u2="&#x1db;" k="12" />
  3446. <hkern g1="parenright.caps" u2="&#x1d9;" k="12" />
  3447. <hkern g1="parenright.caps" u2="&#x1d7;" k="12" />
  3448. <hkern g1="parenright.caps" u2="&#x1d5;" k="12" />
  3449. <hkern g1="parenright.caps" u2="&#x1d3;" k="12" />
  3450. <hkern g1="parenright.caps" u2="&#x1d1;" k="20" />
  3451. <hkern g1="parenright.caps" u2="&#x1cf;" k="16" />
  3452. <hkern g1="parenright.caps" u2="&#x1cd;" k="20" />
  3453. <hkern g1="parenright.caps" u2="&#x17d;" k="12" />
  3454. <hkern g1="parenright.caps" u2="&#x17b;" k="12" />
  3455. <hkern g1="parenright.caps" u2="&#x179;" k="12" />
  3456. <hkern g1="parenright.caps" u2="&#x178;" k="16" />
  3457. <hkern g1="parenright.caps" u2="&#x176;" k="16" />
  3458. <hkern g1="parenright.caps" u2="&#x172;" k="12" />
  3459. <hkern g1="parenright.caps" u2="&#x170;" k="12" />
  3460. <hkern g1="parenright.caps" u2="&#x16e;" k="12" />
  3461. <hkern g1="parenright.caps" u2="&#x16c;" k="12" />
  3462. <hkern g1="parenright.caps" u2="&#x16a;" k="12" />
  3463. <hkern g1="parenright.caps" u2="&#x168;" k="12" />
  3464. <hkern g1="parenright.caps" u2="&#x166;" k="24" />
  3465. <hkern g1="parenright.caps" u2="&#x164;" k="24" />
  3466. <hkern g1="parenright.caps" u2="&#x162;" k="24" />
  3467. <hkern g1="parenright.caps" u2="&#x160;" k="20" />
  3468. <hkern g1="parenright.caps" u2="&#x15e;" k="20" />
  3469. <hkern g1="parenright.caps" u2="&#x15c;" k="20" />
  3470. <hkern g1="parenright.caps" u2="&#x15a;" k="20" />
  3471. <hkern g1="parenright.caps" u2="&#x158;" k="16" />
  3472. <hkern g1="parenright.caps" u2="&#x156;" k="16" />
  3473. <hkern g1="parenright.caps" u2="&#x154;" k="16" />
  3474. <hkern g1="parenright.caps" u2="&#x152;" k="20" />
  3475. <hkern g1="parenright.caps" u2="&#x150;" k="20" />
  3476. <hkern g1="parenright.caps" u2="&#x14e;" k="20" />
  3477. <hkern g1="parenright.caps" u2="&#x14c;" k="20" />
  3478. <hkern g1="parenright.caps" u2="&#x14a;" k="16" />
  3479. <hkern g1="parenright.caps" u2="&#x147;" k="16" />
  3480. <hkern g1="parenright.caps" u2="&#x145;" k="16" />
  3481. <hkern g1="parenright.caps" u2="&#x143;" k="16" />
  3482. <hkern g1="parenright.caps" u2="&#x141;" k="16" />
  3483. <hkern g1="parenright.caps" u2="&#x13f;" k="16" />
  3484. <hkern g1="parenright.caps" u2="&#x13d;" k="16" />
  3485. <hkern g1="parenright.caps" u2="&#x13b;" k="16" />
  3486. <hkern g1="parenright.caps" u2="&#x139;" k="16" />
  3487. <hkern g1="parenright.caps" u2="&#x136;" k="16" />
  3488. <hkern g1="parenright.caps" u2="&#x132;" k="16" />
  3489. <hkern g1="parenright.caps" u2="&#x130;" k="16" />
  3490. <hkern g1="parenright.caps" u2="&#x12e;" k="16" />
  3491. <hkern g1="parenright.caps" u2="&#x12c;" k="16" />
  3492. <hkern g1="parenright.caps" u2="&#x12a;" k="16" />
  3493. <hkern g1="parenright.caps" u2="&#x128;" k="16" />
  3494. <hkern g1="parenright.caps" u2="&#x126;" k="16" />
  3495. <hkern g1="parenright.caps" u2="&#x124;" k="16" />
  3496. <hkern g1="parenright.caps" u2="&#x122;" k="20" />
  3497. <hkern g1="parenright.caps" u2="&#x120;" k="20" />
  3498. <hkern g1="parenright.caps" u2="&#x11e;" k="20" />
  3499. <hkern g1="parenright.caps" u2="&#x11c;" k="20" />
  3500. <hkern g1="parenright.caps" u2="&#x11a;" k="16" />
  3501. <hkern g1="parenright.caps" u2="&#x118;" k="16" />
  3502. <hkern g1="parenright.caps" u2="&#x116;" k="16" />
  3503. <hkern g1="parenright.caps" u2="&#x114;" k="16" />
  3504. <hkern g1="parenright.caps" u2="&#x112;" k="16" />
  3505. <hkern g1="parenright.caps" u2="&#x110;" k="16" />
  3506. <hkern g1="parenright.caps" u2="&#x10e;" k="16" />
  3507. <hkern g1="parenright.caps" u2="&#x10c;" k="20" />
  3508. <hkern g1="parenright.caps" u2="&#x10a;" k="20" />
  3509. <hkern g1="parenright.caps" u2="&#x108;" k="20" />
  3510. <hkern g1="parenright.caps" u2="&#x106;" k="20" />
  3511. <hkern g1="parenright.caps" u2="&#x104;" k="20" />
  3512. <hkern g1="parenright.caps" u2="&#x102;" k="20" />
  3513. <hkern g1="parenright.caps" u2="&#x100;" k="20" />
  3514. <hkern g1="parenright.caps" u2="&#xde;" k="16" />
  3515. <hkern g1="parenright.caps" u2="&#xdd;" k="16" />
  3516. <hkern g1="parenright.caps" u2="&#xdc;" k="12" />
  3517. <hkern g1="parenright.caps" u2="&#xdb;" k="12" />
  3518. <hkern g1="parenright.caps" u2="&#xda;" k="12" />
  3519. <hkern g1="parenright.caps" u2="&#xd9;" k="12" />
  3520. <hkern g1="parenright.caps" u2="&#xd8;" k="20" />
  3521. <hkern g1="parenright.caps" u2="&#xd6;" k="20" />
  3522. <hkern g1="parenright.caps" u2="&#xd5;" k="20" />
  3523. <hkern g1="parenright.caps" u2="&#xd4;" k="20" />
  3524. <hkern g1="parenright.caps" u2="&#xd3;" k="20" />
  3525. <hkern g1="parenright.caps" u2="&#xd2;" k="20" />
  3526. <hkern g1="parenright.caps" u2="&#xd1;" k="16" />
  3527. <hkern g1="parenright.caps" u2="&#xd0;" k="16" />
  3528. <hkern g1="parenright.caps" u2="&#xcf;" k="16" />
  3529. <hkern g1="parenright.caps" u2="&#xce;" k="16" />
  3530. <hkern g1="parenright.caps" u2="&#xcd;" k="16" />
  3531. <hkern g1="parenright.caps" u2="&#xcc;" k="16" />
  3532. <hkern g1="parenright.caps" u2="&#xcb;" k="16" />
  3533. <hkern g1="parenright.caps" u2="&#xca;" k="16" />
  3534. <hkern g1="parenright.caps" u2="&#xc9;" k="16" />
  3535. <hkern g1="parenright.caps" u2="&#xc8;" k="16" />
  3536. <hkern g1="parenright.caps" u2="&#xc7;" k="20" />
  3537. <hkern g1="parenright.caps" u2="&#xc6;" k="20" />
  3538. <hkern g1="parenright.caps" u2="&#xc5;" k="20" />
  3539. <hkern g1="parenright.caps" u2="&#xc4;" k="20" />
  3540. <hkern g1="parenright.caps" u2="&#xc3;" k="20" />
  3541. <hkern g1="parenright.caps" u2="&#xc2;" k="20" />
  3542. <hkern g1="parenright.caps" u2="&#xc1;" k="20" />
  3543. <hkern g1="parenright.caps" u2="&#xc0;" k="20" />
  3544. <hkern g1="parenright.caps" u2="Z" k="12" />
  3545. <hkern g1="parenright.caps" u2="Y" k="16" />
  3546. <hkern g1="parenright.caps" u2="X" k="16" />
  3547. <hkern g1="parenright.caps" u2="U" k="12" />
  3548. <hkern g1="parenright.caps" u2="T" k="24" />
  3549. <hkern g1="parenright.caps" u2="S" k="20" />
  3550. <hkern g1="parenright.caps" u2="R" k="16" />
  3551. <hkern g1="parenright.caps" u2="Q" k="20" />
  3552. <hkern g1="parenright.caps" u2="P" k="16" />
  3553. <hkern g1="parenright.caps" u2="O" k="20" />
  3554. <hkern g1="parenright.caps" u2="N" k="16" />
  3555. <hkern g1="parenright.caps" u2="M" k="12" />
  3556. <hkern g1="parenright.caps" u2="L" k="16" />
  3557. <hkern g1="parenright.caps" u2="K" k="16" />
  3558. <hkern g1="parenright.caps" u2="I" k="16" />
  3559. <hkern g1="parenright.caps" u2="H" k="16" />
  3560. <hkern g1="parenright.caps" u2="G" k="20" />
  3561. <hkern g1="parenright.caps" u2="F" k="16" />
  3562. <hkern g1="parenright.caps" u2="E" k="16" />
  3563. <hkern g1="parenright.caps" u2="D" k="16" />
  3564. <hkern g1="parenright.caps" u2="C" k="20" />
  3565. <hkern g1="parenright.caps" u2="B" k="16" />
  3566. <hkern g1="parenright.caps" u2="A" k="20" />
  3567. <hkern g1="hyphen.caps" u2="&#x2211;" k="16" />
  3568. <hkern g1="hyphen.caps" u2="&#x394;" k="8" />
  3569. <hkern g1="hyphen.caps" u2="X" k="12" />
  3570. <hkern g1="endash.caps" u2="X" k="12" />
  3571. <hkern g1="quotedbl.caps" u2="&#x1ea0;" k="80" />
  3572. <hkern g1="quotedbl.caps" u2="&#x1fc;" k="80" />
  3573. <hkern g1="quotedbl.caps" u2="&#x1fa;" k="80" />
  3574. <hkern g1="quotedbl.caps" u2="&#x1cd;" k="80" />
  3575. <hkern g1="quotedbl.caps" u2="&#x104;" k="80" />
  3576. <hkern g1="quotedbl.caps" u2="&#x102;" k="80" />
  3577. <hkern g1="quotedbl.caps" u2="&#x100;" k="80" />
  3578. <hkern g1="quotedbl.caps" u2="&#xc6;" k="80" />
  3579. <hkern g1="quotedbl.caps" u2="&#xc5;" k="80" />
  3580. <hkern g1="quotedbl.caps" u2="&#xc4;" k="80" />
  3581. <hkern g1="quotedbl.caps" u2="&#xc3;" k="80" />
  3582. <hkern g1="quotedbl.caps" u2="&#xc2;" k="80" />
  3583. <hkern g1="quotedbl.caps" u2="&#xc1;" k="80" />
  3584. <hkern g1="quotedbl.caps" u2="&#xc0;" k="80" />
  3585. <hkern g1="quotedbl.caps" u2="A" k="80" />
  3586. <hkern g1="quotesingle.caps" g2="IJacute" k="12" />
  3587. <hkern g1="quotesingle.caps" g2="Jacute" k="4" />
  3588. <hkern g1="quotesingle.caps" u2="&#x1ecc;" k="28" />
  3589. <hkern g1="quotesingle.caps" u2="&#x1eca;" k="12" />
  3590. <hkern g1="quotesingle.caps" u2="&#x1ebc;" k="12" />
  3591. <hkern g1="quotesingle.caps" u2="&#x1eb8;" k="12" />
  3592. <hkern g1="quotesingle.caps" u2="&#x1ea0;" k="80" />
  3593. <hkern g1="quotesingle.caps" u2="&#x1e5a;" k="12" />
  3594. <hkern g1="quotesingle.caps" u2="&#x1e44;" k="12" />
  3595. <hkern g1="quotesingle.caps" u2="&#x1e24;" k="12" />
  3596. <hkern g1="quotesingle.caps" u2="&#x1e0c;" k="12" />
  3597. <hkern g1="quotesingle.caps" u2="&#x1fe;" k="28" />
  3598. <hkern g1="quotesingle.caps" u2="&#x1fc;" k="80" />
  3599. <hkern g1="quotesingle.caps" u2="&#x1fa;" k="80" />
  3600. <hkern g1="quotesingle.caps" u2="&#x1f4;" k="28" />
  3601. <hkern g1="quotesingle.caps" u2="&#x1ea;" k="28" />
  3602. <hkern g1="quotesingle.caps" u2="&#x1e6;" k="28" />
  3603. <hkern g1="quotesingle.caps" u2="&#x1d1;" k="28" />
  3604. <hkern g1="quotesingle.caps" u2="&#x1cf;" k="12" />
  3605. <hkern g1="quotesingle.caps" u2="&#x1cd;" k="80" />
  3606. <hkern g1="quotesingle.caps" u2="&#x19d;" k="4" />
  3607. <hkern g1="quotesingle.caps" u2="&#x158;" k="12" />
  3608. <hkern g1="quotesingle.caps" u2="&#x156;" k="12" />
  3609. <hkern g1="quotesingle.caps" u2="&#x154;" k="12" />
  3610. <hkern g1="quotesingle.caps" u2="&#x152;" k="28" />
  3611. <hkern g1="quotesingle.caps" u2="&#x150;" k="28" />
  3612. <hkern g1="quotesingle.caps" u2="&#x14e;" k="28" />
  3613. <hkern g1="quotesingle.caps" u2="&#x14c;" k="28" />
  3614. <hkern g1="quotesingle.caps" u2="&#x14a;" k="12" />
  3615. <hkern g1="quotesingle.caps" u2="&#x147;" k="12" />
  3616. <hkern g1="quotesingle.caps" u2="&#x145;" k="12" />
  3617. <hkern g1="quotesingle.caps" u2="&#x143;" k="12" />
  3618. <hkern g1="quotesingle.caps" u2="&#x141;" k="12" />
  3619. <hkern g1="quotesingle.caps" u2="&#x13f;" k="12" />
  3620. <hkern g1="quotesingle.caps" u2="&#x13d;" k="12" />
  3621. <hkern g1="quotesingle.caps" u2="&#x13b;" k="12" />
  3622. <hkern g1="quotesingle.caps" u2="&#x139;" k="12" />
  3623. <hkern g1="quotesingle.caps" u2="&#x136;" k="12" />
  3624. <hkern g1="quotesingle.caps" u2="&#x134;" k="4" />
  3625. <hkern g1="quotesingle.caps" u2="&#x132;" k="12" />
  3626. <hkern g1="quotesingle.caps" u2="&#x130;" k="12" />
  3627. <hkern g1="quotesingle.caps" u2="&#x12e;" k="12" />
  3628. <hkern g1="quotesingle.caps" u2="&#x12c;" k="12" />
  3629. <hkern g1="quotesingle.caps" u2="&#x12a;" k="12" />
  3630. <hkern g1="quotesingle.caps" u2="&#x128;" k="12" />
  3631. <hkern g1="quotesingle.caps" u2="&#x126;" k="12" />
  3632. <hkern g1="quotesingle.caps" u2="&#x124;" k="12" />
  3633. <hkern g1="quotesingle.caps" u2="&#x122;" k="28" />
  3634. <hkern g1="quotesingle.caps" u2="&#x120;" k="28" />
  3635. <hkern g1="quotesingle.caps" u2="&#x11e;" k="28" />
  3636. <hkern g1="quotesingle.caps" u2="&#x11c;" k="28" />
  3637. <hkern g1="quotesingle.caps" u2="&#x11a;" k="12" />
  3638. <hkern g1="quotesingle.caps" u2="&#x118;" k="12" />
  3639. <hkern g1="quotesingle.caps" u2="&#x116;" k="12" />
  3640. <hkern g1="quotesingle.caps" u2="&#x114;" k="12" />
  3641. <hkern g1="quotesingle.caps" u2="&#x112;" k="12" />
  3642. <hkern g1="quotesingle.caps" u2="&#x110;" k="12" />
  3643. <hkern g1="quotesingle.caps" u2="&#x10e;" k="12" />
  3644. <hkern g1="quotesingle.caps" u2="&#x10c;" k="28" />
  3645. <hkern g1="quotesingle.caps" u2="&#x10a;" k="28" />
  3646. <hkern g1="quotesingle.caps" u2="&#x108;" k="28" />
  3647. <hkern g1="quotesingle.caps" u2="&#x106;" k="28" />
  3648. <hkern g1="quotesingle.caps" u2="&#x104;" k="80" />
  3649. <hkern g1="quotesingle.caps" u2="&#x102;" k="80" />
  3650. <hkern g1="quotesingle.caps" u2="&#x100;" k="80" />
  3651. <hkern g1="quotesingle.caps" u2="&#xde;" k="12" />
  3652. <hkern g1="quotesingle.caps" u2="&#xd8;" k="28" />
  3653. <hkern g1="quotesingle.caps" u2="&#xd6;" k="28" />
  3654. <hkern g1="quotesingle.caps" u2="&#xd5;" k="28" />
  3655. <hkern g1="quotesingle.caps" u2="&#xd4;" k="28" />
  3656. <hkern g1="quotesingle.caps" u2="&#xd3;" k="28" />
  3657. <hkern g1="quotesingle.caps" u2="&#xd2;" k="28" />
  3658. <hkern g1="quotesingle.caps" u2="&#xd1;" k="12" />
  3659. <hkern g1="quotesingle.caps" u2="&#xd0;" k="12" />
  3660. <hkern g1="quotesingle.caps" u2="&#xcf;" k="12" />
  3661. <hkern g1="quotesingle.caps" u2="&#xce;" k="12" />
  3662. <hkern g1="quotesingle.caps" u2="&#xcd;" k="12" />
  3663. <hkern g1="quotesingle.caps" u2="&#xcc;" k="12" />
  3664. <hkern g1="quotesingle.caps" u2="&#xcb;" k="12" />
  3665. <hkern g1="quotesingle.caps" u2="&#xca;" k="12" />
  3666. <hkern g1="quotesingle.caps" u2="&#xc9;" k="12" />
  3667. <hkern g1="quotesingle.caps" u2="&#xc8;" k="12" />
  3668. <hkern g1="quotesingle.caps" u2="&#xc7;" k="28" />
  3669. <hkern g1="quotesingle.caps" u2="&#xc6;" k="80" />
  3670. <hkern g1="quotesingle.caps" u2="&#xc5;" k="80" />
  3671. <hkern g1="quotesingle.caps" u2="&#xc4;" k="80" />
  3672. <hkern g1="quotesingle.caps" u2="&#xc3;" k="80" />
  3673. <hkern g1="quotesingle.caps" u2="&#xc2;" k="80" />
  3674. <hkern g1="quotesingle.caps" u2="&#xc1;" k="80" />
  3675. <hkern g1="quotesingle.caps" u2="&#xc0;" k="80" />
  3676. <hkern g1="quotesingle.caps" u2="R" k="12" />
  3677. <hkern g1="quotesingle.caps" u2="Q" k="28" />
  3678. <hkern g1="quotesingle.caps" u2="P" k="12" />
  3679. <hkern g1="quotesingle.caps" u2="O" k="28" />
  3680. <hkern g1="quotesingle.caps" u2="N" k="12" />
  3681. <hkern g1="quotesingle.caps" u2="L" k="12" />
  3682. <hkern g1="quotesingle.caps" u2="K" k="12" />
  3683. <hkern g1="quotesingle.caps" u2="J" k="4" />
  3684. <hkern g1="quotesingle.caps" u2="I" k="12" />
  3685. <hkern g1="quotesingle.caps" u2="H" k="12" />
  3686. <hkern g1="quotesingle.caps" u2="G" k="28" />
  3687. <hkern g1="quotesingle.caps" u2="F" k="12" />
  3688. <hkern g1="quotesingle.caps" u2="E" k="12" />
  3689. <hkern g1="quotesingle.caps" u2="D" k="12" />
  3690. <hkern g1="quotesingle.caps" u2="C" k="28" />
  3691. <hkern g1="quotesingle.caps" u2="B" k="12" />
  3692. <hkern g1="quotesingle.caps" u2="A" k="80" />
  3693. <hkern g1="parenleft.sc" g2="germandbls.sc" k="6" />
  3694. <hkern g1="parenleft.sc" g2="sdotbelow.sc" k="16" />
  3695. <hkern g1="parenleft.sc" g2="scommaaccent.sc" k="16" />
  3696. <hkern g1="parenleft.sc" g2="scircumflex.sc" k="16" />
  3697. <hkern g1="parenleft.sc" g2="scedilla.sc" k="16" />
  3698. <hkern g1="parenleft.sc" g2="scaron.sc" k="16" />
  3699. <hkern g1="parenleft.sc" g2="sacute.sc" k="16" />
  3700. <hkern g1="parenleft.sc" g2="s.sc" k="16" />
  3701. <hkern g1="parenleft.sc" g2="rdotbelow.sc" k="6" />
  3702. <hkern g1="parenleft.sc" g2="rcommaaccent.sc" k="6" />
  3703. <hkern g1="parenleft.sc" g2="rcaron.sc" k="6" />
  3704. <hkern g1="parenleft.sc" g2="racute.sc" k="6" />
  3705. <hkern g1="parenleft.sc" g2="r.sc" k="6" />
  3706. <hkern g1="parenleft.sc" g2="q.sc" k="30" />
  3707. <hkern g1="parenleft.sc" g2="thorn.sc" k="6" />
  3708. <hkern g1="parenleft.sc" g2="p.sc" k="6" />
  3709. <hkern g1="parenleft.sc" g2="oe.sc" k="30" />
  3710. <hkern g1="parenleft.sc" g2="otilde.sc" k="30" />
  3711. <hkern g1="parenleft.sc" g2="oslashacute.sc" k="30" />
  3712. <hkern g1="parenleft.sc" g2="oslash.sc" k="30" />
  3713. <hkern g1="parenleft.sc" g2="oogonek.sc" k="30" />
  3714. <hkern g1="parenleft.sc" g2="omacron.sc" k="30" />
  3715. <hkern g1="parenleft.sc" g2="ohungarumlaut.sc" k="30" />
  3716. <hkern g1="parenleft.sc" g2="ograve.sc" k="30" />
  3717. <hkern g1="parenleft.sc" g2="odotbelow.sc" k="30" />
  3718. <hkern g1="parenleft.sc" g2="odieresis.sc" k="30" />
  3719. <hkern g1="parenleft.sc" g2="ocircumflex.sc" k="30" />
  3720. <hkern g1="parenleft.sc" g2="ocaron.sc" k="30" />
  3721. <hkern g1="parenleft.sc" g2="obreve.sc" k="30" />
  3722. <hkern g1="parenleft.sc" g2="oacute.sc" k="30" />
  3723. <hkern g1="parenleft.sc" g2="o.sc" k="30" />
  3724. <hkern g1="parenleft.sc" g2="ntilde.sc" k="6" />
  3725. <hkern g1="parenleft.sc" g2="eng.sc" k="6" />
  3726. <hkern g1="parenleft.sc" g2="ndotaccent.sc" k="6" />
  3727. <hkern g1="parenleft.sc" g2="ncommaaccent.sc" k="6" />
  3728. <hkern g1="parenleft.sc" g2="ncaron.sc" k="6" />
  3729. <hkern g1="parenleft.sc" g2="nacute.sc" k="6" />
  3730. <hkern g1="parenleft.sc" g2="n.sc" k="6" />
  3731. <hkern g1="parenleft.sc" g2="lslash.sc" k="6" />
  3732. <hkern g1="parenleft.sc" g2="ldot.sc" k="6" />
  3733. <hkern g1="parenleft.sc" g2="lcommaaccent.sc" k="6" />
  3734. <hkern g1="parenleft.sc" g2="lcaron.sc" k="6" />
  3735. <hkern g1="parenleft.sc" g2="lacute.sc" k="6" />
  3736. <hkern g1="parenleft.sc" g2="l.sc" k="6" />
  3737. <hkern g1="parenleft.sc" g2="kgreenlandic.sc" k="6" />
  3738. <hkern g1="parenleft.sc" g2="kcommaaccent.sc" k="6" />
  3739. <hkern g1="parenleft.sc" g2="k.sc" k="6" />
  3740. <hkern g1="parenleft.sc" g2="itilde.sc" k="6" />
  3741. <hkern g1="parenleft.sc" g2="iogonek.sc" k="6" />
  3742. <hkern g1="parenleft.sc" g2="imacron.sc" k="6" />
  3743. <hkern g1="parenleft.sc" g2="ij.sc" k="6" />
  3744. <hkern g1="parenleft.sc" g2="igrave.sc" k="6" />
  3745. <hkern g1="parenleft.sc" g2="idotbelow.sc" k="6" />
  3746. <hkern g1="parenleft.sc" g2="idotaccent.sc" k="6" />
  3747. <hkern g1="parenleft.sc" g2="idieresis.sc" k="6" />
  3748. <hkern g1="parenleft.sc" g2="icircumflex.sc" k="6" />
  3749. <hkern g1="parenleft.sc" g2="icaron.sc" k="6" />
  3750. <hkern g1="parenleft.sc" g2="ibreve.sc" k="6" />
  3751. <hkern g1="parenleft.sc" g2="iacute.sc" k="6" />
  3752. <hkern g1="parenleft.sc" g2="dotlessi.sc" k="6" />
  3753. <hkern g1="parenleft.sc" g2="i.sc" k="6" />
  3754. <hkern g1="parenleft.sc" g2="hdotbelow.sc" k="6" />
  3755. <hkern g1="parenleft.sc" g2="hcircumflex.sc" k="6" />
  3756. <hkern g1="parenleft.sc" g2="hbar.sc" k="6" />
  3757. <hkern g1="parenleft.sc" g2="h.sc" k="6" />
  3758. <hkern g1="parenleft.sc" g2="gdotaccent.sc" k="30" />
  3759. <hkern g1="parenleft.sc" g2="gcommaaccent.sc" k="30" />
  3760. <hkern g1="parenleft.sc" g2="gcircumflex.sc" k="30" />
  3761. <hkern g1="parenleft.sc" g2="gcaron.sc" k="30" />
  3762. <hkern g1="parenleft.sc" g2="gbreve.sc" k="30" />
  3763. <hkern g1="parenleft.sc" g2="gacute.sc" k="30" />
  3764. <hkern g1="parenleft.sc" g2="g.sc" k="30" />
  3765. <hkern g1="parenleft.sc" g2="f.sc" k="6" />
  3766. <hkern g1="parenleft.sc" g2="schwa.sc" k="30" />
  3767. <hkern g1="parenleft.sc" g2="etilde.sc" k="6" />
  3768. <hkern g1="parenleft.sc" g2="eogonek.sc" k="6" />
  3769. <hkern g1="parenleft.sc" g2="emacron.sc" k="6" />
  3770. <hkern g1="parenleft.sc" g2="egrave.sc" k="6" />
  3771. <hkern g1="parenleft.sc" g2="edotbelow.sc" k="6" />
  3772. <hkern g1="parenleft.sc" g2="edotaccent.sc" k="6" />
  3773. <hkern g1="parenleft.sc" g2="edieresis.sc" k="6" />
  3774. <hkern g1="parenleft.sc" g2="ecircumflex.sc" k="6" />
  3775. <hkern g1="parenleft.sc" g2="ecaron.sc" k="6" />
  3776. <hkern g1="parenleft.sc" g2="ebreve.sc" k="6" />
  3777. <hkern g1="parenleft.sc" g2="eacute.sc" k="6" />
  3778. <hkern g1="parenleft.sc" g2="e.sc" k="6" />
  3779. <hkern g1="parenleft.sc" g2="ddotbelow.sc" k="6" />
  3780. <hkern g1="parenleft.sc" g2="dcroat.sc" k="6" />
  3781. <hkern g1="parenleft.sc" g2="dcaron.sc" k="6" />
  3782. <hkern g1="parenleft.sc" g2="eth.sc" k="6" />
  3783. <hkern g1="parenleft.sc" g2="d.sc" k="6" />
  3784. <hkern g1="parenleft.sc" g2="cdotaccent.sc" k="30" />
  3785. <hkern g1="parenleft.sc" g2="ccircumflex.sc" k="30" />
  3786. <hkern g1="parenleft.sc" g2="ccedilla.sc" k="30" />
  3787. <hkern g1="parenleft.sc" g2="ccaron.sc" k="30" />
  3788. <hkern g1="parenleft.sc" g2="cacute.sc" k="30" />
  3789. <hkern g1="parenleft.sc" g2="c.sc" k="30" />
  3790. <hkern g1="parenleft.sc" g2="b.sc" k="6" />
  3791. <hkern g1="parenright.sc" g2="IJacute" k="20" />
  3792. <hkern g1="parenright.sc" g2="aeacute.sc" k="14" />
  3793. <hkern g1="parenright.sc" g2="ae.sc" k="14" />
  3794. <hkern g1="parenright.sc" g2="atilde.sc" k="14" />
  3795. <hkern g1="parenright.sc" g2="aringacute.sc" k="14" />
  3796. <hkern g1="parenright.sc" g2="aring.sc" k="14" />
  3797. <hkern g1="parenright.sc" g2="aogonek.sc" k="14" />
  3798. <hkern g1="parenright.sc" g2="amacron.sc" k="14" />
  3799. <hkern g1="parenright.sc" g2="agrave.sc" k="14" />
  3800. <hkern g1="parenright.sc" g2="adotbelow.sc" k="14" />
  3801. <hkern g1="parenright.sc" g2="adieresis.sc" k="14" />
  3802. <hkern g1="parenright.sc" g2="acircumflex.sc" k="14" />
  3803. <hkern g1="parenright.sc" g2="acaron.sc" k="14" />
  3804. <hkern g1="parenright.sc" g2="abreve.sc" k="14" />
  3805. <hkern g1="parenright.sc" g2="aacute.sc" k="14" />
  3806. <hkern g1="parenright.sc" g2="a.sc" k="14" />
  3807. <hkern g1="parenright.sc" u2="&#x1ee4;" k="12" />
  3808. <hkern g1="parenright.sc" u2="&#x1ecc;" k="16" />
  3809. <hkern g1="parenright.sc" u2="&#x1eca;" k="20" />
  3810. <hkern g1="parenright.sc" u2="&#x1ebc;" k="20" />
  3811. <hkern g1="parenright.sc" u2="&#x1eb8;" k="20" />
  3812. <hkern g1="parenright.sc" u2="&#x1e92;" k="12" />
  3813. <hkern g1="parenright.sc" u2="&#x1e6c;" k="31" />
  3814. <hkern g1="parenright.sc" u2="&#x1e62;" k="20" />
  3815. <hkern g1="parenright.sc" u2="&#x1e5a;" k="20" />
  3816. <hkern g1="parenright.sc" u2="&#x1e44;" k="20" />
  3817. <hkern g1="parenright.sc" u2="&#x1e24;" k="20" />
  3818. <hkern g1="parenright.sc" u2="&#x1e0c;" k="20" />
  3819. <hkern g1="parenright.sc" u2="&#x21a;" k="31" />
  3820. <hkern g1="parenright.sc" u2="&#x218;" k="20" />
  3821. <hkern g1="parenright.sc" u2="&#x1fe;" k="16" />
  3822. <hkern g1="parenright.sc" u2="&#x1f4;" k="16" />
  3823. <hkern g1="parenright.sc" u2="&#x1ea;" k="16" />
  3824. <hkern g1="parenright.sc" u2="&#x1e6;" k="16" />
  3825. <hkern g1="parenright.sc" u2="&#x1db;" k="12" />
  3826. <hkern g1="parenright.sc" u2="&#x1d9;" k="12" />
  3827. <hkern g1="parenright.sc" u2="&#x1d7;" k="12" />
  3828. <hkern g1="parenright.sc" u2="&#x1d5;" k="12" />
  3829. <hkern g1="parenright.sc" u2="&#x1d3;" k="12" />
  3830. <hkern g1="parenright.sc" u2="&#x1d1;" k="16" />
  3831. <hkern g1="parenright.sc" u2="&#x1cf;" k="20" />
  3832. <hkern g1="parenright.sc" u2="&#x17d;" k="12" />
  3833. <hkern g1="parenright.sc" u2="&#x17b;" k="12" />
  3834. <hkern g1="parenright.sc" u2="&#x179;" k="12" />
  3835. <hkern g1="parenright.sc" u2="&#x172;" k="12" />
  3836. <hkern g1="parenright.sc" u2="&#x170;" k="12" />
  3837. <hkern g1="parenright.sc" u2="&#x16e;" k="12" />
  3838. <hkern g1="parenright.sc" u2="&#x16c;" k="12" />
  3839. <hkern g1="parenright.sc" u2="&#x16a;" k="12" />
  3840. <hkern g1="parenright.sc" u2="&#x168;" k="12" />
  3841. <hkern g1="parenright.sc" u2="&#x166;" k="31" />
  3842. <hkern g1="parenright.sc" u2="&#x164;" k="31" />
  3843. <hkern g1="parenright.sc" u2="&#x162;" k="31" />
  3844. <hkern g1="parenright.sc" u2="&#x160;" k="20" />
  3845. <hkern g1="parenright.sc" u2="&#x15e;" k="20" />
  3846. <hkern g1="parenright.sc" u2="&#x15c;" k="20" />
  3847. <hkern g1="parenright.sc" u2="&#x15a;" k="20" />
  3848. <hkern g1="parenright.sc" u2="&#x158;" k="20" />
  3849. <hkern g1="parenright.sc" u2="&#x156;" k="20" />
  3850. <hkern g1="parenright.sc" u2="&#x154;" k="20" />
  3851. <hkern g1="parenright.sc" u2="&#x152;" k="16" />
  3852. <hkern g1="parenright.sc" u2="&#x150;" k="16" />
  3853. <hkern g1="parenright.sc" u2="&#x14e;" k="16" />
  3854. <hkern g1="parenright.sc" u2="&#x14c;" k="16" />
  3855. <hkern g1="parenright.sc" u2="&#x14a;" k="20" />
  3856. <hkern g1="parenright.sc" u2="&#x147;" k="20" />
  3857. <hkern g1="parenright.sc" u2="&#x145;" k="20" />
  3858. <hkern g1="parenright.sc" u2="&#x143;" k="20" />
  3859. <hkern g1="parenright.sc" u2="&#x141;" k="20" />
  3860. <hkern g1="parenright.sc" u2="&#x13f;" k="20" />
  3861. <hkern g1="parenright.sc" u2="&#x13d;" k="20" />
  3862. <hkern g1="parenright.sc" u2="&#x13b;" k="20" />
  3863. <hkern g1="parenright.sc" u2="&#x139;" k="20" />
  3864. <hkern g1="parenright.sc" u2="&#x136;" k="20" />
  3865. <hkern g1="parenright.sc" u2="&#x132;" k="20" />
  3866. <hkern g1="parenright.sc" u2="&#x130;" k="20" />
  3867. <hkern g1="parenright.sc" u2="&#x12e;" k="20" />
  3868. <hkern g1="parenright.sc" u2="&#x12c;" k="20" />
  3869. <hkern g1="parenright.sc" u2="&#x12a;" k="20" />
  3870. <hkern g1="parenright.sc" u2="&#x128;" k="20" />
  3871. <hkern g1="parenright.sc" u2="&#x126;" k="20" />
  3872. <hkern g1="parenright.sc" u2="&#x124;" k="20" />
  3873. <hkern g1="parenright.sc" u2="&#x122;" k="16" />
  3874. <hkern g1="parenright.sc" u2="&#x120;" k="16" />
  3875. <hkern g1="parenright.sc" u2="&#x11e;" k="16" />
  3876. <hkern g1="parenright.sc" u2="&#x11c;" k="16" />
  3877. <hkern g1="parenright.sc" u2="&#x11a;" k="20" />
  3878. <hkern g1="parenright.sc" u2="&#x118;" k="20" />
  3879. <hkern g1="parenright.sc" u2="&#x116;" k="20" />
  3880. <hkern g1="parenright.sc" u2="&#x114;" k="20" />
  3881. <hkern g1="parenright.sc" u2="&#x112;" k="20" />
  3882. <hkern g1="parenright.sc" u2="&#x110;" k="20" />
  3883. <hkern g1="parenright.sc" u2="&#x10e;" k="20" />
  3884. <hkern g1="parenright.sc" u2="&#x10c;" k="16" />
  3885. <hkern g1="parenright.sc" u2="&#x10a;" k="16" />
  3886. <hkern g1="parenright.sc" u2="&#x108;" k="16" />
  3887. <hkern g1="parenright.sc" u2="&#x106;" k="16" />
  3888. <hkern g1="parenright.sc" u2="&#xde;" k="20" />
  3889. <hkern g1="parenright.sc" u2="&#xdc;" k="12" />
  3890. <hkern g1="parenright.sc" u2="&#xdb;" k="12" />
  3891. <hkern g1="parenright.sc" u2="&#xda;" k="12" />
  3892. <hkern g1="parenright.sc" u2="&#xd9;" k="12" />
  3893. <hkern g1="parenright.sc" u2="&#xd8;" k="16" />
  3894. <hkern g1="parenright.sc" u2="&#xd6;" k="16" />
  3895. <hkern g1="parenright.sc" u2="&#xd5;" k="16" />
  3896. <hkern g1="parenright.sc" u2="&#xd4;" k="16" />
  3897. <hkern g1="parenright.sc" u2="&#xd3;" k="16" />
  3898. <hkern g1="parenright.sc" u2="&#xd2;" k="16" />
  3899. <hkern g1="parenright.sc" u2="&#xd1;" k="20" />
  3900. <hkern g1="parenright.sc" u2="&#xd0;" k="20" />
  3901. <hkern g1="parenright.sc" u2="&#xcf;" k="20" />
  3902. <hkern g1="parenright.sc" u2="&#xce;" k="20" />
  3903. <hkern g1="parenright.sc" u2="&#xcd;" k="20" />
  3904. <hkern g1="parenright.sc" u2="&#xcc;" k="20" />
  3905. <hkern g1="parenright.sc" u2="&#xcb;" k="20" />
  3906. <hkern g1="parenright.sc" u2="&#xca;" k="20" />
  3907. <hkern g1="parenright.sc" u2="&#xc9;" k="20" />
  3908. <hkern g1="parenright.sc" u2="&#xc8;" k="20" />
  3909. <hkern g1="parenright.sc" u2="&#xc7;" k="16" />
  3910. <hkern g1="parenright.sc" u2="Z" k="12" />
  3911. <hkern g1="parenright.sc" u2="X" k="12" />
  3912. <hkern g1="parenright.sc" u2="U" k="12" />
  3913. <hkern g1="parenright.sc" u2="T" k="31" />
  3914. <hkern g1="parenright.sc" u2="S" k="20" />
  3915. <hkern g1="parenright.sc" u2="R" k="20" />
  3916. <hkern g1="parenright.sc" u2="Q" k="16" />
  3917. <hkern g1="parenright.sc" u2="P" k="20" />
  3918. <hkern g1="parenright.sc" u2="O" k="16" />
  3919. <hkern g1="parenright.sc" u2="N" k="20" />
  3920. <hkern g1="parenright.sc" u2="M" k="24" />
  3921. <hkern g1="parenright.sc" u2="L" k="20" />
  3922. <hkern g1="parenright.sc" u2="K" k="20" />
  3923. <hkern g1="parenright.sc" u2="I" k="20" />
  3924. <hkern g1="parenright.sc" u2="H" k="20" />
  3925. <hkern g1="parenright.sc" u2="G" k="16" />
  3926. <hkern g1="parenright.sc" u2="F" k="20" />
  3927. <hkern g1="parenright.sc" u2="E" k="20" />
  3928. <hkern g1="parenright.sc" u2="D" k="20" />
  3929. <hkern g1="parenright.sc" u2="C" k="16" />
  3930. <hkern g1="parenright.sc" u2="B" k="20" />
  3931. <hkern g1="braceleft.sc" g2="zdotbelow.sc" k="22" />
  3932. <hkern g1="braceleft.sc" g2="zdotaccent.sc" k="22" />
  3933. <hkern g1="braceleft.sc" g2="zcaron.sc" k="22" />
  3934. <hkern g1="braceleft.sc" g2="zacute.sc" k="22" />
  3935. <hkern g1="braceleft.sc" g2="z.sc" k="22" />
  3936. <hkern g1="braceleft.sc" g2="ytilde.sc" k="16" />
  3937. <hkern g1="braceleft.sc" g2="ymacron.sc" k="16" />
  3938. <hkern g1="braceleft.sc" g2="ygrave.sc" k="16" />
  3939. <hkern g1="braceleft.sc" g2="ydieresis.sc" k="16" />
  3940. <hkern g1="braceleft.sc" g2="ycircumflex.sc" k="16" />
  3941. <hkern g1="braceleft.sc" g2="yacute.sc" k="16" />
  3942. <hkern g1="braceleft.sc" g2="y.sc" k="16" />
  3943. <hkern g1="braceleft.sc" g2="wgrave.sc" k="22" />
  3944. <hkern g1="braceleft.sc" g2="wdieresis.sc" k="22" />
  3945. <hkern g1="braceleft.sc" g2="wcircumflex.sc" k="22" />
  3946. <hkern g1="braceleft.sc" g2="wacute.sc" k="22" />
  3947. <hkern g1="braceleft.sc" g2="w.sc" k="22" />
  3948. <hkern g1="braceleft.sc" g2="v.sc" k="22" />
  3949. <hkern g1="braceleft.sc" g2="utilde.sc" k="12" />
  3950. <hkern g1="braceleft.sc" g2="uring.sc" k="12" />
  3951. <hkern g1="braceleft.sc" g2="uogonek.sc" k="12" />
  3952. <hkern g1="braceleft.sc" g2="umacron.sc" k="12" />
  3953. <hkern g1="braceleft.sc" g2="uhungarumlaut.sc" k="12" />
  3954. <hkern g1="braceleft.sc" g2="ugrave.sc" k="12" />
  3955. <hkern g1="braceleft.sc" g2="udotbelow.sc" k="12" />
  3956. <hkern g1="braceleft.sc" g2="udieresismacron.sc" k="12" />
  3957. <hkern g1="braceleft.sc" g2="udieresisgrave.sc" k="12" />
  3958. <hkern g1="braceleft.sc" g2="udieresiscaron.sc" k="12" />
  3959. <hkern g1="braceleft.sc" g2="udieresisacute.sc" k="12" />
  3960. <hkern g1="braceleft.sc" g2="udieresis.sc" k="12" />
  3961. <hkern g1="braceleft.sc" g2="ucircumflex.sc" k="12" />
  3962. <hkern g1="braceleft.sc" g2="ucaron.sc" k="12" />
  3963. <hkern g1="braceleft.sc" g2="ubreve.sc" k="12" />
  3964. <hkern g1="braceleft.sc" g2="uacute.sc" k="12" />
  3965. <hkern g1="braceleft.sc" g2="u.sc" k="12" />
  3966. <hkern g1="braceleft.sc" g2="tdotbelow.sc" k="18" />
  3967. <hkern g1="braceleft.sc" g2="tcommaaccent.sc" k="18" />
  3968. <hkern g1="braceleft.sc" g2="tcedilla.sc" k="18" />
  3969. <hkern g1="braceleft.sc" g2="tcaron.sc" k="18" />
  3970. <hkern g1="braceleft.sc" g2="tbar.sc" k="18" />
  3971. <hkern g1="braceleft.sc" g2="t.sc" k="18" />
  3972. <hkern g1="braceleft.sc" g2="germandbls.sc" k="4" />
  3973. <hkern g1="braceleft.sc" g2="sdotbelow.sc" k="22" />
  3974. <hkern g1="braceleft.sc" g2="scommaaccent.sc" k="22" />
  3975. <hkern g1="braceleft.sc" g2="scircumflex.sc" k="22" />
  3976. <hkern g1="braceleft.sc" g2="scedilla.sc" k="22" />
  3977. <hkern g1="braceleft.sc" g2="scaron.sc" k="22" />
  3978. <hkern g1="braceleft.sc" g2="sacute.sc" k="22" />
  3979. <hkern g1="braceleft.sc" g2="s.sc" k="22" />
  3980. <hkern g1="braceleft.sc" g2="rdotbelow.sc" k="4" />
  3981. <hkern g1="braceleft.sc" g2="rcommaaccent.sc" k="4" />
  3982. <hkern g1="braceleft.sc" g2="rcaron.sc" k="4" />
  3983. <hkern g1="braceleft.sc" g2="racute.sc" k="4" />
  3984. <hkern g1="braceleft.sc" g2="r.sc" k="4" />
  3985. <hkern g1="braceleft.sc" g2="q.sc" k="26" />
  3986. <hkern g1="braceleft.sc" g2="thorn.sc" k="4" />
  3987. <hkern g1="braceleft.sc" g2="p.sc" k="4" />
  3988. <hkern g1="braceleft.sc" g2="oe.sc" k="26" />
  3989. <hkern g1="braceleft.sc" g2="otilde.sc" k="26" />
  3990. <hkern g1="braceleft.sc" g2="oslashacute.sc" k="26" />
  3991. <hkern g1="braceleft.sc" g2="oslash.sc" k="26" />
  3992. <hkern g1="braceleft.sc" g2="oogonek.sc" k="26" />
  3993. <hkern g1="braceleft.sc" g2="omacron.sc" k="26" />
  3994. <hkern g1="braceleft.sc" g2="ohungarumlaut.sc" k="26" />
  3995. <hkern g1="braceleft.sc" g2="ograve.sc" k="26" />
  3996. <hkern g1="braceleft.sc" g2="odotbelow.sc" k="26" />
  3997. <hkern g1="braceleft.sc" g2="odieresis.sc" k="26" />
  3998. <hkern g1="braceleft.sc" g2="ocircumflex.sc" k="26" />
  3999. <hkern g1="braceleft.sc" g2="ocaron.sc" k="26" />
  4000. <hkern g1="braceleft.sc" g2="obreve.sc" k="26" />
  4001. <hkern g1="braceleft.sc" g2="oacute.sc" k="26" />
  4002. <hkern g1="braceleft.sc" g2="o.sc" k="26" />
  4003. <hkern g1="braceleft.sc" g2="ntilde.sc" k="4" />
  4004. <hkern g1="braceleft.sc" g2="eng.sc" k="4" />
  4005. <hkern g1="braceleft.sc" g2="ndotaccent.sc" k="4" />
  4006. <hkern g1="braceleft.sc" g2="ncommaaccent.sc" k="4" />
  4007. <hkern g1="braceleft.sc" g2="ncaron.sc" k="4" />
  4008. <hkern g1="braceleft.sc" g2="nacute.sc" k="4" />
  4009. <hkern g1="braceleft.sc" g2="n.sc" k="4" />
  4010. <hkern g1="braceleft.sc" g2="m.sc" k="18" />
  4011. <hkern g1="braceleft.sc" g2="lslash.sc" k="4" />
  4012. <hkern g1="braceleft.sc" g2="ldot.sc" k="4" />
  4013. <hkern g1="braceleft.sc" g2="lcommaaccent.sc" k="4" />
  4014. <hkern g1="braceleft.sc" g2="lcaron.sc" k="4" />
  4015. <hkern g1="braceleft.sc" g2="lacute.sc" k="4" />
  4016. <hkern g1="braceleft.sc" g2="l.sc" k="4" />
  4017. <hkern g1="braceleft.sc" g2="kgreenlandic.sc" k="4" />
  4018. <hkern g1="braceleft.sc" g2="kcommaaccent.sc" k="4" />
  4019. <hkern g1="braceleft.sc" g2="k.sc" k="4" />
  4020. <hkern g1="braceleft.sc" g2="itilde.sc" k="4" />
  4021. <hkern g1="braceleft.sc" g2="iogonek.sc" k="4" />
  4022. <hkern g1="braceleft.sc" g2="imacron.sc" k="4" />
  4023. <hkern g1="braceleft.sc" g2="ij.sc" k="4" />
  4024. <hkern g1="braceleft.sc" g2="igrave.sc" k="4" />
  4025. <hkern g1="braceleft.sc" g2="idotbelow.sc" k="4" />
  4026. <hkern g1="braceleft.sc" g2="idotaccent.sc" k="4" />
  4027. <hkern g1="braceleft.sc" g2="idieresis.sc" k="4" />
  4028. <hkern g1="braceleft.sc" g2="icircumflex.sc" k="4" />
  4029. <hkern g1="braceleft.sc" g2="icaron.sc" k="4" />
  4030. <hkern g1="braceleft.sc" g2="ibreve.sc" k="4" />
  4031. <hkern g1="braceleft.sc" g2="iacute.sc" k="4" />
  4032. <hkern g1="braceleft.sc" g2="dotlessi.sc" k="4" />
  4033. <hkern g1="braceleft.sc" g2="i.sc" k="4" />
  4034. <hkern g1="braceleft.sc" g2="hdotbelow.sc" k="4" />
  4035. <hkern g1="braceleft.sc" g2="hcircumflex.sc" k="4" />
  4036. <hkern g1="braceleft.sc" g2="hbar.sc" k="4" />
  4037. <hkern g1="braceleft.sc" g2="h.sc" k="4" />
  4038. <hkern g1="braceleft.sc" g2="gdotaccent.sc" k="26" />
  4039. <hkern g1="braceleft.sc" g2="gcommaaccent.sc" k="26" />
  4040. <hkern g1="braceleft.sc" g2="gcircumflex.sc" k="26" />
  4041. <hkern g1="braceleft.sc" g2="gcaron.sc" k="26" />
  4042. <hkern g1="braceleft.sc" g2="gbreve.sc" k="26" />
  4043. <hkern g1="braceleft.sc" g2="gacute.sc" k="26" />
  4044. <hkern g1="braceleft.sc" g2="g.sc" k="26" />
  4045. <hkern g1="braceleft.sc" g2="f.sc" k="4" />
  4046. <hkern g1="braceleft.sc" g2="schwa.sc" k="26" />
  4047. <hkern g1="braceleft.sc" g2="etilde.sc" k="4" />
  4048. <hkern g1="braceleft.sc" g2="eogonek.sc" k="4" />
  4049. <hkern g1="braceleft.sc" g2="emacron.sc" k="4" />
  4050. <hkern g1="braceleft.sc" g2="egrave.sc" k="4" />
  4051. <hkern g1="braceleft.sc" g2="edotbelow.sc" k="4" />
  4052. <hkern g1="braceleft.sc" g2="edotaccent.sc" k="4" />
  4053. <hkern g1="braceleft.sc" g2="edieresis.sc" k="4" />
  4054. <hkern g1="braceleft.sc" g2="ecircumflex.sc" k="4" />
  4055. <hkern g1="braceleft.sc" g2="ecaron.sc" k="4" />
  4056. <hkern g1="braceleft.sc" g2="ebreve.sc" k="4" />
  4057. <hkern g1="braceleft.sc" g2="eacute.sc" k="4" />
  4058. <hkern g1="braceleft.sc" g2="e.sc" k="4" />
  4059. <hkern g1="braceleft.sc" g2="ddotbelow.sc" k="4" />
  4060. <hkern g1="braceleft.sc" g2="dcroat.sc" k="4" />
  4061. <hkern g1="braceleft.sc" g2="dcaron.sc" k="4" />
  4062. <hkern g1="braceleft.sc" g2="eth.sc" k="4" />
  4063. <hkern g1="braceleft.sc" g2="d.sc" k="4" />
  4064. <hkern g1="braceleft.sc" g2="cdotaccent.sc" k="26" />
  4065. <hkern g1="braceleft.sc" g2="ccircumflex.sc" k="26" />
  4066. <hkern g1="braceleft.sc" g2="ccedilla.sc" k="26" />
  4067. <hkern g1="braceleft.sc" g2="ccaron.sc" k="26" />
  4068. <hkern g1="braceleft.sc" g2="cacute.sc" k="26" />
  4069. <hkern g1="braceleft.sc" g2="c.sc" k="26" />
  4070. <hkern g1="braceleft.sc" g2="b.sc" k="4" />
  4071. <hkern g1="braceleft.sc" g2="aeacute.sc" k="2" />
  4072. <hkern g1="braceleft.sc" g2="ae.sc" k="2" />
  4073. <hkern g1="braceleft.sc" g2="atilde.sc" k="2" />
  4074. <hkern g1="braceleft.sc" g2="aringacute.sc" k="2" />
  4075. <hkern g1="braceleft.sc" g2="aring.sc" k="2" />
  4076. <hkern g1="braceleft.sc" g2="aogonek.sc" k="2" />
  4077. <hkern g1="braceleft.sc" g2="amacron.sc" k="2" />
  4078. <hkern g1="braceleft.sc" g2="agrave.sc" k="2" />
  4079. <hkern g1="braceleft.sc" g2="adotbelow.sc" k="2" />
  4080. <hkern g1="braceleft.sc" g2="adieresis.sc" k="2" />
  4081. <hkern g1="braceleft.sc" g2="acircumflex.sc" k="2" />
  4082. <hkern g1="braceleft.sc" g2="acaron.sc" k="2" />
  4083. <hkern g1="braceleft.sc" g2="abreve.sc" k="2" />
  4084. <hkern g1="braceleft.sc" g2="aacute.sc" k="2" />
  4085. <hkern g1="braceleft.sc" g2="a.sc" k="2" />
  4086. <hkern g1="braceright.sc" g2="aeacute.sc" k="6" />
  4087. <hkern g1="braceright.sc" g2="ae.sc" k="6" />
  4088. <hkern g1="braceright.sc" g2="atilde.sc" k="6" />
  4089. <hkern g1="braceright.sc" g2="aringacute.sc" k="6" />
  4090. <hkern g1="braceright.sc" g2="aring.sc" k="6" />
  4091. <hkern g1="braceright.sc" g2="aogonek.sc" k="6" />
  4092. <hkern g1="braceright.sc" g2="amacron.sc" k="6" />
  4093. <hkern g1="braceright.sc" g2="agrave.sc" k="6" />
  4094. <hkern g1="braceright.sc" g2="adotbelow.sc" k="6" />
  4095. <hkern g1="braceright.sc" g2="adieresis.sc" k="6" />
  4096. <hkern g1="braceright.sc" g2="acircumflex.sc" k="6" />
  4097. <hkern g1="braceright.sc" g2="acaron.sc" k="6" />
  4098. <hkern g1="braceright.sc" g2="abreve.sc" k="6" />
  4099. <hkern g1="braceright.sc" g2="aacute.sc" k="6" />
  4100. <hkern g1="braceright.sc" g2="a.sc" k="6" />
  4101. <hkern g1="bracketleft.sc" g2="ytilde.sc" k="24" />
  4102. <hkern g1="bracketleft.sc" g2="ymacron.sc" k="24" />
  4103. <hkern g1="bracketleft.sc" g2="ygrave.sc" k="24" />
  4104. <hkern g1="bracketleft.sc" g2="ydieresis.sc" k="24" />
  4105. <hkern g1="bracketleft.sc" g2="ycircumflex.sc" k="24" />
  4106. <hkern g1="bracketleft.sc" g2="yacute.sc" k="24" />
  4107. <hkern g1="bracketleft.sc" g2="y.sc" k="24" />
  4108. <hkern g1="bracketleft.sc" g2="wgrave.sc" k="34" />
  4109. <hkern g1="bracketleft.sc" g2="wdieresis.sc" k="34" />
  4110. <hkern g1="bracketleft.sc" g2="wcircumflex.sc" k="34" />
  4111. <hkern g1="bracketleft.sc" g2="wacute.sc" k="34" />
  4112. <hkern g1="bracketleft.sc" g2="w.sc" k="34" />
  4113. <hkern g1="bracketleft.sc" g2="v.sc" k="34" />
  4114. <hkern g1="bracketleft.sc" g2="utilde.sc" k="24" />
  4115. <hkern g1="bracketleft.sc" g2="uring.sc" k="24" />
  4116. <hkern g1="bracketleft.sc" g2="uogonek.sc" k="24" />
  4117. <hkern g1="bracketleft.sc" g2="umacron.sc" k="24" />
  4118. <hkern g1="bracketleft.sc" g2="uhungarumlaut.sc" k="24" />
  4119. <hkern g1="bracketleft.sc" g2="ugrave.sc" k="24" />
  4120. <hkern g1="bracketleft.sc" g2="udotbelow.sc" k="24" />
  4121. <hkern g1="bracketleft.sc" g2="udieresismacron.sc" k="24" />
  4122. <hkern g1="bracketleft.sc" g2="udieresisgrave.sc" k="24" />
  4123. <hkern g1="bracketleft.sc" g2="udieresiscaron.sc" k="24" />
  4124. <hkern g1="bracketleft.sc" g2="udieresisacute.sc" k="24" />
  4125. <hkern g1="bracketleft.sc" g2="udieresis.sc" k="24" />
  4126. <hkern g1="bracketleft.sc" g2="ucircumflex.sc" k="24" />
  4127. <hkern g1="bracketleft.sc" g2="ucaron.sc" k="24" />
  4128. <hkern g1="bracketleft.sc" g2="ubreve.sc" k="24" />
  4129. <hkern g1="bracketleft.sc" g2="uacute.sc" k="24" />
  4130. <hkern g1="bracketleft.sc" g2="u.sc" k="24" />
  4131. <hkern g1="bracketleft.sc" g2="germandbls.sc" k="8" />
  4132. <hkern g1="bracketleft.sc" g2="sdotbelow.sc" k="16" />
  4133. <hkern g1="bracketleft.sc" g2="scommaaccent.sc" k="16" />
  4134. <hkern g1="bracketleft.sc" g2="scircumflex.sc" k="16" />
  4135. <hkern g1="bracketleft.sc" g2="scedilla.sc" k="16" />
  4136. <hkern g1="bracketleft.sc" g2="scaron.sc" k="16" />
  4137. <hkern g1="bracketleft.sc" g2="sacute.sc" k="16" />
  4138. <hkern g1="bracketleft.sc" g2="s.sc" k="16" />
  4139. <hkern g1="bracketleft.sc" g2="rdotbelow.sc" k="8" />
  4140. <hkern g1="bracketleft.sc" g2="rcommaaccent.sc" k="8" />
  4141. <hkern g1="bracketleft.sc" g2="rcaron.sc" k="8" />
  4142. <hkern g1="bracketleft.sc" g2="racute.sc" k="8" />
  4143. <hkern g1="bracketleft.sc" g2="r.sc" k="8" />
  4144. <hkern g1="bracketleft.sc" g2="q.sc" k="18" />
  4145. <hkern g1="bracketleft.sc" g2="thorn.sc" k="8" />
  4146. <hkern g1="bracketleft.sc" g2="p.sc" k="8" />
  4147. <hkern g1="bracketleft.sc" g2="oe.sc" k="18" />
  4148. <hkern g1="bracketleft.sc" g2="otilde.sc" k="18" />
  4149. <hkern g1="bracketleft.sc" g2="oslashacute.sc" k="18" />
  4150. <hkern g1="bracketleft.sc" g2="oslash.sc" k="18" />
  4151. <hkern g1="bracketleft.sc" g2="oogonek.sc" k="18" />
  4152. <hkern g1="bracketleft.sc" g2="omacron.sc" k="18" />
  4153. <hkern g1="bracketleft.sc" g2="ohungarumlaut.sc" k="18" />
  4154. <hkern g1="bracketleft.sc" g2="ograve.sc" k="18" />
  4155. <hkern g1="bracketleft.sc" g2="odotbelow.sc" k="18" />
  4156. <hkern g1="bracketleft.sc" g2="odieresis.sc" k="18" />
  4157. <hkern g1="bracketleft.sc" g2="ocircumflex.sc" k="18" />
  4158. <hkern g1="bracketleft.sc" g2="ocaron.sc" k="18" />
  4159. <hkern g1="bracketleft.sc" g2="obreve.sc" k="18" />
  4160. <hkern g1="bracketleft.sc" g2="oacute.sc" k="18" />
  4161. <hkern g1="bracketleft.sc" g2="o.sc" k="18" />
  4162. <hkern g1="bracketleft.sc" g2="ntilde.sc" k="8" />
  4163. <hkern g1="bracketleft.sc" g2="eng.sc" k="8" />
  4164. <hkern g1="bracketleft.sc" g2="ndotaccent.sc" k="8" />
  4165. <hkern g1="bracketleft.sc" g2="ncommaaccent.sc" k="8" />
  4166. <hkern g1="bracketleft.sc" g2="ncaron.sc" k="8" />
  4167. <hkern g1="bracketleft.sc" g2="nacute.sc" k="8" />
  4168. <hkern g1="bracketleft.sc" g2="n.sc" k="8" />
  4169. <hkern g1="bracketleft.sc" g2="m.sc" k="14" />
  4170. <hkern g1="bracketleft.sc" g2="lslash.sc" k="8" />
  4171. <hkern g1="bracketleft.sc" g2="ldot.sc" k="8" />
  4172. <hkern g1="bracketleft.sc" g2="lcommaaccent.sc" k="8" />
  4173. <hkern g1="bracketleft.sc" g2="lcaron.sc" k="8" />
  4174. <hkern g1="bracketleft.sc" g2="lacute.sc" k="8" />
  4175. <hkern g1="bracketleft.sc" g2="l.sc" k="8" />
  4176. <hkern g1="bracketleft.sc" g2="kgreenlandic.sc" k="8" />
  4177. <hkern g1="bracketleft.sc" g2="kcommaaccent.sc" k="8" />
  4178. <hkern g1="bracketleft.sc" g2="k.sc" k="8" />
  4179. <hkern g1="bracketleft.sc" g2="itilde.sc" k="8" />
  4180. <hkern g1="bracketleft.sc" g2="iogonek.sc" k="8" />
  4181. <hkern g1="bracketleft.sc" g2="imacron.sc" k="8" />
  4182. <hkern g1="bracketleft.sc" g2="ij.sc" k="8" />
  4183. <hkern g1="bracketleft.sc" g2="igrave.sc" k="8" />
  4184. <hkern g1="bracketleft.sc" g2="idotbelow.sc" k="8" />
  4185. <hkern g1="bracketleft.sc" g2="idotaccent.sc" k="8" />
  4186. <hkern g1="bracketleft.sc" g2="idieresis.sc" k="8" />
  4187. <hkern g1="bracketleft.sc" g2="icircumflex.sc" k="8" />
  4188. <hkern g1="bracketleft.sc" g2="icaron.sc" k="8" />
  4189. <hkern g1="bracketleft.sc" g2="ibreve.sc" k="8" />
  4190. <hkern g1="bracketleft.sc" g2="iacute.sc" k="8" />
  4191. <hkern g1="bracketleft.sc" g2="dotlessi.sc" k="8" />
  4192. <hkern g1="bracketleft.sc" g2="i.sc" k="8" />
  4193. <hkern g1="bracketleft.sc" g2="hdotbelow.sc" k="8" />
  4194. <hkern g1="bracketleft.sc" g2="hcircumflex.sc" k="8" />
  4195. <hkern g1="bracketleft.sc" g2="hbar.sc" k="8" />
  4196. <hkern g1="bracketleft.sc" g2="h.sc" k="8" />
  4197. <hkern g1="bracketleft.sc" g2="gdotaccent.sc" k="18" />
  4198. <hkern g1="bracketleft.sc" g2="gcommaaccent.sc" k="18" />
  4199. <hkern g1="bracketleft.sc" g2="gcircumflex.sc" k="18" />
  4200. <hkern g1="bracketleft.sc" g2="gcaron.sc" k="18" />
  4201. <hkern g1="bracketleft.sc" g2="gbreve.sc" k="18" />
  4202. <hkern g1="bracketleft.sc" g2="gacute.sc" k="18" />
  4203. <hkern g1="bracketleft.sc" g2="g.sc" k="18" />
  4204. <hkern g1="bracketleft.sc" g2="f.sc" k="8" />
  4205. <hkern g1="bracketleft.sc" g2="schwa.sc" k="18" />
  4206. <hkern g1="bracketleft.sc" g2="etilde.sc" k="8" />
  4207. <hkern g1="bracketleft.sc" g2="eogonek.sc" k="8" />
  4208. <hkern g1="bracketleft.sc" g2="emacron.sc" k="8" />
  4209. <hkern g1="bracketleft.sc" g2="egrave.sc" k="8" />
  4210. <hkern g1="bracketleft.sc" g2="edotbelow.sc" k="8" />
  4211. <hkern g1="bracketleft.sc" g2="edotaccent.sc" k="8" />
  4212. <hkern g1="bracketleft.sc" g2="edieresis.sc" k="8" />
  4213. <hkern g1="bracketleft.sc" g2="ecircumflex.sc" k="8" />
  4214. <hkern g1="bracketleft.sc" g2="ecaron.sc" k="8" />
  4215. <hkern g1="bracketleft.sc" g2="ebreve.sc" k="8" />
  4216. <hkern g1="bracketleft.sc" g2="eacute.sc" k="8" />
  4217. <hkern g1="bracketleft.sc" g2="e.sc" k="8" />
  4218. <hkern g1="bracketleft.sc" g2="ddotbelow.sc" k="8" />
  4219. <hkern g1="bracketleft.sc" g2="dcroat.sc" k="8" />
  4220. <hkern g1="bracketleft.sc" g2="dcaron.sc" k="8" />
  4221. <hkern g1="bracketleft.sc" g2="eth.sc" k="8" />
  4222. <hkern g1="bracketleft.sc" g2="d.sc" k="8" />
  4223. <hkern g1="bracketleft.sc" g2="cdotaccent.sc" k="18" />
  4224. <hkern g1="bracketleft.sc" g2="ccircumflex.sc" k="18" />
  4225. <hkern g1="bracketleft.sc" g2="ccedilla.sc" k="18" />
  4226. <hkern g1="bracketleft.sc" g2="ccaron.sc" k="18" />
  4227. <hkern g1="bracketleft.sc" g2="cacute.sc" k="18" />
  4228. <hkern g1="bracketleft.sc" g2="c.sc" k="18" />
  4229. <hkern g1="bracketleft.sc" g2="b.sc" k="8" />
  4230. <hkern g1="bracketleft.sc" g2="aeacute.sc" k="8" />
  4231. <hkern g1="bracketleft.sc" g2="ae.sc" k="8" />
  4232. <hkern g1="bracketleft.sc" g2="atilde.sc" k="8" />
  4233. <hkern g1="bracketleft.sc" g2="aringacute.sc" k="8" />
  4234. <hkern g1="bracketleft.sc" g2="aring.sc" k="8" />
  4235. <hkern g1="bracketleft.sc" g2="aogonek.sc" k="8" />
  4236. <hkern g1="bracketleft.sc" g2="amacron.sc" k="8" />
  4237. <hkern g1="bracketleft.sc" g2="agrave.sc" k="8" />
  4238. <hkern g1="bracketleft.sc" g2="adotbelow.sc" k="8" />
  4239. <hkern g1="bracketleft.sc" g2="adieresis.sc" k="8" />
  4240. <hkern g1="bracketleft.sc" g2="acircumflex.sc" k="8" />
  4241. <hkern g1="bracketleft.sc" g2="acaron.sc" k="8" />
  4242. <hkern g1="bracketleft.sc" g2="abreve.sc" k="8" />
  4243. <hkern g1="bracketleft.sc" g2="aacute.sc" k="8" />
  4244. <hkern g1="bracketleft.sc" g2="a.sc" k="8" />
  4245. <hkern g1="exclamdown.sc" g2="zdotbelow.sc" k="24" />
  4246. <hkern g1="exclamdown.sc" g2="zdotaccent.sc" k="24" />
  4247. <hkern g1="exclamdown.sc" g2="zcaron.sc" k="24" />
  4248. <hkern g1="exclamdown.sc" g2="zacute.sc" k="24" />
  4249. <hkern g1="exclamdown.sc" g2="z.sc" k="24" />
  4250. <hkern g1="exclamdown.sc" g2="ytilde.sc" k="43" />
  4251. <hkern g1="exclamdown.sc" g2="ymacron.sc" k="43" />
  4252. <hkern g1="exclamdown.sc" g2="ygrave.sc" k="43" />
  4253. <hkern g1="exclamdown.sc" g2="ydieresis.sc" k="43" />
  4254. <hkern g1="exclamdown.sc" g2="ycircumflex.sc" k="43" />
  4255. <hkern g1="exclamdown.sc" g2="yacute.sc" k="43" />
  4256. <hkern g1="exclamdown.sc" g2="y.sc" k="43" />
  4257. <hkern g1="exclamdown.sc" g2="x.sc" k="24" />
  4258. <hkern g1="exclamdown.sc" g2="wgrave.sc" k="34" />
  4259. <hkern g1="exclamdown.sc" g2="wdieresis.sc" k="34" />
  4260. <hkern g1="exclamdown.sc" g2="wcircumflex.sc" k="34" />
  4261. <hkern g1="exclamdown.sc" g2="wacute.sc" k="34" />
  4262. <hkern g1="exclamdown.sc" g2="w.sc" k="34" />
  4263. <hkern g1="exclamdown.sc" g2="v.sc" k="34" />
  4264. <hkern g1="exclamdown.sc" g2="utilde.sc" k="36" />
  4265. <hkern g1="exclamdown.sc" g2="uring.sc" k="36" />
  4266. <hkern g1="exclamdown.sc" g2="uogonek.sc" k="36" />
  4267. <hkern g1="exclamdown.sc" g2="umacron.sc" k="36" />
  4268. <hkern g1="exclamdown.sc" g2="uhungarumlaut.sc" k="36" />
  4269. <hkern g1="exclamdown.sc" g2="ugrave.sc" k="36" />
  4270. <hkern g1="exclamdown.sc" g2="udotbelow.sc" k="36" />
  4271. <hkern g1="exclamdown.sc" g2="udieresismacron.sc" k="36" />
  4272. <hkern g1="exclamdown.sc" g2="udieresisgrave.sc" k="36" />
  4273. <hkern g1="exclamdown.sc" g2="udieresiscaron.sc" k="36" />
  4274. <hkern g1="exclamdown.sc" g2="udieresisacute.sc" k="36" />
  4275. <hkern g1="exclamdown.sc" g2="udieresis.sc" k="36" />
  4276. <hkern g1="exclamdown.sc" g2="ucircumflex.sc" k="36" />
  4277. <hkern g1="exclamdown.sc" g2="ucaron.sc" k="36" />
  4278. <hkern g1="exclamdown.sc" g2="ubreve.sc" k="36" />
  4279. <hkern g1="exclamdown.sc" g2="uacute.sc" k="36" />
  4280. <hkern g1="exclamdown.sc" g2="u.sc" k="36" />
  4281. <hkern g1="exclamdown.sc" g2="tdotbelow.sc" k="30" />
  4282. <hkern g1="exclamdown.sc" g2="tcommaaccent.sc" k="30" />
  4283. <hkern g1="exclamdown.sc" g2="tcedilla.sc" k="30" />
  4284. <hkern g1="exclamdown.sc" g2="tcaron.sc" k="30" />
  4285. <hkern g1="exclamdown.sc" g2="tbar.sc" k="30" />
  4286. <hkern g1="exclamdown.sc" g2="t.sc" k="30" />
  4287. <hkern g1="exclamdown.sc" g2="germandbls.sc" k="30" />
  4288. <hkern g1="exclamdown.sc" g2="sdotbelow.sc" k="18" />
  4289. <hkern g1="exclamdown.sc" g2="scommaaccent.sc" k="18" />
  4290. <hkern g1="exclamdown.sc" g2="scircumflex.sc" k="18" />
  4291. <hkern g1="exclamdown.sc" g2="scedilla.sc" k="18" />
  4292. <hkern g1="exclamdown.sc" g2="scaron.sc" k="18" />
  4293. <hkern g1="exclamdown.sc" g2="sacute.sc" k="18" />
  4294. <hkern g1="exclamdown.sc" g2="s.sc" k="18" />
  4295. <hkern g1="exclamdown.sc" g2="rdotbelow.sc" k="30" />
  4296. <hkern g1="exclamdown.sc" g2="rcommaaccent.sc" k="30" />
  4297. <hkern g1="exclamdown.sc" g2="rcaron.sc" k="30" />
  4298. <hkern g1="exclamdown.sc" g2="racute.sc" k="30" />
  4299. <hkern g1="exclamdown.sc" g2="r.sc" k="30" />
  4300. <hkern g1="exclamdown.sc" g2="q.sc" k="26" />
  4301. <hkern g1="exclamdown.sc" g2="thorn.sc" k="30" />
  4302. <hkern g1="exclamdown.sc" g2="p.sc" k="30" />
  4303. <hkern g1="exclamdown.sc" g2="oe.sc" k="26" />
  4304. <hkern g1="exclamdown.sc" g2="otilde.sc" k="26" />
  4305. <hkern g1="exclamdown.sc" g2="oslashacute.sc" k="26" />
  4306. <hkern g1="exclamdown.sc" g2="oslash.sc" k="26" />
  4307. <hkern g1="exclamdown.sc" g2="oogonek.sc" k="26" />
  4308. <hkern g1="exclamdown.sc" g2="omacron.sc" k="26" />
  4309. <hkern g1="exclamdown.sc" g2="ohungarumlaut.sc" k="26" />
  4310. <hkern g1="exclamdown.sc" g2="ograve.sc" k="26" />
  4311. <hkern g1="exclamdown.sc" g2="odotbelow.sc" k="26" />
  4312. <hkern g1="exclamdown.sc" g2="odieresis.sc" k="26" />
  4313. <hkern g1="exclamdown.sc" g2="ocircumflex.sc" k="26" />
  4314. <hkern g1="exclamdown.sc" g2="ocaron.sc" k="26" />
  4315. <hkern g1="exclamdown.sc" g2="obreve.sc" k="26" />
  4316. <hkern g1="exclamdown.sc" g2="oacute.sc" k="26" />
  4317. <hkern g1="exclamdown.sc" g2="o.sc" k="26" />
  4318. <hkern g1="exclamdown.sc" g2="ntilde.sc" k="30" />
  4319. <hkern g1="exclamdown.sc" g2="eng.sc" k="30" />
  4320. <hkern g1="exclamdown.sc" g2="ndotaccent.sc" k="30" />
  4321. <hkern g1="exclamdown.sc" g2="ncommaaccent.sc" k="30" />
  4322. <hkern g1="exclamdown.sc" g2="ncaron.sc" k="30" />
  4323. <hkern g1="exclamdown.sc" g2="nacute.sc" k="30" />
  4324. <hkern g1="exclamdown.sc" g2="n.sc" k="30" />
  4325. <hkern g1="exclamdown.sc" g2="m.sc" k="30" />
  4326. <hkern g1="exclamdown.sc" g2="lslash.sc" k="30" />
  4327. <hkern g1="exclamdown.sc" g2="ldot.sc" k="30" />
  4328. <hkern g1="exclamdown.sc" g2="lcommaaccent.sc" k="30" />
  4329. <hkern g1="exclamdown.sc" g2="lcaron.sc" k="30" />
  4330. <hkern g1="exclamdown.sc" g2="lacute.sc" k="30" />
  4331. <hkern g1="exclamdown.sc" g2="l.sc" k="30" />
  4332. <hkern g1="exclamdown.sc" g2="kgreenlandic.sc" k="30" />
  4333. <hkern g1="exclamdown.sc" g2="kcommaaccent.sc" k="30" />
  4334. <hkern g1="exclamdown.sc" g2="k.sc" k="30" />
  4335. <hkern g1="exclamdown.sc" g2="itilde.sc" k="30" />
  4336. <hkern g1="exclamdown.sc" g2="iogonek.sc" k="30" />
  4337. <hkern g1="exclamdown.sc" g2="imacron.sc" k="30" />
  4338. <hkern g1="exclamdown.sc" g2="ij.sc" k="30" />
  4339. <hkern g1="exclamdown.sc" g2="igrave.sc" k="30" />
  4340. <hkern g1="exclamdown.sc" g2="idotbelow.sc" k="30" />
  4341. <hkern g1="exclamdown.sc" g2="idotaccent.sc" k="30" />
  4342. <hkern g1="exclamdown.sc" g2="idieresis.sc" k="30" />
  4343. <hkern g1="exclamdown.sc" g2="icircumflex.sc" k="30" />
  4344. <hkern g1="exclamdown.sc" g2="icaron.sc" k="30" />
  4345. <hkern g1="exclamdown.sc" g2="ibreve.sc" k="30" />
  4346. <hkern g1="exclamdown.sc" g2="iacute.sc" k="30" />
  4347. <hkern g1="exclamdown.sc" g2="dotlessi.sc" k="30" />
  4348. <hkern g1="exclamdown.sc" g2="i.sc" k="30" />
  4349. <hkern g1="exclamdown.sc" g2="hdotbelow.sc" k="30" />
  4350. <hkern g1="exclamdown.sc" g2="hcircumflex.sc" k="30" />
  4351. <hkern g1="exclamdown.sc" g2="hbar.sc" k="30" />
  4352. <hkern g1="exclamdown.sc" g2="h.sc" k="30" />
  4353. <hkern g1="exclamdown.sc" g2="gdotaccent.sc" k="26" />
  4354. <hkern g1="exclamdown.sc" g2="gcommaaccent.sc" k="26" />
  4355. <hkern g1="exclamdown.sc" g2="gcircumflex.sc" k="26" />
  4356. <hkern g1="exclamdown.sc" g2="gcaron.sc" k="26" />
  4357. <hkern g1="exclamdown.sc" g2="gbreve.sc" k="26" />
  4358. <hkern g1="exclamdown.sc" g2="gacute.sc" k="26" />
  4359. <hkern g1="exclamdown.sc" g2="g.sc" k="26" />
  4360. <hkern g1="exclamdown.sc" g2="f.sc" k="30" />
  4361. <hkern g1="exclamdown.sc" g2="schwa.sc" k="26" />
  4362. <hkern g1="exclamdown.sc" g2="etilde.sc" k="30" />
  4363. <hkern g1="exclamdown.sc" g2="eogonek.sc" k="30" />
  4364. <hkern g1="exclamdown.sc" g2="emacron.sc" k="30" />
  4365. <hkern g1="exclamdown.sc" g2="egrave.sc" k="30" />
  4366. <hkern g1="exclamdown.sc" g2="edotbelow.sc" k="30" />
  4367. <hkern g1="exclamdown.sc" g2="edotaccent.sc" k="30" />
  4368. <hkern g1="exclamdown.sc" g2="edieresis.sc" k="30" />
  4369. <hkern g1="exclamdown.sc" g2="ecircumflex.sc" k="30" />
  4370. <hkern g1="exclamdown.sc" g2="ecaron.sc" k="30" />
  4371. <hkern g1="exclamdown.sc" g2="ebreve.sc" k="30" />
  4372. <hkern g1="exclamdown.sc" g2="eacute.sc" k="30" />
  4373. <hkern g1="exclamdown.sc" g2="e.sc" k="30" />
  4374. <hkern g1="exclamdown.sc" g2="ddotbelow.sc" k="30" />
  4375. <hkern g1="exclamdown.sc" g2="dcroat.sc" k="30" />
  4376. <hkern g1="exclamdown.sc" g2="dcaron.sc" k="30" />
  4377. <hkern g1="exclamdown.sc" g2="eth.sc" k="30" />
  4378. <hkern g1="exclamdown.sc" g2="d.sc" k="30" />
  4379. <hkern g1="exclamdown.sc" g2="cdotaccent.sc" k="26" />
  4380. <hkern g1="exclamdown.sc" g2="ccircumflex.sc" k="26" />
  4381. <hkern g1="exclamdown.sc" g2="ccedilla.sc" k="26" />
  4382. <hkern g1="exclamdown.sc" g2="ccaron.sc" k="26" />
  4383. <hkern g1="exclamdown.sc" g2="cacute.sc" k="26" />
  4384. <hkern g1="exclamdown.sc" g2="c.sc" k="26" />
  4385. <hkern g1="exclamdown.sc" g2="b.sc" k="30" />
  4386. <hkern g1="exclamdown.sc" g2="aeacute.sc" k="28" />
  4387. <hkern g1="exclamdown.sc" g2="ae.sc" k="28" />
  4388. <hkern g1="exclamdown.sc" g2="atilde.sc" k="28" />
  4389. <hkern g1="exclamdown.sc" g2="aringacute.sc" k="28" />
  4390. <hkern g1="exclamdown.sc" g2="aring.sc" k="28" />
  4391. <hkern g1="exclamdown.sc" g2="aogonek.sc" k="28" />
  4392. <hkern g1="exclamdown.sc" g2="amacron.sc" k="28" />
  4393. <hkern g1="exclamdown.sc" g2="agrave.sc" k="28" />
  4394. <hkern g1="exclamdown.sc" g2="adotbelow.sc" k="28" />
  4395. <hkern g1="exclamdown.sc" g2="adieresis.sc" k="28" />
  4396. <hkern g1="exclamdown.sc" g2="acircumflex.sc" k="28" />
  4397. <hkern g1="exclamdown.sc" g2="acaron.sc" k="28" />
  4398. <hkern g1="exclamdown.sc" g2="abreve.sc" k="28" />
  4399. <hkern g1="exclamdown.sc" g2="aacute.sc" k="28" />
  4400. <hkern g1="exclamdown.sc" g2="a.sc" k="28" />
  4401. <hkern g1="question.sc" g2="aeacute.sc" k="-4" />
  4402. <hkern g1="question.sc" g2="ae.sc" k="-4" />
  4403. <hkern g1="question.sc" g2="atilde.sc" k="-4" />
  4404. <hkern g1="question.sc" g2="aringacute.sc" k="-4" />
  4405. <hkern g1="question.sc" g2="aring.sc" k="-4" />
  4406. <hkern g1="question.sc" g2="aogonek.sc" k="-4" />
  4407. <hkern g1="question.sc" g2="amacron.sc" k="-4" />
  4408. <hkern g1="question.sc" g2="agrave.sc" k="-4" />
  4409. <hkern g1="question.sc" g2="adotbelow.sc" k="-4" />
  4410. <hkern g1="question.sc" g2="adieresis.sc" k="-4" />
  4411. <hkern g1="question.sc" g2="acircumflex.sc" k="-4" />
  4412. <hkern g1="question.sc" g2="acaron.sc" k="-4" />
  4413. <hkern g1="question.sc" g2="abreve.sc" k="-4" />
  4414. <hkern g1="question.sc" g2="aacute.sc" k="-4" />
  4415. <hkern g1="question.sc" g2="a.sc" k="-4" />
  4416. <hkern g1="questiondown.sc" g2="zdotbelow.sc" k="12" />
  4417. <hkern g1="questiondown.sc" g2="zdotaccent.sc" k="12" />
  4418. <hkern g1="questiondown.sc" g2="zcaron.sc" k="12" />
  4419. <hkern g1="questiondown.sc" g2="zacute.sc" k="12" />
  4420. <hkern g1="questiondown.sc" g2="z.sc" k="12" />
  4421. <hkern g1="questiondown.sc" g2="ytilde.sc" k="58" />
  4422. <hkern g1="questiondown.sc" g2="ymacron.sc" k="58" />
  4423. <hkern g1="questiondown.sc" g2="ygrave.sc" k="58" />
  4424. <hkern g1="questiondown.sc" g2="ydieresis.sc" k="58" />
  4425. <hkern g1="questiondown.sc" g2="ycircumflex.sc" k="58" />
  4426. <hkern g1="questiondown.sc" g2="yacute.sc" k="58" />
  4427. <hkern g1="questiondown.sc" g2="y.sc" k="58" />
  4428. <hkern g1="questiondown.sc" g2="wgrave.sc" k="48" />
  4429. <hkern g1="questiondown.sc" g2="wdieresis.sc" k="48" />
  4430. <hkern g1="questiondown.sc" g2="wcircumflex.sc" k="48" />
  4431. <hkern g1="questiondown.sc" g2="wacute.sc" k="48" />
  4432. <hkern g1="questiondown.sc" g2="w.sc" k="48" />
  4433. <hkern g1="questiondown.sc" g2="v.sc" k="48" />
  4434. <hkern g1="questiondown.sc" g2="utilde.sc" k="28" />
  4435. <hkern g1="questiondown.sc" g2="uring.sc" k="28" />
  4436. <hkern g1="questiondown.sc" g2="uogonek.sc" k="28" />
  4437. <hkern g1="questiondown.sc" g2="umacron.sc" k="28" />
  4438. <hkern g1="questiondown.sc" g2="uhungarumlaut.sc" k="28" />
  4439. <hkern g1="questiondown.sc" g2="ugrave.sc" k="28" />
  4440. <hkern g1="questiondown.sc" g2="udotbelow.sc" k="28" />
  4441. <hkern g1="questiondown.sc" g2="udieresismacron.sc" k="28" />
  4442. <hkern g1="questiondown.sc" g2="udieresisgrave.sc" k="28" />
  4443. <hkern g1="questiondown.sc" g2="udieresiscaron.sc" k="28" />
  4444. <hkern g1="questiondown.sc" g2="udieresisacute.sc" k="28" />
  4445. <hkern g1="questiondown.sc" g2="udieresis.sc" k="28" />
  4446. <hkern g1="questiondown.sc" g2="ucircumflex.sc" k="28" />
  4447. <hkern g1="questiondown.sc" g2="ucaron.sc" k="28" />
  4448. <hkern g1="questiondown.sc" g2="ubreve.sc" k="28" />
  4449. <hkern g1="questiondown.sc" g2="uacute.sc" k="28" />
  4450. <hkern g1="questiondown.sc" g2="u.sc" k="28" />
  4451. <hkern g1="questiondown.sc" g2="tdotbelow.sc" k="58" />
  4452. <hkern g1="questiondown.sc" g2="tcommaaccent.sc" k="58" />
  4453. <hkern g1="questiondown.sc" g2="tcedilla.sc" k="58" />
  4454. <hkern g1="questiondown.sc" g2="tcaron.sc" k="58" />
  4455. <hkern g1="questiondown.sc" g2="tbar.sc" k="58" />
  4456. <hkern g1="questiondown.sc" g2="t.sc" k="58" />
  4457. <hkern g1="questiondown.sc" g2="sdotbelow.sc" k="22" />
  4458. <hkern g1="questiondown.sc" g2="scommaaccent.sc" k="22" />
  4459. <hkern g1="questiondown.sc" g2="scircumflex.sc" k="22" />
  4460. <hkern g1="questiondown.sc" g2="scedilla.sc" k="22" />
  4461. <hkern g1="questiondown.sc" g2="scaron.sc" k="22" />
  4462. <hkern g1="questiondown.sc" g2="sacute.sc" k="22" />
  4463. <hkern g1="questiondown.sc" g2="s.sc" k="22" />
  4464. <hkern g1="questiondown.sc" g2="q.sc" k="20" />
  4465. <hkern g1="questiondown.sc" g2="oe.sc" k="20" />
  4466. <hkern g1="questiondown.sc" g2="otilde.sc" k="20" />
  4467. <hkern g1="questiondown.sc" g2="oslashacute.sc" k="20" />
  4468. <hkern g1="questiondown.sc" g2="oslash.sc" k="20" />
  4469. <hkern g1="questiondown.sc" g2="oogonek.sc" k="20" />
  4470. <hkern g1="questiondown.sc" g2="omacron.sc" k="20" />
  4471. <hkern g1="questiondown.sc" g2="ohungarumlaut.sc" k="20" />
  4472. <hkern g1="questiondown.sc" g2="ograve.sc" k="20" />
  4473. <hkern g1="questiondown.sc" g2="odotbelow.sc" k="20" />
  4474. <hkern g1="questiondown.sc" g2="odieresis.sc" k="20" />
  4475. <hkern g1="questiondown.sc" g2="ocircumflex.sc" k="20" />
  4476. <hkern g1="questiondown.sc" g2="ocaron.sc" k="20" />
  4477. <hkern g1="questiondown.sc" g2="obreve.sc" k="20" />
  4478. <hkern g1="questiondown.sc" g2="oacute.sc" k="20" />
  4479. <hkern g1="questiondown.sc" g2="o.sc" k="20" />
  4480. <hkern g1="questiondown.sc" g2="m.sc" k="16" />
  4481. <hkern g1="questiondown.sc" g2="gdotaccent.sc" k="20" />
  4482. <hkern g1="questiondown.sc" g2="gcommaaccent.sc" k="20" />
  4483. <hkern g1="questiondown.sc" g2="gcircumflex.sc" k="20" />
  4484. <hkern g1="questiondown.sc" g2="gcaron.sc" k="20" />
  4485. <hkern g1="questiondown.sc" g2="gbreve.sc" k="20" />
  4486. <hkern g1="questiondown.sc" g2="gacute.sc" k="20" />
  4487. <hkern g1="questiondown.sc" g2="g.sc" k="20" />
  4488. <hkern g1="questiondown.sc" g2="schwa.sc" k="20" />
  4489. <hkern g1="questiondown.sc" g2="cdotaccent.sc" k="20" />
  4490. <hkern g1="questiondown.sc" g2="ccircumflex.sc" k="20" />
  4491. <hkern g1="questiondown.sc" g2="ccedilla.sc" k="20" />
  4492. <hkern g1="questiondown.sc" g2="ccaron.sc" k="20" />
  4493. <hkern g1="questiondown.sc" g2="cacute.sc" k="20" />
  4494. <hkern g1="questiondown.sc" g2="c.sc" k="20" />
  4495. <hkern g1="periodcentered.sc" g2="zdotbelow.sc" k="24" />
  4496. <hkern g1="periodcentered.sc" g2="zdotaccent.sc" k="24" />
  4497. <hkern g1="periodcentered.sc" g2="zcaron.sc" k="24" />
  4498. <hkern g1="periodcentered.sc" g2="zacute.sc" k="24" />
  4499. <hkern g1="periodcentered.sc" g2="z.sc" k="24" />
  4500. <hkern g1="periodcentered.sc" g2="wgrave.sc" k="22" />
  4501. <hkern g1="periodcentered.sc" g2="wdieresis.sc" k="22" />
  4502. <hkern g1="periodcentered.sc" g2="wcircumflex.sc" k="22" />
  4503. <hkern g1="periodcentered.sc" g2="wacute.sc" k="22" />
  4504. <hkern g1="periodcentered.sc" g2="w.sc" k="22" />
  4505. <hkern g1="periodcentered.sc" g2="v.sc" k="22" />
  4506. <hkern g1="periodcentered.sc" g2="tdotbelow.sc" k="50" />
  4507. <hkern g1="periodcentered.sc" g2="tcommaaccent.sc" k="50" />
  4508. <hkern g1="periodcentered.sc" g2="tcedilla.sc" k="50" />
  4509. <hkern g1="periodcentered.sc" g2="tcaron.sc" k="50" />
  4510. <hkern g1="periodcentered.sc" g2="tbar.sc" k="50" />
  4511. <hkern g1="periodcentered.sc" g2="t.sc" k="50" />
  4512. <hkern g1="periodcentered.sc" g2="sdotbelow.sc" k="20" />
  4513. <hkern g1="periodcentered.sc" g2="scommaaccent.sc" k="20" />
  4514. <hkern g1="periodcentered.sc" g2="scircumflex.sc" k="20" />
  4515. <hkern g1="periodcentered.sc" g2="scedilla.sc" k="20" />
  4516. <hkern g1="periodcentered.sc" g2="scaron.sc" k="20" />
  4517. <hkern g1="periodcentered.sc" g2="sacute.sc" k="20" />
  4518. <hkern g1="periodcentered.sc" g2="s.sc" k="20" />
  4519. <hkern g1="periodcentered.sc" g2="q.sc" k="12" />
  4520. <hkern g1="periodcentered.sc" g2="oe.sc" k="12" />
  4521. <hkern g1="periodcentered.sc" g2="otilde.sc" k="12" />
  4522. <hkern g1="periodcentered.sc" g2="oslashacute.sc" k="12" />
  4523. <hkern g1="periodcentered.sc" g2="oslash.sc" k="12" />
  4524. <hkern g1="periodcentered.sc" g2="oogonek.sc" k="12" />
  4525. <hkern g1="periodcentered.sc" g2="omacron.sc" k="12" />
  4526. <hkern g1="periodcentered.sc" g2="ohungarumlaut.sc" k="12" />
  4527. <hkern g1="periodcentered.sc" g2="ograve.sc" k="12" />
  4528. <hkern g1="periodcentered.sc" g2="odotbelow.sc" k="12" />
  4529. <hkern g1="periodcentered.sc" g2="odieresis.sc" k="12" />
  4530. <hkern g1="periodcentered.sc" g2="ocircumflex.sc" k="12" />
  4531. <hkern g1="periodcentered.sc" g2="ocaron.sc" k="12" />
  4532. <hkern g1="periodcentered.sc" g2="obreve.sc" k="12" />
  4533. <hkern g1="periodcentered.sc" g2="oacute.sc" k="12" />
  4534. <hkern g1="periodcentered.sc" g2="o.sc" k="12" />
  4535. <hkern g1="periodcentered.sc" g2="gdotaccent.sc" k="12" />
  4536. <hkern g1="periodcentered.sc" g2="gcommaaccent.sc" k="12" />
  4537. <hkern g1="periodcentered.sc" g2="gcircumflex.sc" k="12" />
  4538. <hkern g1="periodcentered.sc" g2="gcaron.sc" k="12" />
  4539. <hkern g1="periodcentered.sc" g2="gbreve.sc" k="12" />
  4540. <hkern g1="periodcentered.sc" g2="gacute.sc" k="12" />
  4541. <hkern g1="periodcentered.sc" g2="g.sc" k="12" />
  4542. <hkern g1="periodcentered.sc" g2="schwa.sc" k="12" />
  4543. <hkern g1="periodcentered.sc" g2="cdotaccent.sc" k="12" />
  4544. <hkern g1="periodcentered.sc" g2="ccircumflex.sc" k="12" />
  4545. <hkern g1="periodcentered.sc" g2="ccedilla.sc" k="12" />
  4546. <hkern g1="periodcentered.sc" g2="ccaron.sc" k="12" />
  4547. <hkern g1="periodcentered.sc" g2="cacute.sc" k="12" />
  4548. <hkern g1="periodcentered.sc" g2="c.sc" k="12" />
  4549. <hkern g1="periodcentered.sc" g2="aeacute.sc" k="36" />
  4550. <hkern g1="periodcentered.sc" g2="ae.sc" k="36" />
  4551. <hkern g1="periodcentered.sc" g2="atilde.sc" k="36" />
  4552. <hkern g1="periodcentered.sc" g2="aringacute.sc" k="36" />
  4553. <hkern g1="periodcentered.sc" g2="aring.sc" k="36" />
  4554. <hkern g1="periodcentered.sc" g2="aogonek.sc" k="36" />
  4555. <hkern g1="periodcentered.sc" g2="amacron.sc" k="36" />
  4556. <hkern g1="periodcentered.sc" g2="agrave.sc" k="36" />
  4557. <hkern g1="periodcentered.sc" g2="adotbelow.sc" k="36" />
  4558. <hkern g1="periodcentered.sc" g2="adieresis.sc" k="36" />
  4559. <hkern g1="periodcentered.sc" g2="acircumflex.sc" k="36" />
  4560. <hkern g1="periodcentered.sc" g2="acaron.sc" k="36" />
  4561. <hkern g1="periodcentered.sc" g2="abreve.sc" k="36" />
  4562. <hkern g1="periodcentered.sc" g2="aacute.sc" k="36" />
  4563. <hkern g1="periodcentered.sc" g2="a.sc" k="36" />
  4564. <hkern g1="asterisk.sc" g2="germandbls.sc" k="16" />
  4565. <hkern g1="asterisk.sc" g2="sdotbelow.sc" k="26" />
  4566. <hkern g1="asterisk.sc" g2="scommaaccent.sc" k="26" />
  4567. <hkern g1="asterisk.sc" g2="scircumflex.sc" k="26" />
  4568. <hkern g1="asterisk.sc" g2="scedilla.sc" k="26" />
  4569. <hkern g1="asterisk.sc" g2="scaron.sc" k="26" />
  4570. <hkern g1="asterisk.sc" g2="sacute.sc" k="26" />
  4571. <hkern g1="asterisk.sc" g2="s.sc" k="26" />
  4572. <hkern g1="asterisk.sc" g2="rdotbelow.sc" k="16" />
  4573. <hkern g1="asterisk.sc" g2="rcommaaccent.sc" k="16" />
  4574. <hkern g1="asterisk.sc" g2="rcaron.sc" k="16" />
  4575. <hkern g1="asterisk.sc" g2="racute.sc" k="16" />
  4576. <hkern g1="asterisk.sc" g2="r.sc" k="16" />
  4577. <hkern g1="asterisk.sc" g2="q.sc" k="46" />
  4578. <hkern g1="asterisk.sc" g2="thorn.sc" k="16" />
  4579. <hkern g1="asterisk.sc" g2="p.sc" k="16" />
  4580. <hkern g1="asterisk.sc" g2="oe.sc" k="46" />
  4581. <hkern g1="asterisk.sc" g2="otilde.sc" k="46" />
  4582. <hkern g1="asterisk.sc" g2="oslashacute.sc" k="46" />
  4583. <hkern g1="asterisk.sc" g2="oslash.sc" k="46" />
  4584. <hkern g1="asterisk.sc" g2="oogonek.sc" k="46" />
  4585. <hkern g1="asterisk.sc" g2="omacron.sc" k="46" />
  4586. <hkern g1="asterisk.sc" g2="ohungarumlaut.sc" k="46" />
  4587. <hkern g1="asterisk.sc" g2="ograve.sc" k="46" />
  4588. <hkern g1="asterisk.sc" g2="odotbelow.sc" k="46" />
  4589. <hkern g1="asterisk.sc" g2="odieresis.sc" k="46" />
  4590. <hkern g1="asterisk.sc" g2="ocircumflex.sc" k="46" />
  4591. <hkern g1="asterisk.sc" g2="ocaron.sc" k="46" />
  4592. <hkern g1="asterisk.sc" g2="obreve.sc" k="46" />
  4593. <hkern g1="asterisk.sc" g2="oacute.sc" k="46" />
  4594. <hkern g1="asterisk.sc" g2="o.sc" k="46" />
  4595. <hkern g1="asterisk.sc" g2="ntilde.sc" k="16" />
  4596. <hkern g1="asterisk.sc" g2="eng.sc" k="16" />
  4597. <hkern g1="asterisk.sc" g2="ndotaccent.sc" k="16" />
  4598. <hkern g1="asterisk.sc" g2="ncommaaccent.sc" k="16" />
  4599. <hkern g1="asterisk.sc" g2="ncaron.sc" k="16" />
  4600. <hkern g1="asterisk.sc" g2="nacute.sc" k="16" />
  4601. <hkern g1="asterisk.sc" g2="n.sc" k="16" />
  4602. <hkern g1="asterisk.sc" g2="m.sc" k="22" />
  4603. <hkern g1="asterisk.sc" g2="lslash.sc" k="16" />
  4604. <hkern g1="asterisk.sc" g2="ldot.sc" k="16" />
  4605. <hkern g1="asterisk.sc" g2="lcommaaccent.sc" k="16" />
  4606. <hkern g1="asterisk.sc" g2="lcaron.sc" k="16" />
  4607. <hkern g1="asterisk.sc" g2="lacute.sc" k="16" />
  4608. <hkern g1="asterisk.sc" g2="l.sc" k="16" />
  4609. <hkern g1="asterisk.sc" g2="kgreenlandic.sc" k="16" />
  4610. <hkern g1="asterisk.sc" g2="kcommaaccent.sc" k="16" />
  4611. <hkern g1="asterisk.sc" g2="k.sc" k="16" />
  4612. <hkern g1="asterisk.sc" g2="itilde.sc" k="16" />
  4613. <hkern g1="asterisk.sc" g2="iogonek.sc" k="16" />
  4614. <hkern g1="asterisk.sc" g2="imacron.sc" k="16" />
  4615. <hkern g1="asterisk.sc" g2="ij.sc" k="16" />
  4616. <hkern g1="asterisk.sc" g2="igrave.sc" k="16" />
  4617. <hkern g1="asterisk.sc" g2="idotbelow.sc" k="16" />
  4618. <hkern g1="asterisk.sc" g2="idotaccent.sc" k="16" />
  4619. <hkern g1="asterisk.sc" g2="idieresis.sc" k="16" />
  4620. <hkern g1="asterisk.sc" g2="icircumflex.sc" k="16" />
  4621. <hkern g1="asterisk.sc" g2="icaron.sc" k="16" />
  4622. <hkern g1="asterisk.sc" g2="ibreve.sc" k="16" />
  4623. <hkern g1="asterisk.sc" g2="iacute.sc" k="16" />
  4624. <hkern g1="asterisk.sc" g2="dotlessi.sc" k="16" />
  4625. <hkern g1="asterisk.sc" g2="i.sc" k="16" />
  4626. <hkern g1="asterisk.sc" g2="hdotbelow.sc" k="16" />
  4627. <hkern g1="asterisk.sc" g2="hcircumflex.sc" k="16" />
  4628. <hkern g1="asterisk.sc" g2="hbar.sc" k="16" />
  4629. <hkern g1="asterisk.sc" g2="h.sc" k="16" />
  4630. <hkern g1="asterisk.sc" g2="gdotaccent.sc" k="46" />
  4631. <hkern g1="asterisk.sc" g2="gcommaaccent.sc" k="46" />
  4632. <hkern g1="asterisk.sc" g2="gcircumflex.sc" k="46" />
  4633. <hkern g1="asterisk.sc" g2="gcaron.sc" k="46" />
  4634. <hkern g1="asterisk.sc" g2="gbreve.sc" k="46" />
  4635. <hkern g1="asterisk.sc" g2="gacute.sc" k="46" />
  4636. <hkern g1="asterisk.sc" g2="g.sc" k="46" />
  4637. <hkern g1="asterisk.sc" g2="f.sc" k="16" />
  4638. <hkern g1="asterisk.sc" g2="schwa.sc" k="46" />
  4639. <hkern g1="asterisk.sc" g2="etilde.sc" k="16" />
  4640. <hkern g1="asterisk.sc" g2="eogonek.sc" k="16" />
  4641. <hkern g1="asterisk.sc" g2="emacron.sc" k="16" />
  4642. <hkern g1="asterisk.sc" g2="egrave.sc" k="16" />
  4643. <hkern g1="asterisk.sc" g2="edotbelow.sc" k="16" />
  4644. <hkern g1="asterisk.sc" g2="edotaccent.sc" k="16" />
  4645. <hkern g1="asterisk.sc" g2="edieresis.sc" k="16" />
  4646. <hkern g1="asterisk.sc" g2="ecircumflex.sc" k="16" />
  4647. <hkern g1="asterisk.sc" g2="ecaron.sc" k="16" />
  4648. <hkern g1="asterisk.sc" g2="ebreve.sc" k="16" />
  4649. <hkern g1="asterisk.sc" g2="eacute.sc" k="16" />
  4650. <hkern g1="asterisk.sc" g2="e.sc" k="16" />
  4651. <hkern g1="asterisk.sc" g2="ddotbelow.sc" k="16" />
  4652. <hkern g1="asterisk.sc" g2="dcroat.sc" k="16" />
  4653. <hkern g1="asterisk.sc" g2="dcaron.sc" k="16" />
  4654. <hkern g1="asterisk.sc" g2="eth.sc" k="16" />
  4655. <hkern g1="asterisk.sc" g2="d.sc" k="16" />
  4656. <hkern g1="asterisk.sc" g2="cdotaccent.sc" k="46" />
  4657. <hkern g1="asterisk.sc" g2="ccircumflex.sc" k="46" />
  4658. <hkern g1="asterisk.sc" g2="ccedilla.sc" k="46" />
  4659. <hkern g1="asterisk.sc" g2="ccaron.sc" k="46" />
  4660. <hkern g1="asterisk.sc" g2="cacute.sc" k="46" />
  4661. <hkern g1="asterisk.sc" g2="c.sc" k="46" />
  4662. <hkern g1="asterisk.sc" g2="b.sc" k="16" />
  4663. <hkern g1="asterisk.sc" g2="aeacute.sc" k="88" />
  4664. <hkern g1="asterisk.sc" g2="ae.sc" k="88" />
  4665. <hkern g1="asterisk.sc" g2="atilde.sc" k="88" />
  4666. <hkern g1="asterisk.sc" g2="aringacute.sc" k="88" />
  4667. <hkern g1="asterisk.sc" g2="aring.sc" k="88" />
  4668. <hkern g1="asterisk.sc" g2="aogonek.sc" k="88" />
  4669. <hkern g1="asterisk.sc" g2="amacron.sc" k="88" />
  4670. <hkern g1="asterisk.sc" g2="agrave.sc" k="88" />
  4671. <hkern g1="asterisk.sc" g2="adotbelow.sc" k="88" />
  4672. <hkern g1="asterisk.sc" g2="adieresis.sc" k="88" />
  4673. <hkern g1="asterisk.sc" g2="acircumflex.sc" k="88" />
  4674. <hkern g1="asterisk.sc" g2="acaron.sc" k="88" />
  4675. <hkern g1="asterisk.sc" g2="abreve.sc" k="88" />
  4676. <hkern g1="asterisk.sc" g2="aacute.sc" k="88" />
  4677. <hkern g1="asterisk.sc" g2="a.sc" k="88" />
  4678. <hkern g1="quotedbl.sc" g2="zdotbelow.sc" k="12" />
  4679. <hkern g1="quotedbl.sc" g2="zdotaccent.sc" k="12" />
  4680. <hkern g1="quotedbl.sc" g2="zcaron.sc" k="12" />
  4681. <hkern g1="quotedbl.sc" g2="zacute.sc" k="12" />
  4682. <hkern g1="quotedbl.sc" g2="z.sc" k="12" />
  4683. <hkern g1="quotedbl.sc" g2="wgrave.sc" k="-8" />
  4684. <hkern g1="quotedbl.sc" g2="wdieresis.sc" k="-8" />
  4685. <hkern g1="quotedbl.sc" g2="wcircumflex.sc" k="-8" />
  4686. <hkern g1="quotedbl.sc" g2="wacute.sc" k="-8" />
  4687. <hkern g1="quotedbl.sc" g2="w.sc" k="-8" />
  4688. <hkern g1="quotedbl.sc" g2="v.sc" k="-8" />
  4689. <hkern g1="quotedbl.sc" g2="germandbls.sc" k="12" />
  4690. <hkern g1="quotedbl.sc" g2="rdotbelow.sc" k="12" />
  4691. <hkern g1="quotedbl.sc" g2="rcommaaccent.sc" k="12" />
  4692. <hkern g1="quotedbl.sc" g2="rcaron.sc" k="12" />
  4693. <hkern g1="quotedbl.sc" g2="racute.sc" k="12" />
  4694. <hkern g1="quotedbl.sc" g2="r.sc" k="12" />
  4695. <hkern g1="quotedbl.sc" g2="q.sc" k="24" />
  4696. <hkern g1="quotedbl.sc" g2="thorn.sc" k="12" />
  4697. <hkern g1="quotedbl.sc" g2="p.sc" k="12" />
  4698. <hkern g1="quotedbl.sc" g2="oe.sc" k="24" />
  4699. <hkern g1="quotedbl.sc" g2="otilde.sc" k="24" />
  4700. <hkern g1="quotedbl.sc" g2="oslashacute.sc" k="24" />
  4701. <hkern g1="quotedbl.sc" g2="oslash.sc" k="24" />
  4702. <hkern g1="quotedbl.sc" g2="oogonek.sc" k="24" />
  4703. <hkern g1="quotedbl.sc" g2="omacron.sc" k="24" />
  4704. <hkern g1="quotedbl.sc" g2="ohungarumlaut.sc" k="24" />
  4705. <hkern g1="quotedbl.sc" g2="ograve.sc" k="24" />
  4706. <hkern g1="quotedbl.sc" g2="odotbelow.sc" k="24" />
  4707. <hkern g1="quotedbl.sc" g2="odieresis.sc" k="24" />
  4708. <hkern g1="quotedbl.sc" g2="ocircumflex.sc" k="24" />
  4709. <hkern g1="quotedbl.sc" g2="ocaron.sc" k="24" />
  4710. <hkern g1="quotedbl.sc" g2="obreve.sc" k="24" />
  4711. <hkern g1="quotedbl.sc" g2="oacute.sc" k="24" />
  4712. <hkern g1="quotedbl.sc" g2="o.sc" k="24" />
  4713. <hkern g1="quotedbl.sc" g2="ntilde.sc" k="12" />
  4714. <hkern g1="quotedbl.sc" g2="eng.sc" k="12" />
  4715. <hkern g1="quotedbl.sc" g2="ndotaccent.sc" k="12" />
  4716. <hkern g1="quotedbl.sc" g2="ncommaaccent.sc" k="12" />
  4717. <hkern g1="quotedbl.sc" g2="ncaron.sc" k="12" />
  4718. <hkern g1="quotedbl.sc" g2="nacute.sc" k="12" />
  4719. <hkern g1="quotedbl.sc" g2="n.sc" k="12" />
  4720. <hkern g1="quotedbl.sc" g2="m.sc" k="44" />
  4721. <hkern g1="quotedbl.sc" g2="lslash.sc" k="12" />
  4722. <hkern g1="quotedbl.sc" g2="ldot.sc" k="12" />
  4723. <hkern g1="quotedbl.sc" g2="lcommaaccent.sc" k="12" />
  4724. <hkern g1="quotedbl.sc" g2="lcaron.sc" k="12" />
  4725. <hkern g1="quotedbl.sc" g2="lacute.sc" k="12" />
  4726. <hkern g1="quotedbl.sc" g2="l.sc" k="12" />
  4727. <hkern g1="quotedbl.sc" g2="kgreenlandic.sc" k="12" />
  4728. <hkern g1="quotedbl.sc" g2="kcommaaccent.sc" k="12" />
  4729. <hkern g1="quotedbl.sc" g2="k.sc" k="12" />
  4730. <hkern g1="quotedbl.sc" g2="itilde.sc" k="12" />
  4731. <hkern g1="quotedbl.sc" g2="iogonek.sc" k="12" />
  4732. <hkern g1="quotedbl.sc" g2="imacron.sc" k="12" />
  4733. <hkern g1="quotedbl.sc" g2="ij.sc" k="12" />
  4734. <hkern g1="quotedbl.sc" g2="igrave.sc" k="12" />
  4735. <hkern g1="quotedbl.sc" g2="idotbelow.sc" k="12" />
  4736. <hkern g1="quotedbl.sc" g2="idotaccent.sc" k="12" />
  4737. <hkern g1="quotedbl.sc" g2="idieresis.sc" k="12" />
  4738. <hkern g1="quotedbl.sc" g2="icircumflex.sc" k="12" />
  4739. <hkern g1="quotedbl.sc" g2="icaron.sc" k="12" />
  4740. <hkern g1="quotedbl.sc" g2="ibreve.sc" k="12" />
  4741. <hkern g1="quotedbl.sc" g2="iacute.sc" k="12" />
  4742. <hkern g1="quotedbl.sc" g2="dotlessi.sc" k="12" />
  4743. <hkern g1="quotedbl.sc" g2="i.sc" k="12" />
  4744. <hkern g1="quotedbl.sc" g2="hdotbelow.sc" k="12" />
  4745. <hkern g1="quotedbl.sc" g2="hcircumflex.sc" k="12" />
  4746. <hkern g1="quotedbl.sc" g2="hbar.sc" k="12" />
  4747. <hkern g1="quotedbl.sc" g2="h.sc" k="12" />
  4748. <hkern g1="quotedbl.sc" g2="gdotaccent.sc" k="24" />
  4749. <hkern g1="quotedbl.sc" g2="gcommaaccent.sc" k="24" />
  4750. <hkern g1="quotedbl.sc" g2="gcircumflex.sc" k="24" />
  4751. <hkern g1="quotedbl.sc" g2="gcaron.sc" k="24" />
  4752. <hkern g1="quotedbl.sc" g2="gbreve.sc" k="24" />
  4753. <hkern g1="quotedbl.sc" g2="gacute.sc" k="24" />
  4754. <hkern g1="quotedbl.sc" g2="g.sc" k="24" />
  4755. <hkern g1="quotedbl.sc" g2="f.sc" k="12" />
  4756. <hkern g1="quotedbl.sc" g2="schwa.sc" k="24" />
  4757. <hkern g1="quotedbl.sc" g2="etilde.sc" k="12" />
  4758. <hkern g1="quotedbl.sc" g2="eogonek.sc" k="12" />
  4759. <hkern g1="quotedbl.sc" g2="emacron.sc" k="12" />
  4760. <hkern g1="quotedbl.sc" g2="egrave.sc" k="12" />
  4761. <hkern g1="quotedbl.sc" g2="edotbelow.sc" k="12" />
  4762. <hkern g1="quotedbl.sc" g2="edotaccent.sc" k="12" />
  4763. <hkern g1="quotedbl.sc" g2="edieresis.sc" k="12" />
  4764. <hkern g1="quotedbl.sc" g2="ecircumflex.sc" k="12" />
  4765. <hkern g1="quotedbl.sc" g2="ecaron.sc" k="12" />
  4766. <hkern g1="quotedbl.sc" g2="ebreve.sc" k="12" />
  4767. <hkern g1="quotedbl.sc" g2="eacute.sc" k="12" />
  4768. <hkern g1="quotedbl.sc" g2="e.sc" k="12" />
  4769. <hkern g1="quotedbl.sc" g2="ddotbelow.sc" k="12" />
  4770. <hkern g1="quotedbl.sc" g2="dcroat.sc" k="12" />
  4771. <hkern g1="quotedbl.sc" g2="dcaron.sc" k="12" />
  4772. <hkern g1="quotedbl.sc" g2="eth.sc" k="12" />
  4773. <hkern g1="quotedbl.sc" g2="d.sc" k="12" />
  4774. <hkern g1="quotedbl.sc" g2="cdotaccent.sc" k="24" />
  4775. <hkern g1="quotedbl.sc" g2="ccircumflex.sc" k="24" />
  4776. <hkern g1="quotedbl.sc" g2="ccedilla.sc" k="24" />
  4777. <hkern g1="quotedbl.sc" g2="ccaron.sc" k="24" />
  4778. <hkern g1="quotedbl.sc" g2="cacute.sc" k="24" />
  4779. <hkern g1="quotedbl.sc" g2="c.sc" k="24" />
  4780. <hkern g1="quotedbl.sc" g2="b.sc" k="12" />
  4781. <hkern g1="quotedbl.sc" g2="aeacute.sc" k="44" />
  4782. <hkern g1="quotedbl.sc" g2="ae.sc" k="44" />
  4783. <hkern g1="quotedbl.sc" g2="atilde.sc" k="44" />
  4784. <hkern g1="quotedbl.sc" g2="aringacute.sc" k="44" />
  4785. <hkern g1="quotedbl.sc" g2="aring.sc" k="44" />
  4786. <hkern g1="quotedbl.sc" g2="aogonek.sc" k="44" />
  4787. <hkern g1="quotedbl.sc" g2="amacron.sc" k="44" />
  4788. <hkern g1="quotedbl.sc" g2="agrave.sc" k="44" />
  4789. <hkern g1="quotedbl.sc" g2="adotbelow.sc" k="44" />
  4790. <hkern g1="quotedbl.sc" g2="adieresis.sc" k="44" />
  4791. <hkern g1="quotedbl.sc" g2="acircumflex.sc" k="44" />
  4792. <hkern g1="quotedbl.sc" g2="acaron.sc" k="44" />
  4793. <hkern g1="quotedbl.sc" g2="abreve.sc" k="44" />
  4794. <hkern g1="quotedbl.sc" g2="aacute.sc" k="44" />
  4795. <hkern g1="quotedbl.sc" g2="a.sc" k="44" />
  4796. <hkern g1="quotesingle.sc" g2="germandbls.sc" k="12" />
  4797. <hkern g1="quotesingle.sc" g2="rdotbelow.sc" k="12" />
  4798. <hkern g1="quotesingle.sc" g2="rcommaaccent.sc" k="12" />
  4799. <hkern g1="quotesingle.sc" g2="rcaron.sc" k="12" />
  4800. <hkern g1="quotesingle.sc" g2="racute.sc" k="12" />
  4801. <hkern g1="quotesingle.sc" g2="r.sc" k="12" />
  4802. <hkern g1="quotesingle.sc" g2="q.sc" k="30" />
  4803. <hkern g1="quotesingle.sc" g2="thorn.sc" k="12" />
  4804. <hkern g1="quotesingle.sc" g2="p.sc" k="12" />
  4805. <hkern g1="quotesingle.sc" g2="oe.sc" k="30" />
  4806. <hkern g1="quotesingle.sc" g2="otilde.sc" k="30" />
  4807. <hkern g1="quotesingle.sc" g2="oslashacute.sc" k="30" />
  4808. <hkern g1="quotesingle.sc" g2="oslash.sc" k="30" />
  4809. <hkern g1="quotesingle.sc" g2="oogonek.sc" k="30" />
  4810. <hkern g1="quotesingle.sc" g2="omacron.sc" k="30" />
  4811. <hkern g1="quotesingle.sc" g2="ohungarumlaut.sc" k="30" />
  4812. <hkern g1="quotesingle.sc" g2="ograve.sc" k="30" />
  4813. <hkern g1="quotesingle.sc" g2="odotbelow.sc" k="30" />
  4814. <hkern g1="quotesingle.sc" g2="odieresis.sc" k="30" />
  4815. <hkern g1="quotesingle.sc" g2="ocircumflex.sc" k="30" />
  4816. <hkern g1="quotesingle.sc" g2="ocaron.sc" k="30" />
  4817. <hkern g1="quotesingle.sc" g2="obreve.sc" k="30" />
  4818. <hkern g1="quotesingle.sc" g2="oacute.sc" k="30" />
  4819. <hkern g1="quotesingle.sc" g2="o.sc" k="30" />
  4820. <hkern g1="quotesingle.sc" g2="ntilde.sc" k="12" />
  4821. <hkern g1="quotesingle.sc" g2="eng.sc" k="12" />
  4822. <hkern g1="quotesingle.sc" g2="ndotaccent.sc" k="12" />
  4823. <hkern g1="quotesingle.sc" g2="ncommaaccent.sc" k="12" />
  4824. <hkern g1="quotesingle.sc" g2="ncaron.sc" k="12" />
  4825. <hkern g1="quotesingle.sc" g2="nacute.sc" k="12" />
  4826. <hkern g1="quotesingle.sc" g2="n.sc" k="12" />
  4827. <hkern g1="quotesingle.sc" g2="m.sc" k="44" />
  4828. <hkern g1="quotesingle.sc" g2="lslash.sc" k="12" />
  4829. <hkern g1="quotesingle.sc" g2="ldot.sc" k="12" />
  4830. <hkern g1="quotesingle.sc" g2="lcommaaccent.sc" k="12" />
  4831. <hkern g1="quotesingle.sc" g2="lcaron.sc" k="12" />
  4832. <hkern g1="quotesingle.sc" g2="lacute.sc" k="12" />
  4833. <hkern g1="quotesingle.sc" g2="l.sc" k="12" />
  4834. <hkern g1="quotesingle.sc" g2="kgreenlandic.sc" k="12" />
  4835. <hkern g1="quotesingle.sc" g2="kcommaaccent.sc" k="12" />
  4836. <hkern g1="quotesingle.sc" g2="k.sc" k="12" />
  4837. <hkern g1="quotesingle.sc" g2="itilde.sc" k="12" />
  4838. <hkern g1="quotesingle.sc" g2="iogonek.sc" k="12" />
  4839. <hkern g1="quotesingle.sc" g2="imacron.sc" k="12" />
  4840. <hkern g1="quotesingle.sc" g2="ij.sc" k="12" />
  4841. <hkern g1="quotesingle.sc" g2="igrave.sc" k="12" />
  4842. <hkern g1="quotesingle.sc" g2="idotbelow.sc" k="12" />
  4843. <hkern g1="quotesingle.sc" g2="idotaccent.sc" k="12" />
  4844. <hkern g1="quotesingle.sc" g2="idieresis.sc" k="12" />
  4845. <hkern g1="quotesingle.sc" g2="icircumflex.sc" k="12" />
  4846. <hkern g1="quotesingle.sc" g2="icaron.sc" k="12" />
  4847. <hkern g1="quotesingle.sc" g2="ibreve.sc" k="12" />
  4848. <hkern g1="quotesingle.sc" g2="iacute.sc" k="12" />
  4849. <hkern g1="quotesingle.sc" g2="dotlessi.sc" k="12" />
  4850. <hkern g1="quotesingle.sc" g2="i.sc" k="12" />
  4851. <hkern g1="quotesingle.sc" g2="hdotbelow.sc" k="12" />
  4852. <hkern g1="quotesingle.sc" g2="hcircumflex.sc" k="12" />
  4853. <hkern g1="quotesingle.sc" g2="hbar.sc" k="12" />
  4854. <hkern g1="quotesingle.sc" g2="h.sc" k="12" />
  4855. <hkern g1="quotesingle.sc" g2="gdotaccent.sc" k="30" />
  4856. <hkern g1="quotesingle.sc" g2="gcommaaccent.sc" k="30" />
  4857. <hkern g1="quotesingle.sc" g2="gcircumflex.sc" k="30" />
  4858. <hkern g1="quotesingle.sc" g2="gcaron.sc" k="30" />
  4859. <hkern g1="quotesingle.sc" g2="gbreve.sc" k="30" />
  4860. <hkern g1="quotesingle.sc" g2="gacute.sc" k="30" />
  4861. <hkern g1="quotesingle.sc" g2="g.sc" k="30" />
  4862. <hkern g1="quotesingle.sc" g2="f.sc" k="12" />
  4863. <hkern g1="quotesingle.sc" g2="schwa.sc" k="30" />
  4864. <hkern g1="quotesingle.sc" g2="etilde.sc" k="12" />
  4865. <hkern g1="quotesingle.sc" g2="eogonek.sc" k="12" />
  4866. <hkern g1="quotesingle.sc" g2="emacron.sc" k="12" />
  4867. <hkern g1="quotesingle.sc" g2="egrave.sc" k="12" />
  4868. <hkern g1="quotesingle.sc" g2="edotbelow.sc" k="12" />
  4869. <hkern g1="quotesingle.sc" g2="edotaccent.sc" k="12" />
  4870. <hkern g1="quotesingle.sc" g2="edieresis.sc" k="12" />
  4871. <hkern g1="quotesingle.sc" g2="ecircumflex.sc" k="12" />
  4872. <hkern g1="quotesingle.sc" g2="ecaron.sc" k="12" />
  4873. <hkern g1="quotesingle.sc" g2="ebreve.sc" k="12" />
  4874. <hkern g1="quotesingle.sc" g2="eacute.sc" k="12" />
  4875. <hkern g1="quotesingle.sc" g2="e.sc" k="12" />
  4876. <hkern g1="quotesingle.sc" g2="ddotbelow.sc" k="12" />
  4877. <hkern g1="quotesingle.sc" g2="dcroat.sc" k="12" />
  4878. <hkern g1="quotesingle.sc" g2="dcaron.sc" k="12" />
  4879. <hkern g1="quotesingle.sc" g2="eth.sc" k="12" />
  4880. <hkern g1="quotesingle.sc" g2="d.sc" k="12" />
  4881. <hkern g1="quotesingle.sc" g2="cdotaccent.sc" k="30" />
  4882. <hkern g1="quotesingle.sc" g2="ccircumflex.sc" k="30" />
  4883. <hkern g1="quotesingle.sc" g2="ccedilla.sc" k="30" />
  4884. <hkern g1="quotesingle.sc" g2="ccaron.sc" k="30" />
  4885. <hkern g1="quotesingle.sc" g2="cacute.sc" k="30" />
  4886. <hkern g1="quotesingle.sc" g2="c.sc" k="30" />
  4887. <hkern g1="quotesingle.sc" g2="b.sc" k="12" />
  4888. <hkern g1="quotesingle.sc" g2="aeacute.sc" k="44" />
  4889. <hkern g1="quotesingle.sc" g2="ae.sc" k="44" />
  4890. <hkern g1="quotesingle.sc" g2="atilde.sc" k="44" />
  4891. <hkern g1="quotesingle.sc" g2="aringacute.sc" k="44" />
  4892. <hkern g1="quotesingle.sc" g2="aring.sc" k="44" />
  4893. <hkern g1="quotesingle.sc" g2="aogonek.sc" k="44" />
  4894. <hkern g1="quotesingle.sc" g2="amacron.sc" k="44" />
  4895. <hkern g1="quotesingle.sc" g2="agrave.sc" k="44" />
  4896. <hkern g1="quotesingle.sc" g2="adotbelow.sc" k="44" />
  4897. <hkern g1="quotesingle.sc" g2="adieresis.sc" k="44" />
  4898. <hkern g1="quotesingle.sc" g2="acircumflex.sc" k="44" />
  4899. <hkern g1="quotesingle.sc" g2="acaron.sc" k="44" />
  4900. <hkern g1="quotesingle.sc" g2="abreve.sc" k="44" />
  4901. <hkern g1="quotesingle.sc" g2="aacute.sc" k="44" />
  4902. <hkern g1="quotesingle.sc" g2="a.sc" k="44" />
  4903. <hkern g1="ampersand.caps" g2="IJacute" k="6" />
  4904. <hkern g1="ampersand.caps" u2="&#x1ef8;" k="43" />
  4905. <hkern g1="ampersand.caps" u2="&#x1ef2;" k="43" />
  4906. <hkern g1="ampersand.caps" u2="&#x1ee4;" k="12" />
  4907. <hkern g1="ampersand.caps" u2="&#x1ecc;" k="16" />
  4908. <hkern g1="ampersand.caps" u2="&#x1eca;" k="6" />
  4909. <hkern g1="ampersand.caps" u2="&#x1ebc;" k="6" />
  4910. <hkern g1="ampersand.caps" u2="&#x1eb8;" k="6" />
  4911. <hkern g1="ampersand.caps" u2="&#x1ea0;" k="8" />
  4912. <hkern g1="ampersand.caps" u2="&#x1e84;" k="43" />
  4913. <hkern g1="ampersand.caps" u2="&#x1e82;" k="43" />
  4914. <hkern g1="ampersand.caps" u2="&#x1e80;" k="43" />
  4915. <hkern g1="ampersand.caps" u2="&#x1e6c;" k="43" />
  4916. <hkern g1="ampersand.caps" u2="&#x1e5a;" k="6" />
  4917. <hkern g1="ampersand.caps" u2="&#x1e44;" k="6" />
  4918. <hkern g1="ampersand.caps" u2="&#x1e24;" k="6" />
  4919. <hkern g1="ampersand.caps" u2="&#x1e0c;" k="6" />
  4920. <hkern g1="ampersand.caps" u2="&#x232;" k="43" />
  4921. <hkern g1="ampersand.caps" u2="&#x21a;" k="43" />
  4922. <hkern g1="ampersand.caps" u2="&#x1fe;" k="16" />
  4923. <hkern g1="ampersand.caps" u2="&#x1fc;" k="8" />
  4924. <hkern g1="ampersand.caps" u2="&#x1fa;" k="8" />
  4925. <hkern g1="ampersand.caps" u2="&#x1f4;" k="16" />
  4926. <hkern g1="ampersand.caps" u2="&#x1ea;" k="16" />
  4927. <hkern g1="ampersand.caps" u2="&#x1e6;" k="16" />
  4928. <hkern g1="ampersand.caps" u2="&#x1db;" k="12" />
  4929. <hkern g1="ampersand.caps" u2="&#x1d9;" k="12" />
  4930. <hkern g1="ampersand.caps" u2="&#x1d7;" k="12" />
  4931. <hkern g1="ampersand.caps" u2="&#x1d5;" k="12" />
  4932. <hkern g1="ampersand.caps" u2="&#x1d3;" k="12" />
  4933. <hkern g1="ampersand.caps" u2="&#x1d1;" k="16" />
  4934. <hkern g1="ampersand.caps" u2="&#x1cf;" k="6" />
  4935. <hkern g1="ampersand.caps" u2="&#x1cd;" k="8" />
  4936. <hkern g1="ampersand.caps" u2="&#x178;" k="43" />
  4937. <hkern g1="ampersand.caps" u2="&#x176;" k="43" />
  4938. <hkern g1="ampersand.caps" u2="&#x174;" k="43" />
  4939. <hkern g1="ampersand.caps" u2="&#x172;" k="12" />
  4940. <hkern g1="ampersand.caps" u2="&#x170;" k="12" />
  4941. <hkern g1="ampersand.caps" u2="&#x16e;" k="12" />
  4942. <hkern g1="ampersand.caps" u2="&#x16c;" k="12" />
  4943. <hkern g1="ampersand.caps" u2="&#x16a;" k="12" />
  4944. <hkern g1="ampersand.caps" u2="&#x168;" k="12" />
  4945. <hkern g1="ampersand.caps" u2="&#x166;" k="43" />
  4946. <hkern g1="ampersand.caps" u2="&#x164;" k="43" />
  4947. <hkern g1="ampersand.caps" u2="&#x162;" k="43" />
  4948. <hkern g1="ampersand.caps" u2="&#x158;" k="6" />
  4949. <hkern g1="ampersand.caps" u2="&#x156;" k="6" />
  4950. <hkern g1="ampersand.caps" u2="&#x154;" k="6" />
  4951. <hkern g1="ampersand.caps" u2="&#x152;" k="16" />
  4952. <hkern g1="ampersand.caps" u2="&#x150;" k="16" />
  4953. <hkern g1="ampersand.caps" u2="&#x14e;" k="16" />
  4954. <hkern g1="ampersand.caps" u2="&#x14c;" k="16" />
  4955. <hkern g1="ampersand.caps" u2="&#x14a;" k="6" />
  4956. <hkern g1="ampersand.caps" u2="&#x147;" k="6" />
  4957. <hkern g1="ampersand.caps" u2="&#x145;" k="6" />
  4958. <hkern g1="ampersand.caps" u2="&#x143;" k="6" />
  4959. <hkern g1="ampersand.caps" u2="&#x141;" k="6" />
  4960. <hkern g1="ampersand.caps" u2="&#x13f;" k="6" />
  4961. <hkern g1="ampersand.caps" u2="&#x13d;" k="6" />
  4962. <hkern g1="ampersand.caps" u2="&#x13b;" k="6" />
  4963. <hkern g1="ampersand.caps" u2="&#x139;" k="6" />
  4964. <hkern g1="ampersand.caps" u2="&#x136;" k="6" />
  4965. <hkern g1="ampersand.caps" u2="&#x132;" k="6" />
  4966. <hkern g1="ampersand.caps" u2="&#x130;" k="6" />
  4967. <hkern g1="ampersand.caps" u2="&#x12e;" k="6" />
  4968. <hkern g1="ampersand.caps" u2="&#x12c;" k="6" />
  4969. <hkern g1="ampersand.caps" u2="&#x12a;" k="6" />
  4970. <hkern g1="ampersand.caps" u2="&#x128;" k="6" />
  4971. <hkern g1="ampersand.caps" u2="&#x126;" k="6" />
  4972. <hkern g1="ampersand.caps" u2="&#x124;" k="6" />
  4973. <hkern g1="ampersand.caps" u2="&#x122;" k="16" />
  4974. <hkern g1="ampersand.caps" u2="&#x120;" k="16" />
  4975. <hkern g1="ampersand.caps" u2="&#x11e;" k="16" />
  4976. <hkern g1="ampersand.caps" u2="&#x11c;" k="16" />
  4977. <hkern g1="ampersand.caps" u2="&#x11a;" k="6" />
  4978. <hkern g1="ampersand.caps" u2="&#x118;" k="6" />
  4979. <hkern g1="ampersand.caps" u2="&#x116;" k="6" />
  4980. <hkern g1="ampersand.caps" u2="&#x114;" k="6" />
  4981. <hkern g1="ampersand.caps" u2="&#x112;" k="6" />
  4982. <hkern g1="ampersand.caps" u2="&#x110;" k="6" />
  4983. <hkern g1="ampersand.caps" u2="&#x10e;" k="6" />
  4984. <hkern g1="ampersand.caps" u2="&#x10c;" k="16" />
  4985. <hkern g1="ampersand.caps" u2="&#x10a;" k="16" />
  4986. <hkern g1="ampersand.caps" u2="&#x108;" k="16" />
  4987. <hkern g1="ampersand.caps" u2="&#x106;" k="16" />
  4988. <hkern g1="ampersand.caps" u2="&#x104;" k="8" />
  4989. <hkern g1="ampersand.caps" u2="&#x102;" k="8" />
  4990. <hkern g1="ampersand.caps" u2="&#x100;" k="8" />
  4991. <hkern g1="ampersand.caps" u2="&#xde;" k="6" />
  4992. <hkern g1="ampersand.caps" u2="&#xdd;" k="43" />
  4993. <hkern g1="ampersand.caps" u2="&#xdc;" k="12" />
  4994. <hkern g1="ampersand.caps" u2="&#xdb;" k="12" />
  4995. <hkern g1="ampersand.caps" u2="&#xda;" k="12" />
  4996. <hkern g1="ampersand.caps" u2="&#xd9;" k="12" />
  4997. <hkern g1="ampersand.caps" u2="&#xd8;" k="16" />
  4998. <hkern g1="ampersand.caps" u2="&#xd6;" k="16" />
  4999. <hkern g1="ampersand.caps" u2="&#xd5;" k="16" />
  5000. <hkern g1="ampersand.caps" u2="&#xd4;" k="16" />
  5001. <hkern g1="ampersand.caps" u2="&#xd3;" k="16" />
  5002. <hkern g1="ampersand.caps" u2="&#xd2;" k="16" />
  5003. <hkern g1="ampersand.caps" u2="&#xd1;" k="6" />
  5004. <hkern g1="ampersand.caps" u2="&#xd0;" k="6" />
  5005. <hkern g1="ampersand.caps" u2="&#xcf;" k="6" />
  5006. <hkern g1="ampersand.caps" u2="&#xce;" k="6" />
  5007. <hkern g1="ampersand.caps" u2="&#xcd;" k="6" />
  5008. <hkern g1="ampersand.caps" u2="&#xcc;" k="6" />
  5009. <hkern g1="ampersand.caps" u2="&#xcb;" k="6" />
  5010. <hkern g1="ampersand.caps" u2="&#xca;" k="6" />
  5011. <hkern g1="ampersand.caps" u2="&#xc9;" k="6" />
  5012. <hkern g1="ampersand.caps" u2="&#xc8;" k="6" />
  5013. <hkern g1="ampersand.caps" u2="&#xc7;" k="16" />
  5014. <hkern g1="ampersand.caps" u2="&#xc6;" k="8" />
  5015. <hkern g1="ampersand.caps" u2="&#xc5;" k="8" />
  5016. <hkern g1="ampersand.caps" u2="&#xc4;" k="8" />
  5017. <hkern g1="ampersand.caps" u2="&#xc3;" k="8" />
  5018. <hkern g1="ampersand.caps" u2="&#xc2;" k="8" />
  5019. <hkern g1="ampersand.caps" u2="&#xc1;" k="8" />
  5020. <hkern g1="ampersand.caps" u2="&#xc0;" k="8" />
  5021. <hkern g1="ampersand.caps" u2="Y" k="43" />
  5022. <hkern g1="ampersand.caps" u2="X" k="12" />
  5023. <hkern g1="ampersand.caps" u2="W" k="43" />
  5024. <hkern g1="ampersand.caps" u2="V" k="43" />
  5025. <hkern g1="ampersand.caps" u2="U" k="12" />
  5026. <hkern g1="ampersand.caps" u2="T" k="43" />
  5027. <hkern g1="ampersand.caps" u2="R" k="6" />
  5028. <hkern g1="ampersand.caps" u2="Q" k="16" />
  5029. <hkern g1="ampersand.caps" u2="P" k="6" />
  5030. <hkern g1="ampersand.caps" u2="O" k="16" />
  5031. <hkern g1="ampersand.caps" u2="N" k="6" />
  5032. <hkern g1="ampersand.caps" u2="L" k="6" />
  5033. <hkern g1="ampersand.caps" u2="K" k="6" />
  5034. <hkern g1="ampersand.caps" u2="I" k="6" />
  5035. <hkern g1="ampersand.caps" u2="H" k="6" />
  5036. <hkern g1="ampersand.caps" u2="G" k="16" />
  5037. <hkern g1="ampersand.caps" u2="F" k="6" />
  5038. <hkern g1="ampersand.caps" u2="E" k="6" />
  5039. <hkern g1="ampersand.caps" u2="D" k="6" />
  5040. <hkern g1="ampersand.caps" u2="C" k="16" />
  5041. <hkern g1="ampersand.caps" u2="B" k="6" />
  5042. <hkern g1="ampersand.caps" u2="A" k="8" />
  5043. <hkern g1="florin.sc" g2="sterling.sc" k="88" />
  5044. <hkern g1="IJacute" g2="parenleft.caps" k="8" />
  5045. <hkern g1="IJacute" g2="asterisk.caps" k="8" />
  5046. <hkern g1="IJacute" g2="question.caps" k="18" />
  5047. <hkern g1="IJacute" g2="exclam.caps" k="12" />
  5048. <hkern g1="B" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="12" />
  5049. <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="2" />
  5050. <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="4" />
  5051. <hkern g1="B" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="3" />
  5052. <hkern g1="B" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="18" />
  5053. <hkern g1="B" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  5054. <hkern g1="B" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="12" />
  5055. <hkern g1="B" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="23" />
  5056. <hkern g1="B" g2="ampersand,ampersand.caps,ampersand.sc" k="4" />
  5057. <hkern g1="B" g2="asterisk,asterisk.caps,asterisk.sc" k="12" />
  5058. <hkern g1="B" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  5059. <hkern g1="B" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="6" />
  5060. <hkern g1="B" g2="parenright,parenright.caps,parenright.sc" k="18" />
  5061. <hkern g1="B" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  5062. <hkern g1="B" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="24" />
  5063. <hkern g1="B" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="8" />
  5064. <hkern g1="B" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="20" />
  5065. <hkern g1="B" g2="slash,slash.caps,slash.sc" k="12" />
  5066. <hkern g1="Delta" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="12" />
  5067. <hkern g1="Delta" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="84" />
  5068. <hkern g1="Delta" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="27" />
  5069. <hkern g1="Delta" g2="backslash,backslash.caps,backslash.sc" k="24" />
  5070. <hkern g1="F" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="31" />
  5071. <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="7" />
  5072. <hkern g1="F" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="3" />
  5073. <hkern g1="F" g2="ampersand,ampersand.caps,ampersand.sc" k="4" />
  5074. <hkern g1="F" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="12" />
  5075. <hkern g1="F" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="90" />
  5076. <hkern g1="F" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-6" />
  5077. <hkern g1="F" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="38" />
  5078. <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="62" />
  5079. <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="2" />
  5080. <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="36" />
  5081. <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="26" />
  5082. <hkern g1="F" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="18" />
  5083. <hkern g1="F" g2="questiondown,questiondown.caps,questiondown.sc" k="16" />
  5084. <hkern g1="F" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="4" />
  5085. <hkern g1="F" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="14" />
  5086. <hkern g1="F" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="46" />
  5087. <hkern g1="F" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="32" />
  5088. <hkern g1="M" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="4" />
  5089. <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="4" />
  5090. <hkern g1="M" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="6" />
  5091. <hkern g1="M" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="10" />
  5092. <hkern g1="M" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  5093. <hkern g1="M" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="12" />
  5094. <hkern g1="M" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="24" />
  5095. <hkern g1="M" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="4" />
  5096. <hkern g1="M" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="18" />
  5097. <hkern g1="M" g2="parenright,parenright.caps,parenright.sc" k="12" />
  5098. <hkern g1="M" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="8" />
  5099. <hkern g1="M" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="12" />
  5100. <hkern g1="M" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="14" />
  5101. <hkern g1="M" g2="backslash,backslash.caps,backslash.sc" k="6" />
  5102. <hkern g1="M" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="6" />
  5103. <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="2" />
  5104. <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="8" />
  5105. <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="8" />
  5106. <hkern g1="M" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="8" />
  5107. <hkern g1="M" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="8" />
  5108. <hkern g1="M" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="20" />
  5109. <hkern g1="M" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="6" />
  5110. <hkern g1="M" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="5" />
  5111. <hkern g1="M" g2="bracketright,bracketright.caps,bracketright.sc" k="6" />
  5112. <hkern g1="M" g2="f,germandbls,Germandbls,fi,fl" k="6" />
  5113. <hkern g1="M" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="9" />
  5114. <hkern g1="M" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="7" />
  5115. <hkern g1="M" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  5116. <hkern g1="M" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="11" />
  5117. <hkern g1="M" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="12" />
  5118. <hkern g1="M" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="6" />
  5119. <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="45" />
  5120. <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="13" />
  5121. <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="13" />
  5122. <hkern g1="P" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="4" />
  5123. <hkern g1="P" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="4" />
  5124. <hkern g1="P" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="4" />
  5125. <hkern g1="P" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="16" />
  5126. <hkern g1="P" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="22" />
  5127. <hkern g1="P" g2="ampersand,ampersand.caps,ampersand.sc" k="4" />
  5128. <hkern g1="P" g2="asterisk,asterisk.caps,asterisk.sc" k="4" />
  5129. <hkern g1="P" g2="parenright,parenright.caps,parenright.sc" k="6" />
  5130. <hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="124" />
  5131. <hkern g1="P" g2="slash,slash.caps,slash.sc" k="48" />
  5132. <hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="13" />
  5133. <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="67" />
  5134. <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="39" />
  5135. <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="19" />
  5136. <hkern g1="P" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="-3" />
  5137. <hkern g1="P" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="4" />
  5138. <hkern g1="P" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="21" />
  5139. <hkern g1="P" g2="bracketright,bracketright.caps,bracketright.sc" k="6" />
  5140. <hkern g1="P" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="20" />
  5141. <hkern g1="P" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="13" />
  5142. <hkern g1="P" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="11" />
  5143. <hkern g1="P" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="3" />
  5144. <hkern g1="P" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="4" />
  5145. <hkern g1="P" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="8" />
  5146. <hkern g1="P" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  5147. <hkern g1="P" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="12" />
  5148. <hkern g1="P" g2="parenleft,parenleft.caps,parenleft.sc" k="8" />
  5149. <hkern g1="Thorn" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="40" />
  5150. <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="4" />
  5151. <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="4" />
  5152. <hkern g1="Thorn" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="4" />
  5153. <hkern g1="Thorn" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="16" />
  5154. <hkern g1="Thorn" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="4" />
  5155. <hkern g1="Thorn" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="16" />
  5156. <hkern g1="Thorn" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="16" />
  5157. <hkern g1="Thorn" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  5158. <hkern g1="Thorn" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  5159. <hkern g1="Thorn" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="78" />
  5160. <hkern g1="Thorn" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="8" />
  5161. <hkern g1="Thorn" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="6" />
  5162. <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="38" />
  5163. <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="8" />
  5164. <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="6" />
  5165. <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="8" />
  5166. <hkern g1="Thorn" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="4" />
  5167. <hkern g1="Thorn" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="4" />
  5168. <hkern g1="Thorn" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="14" />
  5169. <hkern g1="Thorn" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="2" />
  5170. <hkern g1="Thorn" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="8" />
  5171. <hkern g1="Thorn" g2="bracketright,bracketright.caps,bracketright.sc" k="16" />
  5172. <hkern g1="Thorn" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="6" />
  5173. <hkern g1="Thorn" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="2" />
  5174. <hkern g1="Thorn" g2="J,Jcircumflex,Nhookleft,Jacute" k="2" />
  5175. <hkern g1="Thorn" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="-2" />
  5176. <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="32" />
  5177. <hkern g1="X" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="12" />
  5178. <hkern g1="X" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="7" />
  5179. <hkern g1="X" g2="ampersand,ampersand.caps,ampersand.sc" k="4" />
  5180. <hkern g1="X" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="16" />
  5181. <hkern g1="X" g2="slash,slash.caps,slash.sc" k="6" />
  5182. <hkern g1="X" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="8" />
  5183. <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" />
  5184. <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" />
  5185. <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="28" />
  5186. <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" />
  5187. <hkern g1="X" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="39" />
  5188. <hkern g1="X" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="26" />
  5189. <hkern g1="X" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="34" />
  5190. <hkern g1="X" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="4" />
  5191. <hkern g1="X" g2="f,germandbls,Germandbls,fi,fl" k="22" />
  5192. <hkern g1="X" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="32" />
  5193. <hkern g1="X" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="16" />
  5194. <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="24" />
  5195. <hkern g1="X" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="26" />
  5196. <hkern g1="X" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="26" />
  5197. <hkern g1="X" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="6" />
  5198. <hkern g1="X" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="8" />
  5199. <hkern g1="X" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="8" />
  5200. <hkern g1="X" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="28" />
  5201. <hkern g1="at" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="6" />
  5202. <hkern g1="at" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="6" />
  5203. <hkern g1="at" g2="backslash,backslash.caps,backslash.sc" k="6" />
  5204. <hkern g1="b.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="28" />
  5205. <hkern g1="b.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="22" />
  5206. <hkern g1="b.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="4" />
  5207. <hkern g1="b.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="4" />
  5208. <hkern g1="b.sc" g2="backslash,backslash.caps,backslash.sc" k="6" />
  5209. <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="8" />
  5210. <hkern g1="b.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="12" />
  5211. <hkern g1="b.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="19" />
  5212. <hkern g1="b.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="26" />
  5213. <hkern g1="b.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="4" />
  5214. <hkern g1="b.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="16" />
  5215. <hkern g1="b.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="8" />
  5216. <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="4" />
  5217. <hkern g1="b.sc" g2="quotedblleft.sc,quoteleft.sc" k="14" />
  5218. <hkern g1="b.sc" g2="quotedblright.sc,quoteright.sc" k="22" />
  5219. <hkern g1="b.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="2" />
  5220. <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="2" />
  5221. <hkern g1="bar" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  5222. <hkern g1="bar" g2="slash,slash.caps,slash.sc" k="6" />
  5223. <hkern g1="cent.sc" g2="two,two.lf,two.osf,two.sc" k="12" />
  5224. <hkern g1="cent.sc" g2="three,three.lf,three.osf,three.sc" k="-18" />
  5225. <hkern g1="cent.sc" g2="four,four.lf,four.osf,four.sc" k="4" />
  5226. <hkern g1="currency.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="6" />
  5227. <hkern g1="dagger" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="20" />
  5228. <hkern g1="dagger" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="8" />
  5229. <hkern g1="dagger" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="8" />
  5230. <hkern g1="dagger" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="4" />
  5231. <hkern g1="dagger" g2="ampersand,ampersand.caps,ampersand.sc" k="12" />
  5232. <hkern g1="dagger" g2="asterisk,asterisk.caps,asterisk.sc" k="4" />
  5233. <hkern g1="dagger" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="27" />
  5234. <hkern g1="dagger" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="55" />
  5235. <hkern g1="dagger" g2="slash,slash.caps,slash.sc" k="24" />
  5236. <hkern g1="dagger" g2="backslash,backslash.caps,backslash.sc" k="8" />
  5237. <hkern g1="dagger" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  5238. <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="27" />
  5239. <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="12" />
  5240. <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="20" />
  5241. <hkern g1="dagger" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="4" />
  5242. <hkern g1="dagger" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="8" />
  5243. <hkern g1="dagger" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="8" />
  5244. <hkern g1="dagger" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  5245. <hkern g1="dagger" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="2" />
  5246. <hkern g1="dagger" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="2" />
  5247. <hkern g1="dagger" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="4" />
  5248. <hkern g1="dagger" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="8" />
  5249. <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="10" />
  5250. <hkern g1="dagger" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  5251. <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="4" />
  5252. <hkern g1="dagger" g2="two,two.lf,two.osf,two.sc" k="8" />
  5253. <hkern g1="dagger" g2="four,four.lf,four.osf,four.sc" k="16" />
  5254. <hkern g1="dagger" g2="seven,seven.lf,seven.osf,seven.sc" k="8" />
  5255. <hkern g1="dagger" g2="eight,eight.lf,eight.osf,eight.sc" k="4" />
  5256. <hkern g1="dagger" g2="cent,cent.lf,cent.osf,cent.sc" k="8" />
  5257. <hkern g1="dagger" g2="currency,currency.lf,currency.osf,currency.sc" k="4" />
  5258. <hkern g1="dagger" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="4" />
  5259. <hkern g1="dagger" g2="euro,euro.lf,euro.osf,euro.sc" k="8" />
  5260. <hkern g1="dagger" g2="florin,florin.lf,florin.osf,florin.sc" k="20" />
  5261. <hkern g1="dagger" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="4" />
  5262. <hkern g1="dagger" g2="yen,yen.lf,yen.osf,yen.sc" k="4" />
  5263. <hkern g1="daggerdbl" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="14" />
  5264. <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="2" />
  5265. <hkern g1="daggerdbl" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="10" />
  5266. <hkern g1="daggerdbl" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="2" />
  5267. <hkern g1="daggerdbl" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="4" />
  5268. <hkern g1="daggerdbl" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="4" />
  5269. <hkern g1="daggerdbl" g2="ampersand,ampersand.caps,ampersand.sc" k="12" />
  5270. <hkern g1="daggerdbl" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  5271. <hkern g1="daggerdbl" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="12" />
  5272. <hkern g1="daggerdbl" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="27" />
  5273. <hkern g1="daggerdbl" g2="slash,slash.caps,slash.sc" k="16" />
  5274. <hkern g1="daggerdbl" g2="backslash,backslash.caps,backslash.sc" k="20" />
  5275. <hkern g1="daggerdbl" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="4" />
  5276. <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="16" />
  5277. <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="4" />
  5278. <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="8" />
  5279. <hkern g1="daggerdbl" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="4" />
  5280. <hkern g1="daggerdbl" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="4" />
  5281. <hkern g1="daggerdbl" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="4" />
  5282. <hkern g1="daggerdbl" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="4" />
  5283. <hkern g1="daggerdbl" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="4" />
  5284. <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="4" />
  5285. <hkern g1="daggerdbl" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="8" />
  5286. <hkern g1="daggerdbl" g2="two,two.lf,two.osf,two.sc" k="8" />
  5287. <hkern g1="daggerdbl" g2="seven,seven.lf,seven.osf,seven.sc" k="10" />
  5288. <hkern g1="daggerdbl" g2="eight,eight.lf,eight.osf,eight.sc" k="2" />
  5289. <hkern g1="daggerdbl" g2="cent,cent.lf,cent.osf,cent.sc" k="4" />
  5290. <hkern g1="daggerdbl" g2="currency,currency.lf,currency.osf,currency.sc" k="8" />
  5291. <hkern g1="daggerdbl" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="4" />
  5292. <hkern g1="daggerdbl" g2="euro,euro.lf,euro.osf,euro.sc" k="4" />
  5293. <hkern g1="daggerdbl" g2="florin,florin.lf,florin.osf,florin.sc" k="8" />
  5294. <hkern g1="daggerdbl" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="4" />
  5295. <hkern g1="daggerdbl" g2="five,five.lf,five.osf,five.sc" k="4" />
  5296. <hkern g1="daggerdbl" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="8" />
  5297. <hkern g1="emdash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="7" />
  5298. <hkern g1="emdash" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="41" />
  5299. <hkern g1="emdash" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="17" />
  5300. <hkern g1="emdash" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  5301. <hkern g1="emdash" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  5302. <hkern g1="emdash" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="44" />
  5303. <hkern g1="emdash" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="4" />
  5304. <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" />
  5305. <hkern g1="emdash" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="14" />
  5306. <hkern g1="emdash" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="2" />
  5307. <hkern g1="emdash" g2="two,two.lf,two.osf,two.sc" k="10" />
  5308. <hkern g1="emdash" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  5309. <hkern g1="emdash" g2="florin,florin.lf,florin.osf,florin.sc" k="8" />
  5310. <hkern g1="emdash" g2="percent.lf,perthousand.lf" k="8" />
  5311. <hkern g1="emdash.caps" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="4" />
  5312. <hkern g1="emdash.caps" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="12" />
  5313. <hkern g1="emdash.caps" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="4" />
  5314. <hkern g1="emdash.caps" g2="seven,seven.lf,seven.osf,seven.sc" k="4" />
  5315. <hkern g1="endash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="5" />
  5316. <hkern g1="endash" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="7" />
  5317. <hkern g1="endash" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="46" />
  5318. <hkern g1="endash" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="12" />
  5319. <hkern g1="endash" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="34" />
  5320. <hkern g1="endash" g2="asterisk,asterisk.caps,asterisk.sc" k="34" />
  5321. <hkern g1="endash" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="58" />
  5322. <hkern g1="endash" g2="slash,slash.caps,slash.sc" k="-4" />
  5323. <hkern g1="endash" g2="backslash,backslash.caps,backslash.sc" k="30" />
  5324. <hkern g1="endash" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="4" />
  5325. <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="12" />
  5326. <hkern g1="endash" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="34" />
  5327. <hkern g1="endash" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
  5328. <hkern g1="endash" g2="two,two.lf,two.osf,two.sc" k="15" />
  5329. <hkern g1="endash" g2="seven,seven.lf,seven.osf,seven.sc" k="27" />
  5330. <hkern g1="endash" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="12" />
  5331. <hkern g1="endash.caps" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="8" />
  5332. <hkern g1="endash.caps" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="24" />
  5333. <hkern g1="endash.caps" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="8" />
  5334. <hkern g1="f.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="18" />
  5335. <hkern g1="f.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="12" />
  5336. <hkern g1="f.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="62" />
  5337. <hkern g1="f.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-8" />
  5338. <hkern g1="f.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-8" />
  5339. <hkern g1="f.sc" g2="slash,slash.caps,slash.sc" k="12" />
  5340. <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="32" />
  5341. <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="17" />
  5342. <hkern g1="f.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="3" />
  5343. <hkern g1="f.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="2" />
  5344. <hkern g1="f.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="12" />
  5345. <hkern g1="f.sc" g2="quotedblleft.sc,quoteleft.sc" k="4" />
  5346. <hkern g1="f.sc" g2="quotedblright.sc,quoteright.sc" k="-18" />
  5347. <hkern g1="f.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="4" />
  5348. <hkern g1="fraction" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="153" />
  5349. <hkern g1="fraction" g2="slash,slash.caps,slash.sc" k="68" />
  5350. <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="216" />
  5351. <hkern g1="hyphen" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="20" />
  5352. <hkern g1="hyphen" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="20" />
  5353. <hkern g1="hyphen" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="48" />
  5354. <hkern g1="hyphen" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="30" />
  5355. <hkern g1="hyphen" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="40" />
  5356. <hkern g1="hyphen" g2="asterisk,asterisk.caps,asterisk.sc" k="18" />
  5357. <hkern g1="hyphen" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="25" />
  5358. <hkern g1="hyphen" g2="backslash,backslash.caps,backslash.sc" k="18" />
  5359. <hkern g1="hyphen" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="9" />
  5360. <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="22" />
  5361. <hkern g1="hyphen" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="39" />
  5362. <hkern g1="hyphen" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="15" />
  5363. <hkern g1="hyphen" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="5" />
  5364. <hkern g1="hyphen" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="8" />
  5365. <hkern g1="hyphen" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  5366. <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="-4" />
  5367. <hkern g1="hyphen" g2="two,two.lf,two.osf,two.sc" k="16" />
  5368. <hkern g1="hyphen" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  5369. <hkern g1="hyphen" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="5" />
  5370. <hkern g1="hyphen" g2="florin,florin.lf,florin.osf,florin.sc" k="7" />
  5371. <hkern g1="hyphen.caps" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="8" />
  5372. <hkern g1="hyphen.caps" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="20" />
  5373. <hkern g1="hyphen.caps" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="8" />
  5374. <hkern g1="hyphen.caps" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="8" />
  5375. <hkern g1="hyphen.caps" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="4" />
  5376. <hkern g1="hyphen.caps" g2="two,two.lf,two.osf,two.sc" k="8" />
  5377. <hkern g1="hyphen.caps" g2="seven,seven.lf,seven.osf,seven.sc" k="12" />
  5378. <hkern g1="hyphen.caps" g2="one,one.lf,one.osf,one.sc" k="-8" />
  5379. <hkern g1="integral" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="34" />
  5380. <hkern g1="m.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="14" />
  5381. <hkern g1="m.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="12" />
  5382. <hkern g1="m.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="8" />
  5383. <hkern g1="m.sc" g2="backslash,backslash.caps,backslash.sc" k="6" />
  5384. <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="4" />
  5385. <hkern g1="m.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="24" />
  5386. <hkern g1="m.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="16" />
  5387. <hkern g1="m.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="26" />
  5388. <hkern g1="m.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="5" />
  5389. <hkern g1="m.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="4" />
  5390. <hkern g1="m.sc" g2="quotedblleft.sc,quoteleft.sc" k="28" />
  5391. <hkern g1="m.sc" g2="quotedblright.sc,quoteright.sc" k="14" />
  5392. <hkern g1="m.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="4" />
  5393. <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="4" />
  5394. <hkern g1="m.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-12" />
  5395. <hkern g1="mu" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="4" />
  5396. <hkern g1="p.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="24" />
  5397. <hkern g1="p.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="4" />
  5398. <hkern g1="p.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="112" />
  5399. <hkern g1="p.sc" g2="slash,slash.caps,slash.sc" k="8" />
  5400. <hkern g1="p.sc" g2="backslash,backslash.caps,backslash.sc" k="6" />
  5401. <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" />
  5402. <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="4" />
  5403. <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="6" />
  5404. <hkern g1="p.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="2" />
  5405. <hkern g1="p.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="2" />
  5406. <hkern g1="p.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="4" />
  5407. <hkern g1="p.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
  5408. <hkern g1="p.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
  5409. <hkern g1="p.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="12" />
  5410. <hkern g1="p.sc" g2="quotedblleft.sc,quoteleft.sc" k="4" />
  5411. <hkern g1="p.sc" g2="quotedblright.sc,quoteright.sc" k="-6" />
  5412. <hkern g1="p.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="4" />
  5413. <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="4" />
  5414. <hkern g1="p.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="24" />
  5415. <hkern g1="partialdiff" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="6" />
  5416. <hkern g1="partialdiff" g2="slash,slash.caps,slash.sc" k="6" />
  5417. <hkern g1="product" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="22" />
  5418. <hkern g1="product" g2="slash,slash.caps,slash.sc" k="4" />
  5419. <hkern g1="sterling.lf" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-6" />
  5420. <hkern g1="sterling.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="6" />
  5421. <hkern g1="sterling.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="12" />
  5422. <hkern g1="sterling.sc" g2="two,two.lf,two.osf,two.sc" k="12" />
  5423. <hkern g1="sterling.sc" g2="three,three.lf,three.osf,three.sc" k="-12" />
  5424. <hkern g1="sterling.sc" g2="four,four.lf,four.osf,four.sc" k="14" />
  5425. <hkern g1="sterling.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="-6" />
  5426. <hkern g1="sterling.sc" g2="one,one.lf,one.osf,one.sc" k="-14" />
  5427. <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="8" />
  5428. <hkern g1="summation" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  5429. <hkern g1="thorn.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="16" />
  5430. <hkern g1="thorn.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  5431. <hkern g1="thorn.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="4" />
  5432. <hkern g1="thorn.sc" g2="slash,slash.caps,slash.sc" k="18" />
  5433. <hkern g1="thorn.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="12" />
  5434. <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" />
  5435. <hkern g1="underscore" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="70" />
  5436. <hkern g1="underscore" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="50" />
  5437. <hkern g1="underscore" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="60" />
  5438. <hkern g1="underscore" g2="ampersand,ampersand.caps,ampersand.sc" k="34" />
  5439. <hkern g1="underscore" g2="asterisk,asterisk.caps,asterisk.sc" k="104" />
  5440. <hkern g1="underscore" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  5441. <hkern g1="underscore" g2="backslash,backslash.caps,backslash.sc" k="40" />
  5442. <hkern g1="underscore" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="20" />
  5443. <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" />
  5444. <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" />
  5445. <hkern g1="underscore" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="50" />
  5446. <hkern g1="underscore" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="50" />
  5447. <hkern g1="underscore" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="50" />
  5448. <hkern g1="underscore" g2="f,germandbls,Germandbls,fi,fl" k="20" />
  5449. <hkern g1="underscore" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="-10" />
  5450. <hkern g1="underscore" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="30" />
  5451. <hkern g1="underscore" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  5452. <hkern g1="underscore" g2="J,Jcircumflex,Nhookleft,Jacute" k="-20" />
  5453. <hkern g1="underscore" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="20" />
  5454. <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="68" />
  5455. <hkern g1="underscore" g2="four,four.lf,four.osf,four.sc" k="40" />
  5456. <hkern g1="underscore" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  5457. <hkern g1="underscore" g2="eight,eight.lf,eight.osf,eight.sc" k="10" />
  5458. <hkern g1="underscore" g2="cent,cent.lf,cent.osf,cent.sc" k="31" />
  5459. <hkern g1="underscore" g2="currency,currency.lf,currency.osf,currency.sc" k="34" />
  5460. <hkern g1="underscore" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="20" />
  5461. <hkern g1="underscore" g2="euro,euro.lf,euro.osf,euro.sc" k="60" />
  5462. <hkern g1="underscore" g2="florin,florin.lf,florin.osf,florin.sc" k="-84" />
  5463. <hkern g1="underscore" g2="yen,yen.lf,yen.osf,yen.sc" k="28" />
  5464. <hkern g1="underscore" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="74" />
  5465. <hkern g1="underscore" g2="percent.lf,perthousand.lf" k="70" />
  5466. <hkern g1="underscore" g2="one,one.lf,one.osf,one.sc" k="10" />
  5467. <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" />
  5468. <hkern g1="x" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  5469. <hkern g1="x" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="18" />
  5470. <hkern g1="x" g2="parenright,parenright.caps,parenright.sc" k="18" />
  5471. <hkern g1="x" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="2" />
  5472. <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" />
  5473. <hkern g1="x" g2="bracketright,bracketright.caps,bracketright.sc" k="12" />
  5474. <hkern g1="x" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="11" />
  5475. <hkern g1="x" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  5476. <hkern g1="x" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="3" />
  5477. <hkern g1="x" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="2" />
  5478. <hkern g1="x" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="2" />
  5479. <hkern g1="x" g2="question,question.caps,question.sc" k="18" />
  5480. <hkern g1="x.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  5481. <hkern g1="x.sc" g2="slash,slash.caps,slash.sc" k="6" />
  5482. <hkern g1="x.sc" g2="backslash,backslash.caps,backslash.sc" k="6" />
  5483. <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="24" />
  5484. <hkern g1="x.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="6" />
  5485. <hkern g1="x.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  5486. <hkern g1="x.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="12" />
  5487. <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="4" />
  5488. <hkern g1="x.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="8" />
  5489. <hkern g1="x.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="4" />
  5490. <hkern g1="x.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-18" />
  5491. <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="14" />
  5492. <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="8" />
  5493. <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="4" />
  5494. <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="18" />
  5495. <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="28" />
  5496. <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="22" />
  5497. <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="4" />
  5498. <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="42" />
  5499. <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="28" />
  5500. <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="12" />
  5501. <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="12" />
  5502. <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="51" />
  5503. <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="8" />
  5504. <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="14" />
  5505. <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="52" />
  5506. <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="26" />
  5507. <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="4" />
  5508. <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="8" />
  5509. <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="14" />
  5510. <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="12" />
  5511. <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="12" />
  5512. <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" />
  5513. <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="6" />
  5514. <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="6" />
  5515. <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="16" />
  5516. <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="4" />
  5517. <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="8" />
  5518. <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="12" />
  5519. <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="202" />
  5520. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="58" />
  5521. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="82" />
  5522. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="18" />
  5523. <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" />
  5524. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="slash,slash.caps,slash.sc" k="76" />
  5525. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="12" />
  5526. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="90" />
  5527. <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="12" />
  5528. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="two,two.lf,two.osf,two.sc" k="37" />
  5529. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="three,three.lf,three.osf,three.sc" k="10" />
  5530. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="four,four.lf,four.osf,four.sc" k="82" />
  5531. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="14" />
  5532. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="46" />
  5533. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="28" />
  5534. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="4" />
  5535. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="56" />
  5536. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="31" />
  5537. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="five,five.lf,five.osf,five.sc" k="34" />
  5538. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="one,one.lf,one.osf,one.sc" k="-1" />
  5539. <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="55" />
  5540. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="dagger" k="12" />
  5541. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="underscore" k="56" />
  5542. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="emdash" k="38" />
  5543. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="emdash.caps" k="27" />
  5544. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="endash" k="42" />
  5545. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="endash.caps" k="27" />
  5546. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="hyphen" k="20" />
  5547. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="hyphen.caps" k="30" />
  5548. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="12" />
  5549. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="16" />
  5550. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  5551. <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="12" />
  5552. <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="30" />
  5553. <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="24" />
  5554. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="slash,slash.caps,slash.sc" k="30" />
  5555. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="backslash,backslash.caps,backslash.sc" k="18" />
  5556. <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="4" />
  5557. <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="46" />
  5558. <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="17" />
  5559. <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="28" />
  5560. <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="11" />
  5561. <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="8" />
  5562. <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="8" />
  5563. <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="16" />
  5564. <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="24" />
  5565. <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="24" />
  5566. <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="-9" />
  5567. <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="9" />
  5568. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="hyphen.caps" k="-4" />
  5569. <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="8" />
  5570. <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="2" />
  5571. <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" />
  5572. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="4" />
  5573. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="54" />
  5574. <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="14" />
  5575. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="43" />
  5576. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="52" />
  5577. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="ampersand,ampersand.caps,ampersand.sc" k="4" />
  5578. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
  5579. <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="12" />
  5580. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="parenright,parenright.caps,parenright.sc" k="12" />
  5581. <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" />
  5582. <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" />
  5583. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="62" />
  5584. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="104" />
  5585. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="backslash,backslash.caps,backslash.sc" k="8" />
  5586. <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="8" />
  5587. <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="4" />
  5588. <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" />
  5589. <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="22" />
  5590. <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="56" />
  5591. <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="31" />
  5592. <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="38" />
  5593. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="f,germandbls,Germandbls,fi,fl" k="6" />
  5594. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="8" />
  5595. <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="8" />
  5596. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="21" />
  5597. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="20" />
  5598. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="question,question.caps,question.sc" k="12" />
  5599. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="dagger" k="12" />
  5600. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="endash" k="3" />
  5601. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="hyphen.caps" k="4" />
  5602. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="M" k="4" />
  5603. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="daggerdbl" k="14" />
  5604. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="m.sc" k="10" />
  5605. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="trademark" k="81" />
  5606. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="x.sc" k="2" />
  5607. <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="6" />
  5608. <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="4" />
  5609. <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="44" />
  5610. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="4" />
  5611. <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" />
  5612. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="4" />
  5613. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  5614. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="ampersand,ampersand.caps,ampersand.sc" k="4" />
  5615. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="37" />
  5616. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="-6" />
  5617. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="parenright,parenright.caps,parenright.sc" k="6" />
  5618. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="16" />
  5619. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-6" />
  5620. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-12" />
  5621. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="dagger" k="4" />
  5622. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="emdash.caps" k="20" />
  5623. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="hyphen.caps" k="12" />
  5624. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-6" />
  5625. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="braceright,braceright.caps,braceright.sc" k="-18" />
  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="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="14" />
  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="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="14" />
  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="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="6" />
  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="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="9" />
  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="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="48" />
  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="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="7" />
  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="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="22" />
  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="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="29" />
  5634. <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="4" />
  5635. <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="12" />
  5636. <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="8" />
  5637. <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="18" />
  5638. <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="47" />
  5639. <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="18" />
  5640. <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="12" />
  5641. <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="12" />
  5642. <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="16" />
  5643. <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" />
  5644. <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="13" />
  5645. <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" />
  5646. <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="23" />
  5647. <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="32" />
  5648. <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="11" />
  5649. <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" />
  5650. <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="3" />
  5651. <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" />
  5652. <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="5" />
  5653. <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="7" />
  5654. <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="2" />
  5655. <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="3" />
  5656. <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="2" />
  5657. <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="36" />
  5658. <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="7" />
  5659. <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="26" />
  5660. <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="8" />
  5661. <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" />
  5662. <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="16" />
  5663. <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="22" />
  5664. <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="8" />
  5665. <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="27" />
  5666. <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="8" />
  5667. <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="16" />
  5668. <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="24" />
  5669. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="ampersand,ampersand.caps,ampersand.sc" k="12" />
  5670. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="asterisk,asterisk.caps,asterisk.sc" k="31" />
  5671. <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="8" />
  5672. <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="4" />
  5673. <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="16" />
  5674. <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="4" />
  5675. <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" />
  5676. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="6" />
  5677. <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="12" />
  5678. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="question,question.caps,question.sc" k="12" />
  5679. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="hyphen.caps" k="4" />
  5680. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="M" k="8" />
  5681. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="trademark" k="27" />
  5682. <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="2" />
  5683. <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="2" />
  5684. <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="18" />
  5685. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="4" />
  5686. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="12" />
  5687. <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="6" />
  5688. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="4" />
  5689. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="24" />
  5690. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="ampersand,ampersand.caps,ampersand.sc" k="2" />
  5691. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  5692. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="2" />
  5693. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="parenright,parenright.caps,parenright.sc" k="12" />
  5694. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="16" />
  5695. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="8" />
  5696. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="8" />
  5697. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="underscore" k="4" />
  5698. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="M" k="6" />
  5699. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="trademark" k="24" />
  5700. <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="2" />
  5701. <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="12" />
  5702. <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="7" />
  5703. <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="4" />
  5704. <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="9" />
  5705. <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="8" />
  5706. <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="18" />
  5707. <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="10" />
  5708. <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" />
  5709. <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="4" />
  5710. <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="6" />
  5711. <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="6" />
  5712. <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="6" />
  5713. <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="12" />
  5714. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
  5715. <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="4" />
  5716. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="8" />
  5717. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="4" />
  5718. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
  5719. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="ampersand,ampersand.caps,ampersand.sc" k="4" />
  5720. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="asterisk,asterisk.caps,asterisk.sc" k="4" />
  5721. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="18" />
  5722. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="12" />
  5723. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="4" />
  5724. <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="14" />
  5725. <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" />
  5726. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="2" />
  5727. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="4" />
  5728. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
  5729. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="M" k="2" />
  5730. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="m.sc" k="8" />
  5731. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="x.sc" k="4" />
  5732. <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="6" />
  5733. <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="44" />
  5734. <hkern g1="K,Kcommaaccent" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  5735. <hkern g1="K,Kcommaaccent" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="6" />
  5736. <hkern g1="K,Kcommaaccent" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  5737. <hkern g1="K,Kcommaaccent" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="6" />
  5738. <hkern g1="K,Kcommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="14" />
  5739. <hkern g1="K,Kcommaaccent" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
  5740. <hkern g1="K,Kcommaaccent" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  5741. <hkern g1="K,Kcommaaccent" g2="slash,slash.caps,slash.sc" k="12" />
  5742. <hkern g1="K,Kcommaaccent" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="17" />
  5743. <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="44" />
  5744. <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="39" />
  5745. <hkern g1="K,Kcommaaccent" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="44" />
  5746. <hkern g1="K,Kcommaaccent" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="42" />
  5747. <hkern g1="K,Kcommaaccent" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="42" />
  5748. <hkern g1="K,Kcommaaccent" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="12" />
  5749. <hkern g1="K,Kcommaaccent" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="6" />
  5750. <hkern g1="K,Kcommaaccent" g2="bracketright,bracketright.caps,bracketright.sc" k="6" />
  5751. <hkern g1="K,Kcommaaccent" g2="f,germandbls,Germandbls,fi,fl" k="15" />
  5752. <hkern g1="K,Kcommaaccent" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="30" />
  5753. <hkern g1="K,Kcommaaccent" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  5754. <hkern g1="K,Kcommaaccent" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="24" />
  5755. <hkern g1="K,Kcommaaccent" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="48" />
  5756. <hkern g1="K,Kcommaaccent" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="36" />
  5757. <hkern g1="K,Kcommaaccent" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="6" />
  5758. <hkern g1="K,Kcommaaccent" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="6" />
  5759. <hkern g1="K,Kcommaaccent" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="8" />
  5760. <hkern g1="K,Kcommaaccent" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="18" />
  5761. <hkern g1="K,Kcommaaccent" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="26" />
  5762. <hkern g1="K,Kcommaaccent" g2="dagger" k="8" />
  5763. <hkern g1="K,Kcommaaccent" g2="emdash.caps" k="12" />
  5764. <hkern g1="K,Kcommaaccent" g2="endash" k="18" />
  5765. <hkern g1="K,Kcommaaccent" g2="endash.caps" k="16" />
  5766. <hkern g1="K,Kcommaaccent" g2="hyphen" k="4" />
  5767. <hkern g1="K,Kcommaaccent" g2="hyphen.caps" k="12" />
  5768. <hkern g1="K,Kcommaaccent" g2="M" k="6" />
  5769. <hkern g1="K,Kcommaaccent" g2="m.sc" k="4" />
  5770. <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="4" />
  5771. <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="4" />
  5772. <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="48" />
  5773. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="100" />
  5774. <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="32" />
  5775. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="68" />
  5776. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="92" />
  5777. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="ampersand,ampersand.caps,ampersand.sc" k="4" />
  5778. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="asterisk,asterisk.caps,asterisk.sc" k="100" />
  5779. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="28" />
  5780. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="18" />
  5781. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="parenright,parenright.caps,parenright.sc" k="24" />
  5782. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="68" />
  5783. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="96" />
  5784. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="96" />
  5785. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="backslash,backslash.caps,backslash.sc" k="30" />
  5786. <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="2" />
  5787. <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="4" />
  5788. <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="15" />
  5789. <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="23" />
  5790. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="98" />
  5791. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="76" />
  5792. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="68" />
  5793. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="bracketright,bracketright.caps,bracketright.sc" k="24" />
  5794. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="47" />
  5795. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quotedblright.sc,quoteright.sc" k="72" />
  5796. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="question,question.caps,question.sc" k="12" />
  5797. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="dagger" k="12" />
  5798. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="emdash" k="8" />
  5799. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="emdash.caps" k="24" />
  5800. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="endash.caps" k="27" />
  5801. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="hyphen" k="4" />
  5802. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="hyphen.caps" k="60" />
  5803. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="M" k="2" />
  5804. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="m.sc" k="4" />
  5805. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="trademark" k="36" />
  5806. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="X" k="2" />
  5807. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="8" />
  5808. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="2" />
  5809. <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="2" />
  5810. <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="6" />
  5811. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="2" />
  5812. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="20" />
  5813. <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" />
  5814. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="17" />
  5815. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="15" />
  5816. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="4" />
  5817. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="16" />
  5818. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="18" />
  5819. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="parenright,parenright.caps,parenright.sc" k="24" />
  5820. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="8" />
  5821. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="12" />
  5822. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="slash,slash.caps,slash.sc" k="4" />
  5823. <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" />
  5824. <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="4" />
  5825. <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="4" />
  5826. <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="18" />
  5827. <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="32" />
  5828. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="4" />
  5829. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="8" />
  5830. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="16" />
  5831. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="14" />
  5832. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  5833. <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="12" />
  5834. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="4" />
  5835. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="8" />
  5836. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="2" />
  5837. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  5838. <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" />
  5839. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="parenleft,parenleft.caps,parenleft.sc" k="8" />
  5840. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="8" />
  5841. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="underscore" k="8" />
  5842. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="M" k="2" />
  5843. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="m.sc" k="8" />
  5844. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="x.sc" k="4" />
  5845. <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="18" />
  5846. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="12" />
  5847. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="6" />
  5848. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="parenright,parenright.caps,parenright.sc" k="32" />
  5849. <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="12" />
  5850. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="36" />
  5851. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="26" />
  5852. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="slash,slash.caps,slash.sc" k="28" />
  5853. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="backslash,backslash.caps,backslash.sc" k="18" />
  5854. <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" />
  5855. <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="16" />
  5856. <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="24" />
  5857. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="6" />
  5858. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="62" />
  5859. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="36" />
  5860. <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="56" />
  5861. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="12" />
  5862. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="bracketright,bracketright.caps,bracketright.sc" k="11" />
  5863. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="parenleft,parenleft.caps,parenleft.sc" k="12" />
  5864. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="question,question.caps,question.sc" k="8" />
  5865. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="underscore" k="22" />
  5866. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="endash" k="3" />
  5867. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="m.sc" k="10" />
  5868. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="x.sc" k="28" />
  5869. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="braceright,braceright.caps,braceright.sc" k="3" />
  5870. <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="64" />
  5871. <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="8" />
  5872. <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="44" />
  5873. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="12" />
  5874. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  5875. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="48" />
  5876. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="parenright,parenright.caps,parenright.sc" k="6" />
  5877. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="82" />
  5878. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="slash,slash.caps,slash.sc" k="54" />
  5879. <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="92" />
  5880. <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="112" />
  5881. <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="58" />
  5882. <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="113" />
  5883. <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="104" />
  5884. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="58" />
  5885. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="38" />
  5886. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="52" />
  5887. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="40" />
  5888. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="70" />
  5889. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="4" />
  5890. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="f,germandbls,Germandbls,fi,fl" k="24" />
  5891. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="96" />
  5892. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="92" />
  5893. <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="89" />
  5894. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="70" />
  5895. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="80" />
  5896. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="86" />
  5897. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="2" />
  5898. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="16" />
  5899. <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="76" />
  5900. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="48" />
  5901. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="parenleft,parenleft.caps,parenleft.sc" k="16" />
  5902. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="30" />
  5903. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="underscore" k="62" />
  5904. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="emdash" k="4" />
  5905. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="emdash.caps" k="12" />
  5906. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="endash" k="32" />
  5907. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="endash.caps" k="12" />
  5908. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="hyphen" k="12" />
  5909. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="hyphen.caps" k="16" />
  5910. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="M" k="10" />
  5911. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="m.sc" k="74" />
  5912. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="x.sc" k="46" />
  5913. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="x" k="76" />
  5914. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="12" />
  5915. <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="14" />
  5916. <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="2" />
  5917. <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="4" />
  5918. <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="8" />
  5919. <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="4" />
  5920. <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="7" />
  5921. <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="18" />
  5922. <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="27" />
  5923. <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="6" />
  5924. <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="4" />
  5925. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="underscore" k="8" />
  5926. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="M" k="10" />
  5927. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="trademark" k="8" />
  5928. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="X" k="7" />
  5929. <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="43" />
  5930. <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="24" />
  5931. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  5932. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  5933. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="34" />
  5934. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="4" />
  5935. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="82" />
  5936. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="slash,slash.caps,slash.sc" k="54" />
  5937. <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="33" />
  5938. <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="72" />
  5939. <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="26" />
  5940. <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="49" />
  5941. <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="62" />
  5942. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="20" />
  5943. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="10" />
  5944. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="4" />
  5945. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="8" />
  5946. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="14" />
  5947. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="f,germandbls,Germandbls,fi,fl" k="18" />
  5948. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="58" />
  5949. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="42" />
  5950. <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="24" />
  5951. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="6" />
  5952. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
  5953. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="24" />
  5954. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  5955. <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="18" />
  5956. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="34" />
  5957. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="parenleft,parenleft.caps,parenleft.sc" k="12" />
  5958. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="12" />
  5959. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="underscore" k="50" />
  5960. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="endash" k="14" />
  5961. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="hyphen" k="26" />
  5962. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="hyphen.caps" k="8" />
  5963. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="M" k="12" />
  5964. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="m.sc" k="28" />
  5965. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="x.sc" k="4" />
  5966. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="x" k="20" />
  5967. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="4" />
  5968. <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="52" />
  5969. <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="4" />
  5970. <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="31" />
  5971. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="20" />
  5972. <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="7" />
  5973. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  5974. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="54" />
  5975. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="28" />
  5976. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="104" />
  5977. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="slash,slash.caps,slash.sc" k="36" />
  5978. <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="62" />
  5979. <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="94" />
  5980. <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="34" />
  5981. <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="83" />
  5982. <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="84" />
  5983. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="24" />
  5984. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="26" />
  5985. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="20" />
  5986. <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="24" />
  5987. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="42" />
  5988. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="f,germandbls,Germandbls,fi,fl" k="10" />
  5989. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="72" />
  5990. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="60" />
  5991. <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="36" />
  5992. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="30" />
  5993. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="30" />
  5994. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="28" />
  5995. <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="2" />
  5996. <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" />
  5997. <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="24" />
  5998. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="38" />
  5999. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="parenleft,parenleft.caps,parenleft.sc" k="20" />
  6000. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="28" />
  6001. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="underscore" k="52" />
  6002. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="endash" k="26" />
  6003. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="hyphen" k="28" />
  6004. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="hyphen.caps" k="4" />
  6005. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="M" k="24" />
  6006. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="m.sc" k="42" />
  6007. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="x.sc" k="20" />
  6008. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="x" k="24" />
  6009. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="copyright" k="8" />
  6010. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="registered" k="8" />
  6011. <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="12" />
  6012. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="6" />
  6013. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="26" />
  6014. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="ampersand,ampersand.caps,ampersand.sc" k="4" />
  6015. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="16" />
  6016. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="6" />
  6017. <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="6" />
  6018. <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="6" />
  6019. <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="46" />
  6020. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="20" />
  6021. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="24" />
  6022. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="24" />
  6023. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="12" />
  6024. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="18" />
  6025. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="hyphen.caps" k="4" />
  6026. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="M" k="2" />
  6027. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="m.sc" k="2" />
  6028. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="ampersand,ampersand.caps,ampersand.sc" k="6" />
  6029. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="34" />
  6030. <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="12" />
  6031. <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="4" />
  6032. <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="18" />
  6033. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="f,germandbls,Germandbls,fi,fl" k="2" />
  6034. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="2" />
  6035. <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="2" />
  6036. <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="7" />
  6037. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="13" />
  6038. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="10" />
  6039. <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="-1" />
  6040. <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="2" />
  6041. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="3" />
  6042. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="dagger" k="8" />
  6043. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="trademark" k="44" />
  6044. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="x" k="2" />
  6045. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="braceright,braceright.caps,braceright.sc" k="12" />
  6046. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="2" />
  6047. <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="24" />
  6048. <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" />
  6049. <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="24" />
  6050. <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="2" />
  6051. <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="38" />
  6052. <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="31" />
  6053. <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" />
  6054. <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="17" />
  6055. <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" />
  6056. <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="34" />
  6057. <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="37" />
  6058. <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="3" />
  6059. <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="4" />
  6060. <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="12" />
  6061. <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="26" />
  6062. <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="62" />
  6063. <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="54" />
  6064. <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="4" />
  6065. <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" />
  6066. <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="8" />
  6067. <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="8" />
  6068. <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="-14" />
  6069. <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="32" />
  6070. <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="16" />
  6071. <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="48" />
  6072. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="60" />
  6073. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="62" />
  6074. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="12" />
  6075. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="118" />
  6076. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="slash,slash.caps,slash.sc" k="90" />
  6077. <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="36" />
  6078. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="-4" />
  6079. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="90" />
  6080. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="f,germandbls,Germandbls,fi,fl" k="6" />
  6081. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="12" />
  6082. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="6" />
  6083. <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="6" />
  6084. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="24" />
  6085. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="74" />
  6086. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="70" />
  6087. <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="8" />
  6088. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="quotedblleft.sc,quoteleft.sc" k="8" />
  6089. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
  6090. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="four,four.lf,four.osf,four.sc" k="114" />
  6091. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="20" />
  6092. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="27" />
  6093. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="51" />
  6094. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="152" />
  6095. <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="4" />
  6096. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="underscore" k="22" />
  6097. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="hyphen" k="26" />
  6098. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="43" />
  6099. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="30" />
  6100. <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="16" />
  6101. <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="15" />
  6102. <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" />
  6103. <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="38" />
  6104. <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="14" />
  6105. <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="7" />
  6106. <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="6" />
  6107. <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="20" />
  6108. <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" />
  6109. <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" />
  6110. <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" />
  6111. <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="13" />
  6112. <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="18" />
  6113. <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="8" />
  6114. <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="5" />
  6115. <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="8" />
  6116. <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" />
  6117. <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="44" />
  6118. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="dagger" k="8" />
  6119. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="underscore" k="30" />
  6120. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="trademark" k="16" />
  6121. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="x" k="17" />
  6122. <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="12" />
  6123. <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="2" />
  6124. <hkern g1="backslash,backslash.caps,backslash.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  6125. <hkern g1="backslash,backslash.caps,backslash.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="72" />
  6126. <hkern g1="backslash,backslash.caps,backslash.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="66" />
  6127. <hkern g1="backslash,backslash.caps,backslash.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  6128. <hkern g1="backslash,backslash.caps,backslash.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="70" />
  6129. <hkern g1="backslash,backslash.caps,backslash.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="20" />
  6130. <hkern g1="backslash,backslash.caps,backslash.sc" g2="backslash,backslash.caps,backslash.sc" k="72" />
  6131. <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="-12" />
  6132. <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="12" />
  6133. <hkern g1="backslash,backslash.caps,backslash.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="6" />
  6134. <hkern g1="backslash,backslash.caps,backslash.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="42" />
  6135. <hkern g1="backslash,backslash.caps,backslash.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="12" />
  6136. <hkern g1="backslash,backslash.caps,backslash.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
  6137. <hkern g1="backslash,backslash.caps,backslash.sc" g2="f,germandbls,Germandbls,fi,fl" k="-12" />
  6138. <hkern g1="backslash,backslash.caps,backslash.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="54" />
  6139. <hkern g1="backslash,backslash.caps,backslash.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="28" />
  6140. <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="16" />
  6141. <hkern g1="backslash,backslash.caps,backslash.sc" g2="quotedblleft.sc,quoteleft.sc" k="68" />
  6142. <hkern g1="backslash,backslash.caps,backslash.sc" g2="quotedblright.sc,quoteright.sc" k="44" />
  6143. <hkern g1="backslash,backslash.caps,backslash.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
  6144. <hkern g1="backslash,backslash.caps,backslash.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="12" />
  6145. <hkern g1="backslash,backslash.caps,backslash.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="8" />
  6146. <hkern g1="backslash,backslash.caps,backslash.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="6" />
  6147. <hkern g1="backslash,backslash.caps,backslash.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="4" />
  6148. <hkern g1="backslash,backslash.caps,backslash.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="50" />
  6149. <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" />
  6150. <hkern g1="backslash,backslash.caps,backslash.sc" g2="question,question.caps,question.sc" k="43" />
  6151. <hkern g1="backslash,backslash.caps,backslash.sc" g2="hyphen" k="18" />
  6152. <hkern g1="backslash,backslash.caps,backslash.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="42" />
  6153. <hkern g1="backslash,backslash.caps,backslash.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="24" />
  6154. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="8" />
  6155. <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" />
  6156. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  6157. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="-1" />
  6158. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="4" />
  6159. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  6160. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  6161. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  6162. <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" />
  6163. <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="4" />
  6164. <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="2" />
  6165. <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="18" />
  6166. <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="8" />
  6167. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="6" />
  6168. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="4" />
  6169. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="4" />
  6170. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="4" />
  6171. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  6172. <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" />
  6173. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="15" />
  6174. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="15" />
  6175. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="4" />
  6176. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="34" />
  6177. <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="4" />
  6178. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="4" />
  6179. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="two,two.lf,two.osf,two.sc" k="34" />
  6180. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="four,four.lf,four.osf,four.sc" k="2" />
  6181. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="6" />
  6182. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="2" />
  6183. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="6" />
  6184. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="6" />
  6185. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="4" />
  6186. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="34" />
  6187. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-44" />
  6188. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="4" />
  6189. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="five,five.lf,five.osf,five.sc" k="2" />
  6190. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="4" />
  6191. <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="2" />
  6192. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="M" k="4" />
  6193. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="x.sc" k="4" />
  6194. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="integral" k="8" />
  6195. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="mu" k="2" />
  6196. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="partialdiff" k="2" />
  6197. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="pi" k="12" />
  6198. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="product" k="12" />
  6199. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="summation" k="4" />
  6200. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="ordfeminine,ordmasculine" k="6" />
  6201. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="16" />
  6202. <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" />
  6203. <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="38" />
  6204. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="15" />
  6205. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="4" />
  6206. <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="8" />
  6207. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="6" />
  6208. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="4" />
  6209. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="18" />
  6210. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="12" />
  6211. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="44" />
  6212. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="4" />
  6213. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="20" />
  6214. <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="16" />
  6215. <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="16" />
  6216. <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="38" />
  6217. <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="24" />
  6218. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="14" />
  6219. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="18" />
  6220. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="16" />
  6221. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="12" />
  6222. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="12" />
  6223. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="8" />
  6224. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="f,germandbls,Germandbls,fi,fl" k="8" />
  6225. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="4" />
  6226. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="34" />
  6227. <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="52" />
  6228. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="44" />
  6229. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="14" />
  6230. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="26" />
  6231. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="8" />
  6232. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="8" />
  6233. <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="28" />
  6234. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  6235. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="24" />
  6236. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="26" />
  6237. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="46" />
  6238. <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="32" />
  6239. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="quotedblleft.sc,quoteleft.sc" k="8" />
  6240. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="14" />
  6241. <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="12" />
  6242. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="two,two.lf,two.osf,two.sc" k="12" />
  6243. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="four,four.lf,four.osf,four.sc" k="34" />
  6244. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="4" />
  6245. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="12" />
  6246. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="20" />
  6247. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="12" />
  6248. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="2" />
  6249. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="16" />
  6250. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-40" />
  6251. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="five,five.lf,five.osf,five.sc" k="4" />
  6252. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="10" />
  6253. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="percent.lf,perthousand.lf" k="10" />
  6254. <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="12" />
  6255. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="fraction" k="4" />
  6256. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="M" k="18" />
  6257. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="m.sc" k="12" />
  6258. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="x.sc" k="12" />
  6259. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="X" k="4" />
  6260. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="x" k="12" />
  6261. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="mu" k="8" />
  6262. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="partialdiff" k="8" />
  6263. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="pi" k="18" />
  6264. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="product" k="8" />
  6265. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="summation" k="8" />
  6266. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="Delta" k="16" />
  6267. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="Schwa" k="20" />
  6268. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="8" />
  6269. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="8" />
  6270. <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="12" />
  6271. <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="2" />
  6272. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="4" />
  6273. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="56" />
  6274. <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="8" />
  6275. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="42" />
  6276. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="62" />
  6277. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="46" />
  6278. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="90" />
  6279. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="46" />
  6280. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="36" />
  6281. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="parenright,parenright.caps,parenright.sc" k="24" />
  6282. <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="72" />
  6283. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="70" />
  6284. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="4" />
  6285. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="slash,slash.caps,slash.sc" k="72" />
  6286. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="backslash,backslash.caps,backslash.sc" k="76" />
  6287. <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="4" />
  6288. <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="32" />
  6289. <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="2" />
  6290. <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="4" />
  6291. <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="8" />
  6292. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="26" />
  6293. <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="42" />
  6294. <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="26" />
  6295. <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" />
  6296. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="24" />
  6297. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="12" />
  6298. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="20" />
  6299. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="4" />
  6300. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="4" />
  6301. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="4" />
  6302. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="4" />
  6303. <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="4" />
  6304. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="18" />
  6305. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="56" />
  6306. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="8" />
  6307. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="16" />
  6308. <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="8" />
  6309. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="quotedblleft.sc,quoteleft.sc" k="32" />
  6310. <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="8" />
  6311. <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="4" />
  6312. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="two,two.lf,two.osf,two.sc" k="60" />
  6313. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
  6314. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="48" />
  6315. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="28" />
  6316. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="8" />
  6317. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="28" />
  6318. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="10" />
  6319. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="48" />
  6320. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="44" />
  6321. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="18" />
  6322. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="five,five.lf,five.osf,five.sc" k="26" />
  6323. <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" />
  6324. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="one,one.lf,one.osf,one.sc" k="30" />
  6325. <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="24" />
  6326. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="underscore" k="14" />
  6327. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="M" k="4" />
  6328. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="m.sc" k="8" />
  6329. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="x.sc" k="16" />
  6330. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="X" k="27" />
  6331. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="x" k="4" />
  6332. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="integral" k="20" />
  6333. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="mu" k="4" />
  6334. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="pi" k="18" />
  6335. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="product" k="18" />
  6336. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="summation" k="74" />
  6337. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Delta" k="18" />
  6338. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Schwa" k="4" />
  6339. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="30" />
  6340. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="braceright,braceright.caps,braceright.sc" k="16" />
  6341. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="60" />
  6342. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="48" />
  6343. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="6" />
  6344. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="parenright,parenright.caps,parenright.sc" k="6" />
  6345. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="12" />
  6346. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="backslash,backslash.caps,backslash.sc" k="30" />
  6347. <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="2" />
  6348. <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="26" />
  6349. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="bracketright,bracketright.caps,bracketright.sc" k="6" />
  6350. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="f,germandbls,Germandbls,fi,fl" k="5" />
  6351. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="9" />
  6352. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="3" />
  6353. <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="3" />
  6354. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  6355. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="4" />
  6356. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="4" />
  6357. <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="2" />
  6358. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="2" />
  6359. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="question,question.caps,question.sc" k="36" />
  6360. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="underscore" k="4" />
  6361. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="trademark" k="12" />
  6362. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="4" />
  6363. <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="12" />
  6364. <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="6" />
  6365. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="parenright,parenright.caps,parenright.sc" k="-18" />
  6366. <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="2" />
  6367. <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="18" />
  6368. <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="2" />
  6369. <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="2" />
  6370. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="-7" />
  6371. <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="4" />
  6372. <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="4" />
  6373. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="quotedblright.sc,quoteright.sc" k="-18" />
  6374. <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="2" />
  6375. <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="4" />
  6376. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-18" />
  6377. <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="-6" />
  6378. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="hyphen" k="8" />
  6379. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="9" />
  6380. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="backslash,backslash.caps,backslash.sc" k="-12" />
  6381. <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="11" />
  6382. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="f,germandbls,Germandbls,fi,fl" k="6" />
  6383. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="3" />
  6384. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="2" />
  6385. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  6386. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="4" />
  6387. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="-3" />
  6388. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="question,question.caps,question.sc" k="6" />
  6389. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="underscore" k="10" />
  6390. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="trademark" k="8" />
  6391. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="x" k="2" />
  6392. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="4" />
  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="ampersand,ampersand.caps,ampersand.sc" k="28" />
  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="asterisk,asterisk.caps,asterisk.sc" k="24" />
  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="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="4" />
  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="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="52" />
  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="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="16" />
  6398. <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="26" />
  6399. <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" />
  6400. <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="16" />
  6401. <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="21" />
  6402. <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="4" />
  6403. <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="2" />
  6404. <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="26" />
  6405. <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="18" />
  6406. <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="22" />
  6407. <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="21" />
  6408. <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="16" />
  6409. <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="8" />
  6410. <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="8" />
  6411. <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="24" />
  6412. <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="12" />
  6413. <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="6" />
  6414. <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="6" />
  6415. <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="12" />
  6416. <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="4" />
  6417. <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="6" />
  6418. <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="4" />
  6419. <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="4" />
  6420. <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="46" />
  6421. <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="14" />
  6422. <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="38" />
  6423. <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="17" />
  6424. <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="4" />
  6425. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="asterisk,asterisk.caps,asterisk.sc" k="24" />
  6426. <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="18" />
  6427. <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="30" />
  6428. <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="12" />
  6429. <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="12" />
  6430. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="bracketright,bracketright.caps,bracketright.sc" k="4" />
  6431. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="question,question.caps,question.sc" k="24" />
  6432. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="underscore" k="4" />
  6433. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="trademark" k="24" />
  6434. <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="4" />
  6435. <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="4" />
  6436. <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="12" />
  6437. <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="-6" />
  6438. <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="2" />
  6439. <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="4" />
  6440. <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="8" />
  6441. <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="-12" />
  6442. <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="4" />
  6443. <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="8" />
  6444. <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" />
  6445. <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="8" />
  6446. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="27" />
  6447. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="24" />
  6448. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="46" />
  6449. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="12" />
  6450. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  6451. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="8" />
  6452. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="slash,slash.caps,slash.sc" k="16" />
  6453. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="backslash,backslash.caps,backslash.sc" k="16" />
  6454. <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="18" />
  6455. <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="8" />
  6456. <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="26" />
  6457. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="8" />
  6458. <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="16" />
  6459. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="16" />
  6460. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="27" />
  6461. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="39" />
  6462. <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="16" />
  6463. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="quotedblleft.sc,quoteleft.sc" k="16" />
  6464. <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="8" />
  6465. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="two,two.lf,two.osf,two.sc" k="42" />
  6466. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="four,four.lf,four.osf,four.sc" k="43" />
  6467. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="28" />
  6468. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="40" />
  6469. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="12" />
  6470. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="five,five.lf,five.osf,five.sc" k="26" />
  6471. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="16" />
  6472. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="one,one.lf,one.osf,one.sc" k="6" />
  6473. <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="36" />
  6474. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="at" k="12" />
  6475. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="12" />
  6476. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="8" />
  6477. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="8" />
  6478. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="20" />
  6479. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="42" />
  6480. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="46" />
  6481. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="44" />
  6482. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
  6483. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="44" />
  6484. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="36" />
  6485. <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="32" />
  6486. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="40" />
  6487. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="slash,slash.caps,slash.sc" k="36" />
  6488. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="backslash,backslash.caps,backslash.sc" k="50" />
  6489. <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="19" />
  6490. <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="4" />
  6491. <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="17" />
  6492. <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="8" />
  6493. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="21" />
  6494. <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="4" />
  6495. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="12" />
  6496. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="f,germandbls,Germandbls,fi,fl" k="18" />
  6497. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="12" />
  6498. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="24" />
  6499. <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="30" />
  6500. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="24" />
  6501. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="18" />
  6502. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="12" />
  6503. <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="6" />
  6504. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="24" />
  6505. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="18" />
  6506. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="18" />
  6507. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="36" />
  6508. <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="22" />
  6509. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="quotedblleft.sc,quoteleft.sc" k="36" />
  6510. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="two,two.lf,two.osf,two.sc" k="43" />
  6511. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="three,three.lf,three.osf,three.sc" k="6" />
  6512. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="four,four.lf,four.osf,four.sc" k="12" />
  6513. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="22" />
  6514. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="14" />
  6515. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="14" />
  6516. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="8" />
  6517. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="18" />
  6518. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="22" />
  6519. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-8" />
  6520. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="18" />
  6521. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="28" />
  6522. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="five,five.lf,five.osf,five.sc" k="18" />
  6523. <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" />
  6524. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="one,one.lf,one.osf,one.sc" k="12" />
  6525. <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="20" />
  6526. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="M" k="12" />
  6527. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="x" k="18" />
  6528. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="product" k="24" />
  6529. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="48" />
  6530. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="4" />
  6531. <hkern g1="f" g2="asterisk,asterisk.caps,asterisk.sc" k="-80" />
  6532. <hkern g1="f" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="-12" />
  6533. <hkern g1="f" g2="parenright,parenright.caps,parenright.sc" k="-108" />
  6534. <hkern g1="f" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="36" />
  6535. <hkern g1="f" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-36" />
  6536. <hkern g1="f" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="-56" />
  6537. <hkern g1="f" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-107" />
  6538. <hkern g1="f" g2="backslash,backslash.caps,backslash.sc" k="-62" />
  6539. <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="17" />
  6540. <hkern g1="f" g2="bracketright,bracketright.caps,bracketright.sc" k="-106" />
  6541. <hkern g1="f" g2="f,germandbls,Germandbls,fi,fl" k="4" />
  6542. <hkern g1="f" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="6" />
  6543. <hkern g1="f" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="1" />
  6544. <hkern g1="f" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="3" />
  6545. <hkern g1="f" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="10" />
  6546. <hkern g1="f" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="3" />
  6547. <hkern g1="f" g2="question,question.caps,question.sc" k="-76" />
  6548. <hkern g1="f" g2="underscore" k="10" />
  6549. <hkern g1="f" g2="trademark" k="-79" />
  6550. <hkern g1="f" g2="brokenbar" k="-30" />
  6551. <hkern g1="f" g2="paragraph" k="-36" />
  6552. <hkern g1="f" g2="section" k="-67" />
  6553. <hkern g1="f" g2="braceright,braceright.caps,braceright.sc" k="-42" />
  6554. <hkern g1="f" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="18" />
  6555. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="16" />
  6556. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="32" />
  6557. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="12" />
  6558. <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" />
  6559. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-24" />
  6560. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="slash,slash.caps,slash.sc" k="72" />
  6561. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  6562. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="8" />
  6563. <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="12" />
  6564. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="27" />
  6565. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="underscore" k="104" />
  6566. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="4" />
  6567. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="12" />
  6568. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-12" />
  6569. <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="28" />
  6570. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="f,germandbls,Germandbls,fi,fl" k="-3" />
  6571. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="-6" />
  6572. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="7" />
  6573. <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="2" />
  6574. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="2" />
  6575. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="-6" />
  6576. <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="2" />
  6577. <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="4" />
  6578. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="underscore" k="-4" />
  6579. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="x" k="2" />
  6580. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="4" />
  6581. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="-6" />
  6582. <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="-4" />
  6583. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="quotedblleft.sc,quoteleft.sc" k="8" />
  6584. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="quotedblright.sc,quoteright.sc" k="-4" />
  6585. <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="-12" />
  6586. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="trademark" k="4" />
  6587. <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="6" />
  6588. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="12" />
  6589. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="8" />
  6590. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="4" />
  6591. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="10" />
  6592. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="6" />
  6593. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="backslash,backslash.caps,backslash.sc" k="16" />
  6594. <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="2" />
  6595. <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="2" />
  6596. <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="4" />
  6597. <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="4" />
  6598. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="2" />
  6599. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="5" />
  6600. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="16" />
  6601. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="two,two.lf,two.osf,two.sc" k="28" />
  6602. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="6" />
  6603. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="2" />
  6604. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="five,five.lf,five.osf,five.sc" k="4" />
  6605. <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="4" />
  6606. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="integral" k="12" />
  6607. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="pi" k="8" />
  6608. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="product" k="16" />
  6609. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="summation" k="16" />
  6610. <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="4" />
  6611. <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="32" />
  6612. <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="24" />
  6613. <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="12" />
  6614. <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="43" />
  6615. <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="12" />
  6616. <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" />
  6617. <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="18" />
  6618. <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" />
  6619. <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="17" />
  6620. <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="9" />
  6621. <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="11" />
  6622. <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="11" />
  6623. <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="7" />
  6624. <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="18" />
  6625. <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="15" />
  6626. <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="2" />
  6627. <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="8" />
  6628. <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="49" />
  6629. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="dagger" k="4" />
  6630. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="trademark" k="24" />
  6631. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="x" k="5" />
  6632. <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="6" />
  6633. <hkern g1="k,kcommaaccent,kgreenlandic" g2="asterisk,asterisk.caps,asterisk.sc" k="4" />
  6634. <hkern g1="k,kcommaaccent,kgreenlandic" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="18" />
  6635. <hkern g1="k,kcommaaccent,kgreenlandic" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="6" />
  6636. <hkern g1="k,kcommaaccent,kgreenlandic" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="3" />
  6637. <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="31" />
  6638. <hkern g1="k,kcommaaccent,kgreenlandic" g2="f,germandbls,Germandbls,fi,fl" k="6" />
  6639. <hkern g1="k,kcommaaccent,kgreenlandic" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="20" />
  6640. <hkern g1="k,kcommaaccent,kgreenlandic" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="2" />
  6641. <hkern g1="k,kcommaaccent,kgreenlandic" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="2" />
  6642. <hkern g1="k,kcommaaccent,kgreenlandic" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="5" />
  6643. <hkern g1="k,kcommaaccent,kgreenlandic" g2="underscore" k="4" />
  6644. <hkern g1="k,kcommaaccent,kgreenlandic" g2="emdash" k="4" />
  6645. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="16" />
  6646. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="52" />
  6647. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="12" />
  6648. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="slash,slash.caps,slash.sc" k="12" />
  6649. <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="36" />
  6650. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="9" />
  6651. <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="16" />
  6652. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="quotedblleft.sc,quoteleft.sc" k="20" />
  6653. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="quotedblright.sc,quoteright.sc" k="22" />
  6654. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="4" />
  6655. <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="8" />
  6656. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-6" />
  6657. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="emdash" k="8" />
  6658. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="hyphen" k="36" />
  6659. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="m.sc" k="2" />
  6660. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="trademark" k="8" />
  6661. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-12" />
  6662. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="31" />
  6663. <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" />
  6664. <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="6" />
  6665. <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="52" />
  6666. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="24" />
  6667. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="backslash,backslash.caps,backslash.sc" k="36" />
  6668. <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="4" />
  6669. <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="33" />
  6670. <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="101" />
  6671. <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="85" />
  6672. <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="78" />
  6673. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  6674. <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="4" />
  6675. <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" />
  6676. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="quotedblleft.sc,quoteleft.sc" k="108" />
  6677. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="quotedblright.sc,quoteright.sc" k="90" />
  6678. <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" />
  6679. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="12" />
  6680. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-24" />
  6681. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="dagger" k="16" />
  6682. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="emdash" k="16" />
  6683. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="hyphen" k="28" />
  6684. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="daggerdbl" k="16" />
  6685. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="trademark" k="101" />
  6686. <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="-4" />
  6687. <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="18" />
  6688. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  6689. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="24" />
  6690. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  6691. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="51" />
  6692. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="slash,slash.caps,slash.sc" k="64" />
  6693. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="backslash,backslash.caps,backslash.sc" k="6" />
  6694. <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="4" />
  6695. <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="4" />
  6696. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="8" />
  6697. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="4" />
  6698. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="4" />
  6699. <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="4" />
  6700. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="12" />
  6701. <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="4" />
  6702. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="two,two.lf,two.osf,two.sc" k="38" />
  6703. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="four,four.lf,four.osf,four.sc" k="10" />
  6704. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="16" />
  6705. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="4" />
  6706. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="12" />
  6707. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="4" />
  6708. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="6" />
  6709. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="12" />
  6710. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="4" />
  6711. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="five,five.lf,five.osf,five.sc" k="8" />
  6712. <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="6" />
  6713. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="underscore" k="46" />
  6714. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="x" k="4" />
  6715. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="pi" k="4" />
  6716. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="4" />
  6717. <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" />
  6718. <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" />
  6719. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="4" />
  6720. <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="4" />
  6721. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="2" />
  6722. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="26" />
  6723. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="27" />
  6724. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="slash,slash.caps,slash.sc" k="20" />
  6725. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="backslash,backslash.caps,backslash.sc" k="21" />
  6726. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="14" />
  6727. <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" />
  6728. <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="27" />
  6729. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="17" />
  6730. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="14" />
  6731. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="5" />
  6732. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="10" />
  6733. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="f,germandbls,Germandbls,fi,fl" k="15" />
  6734. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  6735. <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" />
  6736. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
  6737. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="28" />
  6738. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="4" />
  6739. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="4" />
  6740. <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="13" />
  6741. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="24" />
  6742. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="24" />
  6743. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="10" />
  6744. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="58" />
  6745. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="17" />
  6746. <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" />
  6747. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="two,two.lf,two.osf,two.sc" k="34" />
  6748. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="four,four.lf,four.osf,four.sc" k="26" />
  6749. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="14" />
  6750. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="16" />
  6751. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="30" />
  6752. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="24" />
  6753. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="10" />
  6754. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  6755. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-30" />
  6756. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="10" />
  6757. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="one,one.lf,one.osf,one.sc" k="4" />
  6758. <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" />
  6759. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="M" k="8" />
  6760. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="m.sc" k="7" />
  6761. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="x.sc" k="10" />
  6762. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="X" k="2" />
  6763. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="x" k="10" />
  6764. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="mu" k="10" />
  6765. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="pi" k="20" />
  6766. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="Delta" k="4" />
  6767. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="Schwa" k="24" />
  6768. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="4" />
  6769. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="12" />
  6770. <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="-12" />
  6771. <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="20" />
  6772. <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="40" />
  6773. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="12" />
  6774. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="82" />
  6775. <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="27" />
  6776. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="86" />
  6777. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="112" />
  6778. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="4" />
  6779. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="102" />
  6780. <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="38" />
  6781. <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="76" />
  6782. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="slash,slash.caps,slash.sc" k="6" />
  6783. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="backslash,backslash.caps,backslash.sc" k="68" />
  6784. <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="4" />
  6785. <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="12" />
  6786. <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="8" />
  6787. <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="46" />
  6788. <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="78" />
  6789. <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="66" />
  6790. <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="70" />
  6791. <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="12" />
  6792. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="f,germandbls,Germandbls,fi,fl" k="16" />
  6793. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="4" />
  6794. <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="24" />
  6795. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="34" />
  6796. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
  6797. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="12" />
  6798. <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="12" />
  6799. <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="42" />
  6800. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="quotedblleft.sc,quoteleft.sc" k="50" />
  6801. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="quotedblright.sc,quoteright.sc" k="30" />
  6802. <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="22" />
  6803. <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="32" />
  6804. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
  6805. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="four,four.lf,four.osf,four.sc" k="12" />
  6806. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="12" />
  6807. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="16" />
  6808. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="42" />
  6809. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="12" />
  6810. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-6" />
  6811. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="48" />
  6812. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="five,five.lf,five.osf,five.sc" k="12" />
  6813. <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" />
  6814. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="percent.lf,perthousand.lf" k="32" />
  6815. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="one,one.lf,one.osf,one.sc" k="46" />
  6816. <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="12" />
  6817. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="endash.caps" k="24" />
  6818. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="M" k="8" />
  6819. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="m.sc" k="24" />
  6820. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="pi" k="12" />
  6821. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="product" k="12" />
  6822. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="summation" k="4" />
  6823. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="Schwa" k="16" />
  6824. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="16" />
  6825. <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" />
  6826. <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="36" />
  6827. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="50" />
  6828. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="74" />
  6829. <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="38" />
  6830. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="52" />
  6831. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="80" />
  6832. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="8" />
  6833. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="56" />
  6834. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="52" />
  6835. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="43" />
  6836. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="slash,slash.caps,slash.sc" k="28" />
  6837. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="backslash,backslash.caps,backslash.sc" k="56" />
  6838. <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" />
  6839. <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="4" />
  6840. <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="4" />
  6841. <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="56" />
  6842. <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="50" />
  6843. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="-6" />
  6844. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="24" />
  6845. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="18" />
  6846. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="16" />
  6847. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="30" />
  6848. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="f,germandbls,Germandbls,fi,fl" k="36" />
  6849. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="-6" />
  6850. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="36" />
  6851. <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="34" />
  6852. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="34" />
  6853. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="22" />
  6854. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="24" />
  6855. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="34" />
  6856. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="22" />
  6857. <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="26" />
  6858. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="4" />
  6859. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="58" />
  6860. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="J,Jcircumflex,Nhookleft,Jacute" k="4" />
  6861. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="30" />
  6862. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="24" />
  6863. <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" />
  6864. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="quotedblleft.sc,quoteleft.sc" k="80" />
  6865. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  6866. <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="10" />
  6867. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="two,two.lf,two.osf,two.sc" k="36" />
  6868. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="four,four.lf,four.osf,four.sc" k="16" />
  6869. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="16" />
  6870. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="28" />
  6871. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="44" />
  6872. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="28" />
  6873. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="26" />
  6874. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
  6875. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-34" />
  6876. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-12" />
  6877. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="46" />
  6878. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="five,five.lf,five.osf,five.sc" k="18" />
  6879. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="38" />
  6880. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="percent.lf,perthousand.lf" k="44" />
  6881. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="one,one.lf,one.osf,one.sc" k="4" />
  6882. <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="34" />
  6883. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="M" k="12" />
  6884. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="m.sc" k="10" />
  6885. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="x.sc" k="4" />
  6886. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="X" k="30" />
  6887. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="x" k="64" />
  6888. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="integral" k="8" />
  6889. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="mu" k="4" />
  6890. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="pi" k="22" />
  6891. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="product" k="12" />
  6892. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Delta" k="12" />
  6893. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Schwa" k="42" />
  6894. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="at" k="6" />
  6895. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="53" />
  6896. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="30" />
  6897. <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="76" />
  6898. <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="24" />
  6899. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="8" />
  6900. <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="2" />
  6901. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="68" />
  6902. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="72" />
  6903. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="12" />
  6904. <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="76" />
  6905. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="slash,slash.caps,slash.sc" k="69" />
  6906. <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="16" />
  6907. <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="96" />
  6908. <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="56" />
  6909. <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="42" />
  6910. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="4" />
  6911. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="18" />
  6912. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="f,germandbls,Germandbls,fi,fl" k="12" />
  6913. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="56" />
  6914. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="44" />
  6915. <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="26" />
  6916. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="-8" />
  6917. <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="22" />
  6918. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="36" />
  6919. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="43" />
  6920. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="2" />
  6921. <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" />
  6922. <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="4" />
  6923. <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="8" />
  6924. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="two,two.lf,two.osf,two.sc" k="43" />
  6925. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="four,four.lf,four.osf,four.sc" k="82" />
  6926. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="24" />
  6927. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="34" />
  6928. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="4" />
  6929. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="6" />
  6930. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="46" />
  6931. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="100" />
  6932. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="100" />
  6933. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="-6" />
  6934. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="five,five.lf,five.osf,five.sc" k="12" />
  6935. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="one,one.lf,one.osf,one.sc" k="2" />
  6936. <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="32" />
  6937. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="fraction" k="43" />
  6938. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="M" k="8" />
  6939. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="m.sc" k="26" />
  6940. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="integral" k="8" />
  6941. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="mu" k="4" />
  6942. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="partialdiff" k="8" />
  6943. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="product" k="4" />
  6944. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="summation" k="4" />
  6945. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="Delta" k="49" />
  6946. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="Schwa" k="8" />
  6947. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="at" k="42" />
  6948. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="4" />
  6949. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="44" />
  6950. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="30" />
  6951. <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="104" />
  6952. <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="8" />
  6953. <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="22" />
  6954. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="22" />
  6955. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
  6956. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="asterisk,asterisk.caps,asterisk.sc" k="4" />
  6957. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="31" />
  6958. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="64" />
  6959. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="slash,slash.caps,slash.sc" k="60" />
  6960. <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="12" />
  6961. <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="92" />
  6962. <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="27" />
  6963. <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="68" />
  6964. <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="50" />
  6965. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="2" />
  6966. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="f,germandbls,Germandbls,fi,fl" k="8" />
  6967. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="44" />
  6968. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="22" />
  6969. <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="8" />
  6970. <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="8" />
  6971. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="56" />
  6972. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="J,Jcircumflex,Nhookleft,Jacute" k="8" />
  6973. <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="4" />
  6974. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="16" />
  6975. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="two,two.lf,two.osf,two.sc" k="6" />
  6976. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="four,four.lf,four.osf,four.sc" k="74" />
  6977. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="seven,seven.lf,seven.osf,seven.sc" k="-6" />
  6978. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="eight,eight.lf,eight.osf,eight.sc" k="4" />
  6979. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="cent,cent.lf,cent.osf,cent.sc" k="18" />
  6980. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="currency,currency.lf,currency.osf,currency.sc" k="4" />
  6981. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="euro,euro.lf,euro.osf,euro.sc" k="16" />
  6982. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="florin,florin.lf,florin.osf,florin.sc" k="67" />
  6983. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="20" />
  6984. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="-6" />
  6985. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="one,one.lf,one.osf,one.sc" k="-4" />
  6986. <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" />
  6987. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="fraction" k="164" />
  6988. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="M" k="26" />
  6989. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="m.sc" k="26" />
  6990. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="x" k="2" />
  6991. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="mu" k="4" />
  6992. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="partialdiff" k="8" />
  6993. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="product" k="6" />
  6994. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="summation" k="2" />
  6995. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="Delta" k="31" />
  6996. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="at" k="24" />
  6997. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="4" />
  6998. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="8" />
  6999. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="8" />
  7000. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="12" />
  7001. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="slash,slash.caps,slash.sc" k="31" />
  7002. <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="66" />
  7003. <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" />
  7004. <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="20" />
  7005. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="12" />
  7006. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="22" />
  7007. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="16" />
  7008. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="12" />
  7009. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="14" />
  7010. <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="4" />
  7011. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="three,three.lf,three.osf,three.sc" k="-24" />
  7012. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="four,four.lf,four.osf,four.sc" k="38" />
  7013. <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="16" />
  7014. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="m.sc" k="32" />
  7015. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="8" />
  7016. <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="98" />
  7017. <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="24" />
  7018. <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="46" />
  7019. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="24" />
  7020. <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="79" />
  7021. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="f,germandbls,Germandbls,fi,fl" k="12" />
  7022. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="55" />
  7023. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="49" />
  7024. <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="30" />
  7025. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="12" />
  7026. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="18" />
  7027. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="24" />
  7028. <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" />
  7029. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="J,Jcircumflex,Nhookleft,Jacute" k="8" />
  7030. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="M" k="14" />
  7031. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="x" k="18" />
  7032. <hkern g1="quotedblright.sc,quoteright.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="24" />
  7033. <hkern g1="quotedblright.sc,quoteright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="74" />
  7034. <hkern g1="quotedblright.sc,quoteright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="73" />
  7035. <hkern g1="quotedblright.sc,quoteright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="22" />
  7036. <hkern g1="quotedblright.sc,quoteright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="78" />
  7037. <hkern g1="quotedblright.sc,quoteright.sc" g2="slash,slash.caps,slash.sc" k="130" />
  7038. <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="72" />
  7039. <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="18" />
  7040. <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="56" />
  7041. <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="24" />
  7042. <hkern g1="quotedblright.sc,quoteright.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="12" />
  7043. <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="4" />
  7044. <hkern g1="quotedblright.sc,quoteright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="20" />
  7045. <hkern g1="quotedblright.sc,quoteright.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="8" />
  7046. <hkern g1="quotedblright.sc,quoteright.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="12" />
  7047. <hkern g1="quotedblright.sc,quoteright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="80" />
  7048. <hkern g1="quotedblright.sc,quoteright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="152" />
  7049. <hkern g1="quotedblright.sc,quoteright.sc" g2="m.sc" k="32" />
  7050. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="12" />
  7051. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="parenright,parenright.caps,parenright.sc" k="12" />
  7052. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="52" />
  7053. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-6" />
  7054. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="slash,slash.caps,slash.sc" k="6" />
  7055. <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" />
  7056. <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" />
  7057. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="6" />
  7058. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="11" />
  7059. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="3" />
  7060. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="-3" />
  7061. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="question,question.caps,question.sc" k="12" />
  7062. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="underscore" k="8" />
  7063. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="braceright,braceright.caps,braceright.sc" k="12" />
  7064. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="6" />
  7065. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="14" />
  7066. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="12" />
  7067. <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="6" />
  7068. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="16" />
  7069. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="backslash,backslash.caps,backslash.sc" k="4" />
  7070. <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="2" />
  7071. <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="12" />
  7072. <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="14" />
  7073. <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="14" />
  7074. <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="24" />
  7075. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="2" />
  7076. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="4" />
  7077. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="quotedblleft.sc,quoteleft.sc" k="12" />
  7078. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="quotedblright.sc,quoteright.sc" k="14" />
  7079. <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="4" />
  7080. <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="6" />
  7081. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-18" />
  7082. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="8" />
  7083. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="m.sc" k="4" />
  7084. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="trademark" k="32" />
  7085. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="x.sc" k="2" />
  7086. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="braceright,braceright.caps,braceright.sc" k="8" />
  7087. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="24" />
  7088. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="parenright,parenright.caps,parenright.sc" k="18" />
  7089. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="36" />
  7090. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="4" />
  7091. <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="13" />
  7092. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="34" />
  7093. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
  7094. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="17" />
  7095. <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" />
  7096. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="12" />
  7097. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="10" />
  7098. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="1" />
  7099. <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="6" />
  7100. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  7101. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="question,question.caps,question.sc" k="8" />
  7102. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="x" k="7" />
  7103. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="braceright,braceright.caps,braceright.sc" k="6" />
  7104. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="3" />
  7105. <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="12" />
  7106. <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="16" />
  7107. <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="8" />
  7108. <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="18" />
  7109. <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="12" />
  7110. <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" />
  7111. <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="30" />
  7112. <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="24" />
  7113. <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" />
  7114. <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="6" />
  7115. <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="18" />
  7116. <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" />
  7117. <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="16" />
  7118. <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" />
  7119. <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="17" />
  7120. <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="18" />
  7121. <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="6" />
  7122. <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" />
  7123. <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="48" />
  7124. <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="42" />
  7125. <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="21" />
  7126. <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="16" />
  7127. <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="16" />
  7128. <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="8" />
  7129. <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="7" />
  7130. <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="7" />
  7131. <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="27" />
  7132. <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="22" />
  7133. <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" />
  7134. <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="3" />
  7135. <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="16" />
  7136. <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" />
  7137. <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" />
  7138. <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="14" />
  7139. <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="14" />
  7140. <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="19" />
  7141. <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="19" />
  7142. <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="6" />
  7143. <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="4" />
  7144. <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="30" />
  7145. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="dagger" k="8" />
  7146. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="underscore" k="21" />
  7147. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="m.sc" k="14" />
  7148. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="trademark" k="64" />
  7149. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="x.sc" k="25" />
  7150. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="x" k="20" />
  7151. <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="24" />
  7152. <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="2" />
  7153. <hkern g1="slash,slash.caps,slash.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="28" />
  7154. <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="6" />
  7155. <hkern g1="slash,slash.caps,slash.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  7156. <hkern g1="slash,slash.caps,slash.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  7157. <hkern g1="slash,slash.caps,slash.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="58" />
  7158. <hkern g1="slash,slash.caps,slash.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="26" />
  7159. <hkern g1="slash,slash.caps,slash.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="88" />
  7160. <hkern g1="slash,slash.caps,slash.sc" g2="slash,slash.caps,slash.sc" k="90" />
  7161. <hkern g1="slash,slash.caps,slash.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="20" />
  7162. <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="52" />
  7163. <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="4" />
  7164. <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="34" />
  7165. <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="20" />
  7166. <hkern g1="slash,slash.caps,slash.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="4" />
  7167. <hkern g1="slash,slash.caps,slash.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="8" />
  7168. <hkern g1="slash,slash.caps,slash.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="12" />
  7169. <hkern g1="slash,slash.caps,slash.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="8" />
  7170. <hkern g1="slash,slash.caps,slash.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="36" />
  7171. <hkern g1="slash,slash.caps,slash.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="20" />
  7172. <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" />
  7173. <hkern g1="slash,slash.caps,slash.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="8" />
  7174. <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="12" />
  7175. <hkern g1="slash,slash.caps,slash.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="46" />
  7176. <hkern g1="slash,slash.caps,slash.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="18" />
  7177. <hkern g1="slash,slash.caps,slash.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="12" />
  7178. <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="32" />
  7179. <hkern g1="slash,slash.caps,slash.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="16" />
  7180. <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="8" />
  7181. <hkern g1="slash,slash.caps,slash.sc" g2="two,two.lf,two.osf,two.sc" k="26" />
  7182. <hkern g1="slash,slash.caps,slash.sc" g2="three,three.lf,three.osf,three.sc" k="-12" />
  7183. <hkern g1="slash,slash.caps,slash.sc" g2="four,four.lf,four.osf,four.sc" k="28" />
  7184. <hkern g1="slash,slash.caps,slash.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="14" />
  7185. <hkern g1="slash,slash.caps,slash.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="40" />
  7186. <hkern g1="slash,slash.caps,slash.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="20" />
  7187. <hkern g1="slash,slash.caps,slash.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="20" />
  7188. <hkern g1="slash,slash.caps,slash.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="32" />
  7189. <hkern g1="slash,slash.caps,slash.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="58" />
  7190. <hkern g1="slash,slash.caps,slash.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="37" />
  7191. <hkern g1="slash,slash.caps,slash.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="8" />
  7192. <hkern g1="slash,slash.caps,slash.sc" g2="one,one.lf,one.osf,one.sc" k="6" />
  7193. <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="2" />
  7194. <hkern g1="slash,slash.caps,slash.sc" g2="underscore" k="44" />
  7195. <hkern g1="slash,slash.caps,slash.sc" g2="fraction" k="12" />
  7196. <hkern g1="slash,slash.caps,slash.sc" g2="m.sc" k="20" />
  7197. <hkern g1="slash,slash.caps,slash.sc" g2="x" k="10" />
  7198. <hkern g1="slash,slash.caps,slash.sc" g2="integral" k="42" />
  7199. <hkern g1="slash,slash.caps,slash.sc" g2="mu" k="8" />
  7200. <hkern g1="slash,slash.caps,slash.sc" g2="partialdiff" k="8" />
  7201. <hkern g1="slash,slash.caps,slash.sc" g2="pi" k="8" />
  7202. <hkern g1="slash,slash.caps,slash.sc" g2="product" k="4" />
  7203. <hkern g1="slash,slash.caps,slash.sc" g2="Delta" k="20" />
  7204. <hkern g1="slash,slash.caps,slash.sc" g2="Schwa" k="12" />
  7205. <hkern g1="slash,slash.caps,slash.sc" g2="at" k="30" />
  7206. <hkern g1="slash,slash.caps,slash.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="24" />
  7207. <hkern g1="slash,slash.caps,slash.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="12" />
  7208. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="asterisk,asterisk.caps,asterisk.sc" k="-6" />
  7209. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="18" />
  7210. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="slash,slash.caps,slash.sc" k="6" />
  7211. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="backslash,backslash.caps,backslash.sc" k="12" />
  7212. <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="20" />
  7213. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="bracketright,bracketright.caps,bracketright.sc" k="18" />
  7214. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="f,germandbls,Germandbls,fi,fl" k="3" />
  7215. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="17" />
  7216. <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="8" />
  7217. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="6" />
  7218. <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="2" />
  7219. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="8" />
  7220. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="question,question.caps,question.sc" k="24" />
  7221. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="trademark" k="12" />
  7222. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="braceright,braceright.caps,braceright.sc" k="18" />
  7223. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="24" />
  7224. <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="50" />
  7225. <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="62" />
  7226. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="slash,slash.caps,slash.sc" k="48" />
  7227. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="backslash,backslash.caps,backslash.sc" k="6" />
  7228. <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" />
  7229. <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="24" />
  7230. <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="2" />
  7231. <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="2" />
  7232. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  7233. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="12" />
  7234. <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="12" />
  7235. <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="8" />
  7236. <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="2" />
  7237. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="8" />
  7238. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  7239. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="64" />
  7240. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="underscore" k="46" />
  7241. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="emdash" k="4" />
  7242. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="endash" k="4" />
  7243. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="hyphen" k="8" />
  7244. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="m.sc" k="18" />
  7245. <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="14" />
  7246. <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="24" />
  7247. <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="36" />
  7248. <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="4" />
  7249. <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="30" />
  7250. <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="8" />
  7251. <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="2" />
  7252. <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="11" />
  7253. <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="36" />
  7254. <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="3" />
  7255. <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="2" />
  7256. <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="43" />
  7257. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="trademark" k="16" />
  7258. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="x" k="2" />
  7259. <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="4" />
  7260. <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="4" />
  7261. <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="28" />
  7262. <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="6" />
  7263. <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" />
  7264. <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="4" />
  7265. <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="8" />
  7266. <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="4" />
  7267. <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="2" />
  7268. <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="4" />
  7269. <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="4" />
  7270. <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="4" />
  7271. <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="7" />
  7272. <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="4" />
  7273. <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="8" />
  7274. <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="4" />
  7275. <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="8" />
  7276. <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="4" />
  7277. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="4" />
  7278. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="24" />
  7279. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="parenright,parenright.caps,parenright.sc" k="18" />
  7280. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="22" />
  7281. <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="2" />
  7282. <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="21" />
  7283. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="bracketright,bracketright.caps,bracketright.sc" k="44" />
  7284. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="8" />
  7285. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  7286. <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="1" />
  7287. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="-3" />
  7288. <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="4" />
  7289. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="8" />
  7290. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="question,question.caps,question.sc" k="36" />
  7291. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="underscore" k="30" />
  7292. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="trademark" k="4" />
  7293. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="braceright,braceright.caps,braceright.sc" k="15" />
  7294. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="36" />
  7295. <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="18" />
  7296. <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="58" />
  7297. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="slash,slash.caps,slash.sc" k="34" />
  7298. <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="34" />
  7299. <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="2" />
  7300. <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="13" />
  7301. <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="9" />
  7302. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="16" />
  7303. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="8" />
  7304. <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="4" />
  7305. <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="9" />
  7306. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="12" />
  7307. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="26" />
  7308. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="54" />
  7309. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="underscore" k="46" />
  7310. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="endash" k="4" />
  7311. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="m.sc" k="10" />
  7312. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="18" />
  7313. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="parenright,parenright.caps,parenright.sc" k="24" />
  7314. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="44" />
  7315. <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" />
  7316. <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="21" />
  7317. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="bracketright,bracketright.caps,bracketright.sc" k="12" />
  7318. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="8" />
  7319. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="3" />
  7320. <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="-4" />
  7321. <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="2" />
  7322. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="question,question.caps,question.sc" k="30" />
  7323. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="underscore" k="30" />
  7324. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="braceright,braceright.caps,braceright.sc" k="15" />
  7325. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="46" />
  7326. <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="48" />
  7327. <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" />
  7328. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="slash,slash.caps,slash.sc" k="52" />
  7329. <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="37" />
  7330. <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="31" />
  7331. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  7332. <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="16" />
  7333. <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="12" />
  7334. <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" />
  7335. <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="4" />
  7336. <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="8" />
  7337. <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="12" />
  7338. <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="54" />
  7339. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="underscore" k="30" />
  7340. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="m.sc" k="20" />
  7341. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="12" />
  7342. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="parenright,parenright.caps,parenright.sc" k="30" />
  7343. <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="13" />
  7344. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="18" />
  7345. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="7" />
  7346. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="3" />
  7347. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="trademark" k="4" />
  7348. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="braceright,braceright.caps,braceright.sc" k="18" />
  7349. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="12" />
  7350. <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="12" />
  7351. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="backslash,backslash.caps,backslash.sc" k="12" />
  7352. <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="3" />
  7353. <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="11" />
  7354. <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="6" />
  7355. <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="15" />
  7356. <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="9" />
  7357. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="18" />
  7358. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  7359. <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="8" />
  7360. <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="8" />
  7361. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="4" />
  7362. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="8" />
  7363. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="emdash" k="8" />
  7364. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="m.sc" k="8" />
  7365. <hkern g1="one,one.lf,one.osf,one.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="18" />
  7366. <hkern g1="one,one.lf,one.osf,one.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="16" />
  7367. <hkern g1="one,one.lf,one.osf,one.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="24" />
  7368. <hkern g1="one,one.lf,one.osf,one.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="32" />
  7369. <hkern g1="one,one.lf,one.osf,one.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="4" />
  7370. <hkern g1="one,one.lf,one.osf,one.sc" g2="slash,slash.caps,slash.sc" k="36" />
  7371. <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="8" />
  7372. <hkern g1="one,one.lf,one.osf,one.sc" g2="two,two.lf,two.osf,two.sc" k="28" />
  7373. <hkern g1="one,one.lf,one.osf,one.sc" g2="four,four.lf,four.osf,four.sc" k="24" />
  7374. <hkern g1="one,one.lf,one.osf,one.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="4" />
  7375. <hkern g1="one,one.lf,one.osf,one.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="11" />
  7376. <hkern g1="one,one.lf,one.osf,one.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="4" />
  7377. <hkern g1="one,one.lf,one.osf,one.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="12" />
  7378. <hkern g1="one,one.lf,one.osf,one.sc" g2="five,five.lf,five.osf,five.sc" k="4" />
  7379. <hkern g1="one,one.lf,one.osf,one.sc" g2="one,one.lf,one.osf,one.sc" k="-8" />
  7380. <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="11" />
  7381. <hkern g1="one,one.lf,one.osf,one.sc" g2="braceright,braceright.caps,braceright.sc" k="4" />
  7382. <hkern g1="two,two.lf,two.osf,two.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="36" />
  7383. <hkern g1="two,two.lf,two.osf,two.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="4" />
  7384. <hkern g1="two,two.lf,two.osf,two.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="34" />
  7385. <hkern g1="two,two.lf,two.osf,two.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  7386. <hkern g1="two,two.lf,two.osf,two.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="34" />
  7387. <hkern g1="two,two.lf,two.osf,two.sc" g2="slash,slash.caps,slash.sc" k="46" />
  7388. <hkern g1="two,two.lf,two.osf,two.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
  7389. <hkern g1="two,two.lf,two.osf,two.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="10" />
  7390. <hkern g1="two,two.lf,two.osf,two.sc" g2="two,two.lf,two.osf,two.sc" k="68" />
  7391. <hkern g1="two,two.lf,two.osf,two.sc" g2="three,three.lf,three.osf,three.sc" k="24" />
  7392. <hkern g1="two,two.lf,two.osf,two.sc" g2="four,four.lf,four.osf,four.sc" k="67" />
  7393. <hkern g1="two,two.lf,two.osf,two.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="22" />
  7394. <hkern g1="two,two.lf,two.osf,two.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="30" />
  7395. <hkern g1="two,two.lf,two.osf,two.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="14" />
  7396. <hkern g1="two,two.lf,two.osf,two.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="8" />
  7397. <hkern g1="two,two.lf,two.osf,two.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="24" />
  7398. <hkern g1="two,two.lf,two.osf,two.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="4" />
  7399. <hkern g1="two,two.lf,two.osf,two.sc" g2="five,five.lf,five.osf,five.sc" k="43" />
  7400. <hkern g1="two,two.lf,two.osf,two.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="12" />
  7401. <hkern g1="two,two.lf,two.osf,two.sc" g2="one,one.lf,one.osf,one.sc" k="-2" />
  7402. <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="50" />
  7403. <hkern g1="two,two.lf,two.osf,two.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="4" />
  7404. <hkern g1="four,four.lf,four.osf,four.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="8" />
  7405. <hkern g1="four,four.lf,four.osf,four.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="12" />
  7406. <hkern g1="four,four.lf,four.osf,four.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="18" />
  7407. <hkern g1="four,four.lf,four.osf,four.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="32" />
  7408. <hkern g1="four,four.lf,four.osf,four.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="20" />
  7409. <hkern g1="four,four.lf,four.osf,four.sc" g2="slash,slash.caps,slash.sc" k="12" />
  7410. <hkern g1="four,four.lf,four.osf,four.sc" g2="backslash,backslash.caps,backslash.sc" k="12" />
  7411. <hkern g1="four,four.lf,four.osf,four.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="8" />
  7412. <hkern g1="four,four.lf,four.osf,four.sc" g2="two,two.lf,two.osf,two.sc" k="48" />
  7413. <hkern g1="four,four.lf,four.osf,four.sc" g2="four,four.lf,four.osf,four.sc" k="16" />
  7414. <hkern g1="four,four.lf,four.osf,four.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="39" />
  7415. <hkern g1="four,four.lf,four.osf,four.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="18" />
  7416. <hkern g1="four,four.lf,four.osf,four.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="4" />
  7417. <hkern g1="four,four.lf,four.osf,four.sc" g2="five,five.lf,five.osf,five.sc" k="28" />
  7418. <hkern g1="four,four.lf,four.osf,four.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="6" />
  7419. <hkern g1="four,four.lf,four.osf,four.sc" g2="one,one.lf,one.osf,one.sc" k="-4" />
  7420. <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="36" />
  7421. <hkern g1="five,five.lf,five.osf,five.sc" g2="two,two.lf,two.osf,two.sc" k="39" />
  7422. <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="4" />
  7423. <hkern g1="ordfeminine,ordmasculine" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="18" />
  7424. <hkern g1="ordfeminine,ordmasculine" g2="bracketright,bracketright.caps,bracketright.sc" k="6" />
  7425. <hkern g1="ordfeminine,ordmasculine" g2="question,question.caps,question.sc" k="24" />
  7426. <hkern g1="ordfeminine,ordmasculine" g2="braceright,braceright.caps,braceright.sc" k="12" />
  7427. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="84" />
  7428. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="44" />
  7429. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="22" />
  7430. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="16" />
  7431. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="12" />
  7432. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="slash,slash.caps,slash.sc" k="28" />
  7433. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="backslash,backslash.caps,backslash.sc" k="40" />
  7434. <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" />
  7435. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="4" />
  7436. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="32" />
  7437. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="44" />
  7438. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="54" />
  7439. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="4" />
  7440. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="24" />
  7441. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="12" />
  7442. <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="12" />
  7443. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="quotedblleft.sc,quoteleft.sc" k="16" />
  7444. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="quotedblright.sc,quoteright.sc" k="56" />
  7445. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="6" />
  7446. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
  7447. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="four,four.lf,four.osf,four.sc" k="12" />
  7448. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="38" />
  7449. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="12" />
  7450. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="36" />
  7451. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="16" />
  7452. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="36" />
  7453. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="five,five.lf,five.osf,five.sc" k="6" />
  7454. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="42" />
  7455. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="one,one.lf,one.osf,one.sc" k="22" />
  7456. <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="16" />
  7457. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="question,question.caps,question.sc" k="36" />
  7458. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="braceright,braceright.caps,braceright.sc" k="4" />
  7459. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="8" />
  7460. <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="8" />
  7461. <hkern g1="braceright,braceright.caps,braceright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  7462. <hkern g1="braceright,braceright.caps,braceright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="59" />
  7463. <hkern g1="braceright,braceright.caps,braceright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="43" />
  7464. <hkern g1="braceright,braceright.caps,braceright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="49" />
  7465. <hkern g1="braceright,braceright.caps,braceright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  7466. <hkern g1="braceright,braceright.caps,braceright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  7467. <hkern g1="braceright,braceright.caps,braceright.sc" g2="slash,slash.caps,slash.sc" k="69" />
  7468. <hkern g1="braceright,braceright.caps,braceright.sc" g2="backslash,backslash.caps,backslash.sc" k="55" />
  7469. <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="26" />
  7470. <hkern g1="braceright,braceright.caps,braceright.sc" g2="quotedblright.sc,quoteright.sc" k="24" />
  7471. <hkern g1="braceright,braceright.caps,braceright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="10" />
  7472. <hkern g1="braceright,braceright.caps,braceright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  7473. <hkern g1="braceright,braceright.caps,braceright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="24" />
  7474. <hkern g1="braceright,braceright.caps,braceright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="30" />
  7475. <hkern g1="braceright,braceright.caps,braceright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="30" />
  7476. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  7477. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  7478. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="49" />
  7479. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="43" />
  7480. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  7481. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  7482. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="slash,slash.caps,slash.sc" k="55" />
  7483. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="backslash,backslash.caps,backslash.sc" k="43" />
  7484. <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="24" />
  7485. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="12" />
  7486. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="43" />
  7487. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="18" />
  7488. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="43" />
  7489. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="18" />
  7490. <hkern g1="cent,cent.osf" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="24" />
  7491. <hkern g1="cent,cent.osf" g2="slash,slash.caps,slash.sc" k="6" />
  7492. <hkern g1="currency,currency.osf" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="6" />
  7493. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="12" />
  7494. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="6" />
  7495. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="slash,slash.caps,slash.sc" k="6" />
  7496. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="30" />
  7497. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="two,two.lf,two.osf,two.sc" k="36" />
  7498. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="four,four.lf,four.osf,four.sc" k="12" />
  7499. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="3" />
  7500. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="6" />
  7501. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="five,five.lf,five.osf,five.sc" k="6" />
  7502. <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="6" />
  7503. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="74" />
  7504. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="4" />
  7505. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="46" />
  7506. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="22" />
  7507. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="44" />
  7508. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="6" />
  7509. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="22" />
  7510. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="parenright,parenright.caps,parenright.sc" k="16" />
  7511. <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="20" />
  7512. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="12" />
  7513. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="slash,slash.caps,slash.sc" k="58" />
  7514. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="backslash,backslash.caps,backslash.sc" k="26" />
  7515. <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="12" />
  7516. <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="8" />
  7517. <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="4" />
  7518. <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="8" />
  7519. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="46" />
  7520. <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" />
  7521. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="quotedblright.sc,quoteright.sc" k="6" />
  7522. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="4" />
  7523. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="8" />
  7524. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="12" />
  7525. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="8" />
  7526. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="12" />
  7527. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="34" />
  7528. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="question,question.caps,question.sc" k="18" />
  7529. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="braceright,braceright.caps,braceright.sc" k="12" />
  7530. <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="12" />
  7531. <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="18" />
  7532. <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="6" />
  7533. <hkern g1="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,dotlessi,icaron,idotbelow,fi" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="12" />
  7534. <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="12" />
  7535. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="3" />
  7536. <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="3" />
  7537. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="3" />
  7538. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="6" />
  7539. <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="2" />
  7540. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="3" />
  7541. <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="30" />
  7542. <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="6" />
  7543. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jcircumflex.sc,jacute.sc" g2="slash,slash.caps,slash.sc" k="21" />
  7544. <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="4" />
  7545. <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="3" />
  7546. <hkern g1="l,lacute,lcommaaccent,lcaron,ldot,lslash,fl" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="18" />
  7547. <hkern g1="l,lacute,lcommaaccent,lcaron,ldot,lslash,fl" g2="question,question.caps,question.sc" k="12" />
  7548. <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="18" />
  7549. <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="24" />
  7550. <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="42" />
  7551. <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="12" />
  7552. <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" />
  7553. <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="22" />
  7554. <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="34" />
  7555. <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="12" />
  7556. <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="26" />
  7557. <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" />
  7558. <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="12" />
  7559. <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="2" />
  7560. <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="44" />
  7561. <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="18" />
  7562. <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="16" />
  7563. <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="12" />
  7564. <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="22" />
  7565. <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="24" />
  7566. <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="6" />
  7567. <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="32" />
  7568. <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="12" />
  7569. <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="12" />
  7570. <hkern g1="parenright,parenright.caps,parenright.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="8" />
  7571. <hkern g1="parenright,parenright.caps,parenright.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="16" />
  7572. <hkern g1="parenright,parenright.caps,parenright.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="20" />
  7573. <hkern g1="parenright,parenright.caps,parenright.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
  7574. <hkern g1="parenright,parenright.caps,parenright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="32" />
  7575. <hkern g1="parenright,parenright.caps,parenright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="64" />
  7576. <hkern g1="parenright,parenright.caps,parenright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  7577. <hkern g1="parenright,parenright.caps,parenright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="36" />
  7578. <hkern g1="parenright,parenright.caps,parenright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  7579. <hkern g1="parenright,parenright.caps,parenright.sc" g2="slash,slash.caps,slash.sc" k="82" />
  7580. <hkern g1="parenright,parenright.caps,parenright.sc" g2="backslash,backslash.caps,backslash.sc" k="62" />
  7581. <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="4" />
  7582. <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="28" />
  7583. <hkern g1="parenright,parenright.caps,parenright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="8" />
  7584. <hkern g1="parenright,parenright.caps,parenright.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="8" />
  7585. <hkern g1="parenright,parenright.caps,parenright.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="12" />
  7586. <hkern g1="parenright,parenright.caps,parenright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  7587. <hkern g1="parenright,parenright.caps,parenright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="24" />
  7588. <hkern g1="parenright,parenright.caps,parenright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="58" />
  7589. <hkern g1="parenright,parenright.caps,parenright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="12" />
  7590. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="74" />
  7591. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="4" />
  7592. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="38" />
  7593. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="20" />
  7594. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
  7595. <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="-18" />
  7596. <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="4" />
  7597. <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="8" />
  7598. <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="12" />
  7599. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="quotedblright.sc,quoteright.sc" k="16" />
  7600. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="two,two.lf,two.osf,two.sc" k="18" />
  7601. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="three,three.lf,three.osf,three.sc" k="-12" />
  7602. <hkern g1="percent.lf,perthousand.lf" g2="asterisk,asterisk.caps,asterisk.sc" k="35" />
  7603. <hkern g1="percent.lf,perthousand.lf" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="16" />
  7604. <hkern g1="percent.lf,perthousand.lf" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="31" />
  7605. <hkern g1="question,question.caps,question.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  7606. <hkern g1="question,question.caps,question.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="18" />
  7607. <hkern g1="question,question.caps,question.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="12" />
  7608. <hkern g1="question,question.caps,question.sc" g2="slash,slash.caps,slash.sc" k="24" />
  7609. <hkern g1="question,question.caps,question.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="55" />
  7610. <hkern g1="sterling,sterling.osf" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  7611. <hkern g1="sterling,sterling.osf" g2="slash,slash.caps,slash.sc" k="16" />
  7612. <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="12" />
  7613. <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="8" />
  7614. <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="12" />
  7615. <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="20" />
  7616. </font>
  7617. </defs></svg>