| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421 | StartFontMetrics 4.1Comment Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated.  All Rights Reserved.Comment Creation Date: Thu May  1 12:49:17 1997Comment UniqueID 43068Comment VMusage 43909 54934FontName Times-RomanFullName Times RomanFamilyName TimesWeight RomanItalicAngle 0IsFixedPitch falseCharacterSet ExtendedRomanFontBBox -168 -218 1000 898UnderlinePosition -100UnderlineThickness 50Version 002.00Notice Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated.  All Rights Reserved.Times is a trademark of Linotype-Hell AG and/or its subsidiaries.EncodingScheme WinAnsiEncodingCapHeight 662XHeight 450Ascender 683Descender -217StdHW 28StdVW 84StartCharMetrics 317C 32 ; WX 250 ; N space ; B 0 0 0 0 ;C 160 ; WX 250 ; N space ; B 0 0 0 0 ;C 33 ; WX 333 ; N exclam ; B 130 -9 238 676 ;C 34 ; WX 408 ; N quotedbl ; B 77 431 331 676 ;C 35 ; WX 500 ; N numbersign ; B 5 0 496 662 ;C 36 ; WX 500 ; N dollar ; B 44 -87 457 727 ;C 37 ; WX 833 ; N percent ; B 61 -13 772 676 ;C 38 ; WX 778 ; N ampersand ; B 42 -13 750 676 ;C 146 ; WX 333 ; N quoteright ; B 79 433 218 676 ;C 40 ; WX 333 ; N parenleft ; B 48 -177 304 676 ;C 41 ; WX 333 ; N parenright ; B 29 -177 285 676 ;C 42 ; WX 500 ; N asterisk ; B 69 265 432 676 ;C 43 ; WX 564 ; N plus ; B 30 0 534 506 ;C 44 ; WX 250 ; N comma ; B 56 -141 195 102 ;C 45 ; WX 333 ; N hyphen ; B 39 194 285 257 ;C 173 ; WX 333 ; N hyphen ; B 39 194 285 257 ;C 46 ; WX 250 ; N period ; B 70 -11 181 100 ;C 47 ; WX 278 ; N slash ; B -9 -14 287 676 ;C 48 ; WX 500 ; N zero ; B 24 -14 476 676 ;C 49 ; WX 500 ; N one ; B 111 0 394 676 ;C 50 ; WX 500 ; N two ; B 30 0 475 676 ;C 51 ; WX 500 ; N three ; B 43 -14 431 676 ;C 52 ; WX 500 ; N four ; B 12 0 472 676 ;C 53 ; WX 500 ; N five ; B 32 -14 438 688 ;C 54 ; WX 500 ; N six ; B 34 -14 468 684 ;C 55 ; WX 500 ; N seven ; B 20 -8 449 662 ;C 56 ; WX 500 ; N eight ; B 56 -14 445 676 ;C 57 ; WX 500 ; N nine ; B 30 -22 459 676 ;C 58 ; WX 278 ; N colon ; B 81 -11 192 459 ;C 59 ; WX 278 ; N semicolon ; B 80 -141 219 459 ;C 60 ; WX 564 ; N less ; B 28 -8 536 514 ;C 61 ; WX 564 ; N equal ; B 30 120 534 386 ;C 62 ; WX 564 ; N greater ; B 28 -8 536 514 ;C 63 ; WX 444 ; N question ; B 68 -8 414 676 ;C 64 ; WX 921 ; N at ; B 116 -14 809 676 ;C 65 ; WX 722 ; N A ; B 15 0 706 674 ;C 66 ; WX 667 ; N B ; B 17 0 593 662 ;C 67 ; WX 667 ; N C ; B 28 -14 633 676 ;C 68 ; WX 722 ; N D ; B 16 0 685 662 ;C 69 ; WX 611 ; N E ; B 12 0 597 662 ;C 70 ; WX 556 ; N F ; B 12 0 546 662 ;C 71 ; WX 722 ; N G ; B 32 -14 709 676 ;C 72 ; WX 722 ; N H ; B 19 0 702 662 ;C 73 ; WX 333 ; N I ; B 18 0 315 662 ;C 74 ; WX 389 ; N J ; B 10 -14 370 662 ;C 75 ; WX 722 ; N K ; B 34 0 723 662 ;C 76 ; WX 611 ; N L ; B 12 0 598 662 ;C 77 ; WX 889 ; N M ; B 12 0 863 662 ;C 78 ; WX 722 ; N N ; B 12 -11 707 662 ;C 79 ; WX 722 ; N O ; B 34 -14 688 676 ;C 80 ; WX 556 ; N P ; B 16 0 542 662 ;C 81 ; WX 722 ; N Q ; B 34 -178 701 676 ;C 82 ; WX 667 ; N R ; B 17 0 659 662 ;C 83 ; WX 556 ; N S ; B 42 -14 491 676 ;C 84 ; WX 611 ; N T ; B 17 0 593 662 ;C 85 ; WX 722 ; N U ; B 14 -14 705 662 ;C 86 ; WX 722 ; N V ; B 16 -11 697 662 ;C 87 ; WX 944 ; N W ; B 5 -11 932 662 ;C 88 ; WX 722 ; N X ; B 10 0 704 662 ;C 89 ; WX 722 ; N Y ; B 22 0 703 662 ;C 90 ; WX 611 ; N Z ; B 9 0 597 662 ;C 91 ; WX 333 ; N bracketleft ; B 88 -156 299 662 ;C 92 ; WX 278 ; N backslash ; B -9 -14 287 676 ;C 93 ; WX 333 ; N bracketright ; B 34 -156 245 662 ;C 94 ; WX 469 ; N asciicircum ; B 24 297 446 662 ;C 95 ; WX 500 ; N underscore ; B 0 -125 500 -75 ;C 145 ; WX 333 ; N quoteleft ; B 115 433 254 676 ;C 97 ; WX 444 ; N a ; B 37 -10 442 460 ;C 98 ; WX 500 ; N b ; B 3 -10 468 683 ;C 99 ; WX 444 ; N c ; B 25 -10 412 460 ;C 100 ; WX 500 ; N d ; B 27 -10 491 683 ;C 101 ; WX 444 ; N e ; B 25 -10 424 460 ;C 102 ; WX 333 ; N f ; B 20 0 383 683 ; L i fi ; L l fl ;C 103 ; WX 500 ; N g ; B 28 -218 470 460 ;C 104 ; WX 500 ; N h ; B 9 0 487 683 ;C 105 ; WX 278 ; N i ; B 16 0 253 683 ;C 106 ; WX 278 ; N j ; B -70 -218 194 683 ;C 107 ; WX 500 ; N k ; B 7 0 505 683 ;C 108 ; WX 278 ; N l ; B 19 0 257 683 ;C 109 ; WX 778 ; N m ; B 16 0 775 460 ;C 110 ; WX 500 ; N n ; B 16 0 485 460 ;C 111 ; WX 500 ; N o ; B 29 -10 470 460 ;C 112 ; WX 500 ; N p ; B 5 -217 470 460 ;C 113 ; WX 500 ; N q ; B 24 -217 488 460 ;C 114 ; WX 333 ; N r ; B 5 0 335 460 ;C 115 ; WX 389 ; N s ; B 51 -10 348 460 ;C 116 ; WX 278 ; N t ; B 13 -10 279 579 ;C 117 ; WX 500 ; N u ; B 9 -10 479 450 ;C 118 ; WX 500 ; N v ; B 19 -14 477 450 ;C 119 ; WX 722 ; N w ; B 21 -14 694 450 ;C 120 ; WX 500 ; N x ; B 17 0 479 450 ;C 121 ; WX 500 ; N y ; B 14 -218 475 450 ;C 122 ; WX 444 ; N z ; B 27 0 418 450 ;C 123 ; WX 480 ; N braceleft ; B 100 -181 350 680 ;C 124 ; WX 200 ; N bar ; B 67 -218 133 782 ;C 125 ; WX 480 ; N braceright ; B 130 -181 380 680 ;C 126 ; WX 541 ; N asciitilde ; B 40 183 502 323 ;C 161 ; WX 333 ; N exclamdown ; B 97 -218 205 467 ;C 162 ; WX 500 ; N cent ; B 53 -138 448 579 ;C 163 ; WX 500 ; N sterling ; B 12 -8 490 676 ;C -1 ; WX 167 ; N fraction ; B -168 -14 331 676 ;C 165 ; WX 500 ; N yen ; B -53 0 512 662 ;C 131 ; WX 500 ; N florin ; B 7 -189 490 676 ;C 167 ; WX 500 ; N section ; B 70 -148 426 676 ;C 164 ; WX 500 ; N currency ; B -22 58 522 602 ;C 39 ; WX 180 ; N quotesingle ; B 48 431 133 676 ;C 147 ; WX 444 ; N quotedblleft ; B 43 433 414 676 ;C 171 ; WX 500 ; N guillemotleft ; B 42 33 456 416 ;C 139 ; WX 333 ; N guilsinglleft ; B 63 33 285 416 ;C 155 ; WX 333 ; N guilsinglright ; B 48 33 270 416 ;C -1 ; WX 556 ; N fi ; B 31 0 521 683 ;C -1 ; WX 556 ; N fl ; B 32 0 521 683 ;C 150 ; WX 500 ; N endash ; B 0 201 500 250 ;C 134 ; WX 500 ; N dagger ; B 59 -149 442 676 ;C 135 ; WX 500 ; N daggerdbl ; B 58 -153 442 676 ;C 183 ; WX 250 ; N periodcentered ; B 70 199 181 310 ;C 182 ; WX 453 ; N paragraph ; B -22 -154 450 662 ;C 149 ; WX 350 ; N bullet ; B 40 196 310 466 ;C 130 ; WX 333 ; N quotesinglbase ; B 79 -141 218 102 ;C 132 ; WX 444 ; N quotedblbase ; B 45 -141 416 102 ;C 148 ; WX 444 ; N quotedblright ; B 30 433 401 676 ;C 187 ; WX 500 ; N guillemotright ; B 44 33 458 416 ;C 133 ; WX 1000 ; N ellipsis ; B 111 -11 888 100 ;C 137 ; WX 1000 ; N perthousand ; B 7 -19 994 706 ;C 191 ; WX 444 ; N questiondown ; B 30 -218 376 466 ;C 96 ; WX 333 ; N grave ; B 19 507 242 678 ;C 180 ; WX 333 ; N acute ; B 93 507 317 678 ;C 136 ; WX 333 ; N circumflex ; B 11 507 322 674 ;C 152 ; WX 333 ; N tilde ; B 1 532 331 638 ;C 175 ; WX 333 ; N macron ; B 11 547 322 601 ;C -1 ; WX 333 ; N breve ; B 26 507 307 664 ;C -1 ; WX 333 ; N dotaccent ; B 118 581 216 681 ;C 168 ; WX 333 ; N dieresis ; B 18 581 315 681 ;C -1 ; WX 333 ; N ring ; B 67 512 266 711 ;C 184 ; WX 333 ; N cedilla ; B 52 -215 261 0 ;C -1 ; WX 333 ; N hungarumlaut ; B -3 507 377 678 ;C -1 ; WX 333 ; N ogonek ; B 62 -165 243 0 ;C -1 ; WX 333 ; N caron ; B 11 507 322 674 ;C 151 ; WX 1000 ; N emdash ; B 0 201 1000 250 ;C 198 ; WX 889 ; N AE ; B 0 0 863 662 ;C 170 ; WX 276 ; N ordfeminine ; B 4 394 270 676 ;C -1 ; WX 611 ; N Lslash ; B 12 0 598 662 ;C 216 ; WX 722 ; N Oslash ; B 34 -80 688 734 ;C 140 ; WX 889 ; N OE ; B 30 -6 885 668 ;C 186 ; WX 310 ; N ordmasculine ; B 6 394 304 676 ;C 230 ; WX 667 ; N ae ; B 38 -10 632 460 ;C -1 ; WX 278 ; N dotlessi ; B 16 0 253 460 ;C -1 ; WX 278 ; N lslash ; B 19 0 259 683 ;C 248 ; WX 500 ; N oslash ; B 29 -112 470 551 ;C 156 ; WX 722 ; N oe ; B 30 -10 690 460 ;C 223 ; WX 500 ; N germandbls ; B 12 -9 468 683 ;C 207 ; WX 333 ; N Idieresis ; B 18 0 315 835 ;C 233 ; WX 444 ; N eacute ; B 25 -10 424 678 ;C -1 ; WX 444 ; N abreve ; B 37 -10 442 664 ;C -1 ; WX 500 ; N uhungarumlaut ; B 9 -10 501 678 ;C -1 ; WX 444 ; N ecaron ; B 25 -10 424 674 ;C 159 ; WX 722 ; N Ydieresis ; B 22 0 703 835 ;C 247 ; WX 564 ; N divide ; B 30 -10 534 516 ;C 221 ; WX 722 ; N Yacute ; B 22 0 703 890 ;C 194 ; WX 722 ; N Acircumflex ; B 15 0 706 886 ;C 225 ; WX 444 ; N aacute ; B 37 -10 442 678 ;C 219 ; WX 722 ; N Ucircumflex ; B 14 -14 705 886 ;C 253 ; WX 500 ; N yacute ; B 14 -218 475 678 ;C -1 ; WX 389 ; N scommaaccent ; B 51 -218 348 460 ;C 234 ; WX 444 ; N ecircumflex ; B 25 -10 424 674 ;C -1 ; WX 722 ; N Uring ; B 14 -14 705 898 ;C 220 ; WX 722 ; N Udieresis ; B 14 -14 705 835 ;C -1 ; WX 444 ; N aogonek ; B 37 -165 469 460 ;C 218 ; WX 722 ; N Uacute ; B 14 -14 705 890 ;C -1 ; WX 500 ; N uogonek ; B 9 -155 487 450 ;C 203 ; WX 611 ; N Edieresis ; B 12 0 597 835 ;C -1 ; WX 722 ; N Dcroat ; B 16 0 685 662 ;C -1 ; WX 250 ; N commaaccent ; B 59 -218 184 -50 ;C 169 ; WX 760 ; N copyright ; B 38 -14 722 676 ;C -1 ; WX 611 ; N Emacron ; B 12 0 597 813 ;C -1 ; WX 444 ; N ccaron ; B 25 -10 412 674 ;C 229 ; WX 444 ; N aring ; B 37 -10 442 711 ;C -1 ; WX 722 ; N Ncommaaccent ; B 12 -198 707 662 ;C -1 ; WX 278 ; N lacute ; B 19 0 290 890 ;C 224 ; WX 444 ; N agrave ; B 37 -10 442 678 ;C -1 ; WX 611 ; N Tcommaaccent ; B 17 -218 593 662 ;C -1 ; WX 667 ; N Cacute ; B 28 -14 633 890 ;C 227 ; WX 444 ; N atilde ; B 37 -10 442 638 ;C -1 ; WX 611 ; N Edotaccent ; B 12 0 597 835 ;C 154 ; WX 389 ; N scaron ; B 39 -10 350 674 ;C -1 ; WX 389 ; N scedilla ; B 51 -215 348 460 ;C 237 ; WX 278 ; N iacute ; B 16 0 290 678 ;C -1 ; WX 471 ; N lozenge ; B 13 0 459 724 ;C -1 ; WX 667 ; N Rcaron ; B 17 0 659 886 ;C -1 ; WX 722 ; N Gcommaaccent ; B 32 -218 709 676 ;C 251 ; WX 500 ; N ucircumflex ; B 9 -10 479 674 ;C 226 ; WX 444 ; N acircumflex ; B 37 -10 442 674 ;C -1 ; WX 722 ; N Amacron ; B 15 0 706 813 ;C -1 ; WX 333 ; N rcaron ; B 5 0 335 674 ;C 231 ; WX 444 ; N ccedilla ; B 25 -215 412 460 ;C -1 ; WX 611 ; N Zdotaccent ; B 9 0 597 835 ;C 222 ; WX 556 ; N Thorn ; B 16 0 542 662 ;C -1 ; WX 722 ; N Omacron ; B 34 -14 688 813 ;C -1 ; WX 667 ; N Racute ; B 17 0 659 890 ;C -1 ; WX 556 ; N Sacute ; B 42 -14 491 890 ;C -1 ; WX 588 ; N dcaron ; B 27 -10 589 695 ;C -1 ; WX 722 ; N Umacron ; B 14 -14 705 813 ;C -1 ; WX 500 ; N uring ; B 9 -10 479 711 ;C 179 ; WX 300 ; N threesuperior ; B 15 262 291 676 ;C 210 ; WX 722 ; N Ograve ; B 34 -14 688 890 ;C 192 ; WX 722 ; N Agrave ; B 15 0 706 890 ;C -1 ; WX 722 ; N Abreve ; B 15 0 706 876 ;C 215 ; WX 564 ; N multiply ; B 38 8 527 497 ;C 250 ; WX 500 ; N uacute ; B 9 -10 479 678 ;C -1 ; WX 611 ; N Tcaron ; B 17 0 593 886 ;C -1 ; WX 476 ; N partialdiff ; B 17 -38 459 710 ;C 255 ; WX 500 ; N ydieresis ; B 14 -218 475 623 ;C -1 ; WX 722 ; N Nacute ; B 12 -11 707 890 ;C 238 ; WX 278 ; N icircumflex ; B -16 0 295 674 ;C 202 ; WX 611 ; N Ecircumflex ; B 12 0 597 886 ;C 228 ; WX 444 ; N adieresis ; B 37 -10 442 623 ;C 235 ; WX 444 ; N edieresis ; B 25 -10 424 623 ;C -1 ; WX 444 ; N cacute ; B 25 -10 413 678 ;C -1 ; WX 500 ; N nacute ; B 16 0 485 678 ;C -1 ; WX 500 ; N umacron ; B 9 -10 479 601 ;C -1 ; WX 722 ; N Ncaron ; B 12 -11 707 886 ;C 205 ; WX 333 ; N Iacute ; B 18 0 317 890 ;C 177 ; WX 564 ; N plusminus ; B 30 0 534 506 ;C 166 ; WX 200 ; N brokenbar ; B 67 -143 133 707 ;C 174 ; WX 760 ; N registered ; B 38 -14 722 676 ;C -1 ; WX 722 ; N Gbreve ; B 32 -14 709 876 ;C -1 ; WX 333 ; N Idotaccent ; B 18 0 315 835 ;C -1 ; WX 600 ; N summation ; B 15 -10 585 706 ;C 200 ; WX 611 ; N Egrave ; B 12 0 597 890 ;C -1 ; WX 333 ; N racute ; B 5 0 335 678 ;C -1 ; WX 500 ; N omacron ; B 29 -10 470 601 ;C -1 ; WX 611 ; N Zacute ; B 9 0 597 890 ;C 142 ; WX 611 ; N Zcaron ; B 9 0 597 886 ;C -1 ; WX 549 ; N greaterequal ; B 26 0 523 666 ;C 208 ; WX 722 ; N Eth ; B 16 0 685 662 ;C 199 ; WX 667 ; N Ccedilla ; B 28 -215 633 676 ;C -1 ; WX 278 ; N lcommaaccent ; B 19 -218 257 683 ;C -1 ; WX 326 ; N tcaron ; B 13 -10 318 722 ;C -1 ; WX 444 ; N eogonek ; B 25 -165 424 460 ;C -1 ; WX 722 ; N Uogonek ; B 14 -165 705 662 ;C 193 ; WX 722 ; N Aacute ; B 15 0 706 890 ;C 196 ; WX 722 ; N Adieresis ; B 15 0 706 835 ;C 232 ; WX 444 ; N egrave ; B 25 -10 424 678 ;C -1 ; WX 444 ; N zacute ; B 27 0 418 678 ;C -1 ; WX 278 ; N iogonek ; B 16 -165 265 683 ;C 211 ; WX 722 ; N Oacute ; B 34 -14 688 890 ;C 243 ; WX 500 ; N oacute ; B 29 -10 470 678 ;C -1 ; WX 444 ; N amacron ; B 37 -10 442 601 ;C -1 ; WX 389 ; N sacute ; B 51 -10 348 678 ;C 239 ; WX 278 ; N idieresis ; B -9 0 288 623 ;C 212 ; WX 722 ; N Ocircumflex ; B 34 -14 688 886 ;C 217 ; WX 722 ; N Ugrave ; B 14 -14 705 890 ;C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ;C 254 ; WX 500 ; N thorn ; B 5 -217 470 683 ;C 178 ; WX 300 ; N twosuperior ; B 1 270 296 676 ;C 214 ; WX 722 ; N Odieresis ; B 34 -14 688 835 ;C 181 ; WX 500 ; N mu ; B 36 -218 512 450 ;C 236 ; WX 278 ; N igrave ; B -8 0 253 678 ;C -1 ; WX 500 ; N ohungarumlaut ; B 29 -10 491 678 ;C -1 ; WX 611 ; N Eogonek ; B 12 -165 597 662 ;C -1 ; WX 500 ; N dcroat ; B 27 -10 500 683 ;C 190 ; WX 750 ; N threequarters ; B 15 -14 718 676 ;C -1 ; WX 556 ; N Scedilla ; B 42 -215 491 676 ;C -1 ; WX 344 ; N lcaron ; B 19 0 347 695 ;C -1 ; WX 722 ; N Kcommaaccent ; B 34 -198 723 662 ;C -1 ; WX 611 ; N Lacute ; B 12 0 598 890 ;C 153 ; WX 980 ; N trademark ; B 30 256 957 662 ;C -1 ; WX 444 ; N edotaccent ; B 25 -10 424 623 ;C 204 ; WX 333 ; N Igrave ; B 18 0 315 890 ;C -1 ; WX 333 ; N Imacron ; B 11 0 322 813 ;C -1 ; WX 611 ; N Lcaron ; B 12 0 598 676 ;C 189 ; WX 750 ; N onehalf ; B 31 -14 746 676 ;C -1 ; WX 549 ; N lessequal ; B 26 0 523 666 ;C 244 ; WX 500 ; N ocircumflex ; B 29 -10 470 674 ;C 241 ; WX 500 ; N ntilde ; B 16 0 485 638 ;C -1 ; WX 722 ; N Uhungarumlaut ; B 14 -14 705 890 ;C 201 ; WX 611 ; N Eacute ; B 12 0 597 890 ;C -1 ; WX 444 ; N emacron ; B 25 -10 424 601 ;C -1 ; WX 500 ; N gbreve ; B 28 -218 470 664 ;C 188 ; WX 750 ; N onequarter ; B 37 -14 718 676 ;C 138 ; WX 556 ; N Scaron ; B 42 -14 491 886 ;C -1 ; WX 556 ; N Scommaaccent ; B 42 -218 491 676 ;C -1 ; WX 722 ; N Ohungarumlaut ; B 34 -14 688 890 ;C 176 ; WX 400 ; N degree ; B 57 390 343 676 ;C 242 ; WX 500 ; N ograve ; B 29 -10 470 678 ;C -1 ; WX 667 ; N Ccaron ; B 28 -14 633 886 ;C 249 ; WX 500 ; N ugrave ; B 9 -10 479 678 ;C -1 ; WX 453 ; N radical ; B 2 -60 452 768 ;C -1 ; WX 722 ; N Dcaron ; B 16 0 685 886 ;C -1 ; WX 333 ; N rcommaaccent ; B 5 -218 335 460 ;C 209 ; WX 722 ; N Ntilde ; B 12 -11 707 850 ;C 245 ; WX 500 ; N otilde ; B 29 -10 470 638 ;C -1 ; WX 667 ; N Rcommaaccent ; B 17 -198 659 662 ;C -1 ; WX 611 ; N Lcommaaccent ; B 12 -218 598 662 ;C 195 ; WX 722 ; N Atilde ; B 15 0 706 850 ;C -1 ; WX 722 ; N Aogonek ; B 15 -165 738 674 ;C 197 ; WX 722 ; N Aring ; B 15 0 706 898 ;C 213 ; WX 722 ; N Otilde ; B 34 -14 688 850 ;C -1 ; WX 444 ; N zdotaccent ; B 27 0 418 623 ;C -1 ; WX 611 ; N Ecaron ; B 12 0 597 886 ;C -1 ; WX 333 ; N Iogonek ; B 18 -165 315 662 ;C -1 ; WX 500 ; N kcommaaccent ; B 7 -218 505 683 ;C -1 ; WX 564 ; N minus ; B 30 220 534 286 ;C 206 ; WX 333 ; N Icircumflex ; B 11 0 322 886 ;C -1 ; WX 500 ; N ncaron ; B 16 0 485 674 ;C -1 ; WX 278 ; N tcommaaccent ; B 13 -218 279 579 ;C 172 ; WX 564 ; N logicalnot ; B 30 108 534 386 ;C 246 ; WX 500 ; N odieresis ; B 29 -10 470 623 ;C 252 ; WX 500 ; N udieresis ; B 9 -10 479 623 ;C -1 ; WX 549 ; N notequal ; B 12 -31 537 547 ;C -1 ; WX 500 ; N gcommaaccent ; B 28 -218 470 749 ;C 240 ; WX 500 ; N eth ; B 29 -10 471 686 ;C 158 ; WX 444 ; N zcaron ; B 27 0 418 674 ;C -1 ; WX 500 ; N ncommaaccent ; B 16 -218 485 460 ;C 185 ; WX 300 ; N onesuperior ; B 57 270 248 676 ;C -1 ; WX 278 ; N imacron ; B 6 0 271 601 ;C 128 ; WX 500 ; N Euro ; B 0 0 0 0 ;EndCharMetricsStartKernDataStartKernPairs 2073KPX A C -40KPX A Cacute -40KPX A Ccaron -40KPX A Ccedilla -40KPX A G -40KPX A Gbreve -40KPX A Gcommaaccent -40KPX A O -55KPX A Oacute -55KPX A Ocircumflex -55KPX A Odieresis -55KPX A Ograve -55KPX A Ohungarumlaut -55KPX A Omacron -55KPX A Oslash -55KPX A Otilde -55KPX A Q -55KPX A T -111KPX A Tcaron -111KPX A Tcommaaccent -111KPX A U -55KPX A Uacute -55KPX A Ucircumflex -55KPX A Udieresis -55KPX A Ugrave -55KPX A Uhungarumlaut -55KPX A Umacron -55KPX A Uogonek -55KPX A Uring -55KPX A V -135KPX A W -90KPX A Y -105KPX A Yacute -105KPX A Ydieresis -105KPX A quoteright -111KPX A v -74KPX A w -92KPX A y -92KPX A yacute -92KPX A ydieresis -92KPX Aacute C -40KPX Aacute Cacute -40KPX Aacute Ccaron -40KPX Aacute Ccedilla -40KPX Aacute G -40KPX Aacute Gbreve -40KPX Aacute Gcommaaccent -40KPX Aacute O -55KPX Aacute Oacute -55KPX Aacute Ocircumflex -55KPX Aacute Odieresis -55KPX Aacute Ograve -55KPX Aacute Ohungarumlaut -55KPX Aacute Omacron -55KPX Aacute Oslash -55KPX Aacute Otilde -55KPX Aacute Q -55KPX Aacute T -111KPX Aacute Tcaron -111KPX Aacute Tcommaaccent -111KPX Aacute U -55KPX Aacute Uacute -55KPX Aacute Ucircumflex -55KPX Aacute Udieresis -55KPX Aacute Ugrave -55KPX Aacute Uhungarumlaut -55KPX Aacute Umacron -55KPX Aacute Uogonek -55KPX Aacute Uring -55KPX Aacute V -135KPX Aacute W -90KPX Aacute Y -105KPX Aacute Yacute -105KPX Aacute Ydieresis -105KPX Aacute quoteright -111KPX Aacute v -74KPX Aacute w -92KPX Aacute y -92KPX Aacute yacute -92KPX Aacute ydieresis -92KPX Abreve C -40KPX Abreve Cacute -40KPX Abreve Ccaron -40KPX Abreve Ccedilla -40KPX Abreve G -40KPX Abreve Gbreve -40KPX Abreve Gcommaaccent -40KPX Abreve O -55KPX Abreve Oacute -55KPX Abreve Ocircumflex -55KPX Abreve Odieresis -55KPX Abreve Ograve -55KPX Abreve Ohungarumlaut -55KPX Abreve Omacron -55KPX Abreve Oslash -55KPX Abreve Otilde -55KPX Abreve Q -55KPX Abreve T -111KPX Abreve Tcaron -111KPX Abreve Tcommaaccent -111KPX Abreve U -55KPX Abreve Uacute -55KPX Abreve Ucircumflex -55KPX Abreve Udieresis -55KPX Abreve Ugrave -55KPX Abreve Uhungarumlaut -55KPX Abreve Umacron -55KPX Abreve Uogonek -55KPX Abreve Uring -55KPX Abreve V -135KPX Abreve W -90KPX Abreve Y -105KPX Abreve Yacute -105KPX Abreve Ydieresis -105KPX Abreve quoteright -111KPX Abreve v -74KPX Abreve w -92KPX Abreve y -92KPX Abreve yacute -92KPX Abreve ydieresis -92KPX Acircumflex C -40KPX Acircumflex Cacute -40KPX Acircumflex Ccaron -40KPX Acircumflex Ccedilla -40KPX Acircumflex G -40KPX Acircumflex Gbreve -40KPX Acircumflex Gcommaaccent -40KPX Acircumflex O -55KPX Acircumflex Oacute -55KPX Acircumflex Ocircumflex -55KPX Acircumflex Odieresis -55KPX Acircumflex Ograve -55KPX Acircumflex Ohungarumlaut -55KPX Acircumflex Omacron -55KPX Acircumflex Oslash -55KPX Acircumflex Otilde -55KPX Acircumflex Q -55KPX Acircumflex T -111KPX Acircumflex Tcaron -111KPX Acircumflex Tcommaaccent -111KPX Acircumflex U -55KPX Acircumflex Uacute -55KPX Acircumflex Ucircumflex -55KPX Acircumflex Udieresis -55KPX Acircumflex Ugrave -55KPX Acircumflex Uhungarumlaut -55KPX Acircumflex Umacron -55KPX Acircumflex Uogonek -55KPX Acircumflex Uring -55KPX Acircumflex V -135KPX Acircumflex W -90KPX Acircumflex Y -105KPX Acircumflex Yacute -105KPX Acircumflex Ydieresis -105KPX Acircumflex quoteright -111KPX Acircumflex v -74KPX Acircumflex w -92KPX Acircumflex y -92KPX Acircumflex yacute -92KPX Acircumflex ydieresis -92KPX Adieresis C -40KPX Adieresis Cacute -40KPX Adieresis Ccaron -40KPX Adieresis Ccedilla -40KPX Adieresis G -40KPX Adieresis Gbreve -40KPX Adieresis Gcommaaccent -40KPX Adieresis O -55KPX Adieresis Oacute -55KPX Adieresis Ocircumflex -55KPX Adieresis Odieresis -55KPX Adieresis Ograve -55KPX Adieresis Ohungarumlaut -55KPX Adieresis Omacron -55KPX Adieresis Oslash -55KPX Adieresis Otilde -55KPX Adieresis Q -55KPX Adieresis T -111KPX Adieresis Tcaron -111KPX Adieresis Tcommaaccent -111KPX Adieresis U -55KPX Adieresis Uacute -55KPX Adieresis Ucircumflex -55KPX Adieresis Udieresis -55KPX Adieresis Ugrave -55KPX Adieresis Uhungarumlaut -55KPX Adieresis Umacron -55KPX Adieresis Uogonek -55KPX Adieresis Uring -55KPX Adieresis V -135KPX Adieresis W -90KPX Adieresis Y -105KPX Adieresis Yacute -105KPX Adieresis Ydieresis -105KPX Adieresis quoteright -111KPX Adieresis v -74KPX Adieresis w -92KPX Adieresis y -92KPX Adieresis yacute -92KPX Adieresis ydieresis -92KPX Agrave C -40KPX Agrave Cacute -40KPX Agrave Ccaron -40KPX Agrave Ccedilla -40KPX Agrave G -40KPX Agrave Gbreve -40KPX Agrave Gcommaaccent -40KPX Agrave O -55KPX Agrave Oacute -55KPX Agrave Ocircumflex -55KPX Agrave Odieresis -55KPX Agrave Ograve -55KPX Agrave Ohungarumlaut -55KPX Agrave Omacron -55KPX Agrave Oslash -55KPX Agrave Otilde -55KPX Agrave Q -55KPX Agrave T -111KPX Agrave Tcaron -111KPX Agrave Tcommaaccent -111KPX Agrave U -55KPX Agrave Uacute -55KPX Agrave Ucircumflex -55KPX Agrave Udieresis -55KPX Agrave Ugrave -55KPX Agrave Uhungarumlaut -55KPX Agrave Umacron -55KPX Agrave Uogonek -55KPX Agrave Uring -55KPX Agrave V -135KPX Agrave W -90KPX Agrave Y -105KPX Agrave Yacute -105KPX Agrave Ydieresis -105KPX Agrave quoteright -111KPX Agrave v -74KPX Agrave w -92KPX Agrave y -92KPX Agrave yacute -92KPX Agrave ydieresis -92KPX Amacron C -40KPX Amacron Cacute -40KPX Amacron Ccaron -40KPX Amacron Ccedilla -40KPX Amacron G -40KPX Amacron Gbreve -40KPX Amacron Gcommaaccent -40KPX Amacron O -55KPX Amacron Oacute -55KPX Amacron Ocircumflex -55KPX Amacron Odieresis -55KPX Amacron Ograve -55KPX Amacron Ohungarumlaut -55KPX Amacron Omacron -55KPX Amacron Oslash -55KPX Amacron Otilde -55KPX Amacron Q -55KPX Amacron T -111KPX Amacron Tcaron -111KPX Amacron Tcommaaccent -111KPX Amacron U -55KPX Amacron Uacute -55KPX Amacron Ucircumflex -55KPX Amacron Udieresis -55KPX Amacron Ugrave -55KPX Amacron Uhungarumlaut -55KPX Amacron Umacron -55KPX Amacron Uogonek -55KPX Amacron Uring -55KPX Amacron V -135KPX Amacron W -90KPX Amacron Y -105KPX Amacron Yacute -105KPX Amacron Ydieresis -105KPX Amacron quoteright -111KPX Amacron v -74KPX Amacron w -92KPX Amacron y -92KPX Amacron yacute -92KPX Amacron ydieresis -92KPX Aogonek C -40KPX Aogonek Cacute -40KPX Aogonek Ccaron -40KPX Aogonek Ccedilla -40KPX Aogonek G -40KPX Aogonek Gbreve -40KPX Aogonek Gcommaaccent -40KPX Aogonek O -55KPX Aogonek Oacute -55KPX Aogonek Ocircumflex -55KPX Aogonek Odieresis -55KPX Aogonek Ograve -55KPX Aogonek Ohungarumlaut -55KPX Aogonek Omacron -55KPX Aogonek Oslash -55KPX Aogonek Otilde -55KPX Aogonek Q -55KPX Aogonek T -111KPX Aogonek Tcaron -111KPX Aogonek Tcommaaccent -111KPX Aogonek U -55KPX Aogonek Uacute -55KPX Aogonek Ucircumflex -55KPX Aogonek Udieresis -55KPX Aogonek Ugrave -55KPX Aogonek Uhungarumlaut -55KPX Aogonek Umacron -55KPX Aogonek Uogonek -55KPX Aogonek Uring -55KPX Aogonek V -135KPX Aogonek W -90KPX Aogonek Y -105KPX Aogonek Yacute -105KPX Aogonek Ydieresis -105KPX Aogonek quoteright -111KPX Aogonek v -74KPX Aogonek w -52KPX Aogonek y -52KPX Aogonek yacute -52KPX Aogonek ydieresis -52KPX Aring C -40KPX Aring Cacute -40KPX Aring Ccaron -40KPX Aring Ccedilla -40KPX Aring G -40KPX Aring Gbreve -40KPX Aring Gcommaaccent -40KPX Aring O -55KPX Aring Oacute -55KPX Aring Ocircumflex -55KPX Aring Odieresis -55KPX Aring Ograve -55KPX Aring Ohungarumlaut -55KPX Aring Omacron -55KPX Aring Oslash -55KPX Aring Otilde -55KPX Aring Q -55KPX Aring T -111KPX Aring Tcaron -111KPX Aring Tcommaaccent -111KPX Aring U -55KPX Aring Uacute -55KPX Aring Ucircumflex -55KPX Aring Udieresis -55KPX Aring Ugrave -55KPX Aring Uhungarumlaut -55KPX Aring Umacron -55KPX Aring Uogonek -55KPX Aring Uring -55KPX Aring V -135KPX Aring W -90KPX Aring Y -105KPX Aring Yacute -105KPX Aring Ydieresis -105KPX Aring quoteright -111KPX Aring v -74KPX Aring w -92KPX Aring y -92KPX Aring yacute -92KPX Aring ydieresis -92KPX Atilde C -40KPX Atilde Cacute -40KPX Atilde Ccaron -40KPX Atilde Ccedilla -40KPX Atilde G -40KPX Atilde Gbreve -40KPX Atilde Gcommaaccent -40KPX Atilde O -55KPX Atilde Oacute -55KPX Atilde Ocircumflex -55KPX Atilde Odieresis -55KPX Atilde Ograve -55KPX Atilde Ohungarumlaut -55KPX Atilde Omacron -55KPX Atilde Oslash -55KPX Atilde Otilde -55KPX Atilde Q -55KPX Atilde T -111KPX Atilde Tcaron -111KPX Atilde Tcommaaccent -111KPX Atilde U -55KPX Atilde Uacute -55KPX Atilde Ucircumflex -55KPX Atilde Udieresis -55KPX Atilde Ugrave -55KPX Atilde Uhungarumlaut -55KPX Atilde Umacron -55KPX Atilde Uogonek -55KPX Atilde Uring -55KPX Atilde V -135KPX Atilde W -90KPX Atilde Y -105KPX Atilde Yacute -105KPX Atilde Ydieresis -105KPX Atilde quoteright -111KPX Atilde v -74KPX Atilde w -92KPX Atilde y -92KPX Atilde yacute -92KPX Atilde ydieresis -92KPX B A -35KPX B Aacute -35KPX B Abreve -35KPX B Acircumflex -35KPX B Adieresis -35KPX B Agrave -35KPX B Amacron -35KPX B Aogonek -35KPX B Aring -35KPX B Atilde -35KPX B U -10KPX B Uacute -10KPX B Ucircumflex -10KPX B Udieresis -10KPX B Ugrave -10KPX B Uhungarumlaut -10KPX B Umacron -10KPX B Uogonek -10KPX B Uring -10KPX D A -40KPX D Aacute -40KPX D Abreve -40KPX D Acircumflex -40KPX D Adieresis -40KPX D Agrave -40KPX D Amacron -40KPX D Aogonek -40KPX D Aring -40KPX D Atilde -40KPX D V -40KPX D W -30KPX D Y -55KPX D Yacute -55KPX D Ydieresis -55KPX Dcaron A -40KPX Dcaron Aacute -40KPX Dcaron Abreve -40KPX Dcaron Acircumflex -40KPX Dcaron Adieresis -40KPX Dcaron Agrave -40KPX Dcaron Amacron -40KPX Dcaron Aogonek -40KPX Dcaron Aring -40KPX Dcaron Atilde -40KPX Dcaron V -40KPX Dcaron W -30KPX Dcaron Y -55KPX Dcaron Yacute -55KPX Dcaron Ydieresis -55KPX Dcroat A -40KPX Dcroat Aacute -40KPX Dcroat Abreve -40KPX Dcroat Acircumflex -40KPX Dcroat Adieresis -40KPX Dcroat Agrave -40KPX Dcroat Amacron -40KPX Dcroat Aogonek -40KPX Dcroat Aring -40KPX Dcroat Atilde -40KPX Dcroat V -40KPX Dcroat W -30KPX Dcroat Y -55KPX Dcroat Yacute -55KPX Dcroat Ydieresis -55KPX F A -74KPX F Aacute -74KPX F Abreve -74KPX F Acircumflex -74KPX F Adieresis -74KPX F Agrave -74KPX F Amacron -74KPX F Aogonek -74KPX F Aring -74KPX F Atilde -74KPX F a -15KPX F aacute -15KPX F abreve -15KPX F acircumflex -15KPX F adieresis -15KPX F agrave -15KPX F amacron -15KPX F aogonek -15KPX F aring -15KPX F atilde -15KPX F comma -80KPX F o -15KPX F oacute -15KPX F ocircumflex -15KPX F odieresis -15KPX F ograve -15KPX F ohungarumlaut -15KPX F omacron -15KPX F oslash -15KPX F otilde -15KPX F period -80KPX J A -60KPX J Aacute -60KPX J Abreve -60KPX J Acircumflex -60KPX J Adieresis -60KPX J Agrave -60KPX J Amacron -60KPX J Aogonek -60KPX J Aring -60KPX J Atilde -60KPX K O -30KPX K Oacute -30KPX K Ocircumflex -30KPX K Odieresis -30KPX K Ograve -30KPX K Ohungarumlaut -30KPX K Omacron -30KPX K Oslash -30KPX K Otilde -30KPX K e -25KPX K eacute -25KPX K ecaron -25KPX K ecircumflex -25KPX K edieresis -25KPX K edotaccent -25KPX K egrave -25KPX K emacron -25KPX K eogonek -25KPX K o -35KPX K oacute -35KPX K ocircumflex -35KPX K odieresis -35KPX K ograve -35KPX K ohungarumlaut -35KPX K omacron -35KPX K oslash -35KPX K otilde -35KPX K u -15KPX K uacute -15KPX K ucircumflex -15KPX K udieresis -15KPX K ugrave -15KPX K uhungarumlaut -15KPX K umacron -15KPX K uogonek -15KPX K uring -15KPX K y -25KPX K yacute -25KPX K ydieresis -25KPX Kcommaaccent O -30KPX Kcommaaccent Oacute -30KPX Kcommaaccent Ocircumflex -30KPX Kcommaaccent Odieresis -30KPX Kcommaaccent Ograve -30KPX Kcommaaccent Ohungarumlaut -30KPX Kcommaaccent Omacron -30KPX Kcommaaccent Oslash -30KPX Kcommaaccent Otilde -30KPX Kcommaaccent e -25KPX Kcommaaccent eacute -25KPX Kcommaaccent ecaron -25KPX Kcommaaccent ecircumflex -25KPX Kcommaaccent edieresis -25KPX Kcommaaccent edotaccent -25KPX Kcommaaccent egrave -25KPX Kcommaaccent emacron -25KPX Kcommaaccent eogonek -25KPX Kcommaaccent o -35KPX Kcommaaccent oacute -35KPX Kcommaaccent ocircumflex -35KPX Kcommaaccent odieresis -35KPX Kcommaaccent ograve -35KPX Kcommaaccent ohungarumlaut -35KPX Kcommaaccent omacron -35KPX Kcommaaccent oslash -35KPX Kcommaaccent otilde -35KPX Kcommaaccent u -15KPX Kcommaaccent uacute -15KPX Kcommaaccent ucircumflex -15KPX Kcommaaccent udieresis -15KPX Kcommaaccent ugrave -15KPX Kcommaaccent uhungarumlaut -15KPX Kcommaaccent umacron -15KPX Kcommaaccent uogonek -15KPX Kcommaaccent uring -15KPX Kcommaaccent y -25KPX Kcommaaccent yacute -25KPX Kcommaaccent ydieresis -25KPX L T -92KPX L Tcaron -92KPX L Tcommaaccent -92KPX L V -100KPX L W -74KPX L Y -100KPX L Yacute -100KPX L Ydieresis -100KPX L quoteright -92KPX L y -55KPX L yacute -55KPX L ydieresis -55KPX Lacute T -92KPX Lacute Tcaron -92KPX Lacute Tcommaaccent -92KPX Lacute V -100KPX Lacute W -74KPX Lacute Y -100KPX Lacute Yacute -100KPX Lacute Ydieresis -100KPX Lacute quoteright -92KPX Lacute y -55KPX Lacute yacute -55KPX Lacute ydieresis -55KPX Lcaron quoteright -92KPX Lcaron y -55KPX Lcaron yacute -55KPX Lcaron ydieresis -55KPX Lcommaaccent T -92KPX Lcommaaccent Tcaron -92KPX Lcommaaccent Tcommaaccent -92KPX Lcommaaccent V -100KPX Lcommaaccent W -74KPX Lcommaaccent Y -100KPX Lcommaaccent Yacute -100KPX Lcommaaccent Ydieresis -100KPX Lcommaaccent quoteright -92KPX Lcommaaccent y -55KPX Lcommaaccent yacute -55KPX Lcommaaccent ydieresis -55KPX Lslash T -92KPX Lslash Tcaron -92KPX Lslash Tcommaaccent -92KPX Lslash V -100KPX Lslash W -74KPX Lslash Y -100KPX Lslash Yacute -100KPX Lslash Ydieresis -100KPX Lslash quoteright -92KPX Lslash y -55KPX Lslash yacute -55KPX Lslash ydieresis -55KPX N A -35KPX N Aacute -35KPX N Abreve -35KPX N Acircumflex -35KPX N Adieresis -35KPX N Agrave -35KPX N Amacron -35KPX N Aogonek -35KPX N Aring -35KPX N Atilde -35KPX Nacute A -35KPX Nacute Aacute -35KPX Nacute Abreve -35KPX Nacute Acircumflex -35KPX Nacute Adieresis -35KPX Nacute Agrave -35KPX Nacute Amacron -35KPX Nacute Aogonek -35KPX Nacute Aring -35KPX Nacute Atilde -35KPX Ncaron A -35KPX Ncaron Aacute -35KPX Ncaron Abreve -35KPX Ncaron Acircumflex -35KPX Ncaron Adieresis -35KPX Ncaron Agrave -35KPX Ncaron Amacron -35KPX Ncaron Aogonek -35KPX Ncaron Aring -35KPX Ncaron Atilde -35KPX Ncommaaccent A -35KPX Ncommaaccent Aacute -35KPX Ncommaaccent Abreve -35KPX Ncommaaccent Acircumflex -35KPX Ncommaaccent Adieresis -35KPX Ncommaaccent Agrave -35KPX Ncommaaccent Amacron -35KPX Ncommaaccent Aogonek -35KPX Ncommaaccent Aring -35KPX Ncommaaccent Atilde -35KPX Ntilde A -35KPX Ntilde Aacute -35KPX Ntilde Abreve -35KPX Ntilde Acircumflex -35KPX Ntilde Adieresis -35KPX Ntilde Agrave -35KPX Ntilde Amacron -35KPX Ntilde Aogonek -35KPX Ntilde Aring -35KPX Ntilde Atilde -35KPX O A -35KPX O Aacute -35KPX O Abreve -35KPX O Acircumflex -35KPX O Adieresis -35KPX O Agrave -35KPX O Amacron -35KPX O Aogonek -35KPX O Aring -35KPX O Atilde -35KPX O T -40KPX O Tcaron -40KPX O Tcommaaccent -40KPX O V -50KPX O W -35KPX O X -40KPX O Y -50KPX O Yacute -50KPX O Ydieresis -50KPX Oacute A -35KPX Oacute Aacute -35KPX Oacute Abreve -35KPX Oacute Acircumflex -35KPX Oacute Adieresis -35KPX Oacute Agrave -35KPX Oacute Amacron -35KPX Oacute Aogonek -35KPX Oacute Aring -35KPX Oacute Atilde -35KPX Oacute T -40KPX Oacute Tcaron -40KPX Oacute Tcommaaccent -40KPX Oacute V -50KPX Oacute W -35KPX Oacute X -40KPX Oacute Y -50KPX Oacute Yacute -50KPX Oacute Ydieresis -50KPX Ocircumflex A -35KPX Ocircumflex Aacute -35KPX Ocircumflex Abreve -35KPX Ocircumflex Acircumflex -35KPX Ocircumflex Adieresis -35KPX Ocircumflex Agrave -35KPX Ocircumflex Amacron -35KPX Ocircumflex Aogonek -35KPX Ocircumflex Aring -35KPX Ocircumflex Atilde -35KPX Ocircumflex T -40KPX Ocircumflex Tcaron -40KPX Ocircumflex Tcommaaccent -40KPX Ocircumflex V -50KPX Ocircumflex W -35KPX Ocircumflex X -40KPX Ocircumflex Y -50KPX Ocircumflex Yacute -50KPX Ocircumflex Ydieresis -50KPX Odieresis A -35KPX Odieresis Aacute -35KPX Odieresis Abreve -35KPX Odieresis Acircumflex -35KPX Odieresis Adieresis -35KPX Odieresis Agrave -35KPX Odieresis Amacron -35KPX Odieresis Aogonek -35KPX Odieresis Aring -35KPX Odieresis Atilde -35KPX Odieresis T -40KPX Odieresis Tcaron -40KPX Odieresis Tcommaaccent -40KPX Odieresis V -50KPX Odieresis W -35KPX Odieresis X -40KPX Odieresis Y -50KPX Odieresis Yacute -50KPX Odieresis Ydieresis -50KPX Ograve A -35KPX Ograve Aacute -35KPX Ograve Abreve -35KPX Ograve Acircumflex -35KPX Ograve Adieresis -35KPX Ograve Agrave -35KPX Ograve Amacron -35KPX Ograve Aogonek -35KPX Ograve Aring -35KPX Ograve Atilde -35KPX Ograve T -40KPX Ograve Tcaron -40KPX Ograve Tcommaaccent -40KPX Ograve V -50KPX Ograve W -35KPX Ograve X -40KPX Ograve Y -50KPX Ograve Yacute -50KPX Ograve Ydieresis -50KPX Ohungarumlaut A -35KPX Ohungarumlaut Aacute -35KPX Ohungarumlaut Abreve -35KPX Ohungarumlaut Acircumflex -35KPX Ohungarumlaut Adieresis -35KPX Ohungarumlaut Agrave -35KPX Ohungarumlaut Amacron -35KPX Ohungarumlaut Aogonek -35KPX Ohungarumlaut Aring -35KPX Ohungarumlaut Atilde -35KPX Ohungarumlaut T -40KPX Ohungarumlaut Tcaron -40KPX Ohungarumlaut Tcommaaccent -40KPX Ohungarumlaut V -50KPX Ohungarumlaut W -35KPX Ohungarumlaut X -40KPX Ohungarumlaut Y -50KPX Ohungarumlaut Yacute -50KPX Ohungarumlaut Ydieresis -50KPX Omacron A -35KPX Omacron Aacute -35KPX Omacron Abreve -35KPX Omacron Acircumflex -35KPX Omacron Adieresis -35KPX Omacron Agrave -35KPX Omacron Amacron -35KPX Omacron Aogonek -35KPX Omacron Aring -35KPX Omacron Atilde -35KPX Omacron T -40KPX Omacron Tcaron -40KPX Omacron Tcommaaccent -40KPX Omacron V -50KPX Omacron W -35KPX Omacron X -40KPX Omacron Y -50KPX Omacron Yacute -50KPX Omacron Ydieresis -50KPX Oslash A -35KPX Oslash Aacute -35KPX Oslash Abreve -35KPX Oslash Acircumflex -35KPX Oslash Adieresis -35KPX Oslash Agrave -35KPX Oslash Amacron -35KPX Oslash Aogonek -35KPX Oslash Aring -35KPX Oslash Atilde -35KPX Oslash T -40KPX Oslash Tcaron -40KPX Oslash Tcommaaccent -40KPX Oslash V -50KPX Oslash W -35KPX Oslash X -40KPX Oslash Y -50KPX Oslash Yacute -50KPX Oslash Ydieresis -50KPX Otilde A -35KPX Otilde Aacute -35KPX Otilde Abreve -35KPX Otilde Acircumflex -35KPX Otilde Adieresis -35KPX Otilde Agrave -35KPX Otilde Amacron -35KPX Otilde Aogonek -35KPX Otilde Aring -35KPX Otilde Atilde -35KPX Otilde T -40KPX Otilde Tcaron -40KPX Otilde Tcommaaccent -40KPX Otilde V -50KPX Otilde W -35KPX Otilde X -40KPX Otilde Y -50KPX Otilde Yacute -50KPX Otilde Ydieresis -50KPX P A -92KPX P Aacute -92KPX P Abreve -92KPX P Acircumflex -92KPX P Adieresis -92KPX P Agrave -92KPX P Amacron -92KPX P Aogonek -92KPX P Aring -92KPX P Atilde -92KPX P a -15KPX P aacute -15KPX P abreve -15KPX P acircumflex -15KPX P adieresis -15KPX P agrave -15KPX P amacron -15KPX P aogonek -15KPX P aring -15KPX P atilde -15KPX P comma -111KPX P period -111KPX Q U -10KPX Q Uacute -10KPX Q Ucircumflex -10KPX Q Udieresis -10KPX Q Ugrave -10KPX Q Uhungarumlaut -10KPX Q Umacron -10KPX Q Uogonek -10KPX Q Uring -10KPX R O -40KPX R Oacute -40KPX R Ocircumflex -40KPX R Odieresis -40KPX R Ograve -40KPX R Ohungarumlaut -40KPX R Omacron -40KPX R Oslash -40KPX R Otilde -40KPX R T -60KPX R Tcaron -60KPX R Tcommaaccent -60KPX R U -40KPX R Uacute -40KPX R Ucircumflex -40KPX R Udieresis -40KPX R Ugrave -40KPX R Uhungarumlaut -40KPX R Umacron -40KPX R Uogonek -40KPX R Uring -40KPX R V -80KPX R W -55KPX R Y -65KPX R Yacute -65KPX R Ydieresis -65KPX Racute O -40KPX Racute Oacute -40KPX Racute Ocircumflex -40KPX Racute Odieresis -40KPX Racute Ograve -40KPX Racute Ohungarumlaut -40KPX Racute Omacron -40KPX Racute Oslash -40KPX Racute Otilde -40KPX Racute T -60KPX Racute Tcaron -60KPX Racute Tcommaaccent -60KPX Racute U -40KPX Racute Uacute -40KPX Racute Ucircumflex -40KPX Racute Udieresis -40KPX Racute Ugrave -40KPX Racute Uhungarumlaut -40KPX Racute Umacron -40KPX Racute Uogonek -40KPX Racute Uring -40KPX Racute V -80KPX Racute W -55KPX Racute Y -65KPX Racute Yacute -65KPX Racute Ydieresis -65KPX Rcaron O -40KPX Rcaron Oacute -40KPX Rcaron Ocircumflex -40KPX Rcaron Odieresis -40KPX Rcaron Ograve -40KPX Rcaron Ohungarumlaut -40KPX Rcaron Omacron -40KPX Rcaron Oslash -40KPX Rcaron Otilde -40KPX Rcaron T -60KPX Rcaron Tcaron -60KPX Rcaron Tcommaaccent -60KPX Rcaron U -40KPX Rcaron Uacute -40KPX Rcaron Ucircumflex -40KPX Rcaron Udieresis -40KPX Rcaron Ugrave -40KPX Rcaron Uhungarumlaut -40KPX Rcaron Umacron -40KPX Rcaron Uogonek -40KPX Rcaron Uring -40KPX Rcaron V -80KPX Rcaron W -55KPX Rcaron Y -65KPX Rcaron Yacute -65KPX Rcaron Ydieresis -65KPX Rcommaaccent O -40KPX Rcommaaccent Oacute -40KPX Rcommaaccent Ocircumflex -40KPX Rcommaaccent Odieresis -40KPX Rcommaaccent Ograve -40KPX Rcommaaccent Ohungarumlaut -40KPX Rcommaaccent Omacron -40KPX Rcommaaccent Oslash -40KPX Rcommaaccent Otilde -40KPX Rcommaaccent T -60KPX Rcommaaccent Tcaron -60KPX Rcommaaccent Tcommaaccent -60KPX Rcommaaccent U -40KPX Rcommaaccent Uacute -40KPX Rcommaaccent Ucircumflex -40KPX Rcommaaccent Udieresis -40KPX Rcommaaccent Ugrave -40KPX Rcommaaccent Uhungarumlaut -40KPX Rcommaaccent Umacron -40KPX Rcommaaccent Uogonek -40KPX Rcommaaccent Uring -40KPX Rcommaaccent V -80KPX Rcommaaccent W -55KPX Rcommaaccent Y -65KPX Rcommaaccent Yacute -65KPX Rcommaaccent Ydieresis -65KPX T A -93KPX T Aacute -93KPX T Abreve -93KPX T Acircumflex -93KPX T Adieresis -93KPX T Agrave -93KPX T Amacron -93KPX T Aogonek -93KPX T Aring -93KPX T Atilde -93KPX T O -18KPX T Oacute -18KPX T Ocircumflex -18KPX T Odieresis -18KPX T Ograve -18KPX T Ohungarumlaut -18KPX T Omacron -18KPX T Oslash -18KPX T Otilde -18KPX T a -80KPX T aacute -80KPX T abreve -80KPX T acircumflex -80KPX T adieresis -40KPX T agrave -40KPX T amacron -40KPX T aogonek -80KPX T aring -80KPX T atilde -40KPX T colon -50KPX T comma -74KPX T e -70KPX T eacute -70KPX T ecaron -70KPX T ecircumflex -70KPX T edieresis -30KPX T edotaccent -70KPX T egrave -70KPX T emacron -30KPX T eogonek -70KPX T hyphen -92KPX T i -35KPX T iacute -35KPX T iogonek -35KPX T o -80KPX T oacute -80KPX T ocircumflex -80KPX T odieresis -80KPX T ograve -80KPX T ohungarumlaut -80KPX T omacron -80KPX T oslash -80KPX T otilde -80KPX T period -74KPX T r -35KPX T racute -35KPX T rcaron -35KPX T rcommaaccent -35KPX T semicolon -55KPX T u -45KPX T uacute -45KPX T ucircumflex -45KPX T udieresis -45KPX T ugrave -45KPX T uhungarumlaut -45KPX T umacron -45KPX T uogonek -45KPX T uring -45KPX T w -80KPX T y -80KPX T yacute -80KPX T ydieresis -80KPX Tcaron A -93KPX Tcaron Aacute -93KPX Tcaron Abreve -93KPX Tcaron Acircumflex -93KPX Tcaron Adieresis -93KPX Tcaron Agrave -93KPX Tcaron Amacron -93KPX Tcaron Aogonek -93KPX Tcaron Aring -93KPX Tcaron Atilde -93KPX Tcaron O -18KPX Tcaron Oacute -18KPX Tcaron Ocircumflex -18KPX Tcaron Odieresis -18KPX Tcaron Ograve -18KPX Tcaron Ohungarumlaut -18KPX Tcaron Omacron -18KPX Tcaron Oslash -18KPX Tcaron Otilde -18KPX Tcaron a -80KPX Tcaron aacute -80KPX Tcaron abreve -80KPX Tcaron acircumflex -80KPX Tcaron adieresis -40KPX Tcaron agrave -40KPX Tcaron amacron -40KPX Tcaron aogonek -80KPX Tcaron aring -80KPX Tcaron atilde -40KPX Tcaron colon -50KPX Tcaron comma -74KPX Tcaron e -70KPX Tcaron eacute -70KPX Tcaron ecaron -70KPX Tcaron ecircumflex -30KPX Tcaron edieresis -30KPX Tcaron edotaccent -70KPX Tcaron egrave -70KPX Tcaron emacron -30KPX Tcaron eogonek -70KPX Tcaron hyphen -92KPX Tcaron i -35KPX Tcaron iacute -35KPX Tcaron iogonek -35KPX Tcaron o -80KPX Tcaron oacute -80KPX Tcaron ocircumflex -80KPX Tcaron odieresis -80KPX Tcaron ograve -80KPX Tcaron ohungarumlaut -80KPX Tcaron omacron -80KPX Tcaron oslash -80KPX Tcaron otilde -80KPX Tcaron period -74KPX Tcaron r -35KPX Tcaron racute -35KPX Tcaron rcaron -35KPX Tcaron rcommaaccent -35KPX Tcaron semicolon -55KPX Tcaron u -45KPX Tcaron uacute -45KPX Tcaron ucircumflex -45KPX Tcaron udieresis -45KPX Tcaron ugrave -45KPX Tcaron uhungarumlaut -45KPX Tcaron umacron -45KPX Tcaron uogonek -45KPX Tcaron uring -45KPX Tcaron w -80KPX Tcaron y -80KPX Tcaron yacute -80KPX Tcaron ydieresis -80KPX Tcommaaccent A -93KPX Tcommaaccent Aacute -93KPX Tcommaaccent Abreve -93KPX Tcommaaccent Acircumflex -93KPX Tcommaaccent Adieresis -93KPX Tcommaaccent Agrave -93KPX Tcommaaccent Amacron -93KPX Tcommaaccent Aogonek -93KPX Tcommaaccent Aring -93KPX Tcommaaccent Atilde -93KPX Tcommaaccent O -18KPX Tcommaaccent Oacute -18KPX Tcommaaccent Ocircumflex -18KPX Tcommaaccent Odieresis -18KPX Tcommaaccent Ograve -18KPX Tcommaaccent Ohungarumlaut -18KPX Tcommaaccent Omacron -18KPX Tcommaaccent Oslash -18KPX Tcommaaccent Otilde -18KPX Tcommaaccent a -80KPX Tcommaaccent aacute -80KPX Tcommaaccent abreve -80KPX Tcommaaccent acircumflex -80KPX Tcommaaccent adieresis -40KPX Tcommaaccent agrave -40KPX Tcommaaccent amacron -40KPX Tcommaaccent aogonek -80KPX Tcommaaccent aring -80KPX Tcommaaccent atilde -40KPX Tcommaaccent colon -50KPX Tcommaaccent comma -74KPX Tcommaaccent e -70KPX Tcommaaccent eacute -70KPX Tcommaaccent ecaron -70KPX Tcommaaccent ecircumflex -30KPX Tcommaaccent edieresis -30KPX Tcommaaccent edotaccent -70KPX Tcommaaccent egrave -30KPX Tcommaaccent emacron -70KPX Tcommaaccent eogonek -70KPX Tcommaaccent hyphen -92KPX Tcommaaccent i -35KPX Tcommaaccent iacute -35KPX Tcommaaccent iogonek -35KPX Tcommaaccent o -80KPX Tcommaaccent oacute -80KPX Tcommaaccent ocircumflex -80KPX Tcommaaccent odieresis -80KPX Tcommaaccent ograve -80KPX Tcommaaccent ohungarumlaut -80KPX Tcommaaccent omacron -80KPX Tcommaaccent oslash -80KPX Tcommaaccent otilde -80KPX Tcommaaccent period -74KPX Tcommaaccent r -35KPX Tcommaaccent racute -35KPX Tcommaaccent rcaron -35KPX Tcommaaccent rcommaaccent -35KPX Tcommaaccent semicolon -55KPX Tcommaaccent u -45KPX Tcommaaccent uacute -45KPX Tcommaaccent ucircumflex -45KPX Tcommaaccent udieresis -45KPX Tcommaaccent ugrave -45KPX Tcommaaccent uhungarumlaut -45KPX Tcommaaccent umacron -45KPX Tcommaaccent uogonek -45KPX Tcommaaccent uring -45KPX Tcommaaccent w -80KPX Tcommaaccent y -80KPX Tcommaaccent yacute -80KPX Tcommaaccent ydieresis -80KPX U A -40KPX U Aacute -40KPX U Abreve -40KPX U Acircumflex -40KPX U Adieresis -40KPX U Agrave -40KPX U Amacron -40KPX U Aogonek -40KPX U Aring -40KPX U Atilde -40KPX Uacute A -40KPX Uacute Aacute -40KPX Uacute Abreve -40KPX Uacute Acircumflex -40KPX Uacute Adieresis -40KPX Uacute Agrave -40KPX Uacute Amacron -40KPX Uacute Aogonek -40KPX Uacute Aring -40KPX Uacute Atilde -40KPX Ucircumflex A -40KPX Ucircumflex Aacute -40KPX Ucircumflex Abreve -40KPX Ucircumflex Acircumflex -40KPX Ucircumflex Adieresis -40KPX Ucircumflex Agrave -40KPX Ucircumflex Amacron -40KPX Ucircumflex Aogonek -40KPX Ucircumflex Aring -40KPX Ucircumflex Atilde -40KPX Udieresis A -40KPX Udieresis Aacute -40KPX Udieresis Abreve -40KPX Udieresis Acircumflex -40KPX Udieresis Adieresis -40KPX Udieresis Agrave -40KPX Udieresis Amacron -40KPX Udieresis Aogonek -40KPX Udieresis Aring -40KPX Udieresis Atilde -40KPX Ugrave A -40KPX Ugrave Aacute -40KPX Ugrave Abreve -40KPX Ugrave Acircumflex -40KPX Ugrave Adieresis -40KPX Ugrave Agrave -40KPX Ugrave Amacron -40KPX Ugrave Aogonek -40KPX Ugrave Aring -40KPX Ugrave Atilde -40KPX Uhungarumlaut A -40KPX Uhungarumlaut Aacute -40KPX Uhungarumlaut Abreve -40KPX Uhungarumlaut Acircumflex -40KPX Uhungarumlaut Adieresis -40KPX Uhungarumlaut Agrave -40KPX Uhungarumlaut Amacron -40KPX Uhungarumlaut Aogonek -40KPX Uhungarumlaut Aring -40KPX Uhungarumlaut Atilde -40KPX Umacron A -40KPX Umacron Aacute -40KPX Umacron Abreve -40KPX Umacron Acircumflex -40KPX Umacron Adieresis -40KPX Umacron Agrave -40KPX Umacron Amacron -40KPX Umacron Aogonek -40KPX Umacron Aring -40KPX Umacron Atilde -40KPX Uogonek A -40KPX Uogonek Aacute -40KPX Uogonek Abreve -40KPX Uogonek Acircumflex -40KPX Uogonek Adieresis -40KPX Uogonek Agrave -40KPX Uogonek Amacron -40KPX Uogonek Aogonek -40KPX Uogonek Aring -40KPX Uogonek Atilde -40KPX Uring A -40KPX Uring Aacute -40KPX Uring Abreve -40KPX Uring Acircumflex -40KPX Uring Adieresis -40KPX Uring Agrave -40KPX Uring Amacron -40KPX Uring Aogonek -40KPX Uring Aring -40KPX Uring Atilde -40KPX V A -135KPX V Aacute -135KPX V Abreve -135KPX V Acircumflex -135KPX V Adieresis -135KPX V Agrave -135KPX V Amacron -135KPX V Aogonek -135KPX V Aring -135KPX V Atilde -135KPX V G -15KPX V Gbreve -15KPX V Gcommaaccent -15KPX V O -40KPX V Oacute -40KPX V Ocircumflex -40KPX V Odieresis -40KPX V Ograve -40KPX V Ohungarumlaut -40KPX V Omacron -40KPX V Oslash -40KPX V Otilde -40KPX V a -111KPX V aacute -111KPX V abreve -111KPX V acircumflex -71KPX V adieresis -71KPX V agrave -71KPX V amacron -71KPX V aogonek -111KPX V aring -111KPX V atilde -71KPX V colon -74KPX V comma -129KPX V e -111KPX V eacute -111KPX V ecaron -71KPX V ecircumflex -71KPX V edieresis -71KPX V edotaccent -111KPX V egrave -71KPX V emacron -71KPX V eogonek -111KPX V hyphen -100KPX V i -60KPX V iacute -60KPX V icircumflex -20KPX V idieresis -20KPX V igrave -20KPX V imacron -20KPX V iogonek -60KPX V o -129KPX V oacute -129KPX V ocircumflex -129KPX V odieresis -89KPX V ograve -89KPX V ohungarumlaut -129KPX V omacron -89KPX V oslash -129KPX V otilde -89KPX V period -129KPX V semicolon -74KPX V u -75KPX V uacute -75KPX V ucircumflex -75KPX V udieresis -75KPX V ugrave -75KPX V uhungarumlaut -75KPX V umacron -75KPX V uogonek -75KPX V uring -75KPX W A -120KPX W Aacute -120KPX W Abreve -120KPX W Acircumflex -120KPX W Adieresis -120KPX W Agrave -120KPX W Amacron -120KPX W Aogonek -120KPX W Aring -120KPX W Atilde -120KPX W O -10KPX W Oacute -10KPX W Ocircumflex -10KPX W Odieresis -10KPX W Ograve -10KPX W Ohungarumlaut -10KPX W Omacron -10KPX W Oslash -10KPX W Otilde -10KPX W a -80KPX W aacute -80KPX W abreve -80KPX W acircumflex -80KPX W adieresis -80KPX W agrave -80KPX W amacron -80KPX W aogonek -80KPX W aring -80KPX W atilde -80KPX W colon -37KPX W comma -92KPX W e -80KPX W eacute -80KPX W ecaron -80KPX W ecircumflex -80KPX W edieresis -40KPX W edotaccent -80KPX W egrave -40KPX W emacron -40KPX W eogonek -80KPX W hyphen -65KPX W i -40KPX W iacute -40KPX W iogonek -40KPX W o -80KPX W oacute -80KPX W ocircumflex -80KPX W odieresis -80KPX W ograve -80KPX W ohungarumlaut -80KPX W omacron -80KPX W oslash -80KPX W otilde -80KPX W period -92KPX W semicolon -37KPX W u -50KPX W uacute -50KPX W ucircumflex -50KPX W udieresis -50KPX W ugrave -50KPX W uhungarumlaut -50KPX W umacron -50KPX W uogonek -50KPX W uring -50KPX W y -73KPX W yacute -73KPX W ydieresis -73KPX Y A -120KPX Y Aacute -120KPX Y Abreve -120KPX Y Acircumflex -120KPX Y Adieresis -120KPX Y Agrave -120KPX Y Amacron -120KPX Y Aogonek -120KPX Y Aring -120KPX Y Atilde -120KPX Y O -30KPX Y Oacute -30KPX Y Ocircumflex -30KPX Y Odieresis -30KPX Y Ograve -30KPX Y Ohungarumlaut -30KPX Y Omacron -30KPX Y Oslash -30KPX Y Otilde -30KPX Y a -100KPX Y aacute -100KPX Y abreve -100KPX Y acircumflex -100KPX Y adieresis -60KPX Y agrave -60KPX Y amacron -60KPX Y aogonek -100KPX Y aring -100KPX Y atilde -60KPX Y colon -92KPX Y comma -129KPX Y e -100KPX Y eacute -100KPX Y ecaron -100KPX Y ecircumflex -100KPX Y edieresis -60KPX Y edotaccent -100KPX Y egrave -60KPX Y emacron -60KPX Y eogonek -100KPX Y hyphen -111KPX Y i -55KPX Y iacute -55KPX Y iogonek -55KPX Y o -110KPX Y oacute -110KPX Y ocircumflex -110KPX Y odieresis -70KPX Y ograve -70KPX Y ohungarumlaut -110KPX Y omacron -70KPX Y oslash -110KPX Y otilde -70KPX Y period -129KPX Y semicolon -92KPX Y u -111KPX Y uacute -111KPX Y ucircumflex -111KPX Y udieresis -71KPX Y ugrave -71KPX Y uhungarumlaut -111KPX Y umacron -71KPX Y uogonek -111KPX Y uring -111KPX Yacute A -120KPX Yacute Aacute -120KPX Yacute Abreve -120KPX Yacute Acircumflex -120KPX Yacute Adieresis -120KPX Yacute Agrave -120KPX Yacute Amacron -120KPX Yacute Aogonek -120KPX Yacute Aring -120KPX Yacute Atilde -120KPX Yacute O -30KPX Yacute Oacute -30KPX Yacute Ocircumflex -30KPX Yacute Odieresis -30KPX Yacute Ograve -30KPX Yacute Ohungarumlaut -30KPX Yacute Omacron -30KPX Yacute Oslash -30KPX Yacute Otilde -30KPX Yacute a -100KPX Yacute aacute -100KPX Yacute abreve -100KPX Yacute acircumflex -100KPX Yacute adieresis -60KPX Yacute agrave -60KPX Yacute amacron -60KPX Yacute aogonek -100KPX Yacute aring -100KPX Yacute atilde -60KPX Yacute colon -92KPX Yacute comma -129KPX Yacute e -100KPX Yacute eacute -100KPX Yacute ecaron -100KPX Yacute ecircumflex -100KPX Yacute edieresis -60KPX Yacute edotaccent -100KPX Yacute egrave -60KPX Yacute emacron -60KPX Yacute eogonek -100KPX Yacute hyphen -111KPX Yacute i -55KPX Yacute iacute -55KPX Yacute iogonek -55KPX Yacute o -110KPX Yacute oacute -110KPX Yacute ocircumflex -110KPX Yacute odieresis -70KPX Yacute ograve -70KPX Yacute ohungarumlaut -110KPX Yacute omacron -70KPX Yacute oslash -110KPX Yacute otilde -70KPX Yacute period -129KPX Yacute semicolon -92KPX Yacute u -111KPX Yacute uacute -111KPX Yacute ucircumflex -111KPX Yacute udieresis -71KPX Yacute ugrave -71KPX Yacute uhungarumlaut -111KPX Yacute umacron -71KPX Yacute uogonek -111KPX Yacute uring -111KPX Ydieresis A -120KPX Ydieresis Aacute -120KPX Ydieresis Abreve -120KPX Ydieresis Acircumflex -120KPX Ydieresis Adieresis -120KPX Ydieresis Agrave -120KPX Ydieresis Amacron -120KPX Ydieresis Aogonek -120KPX Ydieresis Aring -120KPX Ydieresis Atilde -120KPX Ydieresis O -30KPX Ydieresis Oacute -30KPX Ydieresis Ocircumflex -30KPX Ydieresis Odieresis -30KPX Ydieresis Ograve -30KPX Ydieresis Ohungarumlaut -30KPX Ydieresis Omacron -30KPX Ydieresis Oslash -30KPX Ydieresis Otilde -30KPX Ydieresis a -100KPX Ydieresis aacute -100KPX Ydieresis abreve -100KPX Ydieresis acircumflex -100KPX Ydieresis adieresis -60KPX Ydieresis agrave -60KPX Ydieresis amacron -60KPX Ydieresis aogonek -100KPX Ydieresis aring -100KPX Ydieresis atilde -100KPX Ydieresis colon -92KPX Ydieresis comma -129KPX Ydieresis e -100KPX Ydieresis eacute -100KPX Ydieresis ecaron -100KPX Ydieresis ecircumflex -100KPX Ydieresis edieresis -60KPX Ydieresis edotaccent -100KPX Ydieresis egrave -60KPX Ydieresis emacron -60KPX Ydieresis eogonek -100KPX Ydieresis hyphen -111KPX Ydieresis i -55KPX Ydieresis iacute -55KPX Ydieresis iogonek -55KPX Ydieresis o -110KPX Ydieresis oacute -110KPX Ydieresis ocircumflex -110KPX Ydieresis odieresis -70KPX Ydieresis ograve -70KPX Ydieresis ohungarumlaut -110KPX Ydieresis omacron -70KPX Ydieresis oslash -110KPX Ydieresis otilde -70KPX Ydieresis period -129KPX Ydieresis semicolon -92KPX Ydieresis u -111KPX Ydieresis uacute -111KPX Ydieresis ucircumflex -111KPX Ydieresis udieresis -71KPX Ydieresis ugrave -71KPX Ydieresis uhungarumlaut -111KPX Ydieresis umacron -71KPX Ydieresis uogonek -111KPX Ydieresis uring -111KPX a v -20KPX a w -15KPX aacute v -20KPX aacute w -15KPX abreve v -20KPX abreve w -15KPX acircumflex v -20KPX acircumflex w -15KPX adieresis v -20KPX adieresis w -15KPX agrave v -20KPX agrave w -15KPX amacron v -20KPX amacron w -15KPX aogonek v -20KPX aogonek w -15KPX aring v -20KPX aring w -15KPX atilde v -20KPX atilde w -15KPX b period -40KPX b u -20KPX b uacute -20KPX b ucircumflex -20KPX b udieresis -20KPX b ugrave -20KPX b uhungarumlaut -20KPX b umacron -20KPX b uogonek -20KPX b uring -20KPX b v -15KPX c y -15KPX c yacute -15KPX c ydieresis -15KPX cacute y -15KPX cacute yacute -15KPX cacute ydieresis -15KPX ccaron y -15KPX ccaron yacute -15KPX ccaron ydieresis -15KPX ccedilla y -15KPX ccedilla yacute -15KPX ccedilla ydieresis -15KPX comma quotedblright -70KPX comma quoteright -70KPX e g -15KPX e gbreve -15KPX e gcommaaccent -15KPX e v -25KPX e w -25KPX e x -15KPX e y -15KPX e yacute -15KPX e ydieresis -15KPX eacute g -15KPX eacute gbreve -15KPX eacute gcommaaccent -15KPX eacute v -25KPX eacute w -25KPX eacute x -15KPX eacute y -15KPX eacute yacute -15KPX eacute ydieresis -15KPX ecaron g -15KPX ecaron gbreve -15KPX ecaron gcommaaccent -15KPX ecaron v -25KPX ecaron w -25KPX ecaron x -15KPX ecaron y -15KPX ecaron yacute -15KPX ecaron ydieresis -15KPX ecircumflex g -15KPX ecircumflex gbreve -15KPX ecircumflex gcommaaccent -15KPX ecircumflex v -25KPX ecircumflex w -25KPX ecircumflex x -15KPX ecircumflex y -15KPX ecircumflex yacute -15KPX ecircumflex ydieresis -15KPX edieresis g -15KPX edieresis gbreve -15KPX edieresis gcommaaccent -15KPX edieresis v -25KPX edieresis w -25KPX edieresis x -15KPX edieresis y -15KPX edieresis yacute -15KPX edieresis ydieresis -15KPX edotaccent g -15KPX edotaccent gbreve -15KPX edotaccent gcommaaccent -15KPX edotaccent v -25KPX edotaccent w -25KPX edotaccent x -15KPX edotaccent y -15KPX edotaccent yacute -15KPX edotaccent ydieresis -15KPX egrave g -15KPX egrave gbreve -15KPX egrave gcommaaccent -15KPX egrave v -25KPX egrave w -25KPX egrave x -15KPX egrave y -15KPX egrave yacute -15KPX egrave ydieresis -15KPX emacron g -15KPX emacron gbreve -15KPX emacron gcommaaccent -15KPX emacron v -25KPX emacron w -25KPX emacron x -15KPX emacron y -15KPX emacron yacute -15KPX emacron ydieresis -15KPX eogonek g -15KPX eogonek gbreve -15KPX eogonek gcommaaccent -15KPX eogonek v -25KPX eogonek w -25KPX eogonek x -15KPX eogonek y -15KPX eogonek yacute -15KPX eogonek ydieresis -15KPX f a -10KPX f aacute -10KPX f abreve -10KPX f acircumflex -10KPX f adieresis -10KPX f agrave -10KPX f amacron -10KPX f aogonek -10KPX f aring -10KPX f atilde -10KPX f dotlessi -50KPX f f -25KPX f i -20KPX f iacute -20KPX f quoteright 55KPX g a -5KPX g aacute -5KPX g abreve -5KPX g acircumflex -5KPX g adieresis -5KPX g agrave -5KPX g amacron -5KPX g aogonek -5KPX g aring -5KPX g atilde -5KPX gbreve a -5KPX gbreve aacute -5KPX gbreve abreve -5KPX gbreve acircumflex -5KPX gbreve adieresis -5KPX gbreve agrave -5KPX gbreve amacron -5KPX gbreve aogonek -5KPX gbreve aring -5KPX gbreve atilde -5KPX gcommaaccent a -5KPX gcommaaccent aacute -5KPX gcommaaccent abreve -5KPX gcommaaccent acircumflex -5KPX gcommaaccent adieresis -5KPX gcommaaccent agrave -5KPX gcommaaccent amacron -5KPX gcommaaccent aogonek -5KPX gcommaaccent aring -5KPX gcommaaccent atilde -5KPX h y -5KPX h yacute -5KPX h ydieresis -5KPX i v -25KPX iacute v -25KPX icircumflex v -25KPX idieresis v -25KPX igrave v -25KPX imacron v -25KPX iogonek v -25KPX k e -10KPX k eacute -10KPX k ecaron -10KPX k ecircumflex -10KPX k edieresis -10KPX k edotaccent -10KPX k egrave -10KPX k emacron -10KPX k eogonek -10KPX k o -10KPX k oacute -10KPX k ocircumflex -10KPX k odieresis -10KPX k ograve -10KPX k ohungarumlaut -10KPX k omacron -10KPX k oslash -10KPX k otilde -10KPX k y -15KPX k yacute -15KPX k ydieresis -15KPX kcommaaccent e -10KPX kcommaaccent eacute -10KPX kcommaaccent ecaron -10KPX kcommaaccent ecircumflex -10KPX kcommaaccent edieresis -10KPX kcommaaccent edotaccent -10KPX kcommaaccent egrave -10KPX kcommaaccent emacron -10KPX kcommaaccent eogonek -10KPX kcommaaccent o -10KPX kcommaaccent oacute -10KPX kcommaaccent ocircumflex -10KPX kcommaaccent odieresis -10KPX kcommaaccent ograve -10KPX kcommaaccent ohungarumlaut -10KPX kcommaaccent omacron -10KPX kcommaaccent oslash -10KPX kcommaaccent otilde -10KPX kcommaaccent y -15KPX kcommaaccent yacute -15KPX kcommaaccent ydieresis -15KPX l w -10KPX lacute w -10KPX lcommaaccent w -10KPX lslash w -10KPX n v -40KPX n y -15KPX n yacute -15KPX n ydieresis -15KPX nacute v -40KPX nacute y -15KPX nacute yacute -15KPX nacute ydieresis -15KPX ncaron v -40KPX ncaron y -15KPX ncaron yacute -15KPX ncaron ydieresis -15KPX ncommaaccent v -40KPX ncommaaccent y -15KPX ncommaaccent yacute -15KPX ncommaaccent ydieresis -15KPX ntilde v -40KPX ntilde y -15KPX ntilde yacute -15KPX ntilde ydieresis -15KPX o v -15KPX o w -25KPX o y -10KPX o yacute -10KPX o ydieresis -10KPX oacute v -15KPX oacute w -25KPX oacute y -10KPX oacute yacute -10KPX oacute ydieresis -10KPX ocircumflex v -15KPX ocircumflex w -25KPX ocircumflex y -10KPX ocircumflex yacute -10KPX ocircumflex ydieresis -10KPX odieresis v -15KPX odieresis w -25KPX odieresis y -10KPX odieresis yacute -10KPX odieresis ydieresis -10KPX ograve v -15KPX ograve w -25KPX ograve y -10KPX ograve yacute -10KPX ograve ydieresis -10KPX ohungarumlaut v -15KPX ohungarumlaut w -25KPX ohungarumlaut y -10KPX ohungarumlaut yacute -10KPX ohungarumlaut ydieresis -10KPX omacron v -15KPX omacron w -25KPX omacron y -10KPX omacron yacute -10KPX omacron ydieresis -10KPX oslash v -15KPX oslash w -25KPX oslash y -10KPX oslash yacute -10KPX oslash ydieresis -10KPX otilde v -15KPX otilde w -25KPX otilde y -10KPX otilde yacute -10KPX otilde ydieresis -10KPX p y -10KPX p yacute -10KPX p ydieresis -10KPX period quotedblright -70KPX period quoteright -70KPX quotedblleft A -80KPX quotedblleft Aacute -80KPX quotedblleft Abreve -80KPX quotedblleft Acircumflex -80KPX quotedblleft Adieresis -80KPX quotedblleft Agrave -80KPX quotedblleft Amacron -80KPX quotedblleft Aogonek -80KPX quotedblleft Aring -80KPX quotedblleft Atilde -80KPX quoteleft A -80KPX quoteleft Aacute -80KPX quoteleft Abreve -80KPX quoteleft Acircumflex -80KPX quoteleft Adieresis -80KPX quoteleft Agrave -80KPX quoteleft Amacron -80KPX quoteleft Aogonek -80KPX quoteleft Aring -80KPX quoteleft Atilde -80KPX quoteleft quoteleft -74KPX quoteright d -50KPX quoteright dcroat -50KPX quoteright l -10KPX quoteright lacute -10KPX quoteright lcommaaccent -10KPX quoteright lslash -10KPX quoteright quoteright -74KPX quoteright r -50KPX quoteright racute -50KPX quoteright rcaron -50KPX quoteright rcommaaccent -50KPX quoteright s -55KPX quoteright sacute -55KPX quoteright scaron -55KPX quoteright scedilla -55KPX quoteright scommaaccent -55KPX quoteright space -74KPX quoteright t -18KPX quoteright tcommaaccent -18KPX quoteright v -50KPX r comma -40KPX r g -18KPX r gbreve -18KPX r gcommaaccent -18KPX r hyphen -20KPX r period -55KPX racute comma -40KPX racute g -18KPX racute gbreve -18KPX racute gcommaaccent -18KPX racute hyphen -20KPX racute period -55KPX rcaron comma -40KPX rcaron g -18KPX rcaron gbreve -18KPX rcaron gcommaaccent -18KPX rcaron hyphen -20KPX rcaron period -55KPX rcommaaccent comma -40KPX rcommaaccent g -18KPX rcommaaccent gbreve -18KPX rcommaaccent gcommaaccent -18KPX rcommaaccent hyphen -20KPX rcommaaccent period -55KPX space A -55KPX space Aacute -55KPX space Abreve -55KPX space Acircumflex -55KPX space Adieresis -55KPX space Agrave -55KPX space Amacron -55KPX space Aogonek -55KPX space Aring -55KPX space Atilde -55KPX space T -18KPX space Tcaron -18KPX space Tcommaaccent -18KPX space V -50KPX space W -30KPX space Y -90KPX space Yacute -90KPX space Ydieresis -90KPX v a -25KPX v aacute -25KPX v abreve -25KPX v acircumflex -25KPX v adieresis -25KPX v agrave -25KPX v amacron -25KPX v aogonek -25KPX v aring -25KPX v atilde -25KPX v comma -65KPX v e -15KPX v eacute -15KPX v ecaron -15KPX v ecircumflex -15KPX v edieresis -15KPX v edotaccent -15KPX v egrave -15KPX v emacron -15KPX v eogonek -15KPX v o -20KPX v oacute -20KPX v ocircumflex -20KPX v odieresis -20KPX v ograve -20KPX v ohungarumlaut -20KPX v omacron -20KPX v oslash -20KPX v otilde -20KPX v period -65KPX w a -10KPX w aacute -10KPX w abreve -10KPX w acircumflex -10KPX w adieresis -10KPX w agrave -10KPX w amacron -10KPX w aogonek -10KPX w aring -10KPX w atilde -10KPX w comma -65KPX w o -10KPX w oacute -10KPX w ocircumflex -10KPX w odieresis -10KPX w ograve -10KPX w ohungarumlaut -10KPX w omacron -10KPX w oslash -10KPX w otilde -10KPX w period -65KPX x e -15KPX x eacute -15KPX x ecaron -15KPX x ecircumflex -15KPX x edieresis -15KPX x edotaccent -15KPX x egrave -15KPX x emacron -15KPX x eogonek -15KPX y comma -65KPX y period -65KPX yacute comma -65KPX yacute period -65KPX ydieresis comma -65KPX ydieresis period -65EndKernPairsEndKernDataEndFontMetrics
 |