gscedata.c 161 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948
  1. /*
  2. * Copyright (C) 2002 artofcode LLC. All rights reserved.
  3. * See toolbin/encs2c.ps for the complete license notice.
  4. *
  5. * $Id: gscedata.c,v 1.5 2004/10/04 17:28:33 igor Exp $
  6. *
  7. * This file contains substantial parts of toolbin/encs2c.ps,
  8. * which generated the remainder of the file mechanically from
  9. * gs_std_e.ps gs_il1_e.ps gs_sym_e.ps gs_dbt_e.ps
  10. * gs_wan_e.ps gs_mro_e.ps gs_mex_e.ps gs_mgl_e.ps
  11. * gs_lgo_e.ps gs_lgx_e.ps gs_css_e.ps
  12. */
  13. #include "stdpre.h"
  14. #include "gstypes.h"
  15. #include "gscedata.h"
  16. const char gs_c_known_encoding_chars[] = {
  17. 'A', /*N(1,0)*/
  18. 'B', /*N(1,1)*/
  19. 'C', /*N(1,2)*/
  20. 'D', /*N(1,3)*/
  21. 'E', /*N(1,4)*/
  22. 'F', /*N(1,5)*/
  23. 'G', /*N(1,6)*/
  24. 'H', /*N(1,7)*/
  25. 'I', /*N(1,8)*/
  26. 'J', /*N(1,9)*/
  27. 'K', /*N(1,10)*/
  28. 'L', /*N(1,11)*/
  29. 'M', /*N(1,12)*/
  30. 'N', /*N(1,13)*/
  31. 'O', /*N(1,14)*/
  32. 'P', /*N(1,15)*/
  33. 'Q', /*N(1,16)*/
  34. 'R', /*N(1,17)*/
  35. 'S', /*N(1,18)*/
  36. 'T', /*N(1,19)*/
  37. 'U', /*N(1,20)*/
  38. 'V', /*N(1,21)*/
  39. 'W', /*N(1,22)*/
  40. 'X', /*N(1,23)*/
  41. 'Y', /*N(1,24)*/
  42. 'Z', /*N(1,25)*/
  43. 'a', /*N(1,26)*/
  44. 'b', /*N(1,27)*/
  45. 'c', /*N(1,28)*/
  46. 'd', /*N(1,29)*/
  47. 'e', /*N(1,30)*/
  48. 'f', /*N(1,31)*/
  49. 'g', /*N(1,32)*/
  50. 'h', /*N(1,33)*/
  51. 'i', /*N(1,34)*/
  52. 'j', /*N(1,35)*/
  53. 'k', /*N(1,36)*/
  54. 'l', /*N(1,37)*/
  55. 'm', /*N(1,38)*/
  56. 'n', /*N(1,39)*/
  57. 'o', /*N(1,40)*/
  58. 'p', /*N(1,41)*/
  59. 'q', /*N(1,42)*/
  60. 'r', /*N(1,43)*/
  61. 's', /*N(1,44)*/
  62. 't', /*N(1,45)*/
  63. 'u', /*N(1,46)*/
  64. 'v', /*N(1,47)*/
  65. 'w', /*N(1,48)*/
  66. 'x', /*N(1,49)*/
  67. 'y', /*N(1,50)*/
  68. 'z', /*N(1,51)*/
  69. 'A','E', /*N(2,0)*/
  70. 'C','R', /*N(2,2)*/
  71. 'M','u', /*N(2,4)*/
  72. 'N','u', /*N(2,6)*/
  73. 'O','E', /*N(2,8)*/
  74. 'P','i', /*N(2,10)*/
  75. 'X','i', /*N(2,12)*/
  76. 'a','1', /*N(2,14)*/
  77. 'a','2', /*N(2,16)*/
  78. 'a','3', /*N(2,18)*/
  79. 'a','4', /*N(2,20)*/
  80. 'a','5', /*N(2,22)*/
  81. 'a','6', /*N(2,24)*/
  82. 'a','7', /*N(2,26)*/
  83. 'a','8', /*N(2,28)*/
  84. 'a','9', /*N(2,30)*/
  85. 'a','e', /*N(2,32)*/
  86. 'a','t', /*N(2,34)*/
  87. 'f','f', /*N(2,36)*/
  88. 'f','i', /*N(2,38)*/
  89. 'f','l', /*N(2,40)*/
  90. 'm','u', /*N(2,42)*/
  91. 'n','u', /*N(2,44)*/
  92. 'o','e', /*N(2,46)*/
  93. 'p','i', /*N(2,48)*/
  94. 'x','i', /*N(2,50)*/
  95. 'C','h','i', /*N(3,0)*/
  96. 'E','t','a', /*N(3,3)*/
  97. 'E','t','h', /*N(3,6)*/
  98. 'O','h','m', /*N(3,9)*/
  99. 'P','h','i', /*N(3,12)*/
  100. 'P','s','i', /*N(3,15)*/
  101. 'R','h','o', /*N(3,18)*/
  102. 'T','a','u', /*N(3,21)*/
  103. 'a','1','0', /*N(3,24)*/
  104. 'a','1','1', /*N(3,27)*/
  105. 'a','1','2', /*N(3,30)*/
  106. 'a','1','3', /*N(3,33)*/
  107. 'a','1','4', /*N(3,36)*/
  108. 'a','1','5', /*N(3,39)*/
  109. 'a','1','6', /*N(3,42)*/
  110. 'a','1','7', /*N(3,45)*/
  111. 'a','1','8', /*N(3,48)*/
  112. 'a','1','9', /*N(3,51)*/
  113. 'a','2','0', /*N(3,54)*/
  114. 'a','2','1', /*N(3,57)*/
  115. 'a','2','2', /*N(3,60)*/
  116. 'a','2','3', /*N(3,63)*/
  117. 'a','2','4', /*N(3,66)*/
  118. 'a','2','5', /*N(3,69)*/
  119. 'a','2','6', /*N(3,72)*/
  120. 'a','2','7', /*N(3,75)*/
  121. 'a','2','8', /*N(3,78)*/
  122. 'a','2','9', /*N(3,81)*/
  123. 'a','3','0', /*N(3,84)*/
  124. 'a','3','1', /*N(3,87)*/
  125. 'a','3','2', /*N(3,90)*/
  126. 'a','3','3', /*N(3,93)*/
  127. 'a','3','4', /*N(3,96)*/
  128. 'a','3','5', /*N(3,99)*/
  129. 'a','3','6', /*N(3,102)*/
  130. 'a','3','7', /*N(3,105)*/
  131. 'a','3','8', /*N(3,108)*/
  132. 'a','3','9', /*N(3,111)*/
  133. 'a','4','0', /*N(3,114)*/
  134. 'a','4','1', /*N(3,117)*/
  135. 'a','4','2', /*N(3,120)*/
  136. 'a','4','3', /*N(3,123)*/
  137. 'a','4','4', /*N(3,126)*/
  138. 'a','4','5', /*N(3,129)*/
  139. 'a','4','6', /*N(3,132)*/
  140. 'a','4','7', /*N(3,135)*/
  141. 'a','4','8', /*N(3,138)*/
  142. 'a','4','9', /*N(3,141)*/
  143. 'a','5','0', /*N(3,144)*/
  144. 'a','5','1', /*N(3,147)*/
  145. 'a','5','2', /*N(3,150)*/
  146. 'a','5','3', /*N(3,153)*/
  147. 'a','5','4', /*N(3,156)*/
  148. 'a','5','5', /*N(3,159)*/
  149. 'a','5','6', /*N(3,162)*/
  150. 'a','5','7', /*N(3,165)*/
  151. 'a','5','8', /*N(3,168)*/
  152. 'a','5','9', /*N(3,171)*/
  153. 'a','6','0', /*N(3,174)*/
  154. 'a','6','1', /*N(3,177)*/
  155. 'a','6','2', /*N(3,180)*/
  156. 'a','6','3', /*N(3,183)*/
  157. 'a','6','4', /*N(3,186)*/
  158. 'a','6','5', /*N(3,189)*/
  159. 'a','6','6', /*N(3,192)*/
  160. 'a','6','7', /*N(3,195)*/
  161. 'a','6','8', /*N(3,198)*/
  162. 'a','6','9', /*N(3,201)*/
  163. 'a','7','0', /*N(3,204)*/
  164. 'a','7','1', /*N(3,207)*/
  165. 'a','7','2', /*N(3,210)*/
  166. 'a','7','3', /*N(3,213)*/
  167. 'a','7','4', /*N(3,216)*/
  168. 'a','7','5', /*N(3,219)*/
  169. 'a','7','6', /*N(3,222)*/
  170. 'a','7','7', /*N(3,225)*/
  171. 'a','7','8', /*N(3,228)*/
  172. 'a','7','9', /*N(3,231)*/
  173. 'a','8','1', /*N(3,234)*/
  174. 'a','8','2', /*N(3,237)*/
  175. 'a','8','3', /*N(3,240)*/
  176. 'a','8','4', /*N(3,243)*/
  177. 'a','9','7', /*N(3,246)*/
  178. 'a','9','8', /*N(3,249)*/
  179. 'a','9','9', /*N(3,252)*/
  180. 'b','a','r', /*N(3,255)*/
  181. 'c','h','i', /*N(3,258)*/
  182. 'e','t','a', /*N(3,261)*/
  183. 'e','t','h', /*N(3,264)*/
  184. 'f','f','i', /*N(3,267)*/
  185. 'f','f','l', /*N(3,270)*/
  186. 'm','u','1', /*N(3,273)*/
  187. 'o','n','e', /*N(3,276)*/
  188. 'p','h','i', /*N(3,279)*/
  189. 'p','s','i', /*N(3,282)*/
  190. 'r','h','o', /*N(3,285)*/
  191. 's','i','x', /*N(3,288)*/
  192. 't','a','u', /*N(3,291)*/
  193. 't','w','o', /*N(3,294)*/
  194. 'y','e','n', /*N(3,297)*/
  195. 'B','e','t','a', /*N(4,0)*/
  196. 'E','u','r','o', /*N(4,4)*/
  197. 'I','o','t','a', /*N(4,8)*/
  198. 'Z','e','t','a', /*N(4,12)*/
  199. 'a','1','0','0', /*N(4,16)*/
  200. 'a','1','0','1', /*N(4,20)*/
  201. 'a','1','0','2', /*N(4,24)*/
  202. 'a','1','0','3', /*N(4,28)*/
  203. 'a','1','0','4', /*N(4,32)*/
  204. 'a','1','0','5', /*N(4,36)*/
  205. 'a','1','0','6', /*N(4,40)*/
  206. 'a','1','0','7', /*N(4,44)*/
  207. 'a','1','0','8', /*N(4,48)*/
  208. 'a','1','0','9', /*N(4,52)*/
  209. 'a','1','1','0', /*N(4,56)*/
  210. 'a','1','1','1', /*N(4,60)*/
  211. 'a','1','1','2', /*N(4,64)*/
  212. 'a','1','1','7', /*N(4,68)*/
  213. 'a','1','1','8', /*N(4,72)*/
  214. 'a','1','1','9', /*N(4,76)*/
  215. 'a','1','2','0', /*N(4,80)*/
  216. 'a','1','2','1', /*N(4,84)*/
  217. 'a','1','2','2', /*N(4,88)*/
  218. 'a','1','2','3', /*N(4,92)*/
  219. 'a','1','2','4', /*N(4,96)*/
  220. 'a','1','2','5', /*N(4,100)*/
  221. 'a','1','2','6', /*N(4,104)*/
  222. 'a','1','2','7', /*N(4,108)*/
  223. 'a','1','2','8', /*N(4,112)*/
  224. 'a','1','2','9', /*N(4,116)*/
  225. 'a','1','3','0', /*N(4,120)*/
  226. 'a','1','3','1', /*N(4,124)*/
  227. 'a','1','3','2', /*N(4,128)*/
  228. 'a','1','3','3', /*N(4,132)*/
  229. 'a','1','3','4', /*N(4,136)*/
  230. 'a','1','3','5', /*N(4,140)*/
  231. 'a','1','3','6', /*N(4,144)*/
  232. 'a','1','3','7', /*N(4,148)*/
  233. 'a','1','3','8', /*N(4,152)*/
  234. 'a','1','3','9', /*N(4,156)*/
  235. 'a','1','4','0', /*N(4,160)*/
  236. 'a','1','4','1', /*N(4,164)*/
  237. 'a','1','4','2', /*N(4,168)*/
  238. 'a','1','4','3', /*N(4,172)*/
  239. 'a','1','4','4', /*N(4,176)*/
  240. 'a','1','4','5', /*N(4,180)*/
  241. 'a','1','4','6', /*N(4,184)*/
  242. 'a','1','4','7', /*N(4,188)*/
  243. 'a','1','4','8', /*N(4,192)*/
  244. 'a','1','4','9', /*N(4,196)*/
  245. 'a','1','5','0', /*N(4,200)*/
  246. 'a','1','5','1', /*N(4,204)*/
  247. 'a','1','5','2', /*N(4,208)*/
  248. 'a','1','5','3', /*N(4,212)*/
  249. 'a','1','5','4', /*N(4,216)*/
  250. 'a','1','5','5', /*N(4,220)*/
  251. 'a','1','5','6', /*N(4,224)*/
  252. 'a','1','5','7', /*N(4,228)*/
  253. 'a','1','5','8', /*N(4,232)*/
  254. 'a','1','5','9', /*N(4,236)*/
  255. 'a','1','6','0', /*N(4,240)*/
  256. 'a','1','6','1', /*N(4,244)*/
  257. 'a','1','6','2', /*N(4,248)*/
  258. 'a','1','6','3', /*N(4,252)*/
  259. 'a','1','6','4', /*N(4,256)*/
  260. 'a','1','6','5', /*N(4,260)*/
  261. 'a','1','6','6', /*N(4,264)*/
  262. 'a','1','6','7', /*N(4,268)*/
  263. 'a','1','6','8', /*N(4,272)*/
  264. 'a','1','6','9', /*N(4,276)*/
  265. 'a','1','7','0', /*N(4,280)*/
  266. 'a','1','7','1', /*N(4,284)*/
  267. 'a','1','7','2', /*N(4,288)*/
  268. 'a','1','7','3', /*N(4,292)*/
  269. 'a','1','7','4', /*N(4,296)*/
  270. 'a','1','7','5', /*N(4,300)*/
  271. 'a','1','7','6', /*N(4,304)*/
  272. 'a','1','7','7', /*N(4,308)*/
  273. 'a','1','7','8', /*N(4,312)*/
  274. 'a','1','7','9', /*N(4,316)*/
  275. 'a','1','8','0', /*N(4,320)*/
  276. 'a','1','8','1', /*N(4,324)*/
  277. 'a','1','8','2', /*N(4,328)*/
  278. 'a','1','8','3', /*N(4,332)*/
  279. 'a','1','8','4', /*N(4,336)*/
  280. 'a','1','8','5', /*N(4,340)*/
  281. 'a','1','8','6', /*N(4,344)*/
  282. 'a','1','8','7', /*N(4,348)*/
  283. 'a','1','8','8', /*N(4,352)*/
  284. 'a','1','8','9', /*N(4,356)*/
  285. 'a','1','9','0', /*N(4,360)*/
  286. 'a','1','9','1', /*N(4,364)*/
  287. 'a','1','9','2', /*N(4,368)*/
  288. 'a','1','9','3', /*N(4,372)*/
  289. 'a','1','9','4', /*N(4,376)*/
  290. 'a','1','9','5', /*N(4,380)*/
  291. 'a','1','9','6', /*N(4,384)*/
  292. 'a','1','9','7', /*N(4,388)*/
  293. 'a','1','9','8', /*N(4,392)*/
  294. 'a','1','9','9', /*N(4,396)*/
  295. 'a','2','0','0', /*N(4,400)*/
  296. 'a','2','0','1', /*N(4,404)*/
  297. 'a','2','0','2', /*N(4,408)*/
  298. 'a','2','0','3', /*N(4,412)*/
  299. 'a','2','0','4', /*N(4,416)*/
  300. 'b','e','t','a', /*N(4,420)*/
  301. 'c','e','n','t', /*N(4,424)*/
  302. 'c','l','u','b', /*N(4,428)*/
  303. 'f','i','v','e', /*N(4,432)*/
  304. 'f','o','u','r', /*N(4,436)*/
  305. 'i','o','t','a', /*N(4,440)*/
  306. 'l','e','s','s', /*N(4,444)*/
  307. 'n','i','n','e', /*N(4,448)*/
  308. 'p','h','i','1', /*N(4,452)*/
  309. 'p','l','u','s', /*N(4,456)*/
  310. 'r','i','n','g', /*N(4,460)*/
  311. 'z','e','r','o', /*N(4,464)*/
  312. 'z','e','t','a', /*N(4,468)*/
  313. '.','n','u','l','l', /*N(5,0)*/
  314. 'A','l','p','h','a', /*N(5,5)*/
  315. 'A','r','i','n','g', /*N(5,10)*/
  316. 'D','e','l','t','a', /*N(5,15)*/
  317. 'G','a','m','m','a', /*N(5,20)*/
  318. 'K','a','p','p','a', /*N(5,25)*/
  319. 'O','m','e','g','a', /*N(5,30)*/
  320. 'S','i','g','m','a', /*N(5,35)*/
  321. 'T','h','e','t','a', /*N(5,40)*/
  322. 'T','h','o','r','n', /*N(5,45)*/
  323. 'U','r','i','n','g', /*N(5,50)*/
  324. 'a','c','u','t','e', /*N(5,55)*/
  325. 'a','l','e','p','h', /*N(5,60)*/
  326. 'a','l','p','h','a', /*N(5,65)*/
  327. 'a','n','g','l','e', /*N(5,70)*/
  328. 'a','r','i','n','g', /*N(5,75)*/
  329. 'b','r','e','v','e', /*N(5,80)*/
  330. 'c','a','r','o','n', /*N(5,85)*/
  331. 'c','o','l','o','n', /*N(5,90)*/
  332. 'c','o','m','m','a', /*N(5,95)*/
  333. 'd','e','l','t','a', /*N(5,100)*/
  334. 'e','i','g','h','t', /*N(5,105)*/
  335. 'e','q','u','a','l', /*N(5,110)*/
  336. 'f','r','a','n','c', /*N(5,115)*/
  337. 'g','a','m','m','a', /*N(5,120)*/
  338. 'g','r','a','v','e', /*N(5,125)*/
  339. 'h','e','a','r','t', /*N(5,130)*/
  340. 'k','a','p','p','a', /*N(5,135)*/
  341. 'm','i','n','u','s', /*N(5,140)*/
  342. 'o','m','e','g','a', /*N(5,145)*/
  343. 's','e','v','e','n', /*N(5,150)*/
  344. 's','i','g','m','a', /*N(5,155)*/
  345. 's','l','a','s','h', /*N(5,160)*/
  346. 's','p','a','c','e', /*N(5,165)*/
  347. 's','p','a','d','e', /*N(5,170)*/
  348. 't','h','e','t','a', /*N(5,175)*/
  349. 't','h','o','r','n', /*N(5,180)*/
  350. 't','h','r','e','e', /*N(5,185)*/
  351. 't','i','l','d','e', /*N(5,190)*/
  352. 'u','n','i','o','n', /*N(5,195)*/
  353. 'u','r','i','n','g', /*N(5,200)*/
  354. 'A','a','c','u','t','e', /*N(6,0)*/
  355. 'A','b','r','e','v','e', /*N(6,6)*/
  356. 'A','g','r','a','v','e', /*N(6,12)*/
  357. 'A','s','m','a','l','l', /*N(6,18)*/
  358. 'A','t','i','l','d','e', /*N(6,24)*/
  359. 'B','s','m','a','l','l', /*N(6,30)*/
  360. 'C','a','c','u','t','e', /*N(6,36)*/
  361. 'C','c','a','r','o','n', /*N(6,42)*/
  362. 'C','s','m','a','l','l', /*N(6,48)*/
  363. 'D','c','a','r','o','n', /*N(6,54)*/
  364. 'D','c','r','o','a','t', /*N(6,60)*/
  365. 'D','s','m','a','l','l', /*N(6,66)*/
  366. 'E','a','c','u','t','e', /*N(6,72)*/
  367. 'E','c','a','r','o','n', /*N(6,78)*/
  368. 'E','g','r','a','v','e', /*N(6,84)*/
  369. 'E','s','m','a','l','l', /*N(6,90)*/
  370. 'F','s','m','a','l','l', /*N(6,96)*/
  371. 'G','b','r','e','v','e', /*N(6,102)*/
  372. 'G','s','m','a','l','l', /*N(6,108)*/
  373. 'H','s','m','a','l','l', /*N(6,114)*/
  374. 'I','a','c','u','t','e', /*N(6,120)*/
  375. 'I','g','r','a','v','e', /*N(6,126)*/
  376. 'I','s','m','a','l','l', /*N(6,132)*/
  377. 'J','s','m','a','l','l', /*N(6,138)*/
  378. 'K','s','m','a','l','l', /*N(6,144)*/
  379. 'L','a','c','u','t','e', /*N(6,150)*/
  380. 'L','a','m','b','d','a', /*N(6,156)*/
  381. 'L','c','a','r','o','n', /*N(6,162)*/
  382. 'L','s','l','a','s','h', /*N(6,168)*/
  383. 'L','s','m','a','l','l', /*N(6,174)*/
  384. 'M','s','m','a','l','l', /*N(6,180)*/
  385. 'N','a','c','u','t','e', /*N(6,186)*/
  386. 'N','c','a','r','o','n', /*N(6,192)*/
  387. 'N','s','m','a','l','l', /*N(6,198)*/
  388. 'N','t','i','l','d','e', /*N(6,204)*/
  389. 'O','a','c','u','t','e', /*N(6,210)*/
  390. 'O','g','r','a','v','e', /*N(6,216)*/
  391. 'O','s','l','a','s','h', /*N(6,222)*/
  392. 'O','s','m','a','l','l', /*N(6,228)*/
  393. 'O','t','i','l','d','e', /*N(6,234)*/
  394. 'P','s','m','a','l','l', /*N(6,240)*/
  395. 'Q','s','m','a','l','l', /*N(6,246)*/
  396. 'R','a','c','u','t','e', /*N(6,252)*/
  397. 'R','c','a','r','o','n', /*N(6,258)*/
  398. 'R','s','m','a','l','l', /*N(6,264)*/
  399. 'S','a','c','u','t','e', /*N(6,270)*/
  400. 'S','c','a','r','o','n', /*N(6,276)*/
  401. 'S','s','m','a','l','l', /*N(6,282)*/
  402. 'T','c','a','r','o','n', /*N(6,288)*/
  403. 'T','s','m','a','l','l', /*N(6,294)*/
  404. 'U','a','c','u','t','e', /*N(6,300)*/
  405. 'U','g','r','a','v','e', /*N(6,306)*/
  406. 'U','s','m','a','l','l', /*N(6,312)*/
  407. 'V','s','m','a','l','l', /*N(6,318)*/
  408. 'W','s','m','a','l','l', /*N(6,324)*/
  409. 'X','s','m','a','l','l', /*N(6,330)*/
  410. 'Y','a','c','u','t','e', /*N(6,336)*/
  411. 'Y','s','m','a','l','l', /*N(6,342)*/
  412. 'Z','a','c','u','t','e', /*N(6,348)*/
  413. 'Z','c','a','r','o','n', /*N(6,354)*/
  414. 'Z','s','m','a','l','l', /*N(6,360)*/
  415. 'a','a','c','u','t','e', /*N(6,366)*/
  416. 'a','b','r','e','v','e', /*N(6,372)*/
  417. 'a','g','r','a','v','e', /*N(6,378)*/
  418. 'a','t','i','l','d','e', /*N(6,384)*/
  419. 'b','u','l','l','e','t', /*N(6,390)*/
  420. 'c','a','c','u','t','e', /*N(6,396)*/
  421. 'c','c','a','r','o','n', /*N(6,402)*/
  422. 'd','a','g','g','e','r', /*N(6,408)*/
  423. 'd','c','a','r','o','n', /*N(6,414)*/
  424. 'd','c','r','o','a','t', /*N(6,420)*/
  425. 'd','e','g','r','e','e', /*N(6,426)*/
  426. 'd','i','v','i','d','e', /*N(6,432)*/
  427. 'd','o','l','l','a','r', /*N(6,438)*/
  428. 'e','a','c','u','t','e', /*N(6,444)*/
  429. 'e','c','a','r','o','n', /*N(6,450)*/
  430. 'e','g','r','a','v','e', /*N(6,456)*/
  431. 'e','m','d','a','s','h', /*N(6,462)*/
  432. 'e','n','d','a','s','h', /*N(6,468)*/
  433. 'e','x','c','l','a','m', /*N(6,474)*/
  434. 'f','l','o','r','i','n', /*N(6,480)*/
  435. 'g','b','r','e','v','e', /*N(6,486)*/
  436. 'h','y','p','h','e','n', /*N(6,492)*/
  437. 'i','a','c','u','t','e', /*N(6,498)*/
  438. 'i','g','r','a','v','e', /*N(6,504)*/
  439. 'l','a','c','u','t','e', /*N(6,510)*/
  440. 'l','a','m','b','d','a', /*N(6,516)*/
  441. 'l','c','a','r','o','n', /*N(6,522)*/
  442. 'l','s','l','a','s','h', /*N(6,528)*/
  443. 'm','a','c','r','o','n', /*N(6,534)*/
  444. 'm','i','n','u','t','e', /*N(6,540)*/
  445. 'n','a','c','u','t','e', /*N(6,546)*/
  446. 'n','c','a','r','o','n', /*N(6,552)*/
  447. 'n','t','i','l','d','e', /*N(6,558)*/
  448. 'o','a','c','u','t','e', /*N(6,564)*/
  449. 'o','g','o','n','e','k', /*N(6,570)*/
  450. 'o','g','r','a','v','e', /*N(6,576)*/
  451. 'o','m','e','g','a','1', /*N(6,582)*/
  452. 'o','s','l','a','s','h', /*N(6,588)*/
  453. 'o','t','i','l','d','e', /*N(6,594)*/
  454. 'p','e','r','i','o','d', /*N(6,600)*/
  455. 'r','a','c','u','t','e', /*N(6,606)*/
  456. 'r','c','a','r','o','n', /*N(6,612)*/
  457. 'r','u','p','i','a','h', /*N(6,618)*/
  458. 's','a','c','u','t','e', /*N(6,624)*/
  459. 's','c','a','r','o','n', /*N(6,630)*/
  460. 's','e','c','o','n','d', /*N(6,636)*/
  461. 's','i','g','m','a','1', /*N(6,642)*/
  462. 't','c','a','r','o','n', /*N(6,648)*/
  463. 't','h','e','t','a','1', /*N(6,654)*/
  464. 'u','a','c','u','t','e', /*N(6,660)*/
  465. 'u','g','r','a','v','e', /*N(6,666)*/
  466. 'y','a','c','u','t','e', /*N(6,672)*/
  467. 'z','a','c','u','t','e', /*N(6,678)*/
  468. 'z','c','a','r','o','n', /*N(6,684)*/
  469. '.','n','o','t','d','e','f', /*N(7,0)*/
  470. 'A','E','s','m','a','l','l', /*N(7,7)*/
  471. 'A','m','a','c','r','o','n', /*N(7,14)*/
  472. 'A','o','g','o','n','e','k', /*N(7,21)*/
  473. 'E','m','a','c','r','o','n', /*N(7,28)*/
  474. 'E','o','g','o','n','e','k', /*N(7,35)*/
  475. 'E','p','s','i','l','o','n', /*N(7,42)*/
  476. 'I','m','a','c','r','o','n', /*N(7,49)*/
  477. 'I','o','g','o','n','e','k', /*N(7,56)*/
  478. 'O','E','s','m','a','l','l', /*N(7,63)*/
  479. 'O','m','a','c','r','o','n', /*N(7,70)*/
  480. 'O','m','i','c','r','o','n', /*N(7,77)*/
  481. 'U','m','a','c','r','o','n', /*N(7,84)*/
  482. 'U','o','g','o','n','e','k', /*N(7,91)*/
  483. 'U','p','s','i','l','o','n', /*N(7,98)*/
  484. 'a','m','a','c','r','o','n', /*N(7,105)*/
  485. 'a','o','g','o','n','e','k', /*N(7,112)*/
  486. 'a','r','r','o','w','u','p', /*N(7,119)*/
  487. 'b','r','a','c','e','e','x', /*N(7,126)*/
  488. 'c','e','d','i','l','l','a', /*N(7,133)*/
  489. 'd','i','a','m','o','n','d', /*N(7,140)*/
  490. 'd','m','a','c','r','o','n', /*N(7,147)*/
  491. 'd','o','t','m','a','t','h', /*N(7,154)*/
  492. 'e','l','e','m','e','n','t', /*N(7,161)*/
  493. 'e','m','a','c','r','o','n', /*N(7,168)*/
  494. 'e','o','g','o','n','e','k', /*N(7,175)*/
  495. 'e','p','s','i','l','o','n', /*N(7,182)*/
  496. 'g','r','e','a','t','e','r', /*N(7,189)*/
  497. 'i','m','a','c','r','o','n', /*N(7,196)*/
  498. 'i','o','g','o','n','e','k', /*N(7,203)*/
  499. 'l','o','z','e','n','g','e', /*N(7,210)*/
  500. 'n','b','s','p','a','c','e', /*N(7,217)*/
  501. 'o','m','a','c','r','o','n', /*N(7,224)*/
  502. 'o','m','i','c','r','o','n', /*N(7,231)*/
  503. 'o','n','e','h','a','l','f', /*N(7,238)*/
  504. 'p','e','r','c','e','n','t', /*N(7,245)*/
  505. 'p','r','o','d','u','c','t', /*N(7,252)*/
  506. 'r','a','d','i','c','a','l', /*N(7,259)*/
  507. 's','e','c','t','i','o','n', /*N(7,266)*/
  508. 's','i','m','i','l','a','r', /*N(7,273)*/
  509. 'u','m','a','c','r','o','n', /*N(7,280)*/
  510. 'u','o','g','o','n','e','k', /*N(7,287)*/
  511. 'u','p','s','i','l','o','n', /*N(7,294)*/
  512. 'C','c','e','d','i','l','l','a', /*N(8,0)*/
  513. 'E','t','h','s','m','a','l','l', /*N(8,8)*/
  514. 'I','f','r','a','k','t','u','r', /*N(8,16)*/
  515. 'R','f','r','a','k','t','u','r', /*N(8,24)*/
  516. 'S','c','e','d','i','l','l','a', /*N(8,32)*/
  517. 'U','p','s','i','l','o','n','1', /*N(8,40)*/
  518. 'a','s','t','e','r','i','s','k', /*N(8,48)*/
  519. 'c','c','e','d','i','l','l','a', /*N(8,56)*/
  520. 'c','u','r','r','e','n','c','y', /*N(8,64)*/
  521. 'd','i','e','r','e','s','i','s', /*N(8,72)*/
  522. 'd','o','t','l','e','s','s','i', /*N(8,80)*/
  523. 'e','l','l','i','p','s','i','s', /*N(8,88)*/
  524. 'e','m','p','t','y','s','e','t', /*N(8,96)*/
  525. 'f','r','a','c','t','i','o','n', /*N(8,104)*/
  526. 'g','r','a','d','i','e','n','t', /*N(8,112)*/
  527. 'i','n','f','i','n','i','t','y', /*N(8,120)*/
  528. 'i','n','t','e','g','r','a','l', /*N(8,128)*/
  529. 'm','u','l','t','i','p','l','y', /*N(8,136)*/
  530. 'n','o','t','e','q','u','a','l', /*N(8,144)*/
  531. 'o','n','e','t','h','i','r','d', /*N(8,152)*/
  532. 'q','u','e','s','t','i','o','n', /*N(8,160)*/
  533. 'q','u','o','t','e','d','b','l', /*N(8,168)*/
  534. 's','c','e','d','i','l','l','a', /*N(8,176)*/
  535. 's','t','e','r','l','i','n','g', /*N(8,184)*/
  536. 's','u','c','h','t','h','a','t', /*N(8,192)*/
  537. 'A','d','i','e','r','e','s','i','s', /*N(9,0)*/
  538. 'E','d','i','e','r','e','s','i','s', /*N(9,9)*/
  539. 'I','d','i','e','r','e','s','i','s', /*N(9,18)*/
  540. 'O','d','i','e','r','e','s','i','s', /*N(9,27)*/
  541. 'R','i','n','g','s','m','a','l','l', /*N(9,36)*/
  542. 'U','d','i','e','r','e','s','i','s', /*N(9,45)*/
  543. 'Y','d','i','e','r','e','s','i','s', /*N(9,54)*/
  544. 'a','d','i','e','r','e','s','i','s', /*N(9,63)*/
  545. 'a','m','p','e','r','s','a','n','d', /*N(9,72)*/
  546. 'a','n','g','l','e','l','e','f','t', /*N(9,81)*/
  547. 'a','p','p','l','e','l','o','g','o', /*N(9,90)*/
  548. 'a','r','r','o','w','b','o','t','h', /*N(9,99)*/
  549. 'a','r','r','o','w','d','o','w','n', /*N(9,108)*/
  550. 'a','r','r','o','w','l','e','f','t', /*N(9,117)*/
  551. 'a','s','u','p','e','r','i','o','r', /*N(9,126)*/
  552. 'b','a','c','k','s','l','a','s','h', /*N(9,135)*/
  553. 'b','r','a','c','e','l','e','f','t', /*N(9,144)*/
  554. 'b','r','o','k','e','n','b','a','r', /*N(9,153)*/
  555. 'b','s','u','p','e','r','i','o','r', /*N(9,162)*/
  556. 'c','o','n','g','r','u','e','n','t', /*N(9,171)*/
  557. 'c','o','p','y','r','i','g','h','t', /*N(9,180)*/
  558. 'd','a','g','g','e','r','d','b','l', /*N(9,189)*/
  559. 'd','o','t','a','c','c','e','n','t', /*N(9,198)*/
  560. 'd','s','u','p','e','r','i','o','r', /*N(9,207)*/
  561. 'e','d','i','e','r','e','s','i','s', /*N(9,216)*/
  562. 'e','s','u','p','e','r','i','o','r', /*N(9,225)*/
  563. 'i','d','i','e','r','e','s','i','s', /*N(9,234)*/
  564. 'i','n','c','r','e','m','e','n','t', /*N(9,243)*/
  565. 'i','s','u','p','e','r','i','o','r', /*N(9,252)*/
  566. 'l','e','s','s','e','q','u','a','l', /*N(9,261)*/
  567. 'l','o','g','i','c','a','l','o','r', /*N(9,270)*/
  568. 'l','s','u','p','e','r','i','o','r', /*N(9,279)*/
  569. 'm','s','u','p','e','r','i','o','r', /*N(9,288)*/
  570. 'n','o','t','s','u','b','s','e','t', /*N(9,297)*/
  571. 'n','s','u','p','e','r','i','o','r', /*N(9,306)*/
  572. 'o','d','i','e','r','e','s','i','s', /*N(9,315)*/
  573. 'o','n','e','e','i','g','h','t','h', /*N(9,324)*/
  574. 'o','n','e','f','i','t','t','e','d', /*N(9,333)*/
  575. 'o','s','u','p','e','r','i','o','r', /*N(9,342)*/
  576. 'o','v','e','r','s','c','o','r','e', /*N(9,351)*/
  577. 'p','a','r','a','g','r','a','p','h', /*N(9,360)*/
  578. 'p','a','r','e','n','l','e','f','t', /*N(9,369)*/
  579. 'p','l','u','s','m','i','n','u','s', /*N(9,378)*/
  580. 'q','u','o','t','e','l','e','f','t', /*N(9,387)*/
  581. 'r','a','d','i','c','a','l','e','x', /*N(9,396)*/
  582. 'r','s','u','p','e','r','i','o','r', /*N(9,405)*/
  583. 's','e','m','i','c','o','l','o','n', /*N(9,414)*/
  584. 's','s','u','p','e','r','i','o','r', /*N(9,423)*/
  585. 's','u','m','m','a','t','i','o','n', /*N(9,432)*/
  586. 't','h','e','r','e','f','o','r','e', /*N(9,441)*/
  587. 't','r','a','d','e','m','a','r','k', /*N(9,450)*/
  588. 't','s','u','p','e','r','i','o','r', /*N(9,459)*/
  589. 't','w','o','t','h','i','r','d','s', /*N(9,468)*/
  590. 'u','d','i','e','r','e','s','i','s', /*N(9,477)*/
  591. 'u','n','i','v','e','r','s','a','l', /*N(9,486)*/
  592. 'y','d','i','e','r','e','s','i','s', /*N(9,495)*/
  593. 'A','c','u','t','e','s','m','a','l','l', /*N(10,0)*/
  594. 'A','r','i','n','g','s','m','a','l','l', /*N(10,10)*/
  595. 'B','r','e','v','e','s','m','a','l','l', /*N(10,20)*/
  596. 'C','a','r','o','n','s','m','a','l','l', /*N(10,30)*/
  597. 'E','d','o','t','a','c','c','e','n','t', /*N(10,40)*/
  598. 'G','r','a','v','e','s','m','a','l','l', /*N(10,50)*/
  599. 'I','d','o','t','a','c','c','e','n','t', /*N(10,60)*/
  600. 'T','h','o','r','n','s','m','a','l','l', /*N(10,70)*/
  601. 'T','i','l','d','e','s','m','a','l','l', /*N(10,80)*/
  602. 'Z','d','o','t','a','c','c','e','n','t', /*N(10,90)*/
  603. 'a','n','g','l','e','r','i','g','h','t', /*N(10,100)*/
  604. 'a','r','r','o','w','d','b','l','u','p', /*N(10,110)*/
  605. 'a','r','r','o','w','r','i','g','h','t', /*N(10,120)*/
  606. 'a','s','c','i','i','t','i','l','d','e', /*N(10,130)*/
  607. 'b','r','a','c','e','r','i','g','h','t', /*N(10,140)*/
  608. 'c','i','r','c','l','e','p','l','u','s', /*N(10,150)*/
  609. 'c','i','r','c','u','m','f','l','e','x', /*N(10,160)*/
  610. 'e','d','o','t','a','c','c','e','n','t', /*N(10,170)*/
  611. 'e','x','c','l','a','m','d','o','w','n', /*N(10,180)*/
  612. 'f','i','g','u','r','e','d','a','s','h', /*N(10,190)*/
  613. 'g','e','r','m','a','n','d','b','l','s', /*N(10,200)*/
  614. 'i','n','t','e','g','r','a','l','b','t', /*N(10,210)*/
  615. 'i','n','t','e','g','r','a','l','e','x', /*N(10,220)*/
  616. 'i','n','t','e','g','r','a','l','t','p', /*N(10,230)*/
  617. 'l','o','g','i','c','a','l','a','n','d', /*N(10,240)*/
  618. 'l','o','g','i','c','a','l','n','o','t', /*N(10,250)*/
  619. 'n','o','t','e','l','e','m','e','n','t', /*N(10,260)*/
  620. 'n','u','m','b','e','r','s','i','g','n', /*N(10,270)*/
  621. 'o','n','e','q','u','a','r','t','e','r', /*N(10,280)*/
  622. 'p','a','r','e','n','r','i','g','h','t', /*N(10,290)*/
  623. 'q','u','o','t','e','r','i','g','h','t', /*N(10,300)*/
  624. 'r','e','g','i','s','t','e','r','e','d', /*N(10,310)*/
  625. 'u','n','d','e','r','s','c','o','r','e', /*N(10,320)*/
  626. 'z','d','o','t','a','c','c','e','n','t', /*N(10,330)*/
  627. 'A','a','c','u','t','e','s','m','a','l','l', /*N(11,0)*/
  628. 'A','c','i','r','c','u','m','f','l','e','x', /*N(11,11)*/
  629. 'A','g','r','a','v','e','s','m','a','l','l', /*N(11,22)*/
  630. 'A','t','i','l','d','e','s','m','a','l','l', /*N(11,33)*/
  631. 'E','a','c','u','t','e','s','m','a','l','l', /*N(11,44)*/
  632. 'E','c','i','r','c','u','m','f','l','e','x', /*N(11,55)*/
  633. 'E','g','r','a','v','e','s','m','a','l','l', /*N(11,66)*/
  634. 'I','a','c','u','t','e','s','m','a','l','l', /*N(11,77)*/
  635. 'I','c','i','r','c','u','m','f','l','e','x', /*N(11,88)*/
  636. 'I','g','r','a','v','e','s','m','a','l','l', /*N(11,99)*/
  637. 'L','s','l','a','s','h','s','m','a','l','l', /*N(11,110)*/
  638. 'M','a','c','r','o','n','s','m','a','l','l', /*N(11,121)*/
  639. 'N','t','i','l','d','e','s','m','a','l','l', /*N(11,132)*/
  640. 'O','a','c','u','t','e','s','m','a','l','l', /*N(11,143)*/
  641. 'O','c','i','r','c','u','m','f','l','e','x', /*N(11,154)*/
  642. 'O','g','o','n','e','k','s','m','a','l','l', /*N(11,165)*/
  643. 'O','g','r','a','v','e','s','m','a','l','l', /*N(11,176)*/
  644. 'O','s','l','a','s','h','s','m','a','l','l', /*N(11,187)*/
  645. 'O','t','i','l','d','e','s','m','a','l','l', /*N(11,198)*/
  646. 'S','c','a','r','o','n','s','m','a','l','l', /*N(11,209)*/
  647. 'U','a','c','u','t','e','s','m','a','l','l', /*N(11,220)*/
  648. 'U','c','i','r','c','u','m','f','l','e','x', /*N(11,231)*/
  649. 'U','g','r','a','v','e','s','m','a','l','l', /*N(11,242)*/
  650. 'Y','a','c','u','t','e','s','m','a','l','l', /*N(11,253)*/
  651. 'Z','c','a','r','o','n','s','m','a','l','l', /*N(11,264)*/
  652. 'a','c','i','r','c','u','m','f','l','e','x', /*N(11,275)*/
  653. 'a','p','p','r','o','x','e','q','u','a','l', /*N(11,286)*/
  654. 'a','r','r','o','w','v','e','r','t','e','x', /*N(11,297)*/
  655. 'a','s','c','i','i','c','i','r','c','u','m', /*N(11,308)*/
  656. 'b','r','a','c','e','l','e','f','t','b','t', /*N(11,319)*/
  657. 'b','r','a','c','e','l','e','f','t','t','p', /*N(11,330)*/
  658. 'b','r','a','c','k','e','t','l','e','f','t', /*N(11,341)*/
  659. 'c','o','m','m','a','a','c','c','e','n','t', /*N(11,352)*/
  660. 'e','c','i','r','c','u','m','f','l','e','x', /*N(11,363)*/
  661. 'e','q','u','i','v','a','l','e','n','c','e', /*N(11,374)*/
  662. 'e','x','c','l','a','m','s','m','a','l','l', /*N(11,385)*/
  663. 'e','x','i','s','t','e','n','t','i','a','l', /*N(11,396)*/
  664. 'f','i','v','e','e','i','g','h','t','h','s', /*N(11,407)*/
  665. 'i','c','i','r','c','u','m','f','l','e','x', /*N(11,418)*/
  666. 'o','c','i','r','c','u','m','f','l','e','x', /*N(11,429)*/
  667. 'o','n','e','i','n','f','e','r','i','o','r', /*N(11,440)*/
  668. 'o','n','e','o','l','d','s','t','y','l','e', /*N(11,451)*/
  669. 'o','n','e','s','u','p','e','r','i','o','r', /*N(11,462)*/
  670. 'o','r','d','f','e','m','i','n','i','n','e', /*N(11,473)*/
  671. 'p','a','r','e','n','l','e','f','t','b','t', /*N(11,484)*/
  672. 'p','a','r','e','n','l','e','f','t','e','x', /*N(11,495)*/
  673. 'p','a','r','e','n','l','e','f','t','t','p', /*N(11,506)*/
  674. 'p','a','r','t','i','a','l','d','i','f','f', /*N(11,517)*/
  675. 'p','e','r','t','h','o','u','s','a','n','d', /*N(11,528)*/
  676. 'q','u','o','t','e','s','i','n','g','l','e', /*N(11,539)*/
  677. 's','i','x','i','n','f','e','r','i','o','r', /*N(11,550)*/
  678. 's','i','x','o','l','d','s','t','y','l','e', /*N(11,561)*/
  679. 's','i','x','s','u','p','e','r','i','o','r', /*N(11,572)*/
  680. 't','w','o','i','n','f','e','r','i','o','r', /*N(11,583)*/
  681. 't','w','o','o','l','d','s','t','y','l','e', /*N(11,594)*/
  682. 't','w','o','s','u','p','e','r','i','o','r', /*N(11,605)*/
  683. 'u','c','i','r','c','u','m','f','l','e','x', /*N(11,616)*/
  684. 'w','e','i','e','r','s','t','r','a','s','s', /*N(11,627)*/
  685. 'C','e','d','i','l','l','a','s','m','a','l','l', /*N(12,0)*/
  686. 'G','c','o','m','m','a','a','c','c','e','n','t', /*N(12,12)*/
  687. 'K','c','o','m','m','a','a','c','c','e','n','t', /*N(12,24)*/
  688. 'L','c','o','m','m','a','a','c','c','e','n','t', /*N(12,36)*/
  689. 'N','c','o','m','m','a','a','c','c','e','n','t', /*N(12,48)*/
  690. 'R','c','o','m','m','a','a','c','c','e','n','t', /*N(12,60)*/
  691. 'S','c','o','m','m','a','a','c','c','e','n','t', /*N(12,72)*/
  692. 'T','c','o','m','m','a','a','c','c','e','n','t', /*N(12,84)*/
  693. 'a','r','r','o','w','d','b','l','b','o','t','h', /*N(12,96)*/
  694. 'a','r','r','o','w','d','b','l','d','o','w','n', /*N(12,108)*/
  695. 'a','r','r','o','w','d','b','l','l','e','f','t', /*N(12,120)*/
  696. 'a','r','r','o','w','h','o','r','i','z','e','x', /*N(12,132)*/
  697. 'a','s','t','e','r','i','s','k','m','a','t','h', /*N(12,144)*/
  698. 'b','r','a','c','e','l','e','f','t','m','i','d', /*N(12,156)*/
  699. 'b','r','a','c','e','r','i','g','h','t','b','t', /*N(12,168)*/
  700. 'b','r','a','c','e','r','i','g','h','t','t','p', /*N(12,180)*/
  701. 'b','r','a','c','k','e','t','r','i','g','h','t', /*N(12,192)*/
  702. 'c','e','n','t','i','n','f','e','r','i','o','r', /*N(12,204)*/
  703. 'c','e','n','t','o','l','d','s','t','y','l','e', /*N(12,216)*/
  704. 'c','e','n','t','s','u','p','e','r','i','o','r', /*N(12,228)*/
  705. 'f','i','v','e','i','n','f','e','r','i','o','r', /*N(12,240)*/
  706. 'f','i','v','e','o','l','d','s','t','y','l','e', /*N(12,252)*/
  707. 'f','i','v','e','s','u','p','e','r','i','o','r', /*N(12,264)*/
  708. 'f','o','u','r','i','n','f','e','r','i','o','r', /*N(12,276)*/
  709. 'f','o','u','r','o','l','d','s','t','y','l','e', /*N(12,288)*/
  710. 'f','o','u','r','s','u','p','e','r','i','o','r', /*N(12,300)*/
  711. 'g','c','o','m','m','a','a','c','c','e','n','t', /*N(12,312)*/
  712. 'g','r','e','a','t','e','r','e','q','u','a','l', /*N(12,324)*/
  713. 'h','u','n','g','a','r','u','m','l','a','u','t', /*N(12,336)*/
  714. 'i','n','t','e','r','s','e','c','t','i','o','n', /*N(12,348)*/
  715. 'k','c','o','m','m','a','a','c','c','e','n','t', /*N(12,360)*/
  716. 'l','c','o','m','m','a','a','c','c','e','n','t', /*N(12,372)*/
  717. 'n','c','o','m','m','a','a','c','c','e','n','t', /*N(12,384)*/
  718. 'n','i','n','e','i','n','f','e','r','i','o','r', /*N(12,396)*/
  719. 'n','i','n','e','o','l','d','s','t','y','l','e', /*N(12,408)*/
  720. 'n','i','n','e','s','u','p','e','r','i','o','r', /*N(12,420)*/
  721. 'o','r','d','m','a','s','c','u','l','i','n','e', /*N(12,432)*/
  722. 'p','a','r','e','n','r','i','g','h','t','b','t', /*N(12,444)*/
  723. 'p','a','r','e','n','r','i','g','h','t','e','x', /*N(12,456)*/
  724. 'p','a','r','e','n','r','i','g','h','t','t','p', /*N(12,468)*/
  725. 'p','r','o','p','e','r','s','u','b','s','e','t', /*N(12,480)*/
  726. 'p','r','o','p','o','r','t','i','o','n','a','l', /*N(12,492)*/
  727. 'q','u','e','s','t','i','o','n','d','o','w','n', /*N(12,504)*/
  728. 'q','u','o','t','e','d','b','l','b','a','s','e', /*N(12,516)*/
  729. 'q','u','o','t','e','d','b','l','l','e','f','t', /*N(12,528)*/
  730. 'r','c','o','m','m','a','a','c','c','e','n','t', /*N(12,540)*/
  731. 'r','e','f','l','e','x','s','u','b','s','e','t', /*N(12,552)*/
  732. 'r','e','g','i','s','t','e','r','s','a','n','s', /*N(12,564)*/
  733. 's','c','o','m','m','a','a','c','c','e','n','t', /*N(12,576)*/
  734. 's','e','v','e','n','e','i','g','h','t','h','s', /*N(12,588)*/
  735. 't','c','o','m','m','a','a','c','c','e','n','t', /*N(12,600)*/
  736. 't','h','r','e','e','e','i','g','h','t','h','s', /*N(12,612)*/
  737. 'z','e','r','o','i','n','f','e','r','i','o','r', /*N(12,624)*/
  738. 'z','e','r','o','o','l','d','s','t','y','l','e', /*N(12,636)*/
  739. 'z','e','r','o','s','u','p','e','r','i','o','r', /*N(12,648)*/
  740. 'C','c','e','d','i','l','l','a','s','m','a','l','l', /*N(13,0)*/
  741. 'D','i','e','r','e','s','i','s','s','m','a','l','l', /*N(13,13)*/
  742. 'O','h','u','n','g','a','r','u','m','l','a','u','t', /*N(13,26)*/
  743. 'U','h','u','n','g','a','r','u','m','l','a','u','t', /*N(13,39)*/
  744. 'a','r','r','o','w','d','b','l','r','i','g','h','t', /*N(13,52)*/
  745. 'b','r','a','c','e','r','i','g','h','t','m','i','d', /*N(13,65)*/
  746. 'b','r','a','c','k','e','t','l','e','f','t','b','t', /*N(13,78)*/
  747. 'b','r','a','c','k','e','t','l','e','f','t','e','x', /*N(13,91)*/
  748. 'b','r','a','c','k','e','t','l','e','f','t','t','p', /*N(13,104)*/
  749. 'c','o','l','o','n','m','o','n','e','t','a','r','y', /*N(13,117)*/
  750. 'c','o','m','m','a','i','n','f','e','r','i','o','r', /*N(13,130)*/
  751. 'c','o','m','m','a','s','u','p','e','r','i','o','r', /*N(13,143)*/
  752. 'c','o','p','y','r','i','g','h','t','s','a','n','s', /*N(13,156)*/
  753. 'e','i','g','h','t','i','n','f','e','r','i','o','r', /*N(13,169)*/
  754. 'e','i','g','h','t','o','l','d','s','t','y','l','e', /*N(13,182)*/
  755. 'e','i','g','h','t','s','u','p','e','r','i','o','r', /*N(13,195)*/
  756. 'g','u','i','l','l','e','m','o','t','l','e','f','t', /*N(13,208)*/
  757. 'g','u','i','l','s','i','n','g','l','l','e','f','t', /*N(13,221)*/
  758. 'o','h','u','n','g','a','r','u','m','l','a','u','t', /*N(13,234)*/
  759. 'p','e','r','p','e','n','d','i','c','u','l','a','r', /*N(13,247)*/
  760. 'q','u','e','s','t','i','o','n','s','m','a','l','l', /*N(13,260)*/
  761. 'q','u','o','t','e','d','b','l','r','i','g','h','t', /*N(13,273)*/
  762. 'r','e','g','i','s','t','e','r','s','e','r','i','f', /*N(13,286)*/
  763. 's','e','v','e','n','i','n','f','e','r','i','o','r', /*N(13,299)*/
  764. 's','e','v','e','n','o','l','d','s','t','y','l','e', /*N(13,312)*/
  765. 's','e','v','e','n','s','u','p','e','r','i','o','r', /*N(13,325)*/
  766. 't','h','r','e','e','i','n','f','e','r','i','o','r', /*N(13,338)*/
  767. 't','h','r','e','e','o','l','d','s','t','y','l','e', /*N(13,351)*/
  768. 't','h','r','e','e','q','u','a','r','t','e','r','s', /*N(13,364)*/
  769. 't','h','r','e','e','s','u','p','e','r','i','o','r', /*N(13,377)*/
  770. 't','r','a','d','e','m','a','r','k','s','a','n','s', /*N(13,390)*/
  771. 'u','h','u','n','g','a','r','u','m','l','a','u','t', /*N(13,403)*/
  772. 'A','d','i','e','r','e','s','i','s','s','m','a','l','l', /*N(14,0)*/
  773. 'D','o','t','a','c','c','e','n','t','s','m','a','l','l', /*N(14,14)*/
  774. 'E','d','i','e','r','e','s','i','s','s','m','a','l','l', /*N(14,28)*/
  775. 'I','d','i','e','r','e','s','i','s','s','m','a','l','l', /*N(14,42)*/
  776. 'O','d','i','e','r','e','s','i','s','s','m','a','l','l', /*N(14,56)*/
  777. 'U','d','i','e','r','e','s','i','s','s','m','a','l','l', /*N(14,70)*/
  778. 'Y','d','i','e','r','e','s','i','s','s','m','a','l','l', /*N(14,84)*/
  779. 'a','m','p','e','r','s','a','n','d','s','m','a','l','l', /*N(14,98)*/
  780. 'b','r','a','c','k','e','t','r','i','g','h','t','b','t', /*N(14,112)*/
  781. 'b','r','a','c','k','e','t','r','i','g','h','t','e','x', /*N(14,126)*/
  782. 'b','r','a','c','k','e','t','r','i','g','h','t','t','p', /*N(14,140)*/
  783. 'c','a','r','r','i','a','g','e','r','e','t','u','r','n', /*N(14,154)*/
  784. 'c','i','r','c','l','e','m','u','l','t','i','p','l','y', /*N(14,168)*/
  785. 'c','o','p','y','r','i','g','h','t','s','e','r','i','f', /*N(14,182)*/
  786. 'd','o','l','l','a','r','i','n','f','e','r','i','o','r', /*N(14,196)*/
  787. 'd','o','l','l','a','r','o','l','d','s','t','y','l','e', /*N(14,210)*/
  788. 'd','o','l','l','a','r','s','u','p','e','r','i','o','r', /*N(14,224)*/
  789. 'g','u','i','l','l','e','m','o','t','r','i','g','h','t', /*N(14,238)*/
  790. 'g','u','i','l','s','i','n','g','l','r','i','g','h','t', /*N(14,252)*/
  791. 'h','y','p','h','e','n','i','n','f','e','r','i','o','r', /*N(14,266)*/
  792. 'h','y','p','h','e','n','s','u','p','e','r','i','o','r', /*N(14,280)*/
  793. 'o','n','e','d','o','t','e','n','l','e','a','d','e','r', /*N(14,294)*/
  794. 'p','e','r','i','o','d','c','e','n','t','e','r','e','d', /*N(14,308)*/
  795. 'p','e','r','i','o','d','i','n','f','e','r','i','o','r', /*N(14,322)*/
  796. 'p','e','r','i','o','d','s','u','p','e','r','i','o','r', /*N(14,336)*/
  797. 'p','r','o','p','e','r','s','u','p','e','r','s','e','t', /*N(14,350)*/
  798. 'q','u','o','t','e','s','i','n','g','l','b','a','s','e', /*N(14,364)*/
  799. 'r','e','f','l','e','x','s','u','p','e','r','s','e','t', /*N(14,378)*/
  800. 't','r','a','d','e','m','a','r','k','s','e','r','i','f', /*N(14,392)*/
  801. 't','w','o','d','o','t','e','n','l','e','a','d','e','r', /*N(14,406)*/
  802. 'C','i','r','c','u','m','f','l','e','x','s','m','a','l','l', /*N(15,0)*/
  803. 'e','x','c','l','a','m','d','o','w','n','s','m','a','l','l', /*N(15,15)*/
  804. 'A','c','i','r','c','u','m','f','l','e','x','s','m','a','l','l', /*N(16,0)*/
  805. 'E','c','i','r','c','u','m','f','l','e','x','s','m','a','l','l', /*N(16,16)*/
  806. 'I','c','i','r','c','u','m','f','l','e','x','s','m','a','l','l', /*N(16,32)*/
  807. 'O','c','i','r','c','u','m','f','l','e','x','s','m','a','l','l', /*N(16,48)*/
  808. 'U','c','i','r','c','u','m','f','l','e','x','s','m','a','l','l', /*N(16,64)*/
  809. 'H','u','n','g','a','r','u','m','l','a','u','t','s','m','a','l','l', /*N(17,0)*/
  810. 'p','a','r','e','n','l','e','f','t','i','n','f','e','r','i','o','r', /*N(17,17)*/
  811. 'p','a','r','e','n','l','e','f','t','s','u','p','e','r','i','o','r', /*N(17,34)*/
  812. 'q','u','e','s','t','i','o','n','d','o','w','n','s','m','a','l','l', /*N(17,51)*/
  813. 'p','a','r','e','n','r','i','g','h','t','i','n','f','e','r','i','o','r', /*N(18,0)*/
  814. 'p','a','r','e','n','r','i','g','h','t','s','u','p','e','r','i','o','r', /*N(18,18)*/
  815. 't','h','r','e','e','q','u','a','r','t','e','r','s','e','m','d','a','s','h', /*N(19,0)*/
  816. 0};
  817. const int gs_c_known_encoding_total_chars = 5483;
  818. const int gs_c_known_encoding_max_length = 19;
  819. const ushort gs_c_known_encoding_offsets[] = {
  820. 0,0,52,104,404,876,1081,1771,2072,2272,2776,3116,3754,4414,4830,5250,5280,5360,5428,5464,5483};
  821. const int gs_c_known_encoding_count = 11;
  822. /* StandardEncoding */
  823. static const ushort gs_c_known_encoding_0[] = {
  824. N(7,0), /*.notdef*/
  825. N(7,0), /*.notdef*/
  826. N(7,0), /*.notdef*/
  827. N(7,0), /*.notdef*/
  828. N(7,0), /*.notdef*/
  829. N(7,0), /*.notdef*/
  830. N(7,0), /*.notdef*/
  831. N(7,0), /*.notdef*/
  832. N(7,0), /*.notdef*/
  833. N(7,0), /*.notdef*/
  834. N(7,0), /*.notdef*/
  835. N(7,0), /*.notdef*/
  836. N(7,0), /*.notdef*/
  837. N(7,0), /*.notdef*/
  838. N(7,0), /*.notdef*/
  839. N(7,0), /*.notdef*/
  840. N(7,0), /*.notdef*/
  841. N(7,0), /*.notdef*/
  842. N(7,0), /*.notdef*/
  843. N(7,0), /*.notdef*/
  844. N(7,0), /*.notdef*/
  845. N(7,0), /*.notdef*/
  846. N(7,0), /*.notdef*/
  847. N(7,0), /*.notdef*/
  848. N(7,0), /*.notdef*/
  849. N(7,0), /*.notdef*/
  850. N(7,0), /*.notdef*/
  851. N(7,0), /*.notdef*/
  852. N(7,0), /*.notdef*/
  853. N(7,0), /*.notdef*/
  854. N(7,0), /*.notdef*/
  855. N(7,0), /*.notdef*/
  856. N(5,165), /*space*/
  857. N(6,474), /*exclam*/
  858. N(8,168), /*quotedbl*/
  859. N(10,270), /*numbersign*/
  860. N(6,438), /*dollar*/
  861. N(7,245), /*percent*/
  862. N(9,72), /*ampersand*/
  863. N(10,300), /*quoteright*/
  864. N(9,369), /*parenleft*/
  865. N(10,290), /*parenright*/
  866. N(8,48), /*asterisk*/
  867. N(4,456), /*plus*/
  868. N(5,95), /*comma*/
  869. N(6,492), /*hyphen*/
  870. N(6,600), /*period*/
  871. N(5,160), /*slash*/
  872. N(4,464), /*zero*/
  873. N(3,276), /*one*/
  874. N(3,294), /*two*/
  875. N(5,185), /*three*/
  876. N(4,436), /*four*/
  877. N(4,432), /*five*/
  878. N(3,288), /*six*/
  879. N(5,150), /*seven*/
  880. N(5,105), /*eight*/
  881. N(4,448), /*nine*/
  882. N(5,90), /*colon*/
  883. N(9,414), /*semicolon*/
  884. N(4,444), /*less*/
  885. N(5,110), /*equal*/
  886. N(7,189), /*greater*/
  887. N(8,160), /*question*/
  888. N(2,34), /*at*/
  889. N(1,0), /*A*/
  890. N(1,1), /*B*/
  891. N(1,2), /*C*/
  892. N(1,3), /*D*/
  893. N(1,4), /*E*/
  894. N(1,5), /*F*/
  895. N(1,6), /*G*/
  896. N(1,7), /*H*/
  897. N(1,8), /*I*/
  898. N(1,9), /*J*/
  899. N(1,10), /*K*/
  900. N(1,11), /*L*/
  901. N(1,12), /*M*/
  902. N(1,13), /*N*/
  903. N(1,14), /*O*/
  904. N(1,15), /*P*/
  905. N(1,16), /*Q*/
  906. N(1,17), /*R*/
  907. N(1,18), /*S*/
  908. N(1,19), /*T*/
  909. N(1,20), /*U*/
  910. N(1,21), /*V*/
  911. N(1,22), /*W*/
  912. N(1,23), /*X*/
  913. N(1,24), /*Y*/
  914. N(1,25), /*Z*/
  915. N(11,341), /*bracketleft*/
  916. N(9,135), /*backslash*/
  917. N(12,192), /*bracketright*/
  918. N(11,308), /*asciicircum*/
  919. N(10,320), /*underscore*/
  920. N(9,387), /*quoteleft*/
  921. N(1,26), /*a*/
  922. N(1,27), /*b*/
  923. N(1,28), /*c*/
  924. N(1,29), /*d*/
  925. N(1,30), /*e*/
  926. N(1,31), /*f*/
  927. N(1,32), /*g*/
  928. N(1,33), /*h*/
  929. N(1,34), /*i*/
  930. N(1,35), /*j*/
  931. N(1,36), /*k*/
  932. N(1,37), /*l*/
  933. N(1,38), /*m*/
  934. N(1,39), /*n*/
  935. N(1,40), /*o*/
  936. N(1,41), /*p*/
  937. N(1,42), /*q*/
  938. N(1,43), /*r*/
  939. N(1,44), /*s*/
  940. N(1,45), /*t*/
  941. N(1,46), /*u*/
  942. N(1,47), /*v*/
  943. N(1,48), /*w*/
  944. N(1,49), /*x*/
  945. N(1,50), /*y*/
  946. N(1,51), /*z*/
  947. N(9,144), /*braceleft*/
  948. N(3,255), /*bar*/
  949. N(10,140), /*braceright*/
  950. N(10,130), /*asciitilde*/
  951. N(7,0), /*.notdef*/
  952. N(7,0), /*.notdef*/
  953. N(7,0), /*.notdef*/
  954. N(7,0), /*.notdef*/
  955. N(7,0), /*.notdef*/
  956. N(7,0), /*.notdef*/
  957. N(7,0), /*.notdef*/
  958. N(7,0), /*.notdef*/
  959. N(7,0), /*.notdef*/
  960. N(7,0), /*.notdef*/
  961. N(7,0), /*.notdef*/
  962. N(7,0), /*.notdef*/
  963. N(7,0), /*.notdef*/
  964. N(7,0), /*.notdef*/
  965. N(7,0), /*.notdef*/
  966. N(7,0), /*.notdef*/
  967. N(7,0), /*.notdef*/
  968. N(7,0), /*.notdef*/
  969. N(7,0), /*.notdef*/
  970. N(7,0), /*.notdef*/
  971. N(7,0), /*.notdef*/
  972. N(7,0), /*.notdef*/
  973. N(7,0), /*.notdef*/
  974. N(7,0), /*.notdef*/
  975. N(7,0), /*.notdef*/
  976. N(7,0), /*.notdef*/
  977. N(7,0), /*.notdef*/
  978. N(7,0), /*.notdef*/
  979. N(7,0), /*.notdef*/
  980. N(7,0), /*.notdef*/
  981. N(7,0), /*.notdef*/
  982. N(7,0), /*.notdef*/
  983. N(7,0), /*.notdef*/
  984. N(7,0), /*.notdef*/
  985. N(10,180), /*exclamdown*/
  986. N(4,424), /*cent*/
  987. N(8,184), /*sterling*/
  988. N(8,104), /*fraction*/
  989. N(3,297), /*yen*/
  990. N(6,480), /*florin*/
  991. N(7,266), /*section*/
  992. N(8,64), /*currency*/
  993. N(11,539), /*quotesingle*/
  994. N(12,528), /*quotedblleft*/
  995. N(13,208), /*guillemotleft*/
  996. N(13,221), /*guilsinglleft*/
  997. N(14,252), /*guilsinglright*/
  998. N(2,38), /*fi*/
  999. N(2,40), /*fl*/
  1000. N(7,0), /*.notdef*/
  1001. N(6,468), /*endash*/
  1002. N(6,408), /*dagger*/
  1003. N(9,189), /*daggerdbl*/
  1004. N(14,308), /*periodcentered*/
  1005. N(7,0), /*.notdef*/
  1006. N(9,360), /*paragraph*/
  1007. N(6,390), /*bullet*/
  1008. N(14,364), /*quotesinglbase*/
  1009. N(12,516), /*quotedblbase*/
  1010. N(13,273), /*quotedblright*/
  1011. N(14,238), /*guillemotright*/
  1012. N(8,88), /*ellipsis*/
  1013. N(11,528), /*perthousand*/
  1014. N(7,0), /*.notdef*/
  1015. N(12,504), /*questiondown*/
  1016. N(7,0), /*.notdef*/
  1017. N(5,125), /*grave*/
  1018. N(5,55), /*acute*/
  1019. N(10,160), /*circumflex*/
  1020. N(5,190), /*tilde*/
  1021. N(6,534), /*macron*/
  1022. N(5,80), /*breve*/
  1023. N(9,198), /*dotaccent*/
  1024. N(8,72), /*dieresis*/
  1025. N(7,0), /*.notdef*/
  1026. N(4,460), /*ring*/
  1027. N(7,133), /*cedilla*/
  1028. N(7,0), /*.notdef*/
  1029. N(12,336), /*hungarumlaut*/
  1030. N(6,570), /*ogonek*/
  1031. N(5,85), /*caron*/
  1032. N(6,462), /*emdash*/
  1033. N(7,0), /*.notdef*/
  1034. N(7,0), /*.notdef*/
  1035. N(7,0), /*.notdef*/
  1036. N(7,0), /*.notdef*/
  1037. N(7,0), /*.notdef*/
  1038. N(7,0), /*.notdef*/
  1039. N(7,0), /*.notdef*/
  1040. N(7,0), /*.notdef*/
  1041. N(7,0), /*.notdef*/
  1042. N(7,0), /*.notdef*/
  1043. N(7,0), /*.notdef*/
  1044. N(7,0), /*.notdef*/
  1045. N(7,0), /*.notdef*/
  1046. N(7,0), /*.notdef*/
  1047. N(7,0), /*.notdef*/
  1048. N(7,0), /*.notdef*/
  1049. N(2,0), /*AE*/
  1050. N(7,0), /*.notdef*/
  1051. N(11,473), /*ordfeminine*/
  1052. N(7,0), /*.notdef*/
  1053. N(7,0), /*.notdef*/
  1054. N(7,0), /*.notdef*/
  1055. N(7,0), /*.notdef*/
  1056. N(6,168), /*Lslash*/
  1057. N(6,222), /*Oslash*/
  1058. N(2,8), /*OE*/
  1059. N(12,432), /*ordmasculine*/
  1060. N(7,0), /*.notdef*/
  1061. N(7,0), /*.notdef*/
  1062. N(7,0), /*.notdef*/
  1063. N(7,0), /*.notdef*/
  1064. N(7,0), /*.notdef*/
  1065. N(2,32), /*ae*/
  1066. N(7,0), /*.notdef*/
  1067. N(7,0), /*.notdef*/
  1068. N(7,0), /*.notdef*/
  1069. N(8,80), /*dotlessi*/
  1070. N(7,0), /*.notdef*/
  1071. N(7,0), /*.notdef*/
  1072. N(6,528), /*lslash*/
  1073. N(6,588), /*oslash*/
  1074. N(2,46), /*oe*/
  1075. N(10,200), /*germandbls*/
  1076. N(7,0), /*.notdef*/
  1077. N(7,0), /*.notdef*/
  1078. N(7,0), /*.notdef*/
  1079. N(7,0), /*.notdef*/
  1080. 0};
  1081. static const ushort gs_c_known_encoding_reverse_0[] = {
  1082. 65, /* N(1,0): A*/
  1083. 225, /* N(2,0): AE*/
  1084. 66, /* N(1,1): B*/
  1085. 67, /* N(1,2): C*/
  1086. 68, /* N(1,3): D*/
  1087. 69, /* N(1,4): E*/
  1088. 70, /* N(1,5): F*/
  1089. 71, /* N(1,6): G*/
  1090. 72, /* N(1,7): H*/
  1091. 73, /* N(1,8): I*/
  1092. 234, /* N(2,8): OE*/
  1093. 74, /* N(1,9): J*/
  1094. 75, /* N(1,10): K*/
  1095. 76, /* N(1,11): L*/
  1096. 77, /* N(1,12): M*/
  1097. 78, /* N(1,13): N*/
  1098. 79, /* N(1,14): O*/
  1099. 80, /* N(1,15): P*/
  1100. 81, /* N(1,16): Q*/
  1101. 82, /* N(1,17): R*/
  1102. 83, /* N(1,18): S*/
  1103. 84, /* N(1,19): T*/
  1104. 85, /* N(1,20): U*/
  1105. 86, /* N(1,21): V*/
  1106. 87, /* N(1,22): W*/
  1107. 88, /* N(1,23): X*/
  1108. 89, /* N(1,24): Y*/
  1109. 90, /* N(1,25): Z*/
  1110. 97, /* N(1,26): a*/
  1111. 98, /* N(1,27): b*/
  1112. 99, /* N(1,28): c*/
  1113. 100, /* N(1,29): d*/
  1114. 101, /* N(1,30): e*/
  1115. 102, /* N(1,31): f*/
  1116. 103, /* N(1,32): g*/
  1117. 241, /* N(2,32): ae*/
  1118. 104, /* N(1,33): h*/
  1119. 105, /* N(1,34): i*/
  1120. 64, /* N(2,34): at*/
  1121. 106, /* N(1,35): j*/
  1122. 107, /* N(1,36): k*/
  1123. 108, /* N(1,37): l*/
  1124. 109, /* N(1,38): m*/
  1125. 174, /* N(2,38): fi*/
  1126. 110, /* N(1,39): n*/
  1127. 111, /* N(1,40): o*/
  1128. 175, /* N(2,40): fl*/
  1129. 112, /* N(1,41): p*/
  1130. 113, /* N(1,42): q*/
  1131. 114, /* N(1,43): r*/
  1132. 115, /* N(1,44): s*/
  1133. 116, /* N(1,45): t*/
  1134. 117, /* N(1,46): u*/
  1135. 250, /* N(2,46): oe*/
  1136. 118, /* N(1,47): v*/
  1137. 119, /* N(1,48): w*/
  1138. 42, /* N(8,48): asterisk*/
  1139. 120, /* N(1,49): x*/
  1140. 121, /* N(1,50): y*/
  1141. 122, /* N(1,51): z*/
  1142. 194, /* N(5,55): acute*/
  1143. 168, /* N(8,64): currency*/
  1144. 200, /* N(8,72): dieresis*/
  1145. 38, /* N(9,72): ampersand*/
  1146. 198, /* N(5,80): breve*/
  1147. 245, /* N(8,80): dotlessi*/
  1148. 207, /* N(5,85): caron*/
  1149. 188, /* N(8,88): ellipsis*/
  1150. 58, /* N(5,90): colon*/
  1151. 44, /* N(5,95): comma*/
  1152. 164, /* N(8,104): fraction*/
  1153. 56, /* N(5,105): eight*/
  1154. 61, /* N(5,110): equal*/
  1155. 193, /* N(5,125): grave*/
  1156. 126, /* N(10,130): asciitilde*/
  1157. 203, /* N(7,133): cedilla*/
  1158. 92, /* N(9,135): backslash*/
  1159. 125, /* N(10,140): braceright*/
  1160. 123, /* N(9,144): braceleft*/
  1161. 55, /* N(5,150): seven*/
  1162. 47, /* N(5,160): slash*/
  1163. 63, /* N(8,160): question*/
  1164. 195, /* N(10,160): circumflex*/
  1165. 32, /* N(5,165): space*/
  1166. 232, /* N(6,168): Lslash*/
  1167. 34, /* N(8,168): quotedbl*/
  1168. 161, /* N(10,180): exclamdown*/
  1169. 163, /* N(8,184): sterling*/
  1170. 51, /* N(5,185): three*/
  1171. 62, /* N(7,189): greater*/
  1172. 179, /* N(9,189): daggerdbl*/
  1173. 196, /* N(5,190): tilde*/
  1174. 93, /* N(12,192): bracketright*/
  1175. 199, /* N(9,198): dotaccent*/
  1176. 251, /* N(10,200): germandbls*/
  1177. 171, /* N(13,208): guillemotleft*/
  1178. 172, /* N(13,221): guilsinglleft*/
  1179. 233, /* N(6,222): Oslash*/
  1180. 187, /* N(14,238): guillemotright*/
  1181. 37, /* N(7,245): percent*/
  1182. 173, /* N(14,252): guilsinglright*/
  1183. 124, /* N(3,255): bar*/
  1184. 167, /* N(7,266): section*/
  1185. 35, /* N(10,270): numbersign*/
  1186. 186, /* N(13,273): quotedblright*/
  1187. 49, /* N(3,276): one*/
  1188. 54, /* N(3,288): six*/
  1189. 41, /* N(10,290): parenright*/
  1190. 50, /* N(3,294): two*/
  1191. 165, /* N(3,297): yen*/
  1192. 39, /* N(10,300): quoteright*/
  1193. 94, /* N(11,308): asciicircum*/
  1194. 180, /* N(14,308): periodcentered*/
  1195. 95, /* N(10,320): underscore*/
  1196. 205, /* N(12,336): hungarumlaut*/
  1197. 91, /* N(11,341): bracketleft*/
  1198. 182, /* N(9,360): paragraph*/
  1199. 184, /* N(14,364): quotesinglbase*/
  1200. 40, /* N(9,369): parenleft*/
  1201. 96, /* N(9,387): quoteleft*/
  1202. 183, /* N(6,390): bullet*/
  1203. 178, /* N(6,408): dagger*/
  1204. 59, /* N(9,414): semicolon*/
  1205. 162, /* N(4,424): cent*/
  1206. 53, /* N(4,432): five*/
  1207. 235, /* N(12,432): ordmasculine*/
  1208. 52, /* N(4,436): four*/
  1209. 36, /* N(6,438): dollar*/
  1210. 60, /* N(4,444): less*/
  1211. 57, /* N(4,448): nine*/
  1212. 43, /* N(4,456): plus*/
  1213. 202, /* N(4,460): ring*/
  1214. 208, /* N(6,462): emdash*/
  1215. 48, /* N(4,464): zero*/
  1216. 177, /* N(6,468): endash*/
  1217. 227, /* N(11,473): ordfeminine*/
  1218. 33, /* N(6,474): exclam*/
  1219. 166, /* N(6,480): florin*/
  1220. 45, /* N(6,492): hyphen*/
  1221. 191, /* N(12,504): questiondown*/
  1222. 185, /* N(12,516): quotedblbase*/
  1223. 248, /* N(6,528): lslash*/
  1224. 189, /* N(11,528): perthousand*/
  1225. 170, /* N(12,528): quotedblleft*/
  1226. 197, /* N(6,534): macron*/
  1227. 169, /* N(11,539): quotesingle*/
  1228. 206, /* N(6,570): ogonek*/
  1229. 249, /* N(6,588): oslash*/
  1230. 46, /* N(6,600): period*/
  1231. 0};
  1232. /* ISOLatin1Encoding */
  1233. static const ushort gs_c_known_encoding_1[] = {
  1234. N(7,0), /*.notdef*/
  1235. N(7,0), /*.notdef*/
  1236. N(7,0), /*.notdef*/
  1237. N(7,0), /*.notdef*/
  1238. N(7,0), /*.notdef*/
  1239. N(7,0), /*.notdef*/
  1240. N(7,0), /*.notdef*/
  1241. N(7,0), /*.notdef*/
  1242. N(7,0), /*.notdef*/
  1243. N(7,0), /*.notdef*/
  1244. N(7,0), /*.notdef*/
  1245. N(7,0), /*.notdef*/
  1246. N(7,0), /*.notdef*/
  1247. N(7,0), /*.notdef*/
  1248. N(7,0), /*.notdef*/
  1249. N(7,0), /*.notdef*/
  1250. N(7,0), /*.notdef*/
  1251. N(7,0), /*.notdef*/
  1252. N(7,0), /*.notdef*/
  1253. N(7,0), /*.notdef*/
  1254. N(7,0), /*.notdef*/
  1255. N(7,0), /*.notdef*/
  1256. N(7,0), /*.notdef*/
  1257. N(7,0), /*.notdef*/
  1258. N(7,0), /*.notdef*/
  1259. N(7,0), /*.notdef*/
  1260. N(7,0), /*.notdef*/
  1261. N(7,0), /*.notdef*/
  1262. N(7,0), /*.notdef*/
  1263. N(7,0), /*.notdef*/
  1264. N(7,0), /*.notdef*/
  1265. N(7,0), /*.notdef*/
  1266. N(5,165), /*space*/
  1267. N(6,474), /*exclam*/
  1268. N(8,168), /*quotedbl*/
  1269. N(10,270), /*numbersign*/
  1270. N(6,438), /*dollar*/
  1271. N(7,245), /*percent*/
  1272. N(9,72), /*ampersand*/
  1273. N(10,300), /*quoteright*/
  1274. N(9,369), /*parenleft*/
  1275. N(10,290), /*parenright*/
  1276. N(8,48), /*asterisk*/
  1277. N(4,456), /*plus*/
  1278. N(5,95), /*comma*/
  1279. N(5,140), /*minus*/
  1280. N(6,600), /*period*/
  1281. N(5,160), /*slash*/
  1282. N(4,464), /*zero*/
  1283. N(3,276), /*one*/
  1284. N(3,294), /*two*/
  1285. N(5,185), /*three*/
  1286. N(4,436), /*four*/
  1287. N(4,432), /*five*/
  1288. N(3,288), /*six*/
  1289. N(5,150), /*seven*/
  1290. N(5,105), /*eight*/
  1291. N(4,448), /*nine*/
  1292. N(5,90), /*colon*/
  1293. N(9,414), /*semicolon*/
  1294. N(4,444), /*less*/
  1295. N(5,110), /*equal*/
  1296. N(7,189), /*greater*/
  1297. N(8,160), /*question*/
  1298. N(2,34), /*at*/
  1299. N(1,0), /*A*/
  1300. N(1,1), /*B*/
  1301. N(1,2), /*C*/
  1302. N(1,3), /*D*/
  1303. N(1,4), /*E*/
  1304. N(1,5), /*F*/
  1305. N(1,6), /*G*/
  1306. N(1,7), /*H*/
  1307. N(1,8), /*I*/
  1308. N(1,9), /*J*/
  1309. N(1,10), /*K*/
  1310. N(1,11), /*L*/
  1311. N(1,12), /*M*/
  1312. N(1,13), /*N*/
  1313. N(1,14), /*O*/
  1314. N(1,15), /*P*/
  1315. N(1,16), /*Q*/
  1316. N(1,17), /*R*/
  1317. N(1,18), /*S*/
  1318. N(1,19), /*T*/
  1319. N(1,20), /*U*/
  1320. N(1,21), /*V*/
  1321. N(1,22), /*W*/
  1322. N(1,23), /*X*/
  1323. N(1,24), /*Y*/
  1324. N(1,25), /*Z*/
  1325. N(11,341), /*bracketleft*/
  1326. N(9,135), /*backslash*/
  1327. N(12,192), /*bracketright*/
  1328. N(11,308), /*asciicircum*/
  1329. N(10,320), /*underscore*/
  1330. N(9,387), /*quoteleft*/
  1331. N(1,26), /*a*/
  1332. N(1,27), /*b*/
  1333. N(1,28), /*c*/
  1334. N(1,29), /*d*/
  1335. N(1,30), /*e*/
  1336. N(1,31), /*f*/
  1337. N(1,32), /*g*/
  1338. N(1,33), /*h*/
  1339. N(1,34), /*i*/
  1340. N(1,35), /*j*/
  1341. N(1,36), /*k*/
  1342. N(1,37), /*l*/
  1343. N(1,38), /*m*/
  1344. N(1,39), /*n*/
  1345. N(1,40), /*o*/
  1346. N(1,41), /*p*/
  1347. N(1,42), /*q*/
  1348. N(1,43), /*r*/
  1349. N(1,44), /*s*/
  1350. N(1,45), /*t*/
  1351. N(1,46), /*u*/
  1352. N(1,47), /*v*/
  1353. N(1,48), /*w*/
  1354. N(1,49), /*x*/
  1355. N(1,50), /*y*/
  1356. N(1,51), /*z*/
  1357. N(9,144), /*braceleft*/
  1358. N(3,255), /*bar*/
  1359. N(10,140), /*braceright*/
  1360. N(10,130), /*asciitilde*/
  1361. N(7,0), /*.notdef*/
  1362. N(7,0), /*.notdef*/
  1363. N(7,0), /*.notdef*/
  1364. N(7,0), /*.notdef*/
  1365. N(7,0), /*.notdef*/
  1366. N(7,0), /*.notdef*/
  1367. N(7,0), /*.notdef*/
  1368. N(7,0), /*.notdef*/
  1369. N(7,0), /*.notdef*/
  1370. N(7,0), /*.notdef*/
  1371. N(7,0), /*.notdef*/
  1372. N(7,0), /*.notdef*/
  1373. N(7,0), /*.notdef*/
  1374. N(7,0), /*.notdef*/
  1375. N(7,0), /*.notdef*/
  1376. N(7,0), /*.notdef*/
  1377. N(7,0), /*.notdef*/
  1378. N(8,80), /*dotlessi*/
  1379. N(5,125), /*grave*/
  1380. N(5,55), /*acute*/
  1381. N(10,160), /*circumflex*/
  1382. N(5,190), /*tilde*/
  1383. N(6,534), /*macron*/
  1384. N(5,80), /*breve*/
  1385. N(9,198), /*dotaccent*/
  1386. N(8,72), /*dieresis*/
  1387. N(7,0), /*.notdef*/
  1388. N(4,460), /*ring*/
  1389. N(7,133), /*cedilla*/
  1390. N(7,0), /*.notdef*/
  1391. N(12,336), /*hungarumlaut*/
  1392. N(6,570), /*ogonek*/
  1393. N(5,85), /*caron*/
  1394. N(5,165), /*space*/
  1395. N(10,180), /*exclamdown*/
  1396. N(4,424), /*cent*/
  1397. N(8,184), /*sterling*/
  1398. N(8,64), /*currency*/
  1399. N(3,297), /*yen*/
  1400. N(9,153), /*brokenbar*/
  1401. N(7,266), /*section*/
  1402. N(8,72), /*dieresis*/
  1403. N(9,180), /*copyright*/
  1404. N(11,473), /*ordfeminine*/
  1405. N(13,208), /*guillemotleft*/
  1406. N(10,250), /*logicalnot*/
  1407. N(6,492), /*hyphen*/
  1408. N(10,310), /*registered*/
  1409. N(6,534), /*macron*/
  1410. N(6,426), /*degree*/
  1411. N(9,378), /*plusminus*/
  1412. N(11,605), /*twosuperior*/
  1413. N(13,377), /*threesuperior*/
  1414. N(5,55), /*acute*/
  1415. N(2,42), /*mu*/
  1416. N(9,360), /*paragraph*/
  1417. N(14,308), /*periodcentered*/
  1418. N(7,133), /*cedilla*/
  1419. N(11,462), /*onesuperior*/
  1420. N(12,432), /*ordmasculine*/
  1421. N(14,238), /*guillemotright*/
  1422. N(10,280), /*onequarter*/
  1423. N(7,238), /*onehalf*/
  1424. N(13,364), /*threequarters*/
  1425. N(12,504), /*questiondown*/
  1426. N(6,12), /*Agrave*/
  1427. N(6,0), /*Aacute*/
  1428. N(11,11), /*Acircumflex*/
  1429. N(6,24), /*Atilde*/
  1430. N(9,0), /*Adieresis*/
  1431. N(5,10), /*Aring*/
  1432. N(2,0), /*AE*/
  1433. N(8,0), /*Ccedilla*/
  1434. N(6,84), /*Egrave*/
  1435. N(6,72), /*Eacute*/
  1436. N(11,55), /*Ecircumflex*/
  1437. N(9,9), /*Edieresis*/
  1438. N(6,126), /*Igrave*/
  1439. N(6,120), /*Iacute*/
  1440. N(11,88), /*Icircumflex*/
  1441. N(9,18), /*Idieresis*/
  1442. N(3,6), /*Eth*/
  1443. N(6,204), /*Ntilde*/
  1444. N(6,216), /*Ograve*/
  1445. N(6,210), /*Oacute*/
  1446. N(11,154), /*Ocircumflex*/
  1447. N(6,234), /*Otilde*/
  1448. N(9,27), /*Odieresis*/
  1449. N(8,136), /*multiply*/
  1450. N(6,222), /*Oslash*/
  1451. N(6,306), /*Ugrave*/
  1452. N(6,300), /*Uacute*/
  1453. N(11,231), /*Ucircumflex*/
  1454. N(9,45), /*Udieresis*/
  1455. N(6,336), /*Yacute*/
  1456. N(5,45), /*Thorn*/
  1457. N(10,200), /*germandbls*/
  1458. N(6,378), /*agrave*/
  1459. N(6,366), /*aacute*/
  1460. N(11,275), /*acircumflex*/
  1461. N(6,384), /*atilde*/
  1462. N(9,63), /*adieresis*/
  1463. N(5,75), /*aring*/
  1464. N(2,32), /*ae*/
  1465. N(8,56), /*ccedilla*/
  1466. N(6,456), /*egrave*/
  1467. N(6,444), /*eacute*/
  1468. N(11,363), /*ecircumflex*/
  1469. N(9,216), /*edieresis*/
  1470. N(6,504), /*igrave*/
  1471. N(6,498), /*iacute*/
  1472. N(11,418), /*icircumflex*/
  1473. N(9,234), /*idieresis*/
  1474. N(3,264), /*eth*/
  1475. N(6,558), /*ntilde*/
  1476. N(6,576), /*ograve*/
  1477. N(6,564), /*oacute*/
  1478. N(11,429), /*ocircumflex*/
  1479. N(6,594), /*otilde*/
  1480. N(9,315), /*odieresis*/
  1481. N(6,432), /*divide*/
  1482. N(6,588), /*oslash*/
  1483. N(6,666), /*ugrave*/
  1484. N(6,660), /*uacute*/
  1485. N(11,616), /*ucircumflex*/
  1486. N(9,477), /*udieresis*/
  1487. N(6,672), /*yacute*/
  1488. N(5,180), /*thorn*/
  1489. N(9,495), /*ydieresis*/
  1490. 0};
  1491. static const ushort gs_c_known_encoding_reverse_1[] = {
  1492. 65, /* N(1,0): A*/
  1493. 198, /* N(2,0): AE*/
  1494. 193, /* N(6,0): Aacute*/
  1495. 199, /* N(8,0): Ccedilla*/
  1496. 196, /* N(9,0): Adieresis*/
  1497. 66, /* N(1,1): B*/
  1498. 67, /* N(1,2): C*/
  1499. 68, /* N(1,3): D*/
  1500. 69, /* N(1,4): E*/
  1501. 70, /* N(1,5): F*/
  1502. 71, /* N(1,6): G*/
  1503. 208, /* N(3,6): Eth*/
  1504. 72, /* N(1,7): H*/
  1505. 73, /* N(1,8): I*/
  1506. 74, /* N(1,9): J*/
  1507. 203, /* N(9,9): Edieresis*/
  1508. 75, /* N(1,10): K*/
  1509. 197, /* N(5,10): Aring*/
  1510. 76, /* N(1,11): L*/
  1511. 194, /* N(11,11): Acircumflex*/
  1512. 77, /* N(1,12): M*/
  1513. 192, /* N(6,12): Agrave*/
  1514. 78, /* N(1,13): N*/
  1515. 79, /* N(1,14): O*/
  1516. 80, /* N(1,15): P*/
  1517. 81, /* N(1,16): Q*/
  1518. 82, /* N(1,17): R*/
  1519. 83, /* N(1,18): S*/
  1520. 207, /* N(9,18): Idieresis*/
  1521. 84, /* N(1,19): T*/
  1522. 85, /* N(1,20): U*/
  1523. 86, /* N(1,21): V*/
  1524. 87, /* N(1,22): W*/
  1525. 88, /* N(1,23): X*/
  1526. 89, /* N(1,24): Y*/
  1527. 195, /* N(6,24): Atilde*/
  1528. 90, /* N(1,25): Z*/
  1529. 97, /* N(1,26): a*/
  1530. 98, /* N(1,27): b*/
  1531. 214, /* N(9,27): Odieresis*/
  1532. 99, /* N(1,28): c*/
  1533. 100, /* N(1,29): d*/
  1534. 101, /* N(1,30): e*/
  1535. 102, /* N(1,31): f*/
  1536. 103, /* N(1,32): g*/
  1537. 230, /* N(2,32): ae*/
  1538. 104, /* N(1,33): h*/
  1539. 105, /* N(1,34): i*/
  1540. 64, /* N(2,34): at*/
  1541. 106, /* N(1,35): j*/
  1542. 107, /* N(1,36): k*/
  1543. 108, /* N(1,37): l*/
  1544. 109, /* N(1,38): m*/
  1545. 110, /* N(1,39): n*/
  1546. 111, /* N(1,40): o*/
  1547. 112, /* N(1,41): p*/
  1548. 113, /* N(1,42): q*/
  1549. 181, /* N(2,42): mu*/
  1550. 114, /* N(1,43): r*/
  1551. 115, /* N(1,44): s*/
  1552. 116, /* N(1,45): t*/
  1553. 222, /* N(5,45): Thorn*/
  1554. 220, /* N(9,45): Udieresis*/
  1555. 117, /* N(1,46): u*/
  1556. 118, /* N(1,47): v*/
  1557. 119, /* N(1,48): w*/
  1558. 42, /* N(8,48): asterisk*/
  1559. 120, /* N(1,49): x*/
  1560. 121, /* N(1,50): y*/
  1561. 122, /* N(1,51): z*/
  1562. 146, /* N(5,55): acute*/
  1563. 180, /* N(5,55): acute*/
  1564. 202, /* N(11,55): Ecircumflex*/
  1565. 231, /* N(8,56): ccedilla*/
  1566. 228, /* N(9,63): adieresis*/
  1567. 164, /* N(8,64): currency*/
  1568. 201, /* N(6,72): Eacute*/
  1569. 168, /* N(8,72): dieresis*/
  1570. 152, /* N(8,72): dieresis*/
  1571. 38, /* N(9,72): ampersand*/
  1572. 229, /* N(5,75): aring*/
  1573. 150, /* N(5,80): breve*/
  1574. 144, /* N(8,80): dotlessi*/
  1575. 200, /* N(6,84): Egrave*/
  1576. 159, /* N(5,85): caron*/
  1577. 206, /* N(11,88): Icircumflex*/
  1578. 58, /* N(5,90): colon*/
  1579. 44, /* N(5,95): comma*/
  1580. 56, /* N(5,105): eight*/
  1581. 61, /* N(5,110): equal*/
  1582. 205, /* N(6,120): Iacute*/
  1583. 145, /* N(5,125): grave*/
  1584. 204, /* N(6,126): Igrave*/
  1585. 126, /* N(10,130): asciitilde*/
  1586. 184, /* N(7,133): cedilla*/
  1587. 155, /* N(7,133): cedilla*/
  1588. 92, /* N(9,135): backslash*/
  1589. 215, /* N(8,136): multiply*/
  1590. 45, /* N(5,140): minus*/
  1591. 125, /* N(10,140): braceright*/
  1592. 123, /* N(9,144): braceleft*/
  1593. 55, /* N(5,150): seven*/
  1594. 166, /* N(9,153): brokenbar*/
  1595. 212, /* N(11,154): Ocircumflex*/
  1596. 47, /* N(5,160): slash*/
  1597. 63, /* N(8,160): question*/
  1598. 147, /* N(10,160): circumflex*/
  1599. 160, /* N(5,165): space*/
  1600. 32, /* N(5,165): space*/
  1601. 34, /* N(8,168): quotedbl*/
  1602. 254, /* N(5,180): thorn*/
  1603. 169, /* N(9,180): copyright*/
  1604. 161, /* N(10,180): exclamdown*/
  1605. 163, /* N(8,184): sterling*/
  1606. 51, /* N(5,185): three*/
  1607. 62, /* N(7,189): greater*/
  1608. 148, /* N(5,190): tilde*/
  1609. 93, /* N(12,192): bracketright*/
  1610. 151, /* N(9,198): dotaccent*/
  1611. 223, /* N(10,200): germandbls*/
  1612. 209, /* N(6,204): Ntilde*/
  1613. 171, /* N(13,208): guillemotleft*/
  1614. 211, /* N(6,210): Oacute*/
  1615. 210, /* N(6,216): Ograve*/
  1616. 235, /* N(9,216): edieresis*/
  1617. 216, /* N(6,222): Oslash*/
  1618. 219, /* N(11,231): Ucircumflex*/
  1619. 213, /* N(6,234): Otilde*/
  1620. 239, /* N(9,234): idieresis*/
  1621. 189, /* N(7,238): onehalf*/
  1622. 187, /* N(14,238): guillemotright*/
  1623. 37, /* N(7,245): percent*/
  1624. 172, /* N(10,250): logicalnot*/
  1625. 124, /* N(3,255): bar*/
  1626. 240, /* N(3,264): eth*/
  1627. 167, /* N(7,266): section*/
  1628. 35, /* N(10,270): numbersign*/
  1629. 226, /* N(11,275): acircumflex*/
  1630. 49, /* N(3,276): one*/
  1631. 188, /* N(10,280): onequarter*/
  1632. 54, /* N(3,288): six*/
  1633. 41, /* N(10,290): parenright*/
  1634. 50, /* N(3,294): two*/
  1635. 165, /* N(3,297): yen*/
  1636. 218, /* N(6,300): Uacute*/
  1637. 39, /* N(10,300): quoteright*/
  1638. 217, /* N(6,306): Ugrave*/
  1639. 94, /* N(11,308): asciicircum*/
  1640. 183, /* N(14,308): periodcentered*/
  1641. 174, /* N(10,310): registered*/
  1642. 246, /* N(9,315): odieresis*/
  1643. 95, /* N(10,320): underscore*/
  1644. 221, /* N(6,336): Yacute*/
  1645. 157, /* N(12,336): hungarumlaut*/
  1646. 91, /* N(11,341): bracketleft*/
  1647. 182, /* N(9,360): paragraph*/
  1648. 234, /* N(11,363): ecircumflex*/
  1649. 190, /* N(13,364): threequarters*/
  1650. 225, /* N(6,366): aacute*/
  1651. 40, /* N(9,369): parenleft*/
  1652. 179, /* N(13,377): threesuperior*/
  1653. 224, /* N(6,378): agrave*/
  1654. 177, /* N(9,378): plusminus*/
  1655. 227, /* N(6,384): atilde*/
  1656. 96, /* N(9,387): quoteleft*/
  1657. 59, /* N(9,414): semicolon*/
  1658. 238, /* N(11,418): icircumflex*/
  1659. 162, /* N(4,424): cent*/
  1660. 176, /* N(6,426): degree*/
  1661. 244, /* N(11,429): ocircumflex*/
  1662. 53, /* N(4,432): five*/
  1663. 247, /* N(6,432): divide*/
  1664. 186, /* N(12,432): ordmasculine*/
  1665. 52, /* N(4,436): four*/
  1666. 36, /* N(6,438): dollar*/
  1667. 60, /* N(4,444): less*/
  1668. 233, /* N(6,444): eacute*/
  1669. 57, /* N(4,448): nine*/
  1670. 43, /* N(4,456): plus*/
  1671. 232, /* N(6,456): egrave*/
  1672. 154, /* N(4,460): ring*/
  1673. 185, /* N(11,462): onesuperior*/
  1674. 48, /* N(4,464): zero*/
  1675. 170, /* N(11,473): ordfeminine*/
  1676. 33, /* N(6,474): exclam*/
  1677. 252, /* N(9,477): udieresis*/
  1678. 173, /* N(6,492): hyphen*/
  1679. 255, /* N(9,495): ydieresis*/
  1680. 237, /* N(6,498): iacute*/
  1681. 236, /* N(6,504): igrave*/
  1682. 191, /* N(12,504): questiondown*/
  1683. 175, /* N(6,534): macron*/
  1684. 149, /* N(6,534): macron*/
  1685. 241, /* N(6,558): ntilde*/
  1686. 243, /* N(6,564): oacute*/
  1687. 158, /* N(6,570): ogonek*/
  1688. 242, /* N(6,576): ograve*/
  1689. 248, /* N(6,588): oslash*/
  1690. 245, /* N(6,594): otilde*/
  1691. 46, /* N(6,600): period*/
  1692. 178, /* N(11,605): twosuperior*/
  1693. 251, /* N(11,616): ucircumflex*/
  1694. 250, /* N(6,660): uacute*/
  1695. 249, /* N(6,666): ugrave*/
  1696. 253, /* N(6,672): yacute*/
  1697. 0};
  1698. /* SymbolEncoding */
  1699. static const ushort gs_c_known_encoding_2[] = {
  1700. N(7,0), /*.notdef*/
  1701. N(7,0), /*.notdef*/
  1702. N(7,0), /*.notdef*/
  1703. N(7,0), /*.notdef*/
  1704. N(7,0), /*.notdef*/
  1705. N(7,0), /*.notdef*/
  1706. N(7,0), /*.notdef*/
  1707. N(7,0), /*.notdef*/
  1708. N(7,0), /*.notdef*/
  1709. N(7,0), /*.notdef*/
  1710. N(7,0), /*.notdef*/
  1711. N(7,0), /*.notdef*/
  1712. N(7,0), /*.notdef*/
  1713. N(7,0), /*.notdef*/
  1714. N(7,0), /*.notdef*/
  1715. N(7,0), /*.notdef*/
  1716. N(7,0), /*.notdef*/
  1717. N(7,0), /*.notdef*/
  1718. N(7,0), /*.notdef*/
  1719. N(7,0), /*.notdef*/
  1720. N(7,0), /*.notdef*/
  1721. N(7,0), /*.notdef*/
  1722. N(7,0), /*.notdef*/
  1723. N(7,0), /*.notdef*/
  1724. N(7,0), /*.notdef*/
  1725. N(7,0), /*.notdef*/
  1726. N(7,0), /*.notdef*/
  1727. N(7,0), /*.notdef*/
  1728. N(7,0), /*.notdef*/
  1729. N(7,0), /*.notdef*/
  1730. N(7,0), /*.notdef*/
  1731. N(7,0), /*.notdef*/
  1732. N(5,165), /*space*/
  1733. N(6,474), /*exclam*/
  1734. N(9,486), /*universal*/
  1735. N(10,270), /*numbersign*/
  1736. N(11,396), /*existential*/
  1737. N(7,245), /*percent*/
  1738. N(9,72), /*ampersand*/
  1739. N(8,192), /*suchthat*/
  1740. N(9,369), /*parenleft*/
  1741. N(10,290), /*parenright*/
  1742. N(12,144), /*asteriskmath*/
  1743. N(4,456), /*plus*/
  1744. N(5,95), /*comma*/
  1745. N(5,140), /*minus*/
  1746. N(6,600), /*period*/
  1747. N(5,160), /*slash*/
  1748. N(4,464), /*zero*/
  1749. N(3,276), /*one*/
  1750. N(3,294), /*two*/
  1751. N(5,185), /*three*/
  1752. N(4,436), /*four*/
  1753. N(4,432), /*five*/
  1754. N(3,288), /*six*/
  1755. N(5,150), /*seven*/
  1756. N(5,105), /*eight*/
  1757. N(4,448), /*nine*/
  1758. N(5,90), /*colon*/
  1759. N(9,414), /*semicolon*/
  1760. N(4,444), /*less*/
  1761. N(5,110), /*equal*/
  1762. N(7,189), /*greater*/
  1763. N(8,160), /*question*/
  1764. N(9,171), /*congruent*/
  1765. N(5,5), /*Alpha*/
  1766. N(4,0), /*Beta*/
  1767. N(3,0), /*Chi*/
  1768. N(5,15), /*Delta*/
  1769. N(7,42), /*Epsilon*/
  1770. N(3,12), /*Phi*/
  1771. N(5,20), /*Gamma*/
  1772. N(3,3), /*Eta*/
  1773. N(4,8), /*Iota*/
  1774. N(6,654), /*theta1*/
  1775. N(5,25), /*Kappa*/
  1776. N(6,156), /*Lambda*/
  1777. N(2,4), /*Mu*/
  1778. N(2,6), /*Nu*/
  1779. N(7,77), /*Omicron*/
  1780. N(2,10), /*Pi*/
  1781. N(5,40), /*Theta*/
  1782. N(3,18), /*Rho*/
  1783. N(5,35), /*Sigma*/
  1784. N(3,21), /*Tau*/
  1785. N(7,98), /*Upsilon*/
  1786. N(6,642), /*sigma1*/
  1787. N(5,30), /*Omega*/
  1788. N(2,12), /*Xi*/
  1789. N(3,15), /*Psi*/
  1790. N(4,12), /*Zeta*/
  1791. N(11,341), /*bracketleft*/
  1792. N(9,441), /*therefore*/
  1793. N(12,192), /*bracketright*/
  1794. N(13,247), /*perpendicular*/
  1795. N(10,320), /*underscore*/
  1796. N(9,396), /*radicalex*/
  1797. N(5,65), /*alpha*/
  1798. N(4,420), /*beta*/
  1799. N(3,258), /*chi*/
  1800. N(5,100), /*delta*/
  1801. N(7,182), /*epsilon*/
  1802. N(3,279), /*phi*/
  1803. N(5,120), /*gamma*/
  1804. N(3,261), /*eta*/
  1805. N(4,440), /*iota*/
  1806. N(4,452), /*phi1*/
  1807. N(5,135), /*kappa*/
  1808. N(6,516), /*lambda*/
  1809. N(2,42), /*mu*/
  1810. N(2,44), /*nu*/
  1811. N(7,231), /*omicron*/
  1812. N(2,48), /*pi*/
  1813. N(5,175), /*theta*/
  1814. N(3,285), /*rho*/
  1815. N(5,155), /*sigma*/
  1816. N(3,291), /*tau*/
  1817. N(7,294), /*upsilon*/
  1818. N(6,582), /*omega1*/
  1819. N(5,145), /*omega*/
  1820. N(2,50), /*xi*/
  1821. N(3,282), /*psi*/
  1822. N(4,468), /*zeta*/
  1823. N(9,144), /*braceleft*/
  1824. N(3,255), /*bar*/
  1825. N(10,140), /*braceright*/
  1826. N(7,273), /*similar*/
  1827. N(7,0), /*.notdef*/
  1828. N(7,0), /*.notdef*/
  1829. N(7,0), /*.notdef*/
  1830. N(7,0), /*.notdef*/
  1831. N(7,0), /*.notdef*/
  1832. N(7,0), /*.notdef*/
  1833. N(7,0), /*.notdef*/
  1834. N(7,0), /*.notdef*/
  1835. N(7,0), /*.notdef*/
  1836. N(7,0), /*.notdef*/
  1837. N(7,0), /*.notdef*/
  1838. N(7,0), /*.notdef*/
  1839. N(7,0), /*.notdef*/
  1840. N(7,0), /*.notdef*/
  1841. N(7,0), /*.notdef*/
  1842. N(7,0), /*.notdef*/
  1843. N(7,0), /*.notdef*/
  1844. N(7,0), /*.notdef*/
  1845. N(7,0), /*.notdef*/
  1846. N(7,0), /*.notdef*/
  1847. N(7,0), /*.notdef*/
  1848. N(7,0), /*.notdef*/
  1849. N(7,0), /*.notdef*/
  1850. N(7,0), /*.notdef*/
  1851. N(7,0), /*.notdef*/
  1852. N(7,0), /*.notdef*/
  1853. N(7,0), /*.notdef*/
  1854. N(7,0), /*.notdef*/
  1855. N(7,0), /*.notdef*/
  1856. N(7,0), /*.notdef*/
  1857. N(7,0), /*.notdef*/
  1858. N(7,0), /*.notdef*/
  1859. N(7,0), /*.notdef*/
  1860. N(4,4), /*Euro*/
  1861. N(8,40), /*Upsilon1*/
  1862. N(6,540), /*minute*/
  1863. N(9,261), /*lessequal*/
  1864. N(8,104), /*fraction*/
  1865. N(8,120), /*infinity*/
  1866. N(6,480), /*florin*/
  1867. N(4,428), /*club*/
  1868. N(7,140), /*diamond*/
  1869. N(5,130), /*heart*/
  1870. N(5,170), /*spade*/
  1871. N(9,99), /*arrowboth*/
  1872. N(9,117), /*arrowleft*/
  1873. N(7,119), /*arrowup*/
  1874. N(10,120), /*arrowright*/
  1875. N(9,108), /*arrowdown*/
  1876. N(6,426), /*degree*/
  1877. N(9,378), /*plusminus*/
  1878. N(6,636), /*second*/
  1879. N(12,324), /*greaterequal*/
  1880. N(8,136), /*multiply*/
  1881. N(12,492), /*proportional*/
  1882. N(11,517), /*partialdiff*/
  1883. N(6,390), /*bullet*/
  1884. N(6,432), /*divide*/
  1885. N(8,144), /*notequal*/
  1886. N(11,374), /*equivalence*/
  1887. N(11,286), /*approxequal*/
  1888. N(8,88), /*ellipsis*/
  1889. N(11,297), /*arrowvertex*/
  1890. N(12,132), /*arrowhorizex*/
  1891. N(14,154), /*carriagereturn*/
  1892. N(5,60), /*aleph*/
  1893. N(8,16), /*Ifraktur*/
  1894. N(8,24), /*Rfraktur*/
  1895. N(11,627), /*weierstrass*/
  1896. N(14,168), /*circlemultiply*/
  1897. N(10,150), /*circleplus*/
  1898. N(8,96), /*emptyset*/
  1899. N(12,348), /*intersection*/
  1900. N(5,195), /*union*/
  1901. N(14,350), /*propersuperset*/
  1902. N(14,378), /*reflexsuperset*/
  1903. N(9,297), /*notsubset*/
  1904. N(12,480), /*propersubset*/
  1905. N(12,552), /*reflexsubset*/
  1906. N(7,161), /*element*/
  1907. N(10,260), /*notelement*/
  1908. N(5,70), /*angle*/
  1909. N(8,112), /*gradient*/
  1910. N(13,286), /*registerserif*/
  1911. N(14,182), /*copyrightserif*/
  1912. N(14,392), /*trademarkserif*/
  1913. N(7,252), /*product*/
  1914. N(7,259), /*radical*/
  1915. N(7,154), /*dotmath*/
  1916. N(10,250), /*logicalnot*/
  1917. N(10,240), /*logicaland*/
  1918. N(9,270), /*logicalor*/
  1919. N(12,96), /*arrowdblboth*/
  1920. N(12,120), /*arrowdblleft*/
  1921. N(10,110), /*arrowdblup*/
  1922. N(13,52), /*arrowdblright*/
  1923. N(12,108), /*arrowdbldown*/
  1924. N(7,210), /*lozenge*/
  1925. N(9,81), /*angleleft*/
  1926. N(12,564), /*registersans*/
  1927. N(13,156), /*copyrightsans*/
  1928. N(13,390), /*trademarksans*/
  1929. N(9,432), /*summation*/
  1930. N(11,506), /*parenlefttp*/
  1931. N(11,495), /*parenleftex*/
  1932. N(11,484), /*parenleftbt*/
  1933. N(13,104), /*bracketlefttp*/
  1934. N(13,91), /*bracketleftex*/
  1935. N(13,78), /*bracketleftbt*/
  1936. N(11,330), /*bracelefttp*/
  1937. N(12,156), /*braceleftmid*/
  1938. N(11,319), /*braceleftbt*/
  1939. N(7,126), /*braceex*/
  1940. N(7,0), /*.notdef*/
  1941. N(10,100), /*angleright*/
  1942. N(8,128), /*integral*/
  1943. N(10,230), /*integraltp*/
  1944. N(10,220), /*integralex*/
  1945. N(10,210), /*integralbt*/
  1946. N(12,468), /*parenrighttp*/
  1947. N(12,456), /*parenrightex*/
  1948. N(12,444), /*parenrightbt*/
  1949. N(14,140), /*bracketrighttp*/
  1950. N(14,126), /*bracketrightex*/
  1951. N(14,112), /*bracketrightbt*/
  1952. N(12,180), /*bracerighttp*/
  1953. N(13,65), /*bracerightmid*/
  1954. N(12,168), /*bracerightbt*/
  1955. N(7,0), /*.notdef*/
  1956. 0};
  1957. static const ushort gs_c_known_encoding_reverse_2[] = {
  1958. 67, /* N(3,0): Chi*/
  1959. 66, /* N(4,0): Beta*/
  1960. 72, /* N(3,3): Eta*/
  1961. 77, /* N(2,4): Mu*/
  1962. 160, /* N(4,4): Euro*/
  1963. 65, /* N(5,5): Alpha*/
  1964. 78, /* N(2,6): Nu*/
  1965. 73, /* N(4,8): Iota*/
  1966. 80, /* N(2,10): Pi*/
  1967. 88, /* N(2,12): Xi*/
  1968. 70, /* N(3,12): Phi*/
  1969. 90, /* N(4,12): Zeta*/
  1970. 89, /* N(3,15): Psi*/
  1971. 68, /* N(5,15): Delta*/
  1972. 193, /* N(8,16): Ifraktur*/
  1973. 82, /* N(3,18): Rho*/
  1974. 71, /* N(5,20): Gamma*/
  1975. 84, /* N(3,21): Tau*/
  1976. 194, /* N(8,24): Rfraktur*/
  1977. 75, /* N(5,25): Kappa*/
  1978. 87, /* N(5,30): Omega*/
  1979. 83, /* N(5,35): Sigma*/
  1980. 81, /* N(5,40): Theta*/
  1981. 161, /* N(8,40): Upsilon1*/
  1982. 109, /* N(2,42): mu*/
  1983. 69, /* N(7,42): Epsilon*/
  1984. 110, /* N(2,44): nu*/
  1985. 112, /* N(2,48): pi*/
  1986. 120, /* N(2,50): xi*/
  1987. 222, /* N(13,52): arrowdblright*/
  1988. 192, /* N(5,60): aleph*/
  1989. 97, /* N(5,65): alpha*/
  1990. 253, /* N(13,65): bracerightmid*/
  1991. 208, /* N(5,70): angle*/
  1992. 38, /* N(9,72): ampersand*/
  1993. 79, /* N(7,77): Omicron*/
  1994. 235, /* N(13,78): bracketleftbt*/
  1995. 225, /* N(9,81): angleleft*/
  1996. 188, /* N(8,88): ellipsis*/
  1997. 58, /* N(5,90): colon*/
  1998. 234, /* N(13,91): bracketleftex*/
  1999. 44, /* N(5,95): comma*/
  2000. 198, /* N(8,96): emptyset*/
  2001. 219, /* N(12,96): arrowdblboth*/
  2002. 85, /* N(7,98): Upsilon*/
  2003. 171, /* N(9,99): arrowboth*/
  2004. 100, /* N(5,100): delta*/
  2005. 241, /* N(10,100): angleright*/
  2006. 164, /* N(8,104): fraction*/
  2007. 233, /* N(13,104): bracketlefttp*/
  2008. 56, /* N(5,105): eight*/
  2009. 175, /* N(9,108): arrowdown*/
  2010. 223, /* N(12,108): arrowdbldown*/
  2011. 61, /* N(5,110): equal*/
  2012. 221, /* N(10,110): arrowdblup*/
  2013. 209, /* N(8,112): gradient*/
  2014. 251, /* N(14,112): bracketrightbt*/
  2015. 172, /* N(9,117): arrowleft*/
  2016. 173, /* N(7,119): arrowup*/
  2017. 103, /* N(5,120): gamma*/
  2018. 165, /* N(8,120): infinity*/
  2019. 174, /* N(10,120): arrowright*/
  2020. 220, /* N(12,120): arrowdblleft*/
  2021. 239, /* N(7,126): braceex*/
  2022. 250, /* N(14,126): bracketrightex*/
  2023. 242, /* N(8,128): integral*/
  2024. 169, /* N(5,130): heart*/
  2025. 190, /* N(12,132): arrowhorizex*/
  2026. 107, /* N(5,135): kappa*/
  2027. 180, /* N(8,136): multiply*/
  2028. 45, /* N(5,140): minus*/
  2029. 168, /* N(7,140): diamond*/
  2030. 125, /* N(10,140): braceright*/
  2031. 249, /* N(14,140): bracketrighttp*/
  2032. 185, /* N(8,144): notequal*/
  2033. 123, /* N(9,144): braceleft*/
  2034. 42, /* N(12,144): asteriskmath*/
  2035. 119, /* N(5,145): omega*/
  2036. 55, /* N(5,150): seven*/
  2037. 197, /* N(10,150): circleplus*/
  2038. 215, /* N(7,154): dotmath*/
  2039. 191, /* N(14,154): carriagereturn*/
  2040. 115, /* N(5,155): sigma*/
  2041. 76, /* N(6,156): Lambda*/
  2042. 237, /* N(12,156): braceleftmid*/
  2043. 227, /* N(13,156): copyrightsans*/
  2044. 47, /* N(5,160): slash*/
  2045. 63, /* N(8,160): question*/
  2046. 206, /* N(7,161): element*/
  2047. 32, /* N(5,165): space*/
  2048. 254, /* N(12,168): bracerightbt*/
  2049. 196, /* N(14,168): circlemultiply*/
  2050. 170, /* N(5,170): spade*/
  2051. 64, /* N(9,171): congruent*/
  2052. 113, /* N(5,175): theta*/
  2053. 252, /* N(12,180): bracerighttp*/
  2054. 101, /* N(7,182): epsilon*/
  2055. 211, /* N(14,182): copyrightserif*/
  2056. 51, /* N(5,185): three*/
  2057. 62, /* N(7,189): greater*/
  2058. 39, /* N(8,192): suchthat*/
  2059. 93, /* N(12,192): bracketright*/
  2060. 200, /* N(5,195): union*/
  2061. 224, /* N(7,210): lozenge*/
  2062. 245, /* N(10,210): integralbt*/
  2063. 244, /* N(10,220): integralex*/
  2064. 243, /* N(10,230): integraltp*/
  2065. 111, /* N(7,231): omicron*/
  2066. 217, /* N(10,240): logicaland*/
  2067. 37, /* N(7,245): percent*/
  2068. 94, /* N(13,247): perpendicular*/
  2069. 216, /* N(10,250): logicalnot*/
  2070. 213, /* N(7,252): product*/
  2071. 124, /* N(3,255): bar*/
  2072. 99, /* N(3,258): chi*/
  2073. 214, /* N(7,259): radical*/
  2074. 207, /* N(10,260): notelement*/
  2075. 104, /* N(3,261): eta*/
  2076. 163, /* N(9,261): lessequal*/
  2077. 218, /* N(9,270): logicalor*/
  2078. 35, /* N(10,270): numbersign*/
  2079. 126, /* N(7,273): similar*/
  2080. 49, /* N(3,276): one*/
  2081. 102, /* N(3,279): phi*/
  2082. 121, /* N(3,282): psi*/
  2083. 114, /* N(3,285): rho*/
  2084. 187, /* N(11,286): approxequal*/
  2085. 210, /* N(13,286): registerserif*/
  2086. 54, /* N(3,288): six*/
  2087. 41, /* N(10,290): parenright*/
  2088. 116, /* N(3,291): tau*/
  2089. 50, /* N(3,294): two*/
  2090. 117, /* N(7,294): upsilon*/
  2091. 203, /* N(9,297): notsubset*/
  2092. 189, /* N(11,297): arrowvertex*/
  2093. 238, /* N(11,319): braceleftbt*/
  2094. 95, /* N(10,320): underscore*/
  2095. 179, /* N(12,324): greaterequal*/
  2096. 236, /* N(11,330): bracelefttp*/
  2097. 91, /* N(11,341): bracketleft*/
  2098. 199, /* N(12,348): intersection*/
  2099. 201, /* N(14,350): propersuperset*/
  2100. 40, /* N(9,369): parenleft*/
  2101. 186, /* N(11,374): equivalence*/
  2102. 177, /* N(9,378): plusminus*/
  2103. 202, /* N(14,378): reflexsuperset*/
  2104. 183, /* N(6,390): bullet*/
  2105. 228, /* N(13,390): trademarksans*/
  2106. 212, /* N(14,392): trademarkserif*/
  2107. 96, /* N(9,396): radicalex*/
  2108. 36, /* N(11,396): existential*/
  2109. 59, /* N(9,414): semicolon*/
  2110. 98, /* N(4,420): beta*/
  2111. 176, /* N(6,426): degree*/
  2112. 167, /* N(4,428): club*/
  2113. 53, /* N(4,432): five*/
  2114. 184, /* N(6,432): divide*/
  2115. 229, /* N(9,432): summation*/
  2116. 52, /* N(4,436): four*/
  2117. 105, /* N(4,440): iota*/
  2118. 92, /* N(9,441): therefore*/
  2119. 60, /* N(4,444): less*/
  2120. 248, /* N(12,444): parenrightbt*/
  2121. 57, /* N(4,448): nine*/
  2122. 106, /* N(4,452): phi1*/
  2123. 43, /* N(4,456): plus*/
  2124. 247, /* N(12,456): parenrightex*/
  2125. 48, /* N(4,464): zero*/
  2126. 122, /* N(4,468): zeta*/
  2127. 246, /* N(12,468): parenrighttp*/
  2128. 33, /* N(6,474): exclam*/
  2129. 166, /* N(6,480): florin*/
  2130. 204, /* N(12,480): propersubset*/
  2131. 232, /* N(11,484): parenleftbt*/
  2132. 34, /* N(9,486): universal*/
  2133. 181, /* N(12,492): proportional*/
  2134. 231, /* N(11,495): parenleftex*/
  2135. 230, /* N(11,506): parenlefttp*/
  2136. 108, /* N(6,516): lambda*/
  2137. 182, /* N(11,517): partialdiff*/
  2138. 162, /* N(6,540): minute*/
  2139. 205, /* N(12,552): reflexsubset*/
  2140. 226, /* N(12,564): registersans*/
  2141. 118, /* N(6,582): omega1*/
  2142. 46, /* N(6,600): period*/
  2143. 195, /* N(11,627): weierstrass*/
  2144. 178, /* N(6,636): second*/
  2145. 86, /* N(6,642): sigma1*/
  2146. 74, /* N(6,654): theta1*/
  2147. 0};
  2148. /* DingbatsEncoding */
  2149. static const ushort gs_c_known_encoding_3[] = {
  2150. N(7,0), /*.notdef*/
  2151. N(7,0), /*.notdef*/
  2152. N(7,0), /*.notdef*/
  2153. N(7,0), /*.notdef*/
  2154. N(7,0), /*.notdef*/
  2155. N(7,0), /*.notdef*/
  2156. N(7,0), /*.notdef*/
  2157. N(7,0), /*.notdef*/
  2158. N(7,0), /*.notdef*/
  2159. N(7,0), /*.notdef*/
  2160. N(7,0), /*.notdef*/
  2161. N(7,0), /*.notdef*/
  2162. N(7,0), /*.notdef*/
  2163. N(7,0), /*.notdef*/
  2164. N(7,0), /*.notdef*/
  2165. N(7,0), /*.notdef*/
  2166. N(7,0), /*.notdef*/
  2167. N(7,0), /*.notdef*/
  2168. N(7,0), /*.notdef*/
  2169. N(7,0), /*.notdef*/
  2170. N(7,0), /*.notdef*/
  2171. N(7,0), /*.notdef*/
  2172. N(7,0), /*.notdef*/
  2173. N(7,0), /*.notdef*/
  2174. N(7,0), /*.notdef*/
  2175. N(7,0), /*.notdef*/
  2176. N(7,0), /*.notdef*/
  2177. N(7,0), /*.notdef*/
  2178. N(7,0), /*.notdef*/
  2179. N(7,0), /*.notdef*/
  2180. N(7,0), /*.notdef*/
  2181. N(7,0), /*.notdef*/
  2182. N(5,165), /*space*/
  2183. N(2,14), /*a1*/
  2184. N(2,16), /*a2*/
  2185. N(4,408), /*a202*/
  2186. N(2,18), /*a3*/
  2187. N(2,20), /*a4*/
  2188. N(2,22), /*a5*/
  2189. N(4,76), /*a119*/
  2190. N(4,72), /*a118*/
  2191. N(4,68), /*a117*/
  2192. N(3,27), /*a11*/
  2193. N(3,30), /*a12*/
  2194. N(3,33), /*a13*/
  2195. N(3,36), /*a14*/
  2196. N(3,39), /*a15*/
  2197. N(3,42), /*a16*/
  2198. N(4,36), /*a105*/
  2199. N(3,45), /*a17*/
  2200. N(3,48), /*a18*/
  2201. N(3,51), /*a19*/
  2202. N(3,54), /*a20*/
  2203. N(3,57), /*a21*/
  2204. N(3,60), /*a22*/
  2205. N(3,63), /*a23*/
  2206. N(3,66), /*a24*/
  2207. N(3,69), /*a25*/
  2208. N(3,72), /*a26*/
  2209. N(3,75), /*a27*/
  2210. N(3,78), /*a28*/
  2211. N(2,24), /*a6*/
  2212. N(2,26), /*a7*/
  2213. N(2,28), /*a8*/
  2214. N(2,30), /*a9*/
  2215. N(3,24), /*a10*/
  2216. N(3,81), /*a29*/
  2217. N(3,84), /*a30*/
  2218. N(3,87), /*a31*/
  2219. N(3,90), /*a32*/
  2220. N(3,93), /*a33*/
  2221. N(3,96), /*a34*/
  2222. N(3,99), /*a35*/
  2223. N(3,102), /*a36*/
  2224. N(3,105), /*a37*/
  2225. N(3,108), /*a38*/
  2226. N(3,111), /*a39*/
  2227. N(3,114), /*a40*/
  2228. N(3,117), /*a41*/
  2229. N(3,120), /*a42*/
  2230. N(3,123), /*a43*/
  2231. N(3,126), /*a44*/
  2232. N(3,129), /*a45*/
  2233. N(3,132), /*a46*/
  2234. N(3,135), /*a47*/
  2235. N(3,138), /*a48*/
  2236. N(3,141), /*a49*/
  2237. N(3,144), /*a50*/
  2238. N(3,147), /*a51*/
  2239. N(3,150), /*a52*/
  2240. N(3,153), /*a53*/
  2241. N(3,156), /*a54*/
  2242. N(3,159), /*a55*/
  2243. N(3,162), /*a56*/
  2244. N(3,165), /*a57*/
  2245. N(3,168), /*a58*/
  2246. N(3,171), /*a59*/
  2247. N(3,174), /*a60*/
  2248. N(3,177), /*a61*/
  2249. N(3,180), /*a62*/
  2250. N(3,183), /*a63*/
  2251. N(3,186), /*a64*/
  2252. N(3,189), /*a65*/
  2253. N(3,192), /*a66*/
  2254. N(3,195), /*a67*/
  2255. N(3,198), /*a68*/
  2256. N(3,201), /*a69*/
  2257. N(3,204), /*a70*/
  2258. N(3,207), /*a71*/
  2259. N(3,210), /*a72*/
  2260. N(3,213), /*a73*/
  2261. N(3,216), /*a74*/
  2262. N(4,412), /*a203*/
  2263. N(3,219), /*a75*/
  2264. N(4,416), /*a204*/
  2265. N(3,222), /*a76*/
  2266. N(3,225), /*a77*/
  2267. N(3,228), /*a78*/
  2268. N(3,231), /*a79*/
  2269. N(3,234), /*a81*/
  2270. N(3,237), /*a82*/
  2271. N(3,240), /*a83*/
  2272. N(3,243), /*a84*/
  2273. N(3,246), /*a97*/
  2274. N(3,249), /*a98*/
  2275. N(3,252), /*a99*/
  2276. N(4,16), /*a100*/
  2277. N(7,0), /*.notdef*/
  2278. N(7,0), /*.notdef*/
  2279. N(7,0), /*.notdef*/
  2280. N(7,0), /*.notdef*/
  2281. N(7,0), /*.notdef*/
  2282. N(7,0), /*.notdef*/
  2283. N(7,0), /*.notdef*/
  2284. N(7,0), /*.notdef*/
  2285. N(7,0), /*.notdef*/
  2286. N(7,0), /*.notdef*/
  2287. N(7,0), /*.notdef*/
  2288. N(7,0), /*.notdef*/
  2289. N(7,0), /*.notdef*/
  2290. N(7,0), /*.notdef*/
  2291. N(7,0), /*.notdef*/
  2292. N(7,0), /*.notdef*/
  2293. N(7,0), /*.notdef*/
  2294. N(7,0), /*.notdef*/
  2295. N(7,0), /*.notdef*/
  2296. N(7,0), /*.notdef*/
  2297. N(7,0), /*.notdef*/
  2298. N(7,0), /*.notdef*/
  2299. N(7,0), /*.notdef*/
  2300. N(7,0), /*.notdef*/
  2301. N(7,0), /*.notdef*/
  2302. N(7,0), /*.notdef*/
  2303. N(7,0), /*.notdef*/
  2304. N(7,0), /*.notdef*/
  2305. N(7,0), /*.notdef*/
  2306. N(7,0), /*.notdef*/
  2307. N(7,0), /*.notdef*/
  2308. N(7,0), /*.notdef*/
  2309. N(7,0), /*.notdef*/
  2310. N(7,0), /*.notdef*/
  2311. N(4,20), /*a101*/
  2312. N(4,24), /*a102*/
  2313. N(4,28), /*a103*/
  2314. N(4,32), /*a104*/
  2315. N(4,40), /*a106*/
  2316. N(4,44), /*a107*/
  2317. N(4,48), /*a108*/
  2318. N(4,64), /*a112*/
  2319. N(4,60), /*a111*/
  2320. N(4,56), /*a110*/
  2321. N(4,52), /*a109*/
  2322. N(4,80), /*a120*/
  2323. N(4,84), /*a121*/
  2324. N(4,88), /*a122*/
  2325. N(4,92), /*a123*/
  2326. N(4,96), /*a124*/
  2327. N(4,100), /*a125*/
  2328. N(4,104), /*a126*/
  2329. N(4,108), /*a127*/
  2330. N(4,112), /*a128*/
  2331. N(4,116), /*a129*/
  2332. N(4,120), /*a130*/
  2333. N(4,124), /*a131*/
  2334. N(4,128), /*a132*/
  2335. N(4,132), /*a133*/
  2336. N(4,136), /*a134*/
  2337. N(4,140), /*a135*/
  2338. N(4,144), /*a136*/
  2339. N(4,148), /*a137*/
  2340. N(4,152), /*a138*/
  2341. N(4,156), /*a139*/
  2342. N(4,160), /*a140*/
  2343. N(4,164), /*a141*/
  2344. N(4,168), /*a142*/
  2345. N(4,172), /*a143*/
  2346. N(4,176), /*a144*/
  2347. N(4,180), /*a145*/
  2348. N(4,184), /*a146*/
  2349. N(4,188), /*a147*/
  2350. N(4,192), /*a148*/
  2351. N(4,196), /*a149*/
  2352. N(4,200), /*a150*/
  2353. N(4,204), /*a151*/
  2354. N(4,208), /*a152*/
  2355. N(4,212), /*a153*/
  2356. N(4,216), /*a154*/
  2357. N(4,220), /*a155*/
  2358. N(4,224), /*a156*/
  2359. N(4,228), /*a157*/
  2360. N(4,232), /*a158*/
  2361. N(4,236), /*a159*/
  2362. N(4,240), /*a160*/
  2363. N(4,244), /*a161*/
  2364. N(4,252), /*a163*/
  2365. N(4,256), /*a164*/
  2366. N(4,384), /*a196*/
  2367. N(4,260), /*a165*/
  2368. N(4,368), /*a192*/
  2369. N(4,264), /*a166*/
  2370. N(4,268), /*a167*/
  2371. N(4,272), /*a168*/
  2372. N(4,276), /*a169*/
  2373. N(4,280), /*a170*/
  2374. N(4,284), /*a171*/
  2375. N(4,288), /*a172*/
  2376. N(4,292), /*a173*/
  2377. N(4,248), /*a162*/
  2378. N(4,296), /*a174*/
  2379. N(4,300), /*a175*/
  2380. N(4,304), /*a176*/
  2381. N(4,308), /*a177*/
  2382. N(4,312), /*a178*/
  2383. N(4,316), /*a179*/
  2384. N(4,372), /*a193*/
  2385. N(4,320), /*a180*/
  2386. N(4,396), /*a199*/
  2387. N(4,324), /*a181*/
  2388. N(4,400), /*a200*/
  2389. N(4,328), /*a182*/
  2390. N(7,0), /*.notdef*/
  2391. N(4,404), /*a201*/
  2392. N(4,332), /*a183*/
  2393. N(4,336), /*a184*/
  2394. N(4,388), /*a197*/
  2395. N(4,340), /*a185*/
  2396. N(4,376), /*a194*/
  2397. N(4,392), /*a198*/
  2398. N(4,344), /*a186*/
  2399. N(4,380), /*a195*/
  2400. N(4,348), /*a187*/
  2401. N(4,352), /*a188*/
  2402. N(4,356), /*a189*/
  2403. N(4,360), /*a190*/
  2404. N(4,364), /*a191*/
  2405. N(7,0), /*.notdef*/
  2406. 0};
  2407. static const ushort gs_c_known_encoding_reverse_3[] = {
  2408. 33, /* N(2,14): a1*/
  2409. 34, /* N(2,16): a2*/
  2410. 126, /* N(4,16): a100*/
  2411. 36, /* N(2,18): a3*/
  2412. 37, /* N(2,20): a4*/
  2413. 161, /* N(4,20): a101*/
  2414. 38, /* N(2,22): a5*/
  2415. 61, /* N(2,24): a6*/
  2416. 65, /* N(3,24): a10*/
  2417. 162, /* N(4,24): a102*/
  2418. 62, /* N(2,26): a7*/
  2419. 42, /* N(3,27): a11*/
  2420. 63, /* N(2,28): a8*/
  2421. 163, /* N(4,28): a103*/
  2422. 64, /* N(2,30): a9*/
  2423. 43, /* N(3,30): a12*/
  2424. 164, /* N(4,32): a104*/
  2425. 44, /* N(3,33): a13*/
  2426. 45, /* N(3,36): a14*/
  2427. 48, /* N(4,36): a105*/
  2428. 46, /* N(3,39): a15*/
  2429. 165, /* N(4,40): a106*/
  2430. 47, /* N(3,42): a16*/
  2431. 166, /* N(4,44): a107*/
  2432. 49, /* N(3,45): a17*/
  2433. 50, /* N(3,48): a18*/
  2434. 167, /* N(4,48): a108*/
  2435. 51, /* N(3,51): a19*/
  2436. 171, /* N(4,52): a109*/
  2437. 52, /* N(3,54): a20*/
  2438. 170, /* N(4,56): a110*/
  2439. 53, /* N(3,57): a21*/
  2440. 54, /* N(3,60): a22*/
  2441. 169, /* N(4,60): a111*/
  2442. 55, /* N(3,63): a23*/
  2443. 168, /* N(4,64): a112*/
  2444. 56, /* N(3,66): a24*/
  2445. 41, /* N(4,68): a117*/
  2446. 57, /* N(3,69): a25*/
  2447. 58, /* N(3,72): a26*/
  2448. 40, /* N(4,72): a118*/
  2449. 59, /* N(3,75): a27*/
  2450. 39, /* N(4,76): a119*/
  2451. 60, /* N(3,78): a28*/
  2452. 172, /* N(4,80): a120*/
  2453. 66, /* N(3,81): a29*/
  2454. 67, /* N(3,84): a30*/
  2455. 173, /* N(4,84): a121*/
  2456. 68, /* N(3,87): a31*/
  2457. 174, /* N(4,88): a122*/
  2458. 69, /* N(3,90): a32*/
  2459. 175, /* N(4,92): a123*/
  2460. 70, /* N(3,93): a33*/
  2461. 71, /* N(3,96): a34*/
  2462. 176, /* N(4,96): a124*/
  2463. 72, /* N(3,99): a35*/
  2464. 177, /* N(4,100): a125*/
  2465. 73, /* N(3,102): a36*/
  2466. 178, /* N(4,104): a126*/
  2467. 74, /* N(3,105): a37*/
  2468. 75, /* N(3,108): a38*/
  2469. 179, /* N(4,108): a127*/
  2470. 76, /* N(3,111): a39*/
  2471. 180, /* N(4,112): a128*/
  2472. 77, /* N(3,114): a40*/
  2473. 181, /* N(4,116): a129*/
  2474. 78, /* N(3,117): a41*/
  2475. 79, /* N(3,120): a42*/
  2476. 182, /* N(4,120): a130*/
  2477. 80, /* N(3,123): a43*/
  2478. 183, /* N(4,124): a131*/
  2479. 81, /* N(3,126): a44*/
  2480. 184, /* N(4,128): a132*/
  2481. 82, /* N(3,129): a45*/
  2482. 83, /* N(3,132): a46*/
  2483. 185, /* N(4,132): a133*/
  2484. 84, /* N(3,135): a47*/
  2485. 186, /* N(4,136): a134*/
  2486. 85, /* N(3,138): a48*/
  2487. 187, /* N(4,140): a135*/
  2488. 86, /* N(3,141): a49*/
  2489. 87, /* N(3,144): a50*/
  2490. 188, /* N(4,144): a136*/
  2491. 88, /* N(3,147): a51*/
  2492. 189, /* N(4,148): a137*/
  2493. 89, /* N(3,150): a52*/
  2494. 190, /* N(4,152): a138*/
  2495. 90, /* N(3,153): a53*/
  2496. 91, /* N(3,156): a54*/
  2497. 191, /* N(4,156): a139*/
  2498. 92, /* N(3,159): a55*/
  2499. 192, /* N(4,160): a140*/
  2500. 93, /* N(3,162): a56*/
  2501. 193, /* N(4,164): a141*/
  2502. 94, /* N(3,165): a57*/
  2503. 32, /* N(5,165): space*/
  2504. 95, /* N(3,168): a58*/
  2505. 194, /* N(4,168): a142*/
  2506. 96, /* N(3,171): a59*/
  2507. 195, /* N(4,172): a143*/
  2508. 97, /* N(3,174): a60*/
  2509. 196, /* N(4,176): a144*/
  2510. 98, /* N(3,177): a61*/
  2511. 99, /* N(3,180): a62*/
  2512. 197, /* N(4,180): a145*/
  2513. 100, /* N(3,183): a63*/
  2514. 198, /* N(4,184): a146*/
  2515. 101, /* N(3,186): a64*/
  2516. 199, /* N(4,188): a147*/
  2517. 102, /* N(3,189): a65*/
  2518. 103, /* N(3,192): a66*/
  2519. 200, /* N(4,192): a148*/
  2520. 104, /* N(3,195): a67*/
  2521. 201, /* N(4,196): a149*/
  2522. 105, /* N(3,198): a68*/
  2523. 202, /* N(4,200): a150*/
  2524. 106, /* N(3,201): a69*/
  2525. 107, /* N(3,204): a70*/
  2526. 203, /* N(4,204): a151*/
  2527. 108, /* N(3,207): a71*/
  2528. 204, /* N(4,208): a152*/
  2529. 109, /* N(3,210): a72*/
  2530. 205, /* N(4,212): a153*/
  2531. 110, /* N(3,213): a73*/
  2532. 111, /* N(3,216): a74*/
  2533. 206, /* N(4,216): a154*/
  2534. 113, /* N(3,219): a75*/
  2535. 207, /* N(4,220): a155*/
  2536. 115, /* N(3,222): a76*/
  2537. 208, /* N(4,224): a156*/
  2538. 116, /* N(3,225): a77*/
  2539. 117, /* N(3,228): a78*/
  2540. 209, /* N(4,228): a157*/
  2541. 118, /* N(3,231): a79*/
  2542. 210, /* N(4,232): a158*/
  2543. 119, /* N(3,234): a81*/
  2544. 211, /* N(4,236): a159*/
  2545. 120, /* N(3,237): a82*/
  2546. 121, /* N(3,240): a83*/
  2547. 212, /* N(4,240): a160*/
  2548. 122, /* N(3,243): a84*/
  2549. 213, /* N(4,244): a161*/
  2550. 123, /* N(3,246): a97*/
  2551. 227, /* N(4,248): a162*/
  2552. 124, /* N(3,249): a98*/
  2553. 125, /* N(3,252): a99*/
  2554. 214, /* N(4,252): a163*/
  2555. 215, /* N(4,256): a164*/
  2556. 217, /* N(4,260): a165*/
  2557. 219, /* N(4,264): a166*/
  2558. 220, /* N(4,268): a167*/
  2559. 221, /* N(4,272): a168*/
  2560. 222, /* N(4,276): a169*/
  2561. 223, /* N(4,280): a170*/
  2562. 224, /* N(4,284): a171*/
  2563. 225, /* N(4,288): a172*/
  2564. 226, /* N(4,292): a173*/
  2565. 228, /* N(4,296): a174*/
  2566. 229, /* N(4,300): a175*/
  2567. 230, /* N(4,304): a176*/
  2568. 231, /* N(4,308): a177*/
  2569. 232, /* N(4,312): a178*/
  2570. 233, /* N(4,316): a179*/
  2571. 235, /* N(4,320): a180*/
  2572. 237, /* N(4,324): a181*/
  2573. 239, /* N(4,328): a182*/
  2574. 242, /* N(4,332): a183*/
  2575. 243, /* N(4,336): a184*/
  2576. 245, /* N(4,340): a185*/
  2577. 248, /* N(4,344): a186*/
  2578. 250, /* N(4,348): a187*/
  2579. 251, /* N(4,352): a188*/
  2580. 252, /* N(4,356): a189*/
  2581. 253, /* N(4,360): a190*/
  2582. 254, /* N(4,364): a191*/
  2583. 218, /* N(4,368): a192*/
  2584. 234, /* N(4,372): a193*/
  2585. 246, /* N(4,376): a194*/
  2586. 249, /* N(4,380): a195*/
  2587. 216, /* N(4,384): a196*/
  2588. 244, /* N(4,388): a197*/
  2589. 247, /* N(4,392): a198*/
  2590. 236, /* N(4,396): a199*/
  2591. 238, /* N(4,400): a200*/
  2592. 241, /* N(4,404): a201*/
  2593. 35, /* N(4,408): a202*/
  2594. 112, /* N(4,412): a203*/
  2595. 114, /* N(4,416): a204*/
  2596. 0};
  2597. /* WinAnsiEncoding */
  2598. static const ushort gs_c_known_encoding_4[] = {
  2599. N(7,0), /*.notdef*/
  2600. N(7,0), /*.notdef*/
  2601. N(7,0), /*.notdef*/
  2602. N(7,0), /*.notdef*/
  2603. N(7,0), /*.notdef*/
  2604. N(7,0), /*.notdef*/
  2605. N(7,0), /*.notdef*/
  2606. N(7,0), /*.notdef*/
  2607. N(7,0), /*.notdef*/
  2608. N(7,0), /*.notdef*/
  2609. N(7,0), /*.notdef*/
  2610. N(7,0), /*.notdef*/
  2611. N(7,0), /*.notdef*/
  2612. N(7,0), /*.notdef*/
  2613. N(7,0), /*.notdef*/
  2614. N(7,0), /*.notdef*/
  2615. N(7,0), /*.notdef*/
  2616. N(7,0), /*.notdef*/
  2617. N(7,0), /*.notdef*/
  2618. N(7,0), /*.notdef*/
  2619. N(7,0), /*.notdef*/
  2620. N(7,0), /*.notdef*/
  2621. N(7,0), /*.notdef*/
  2622. N(7,0), /*.notdef*/
  2623. N(7,0), /*.notdef*/
  2624. N(7,0), /*.notdef*/
  2625. N(7,0), /*.notdef*/
  2626. N(7,0), /*.notdef*/
  2627. N(7,0), /*.notdef*/
  2628. N(7,0), /*.notdef*/
  2629. N(7,0), /*.notdef*/
  2630. N(7,0), /*.notdef*/
  2631. N(5,165), /*space*/
  2632. N(6,474), /*exclam*/
  2633. N(8,168), /*quotedbl*/
  2634. N(10,270), /*numbersign*/
  2635. N(6,438), /*dollar*/
  2636. N(7,245), /*percent*/
  2637. N(9,72), /*ampersand*/
  2638. N(11,539), /*quotesingle*/
  2639. N(9,369), /*parenleft*/
  2640. N(10,290), /*parenright*/
  2641. N(8,48), /*asterisk*/
  2642. N(4,456), /*plus*/
  2643. N(5,95), /*comma*/
  2644. N(6,492), /*hyphen*/
  2645. N(6,600), /*period*/
  2646. N(5,160), /*slash*/
  2647. N(4,464), /*zero*/
  2648. N(3,276), /*one*/
  2649. N(3,294), /*two*/
  2650. N(5,185), /*three*/
  2651. N(4,436), /*four*/
  2652. N(4,432), /*five*/
  2653. N(3,288), /*six*/
  2654. N(5,150), /*seven*/
  2655. N(5,105), /*eight*/
  2656. N(4,448), /*nine*/
  2657. N(5,90), /*colon*/
  2658. N(9,414), /*semicolon*/
  2659. N(4,444), /*less*/
  2660. N(5,110), /*equal*/
  2661. N(7,189), /*greater*/
  2662. N(8,160), /*question*/
  2663. N(2,34), /*at*/
  2664. N(1,0), /*A*/
  2665. N(1,1), /*B*/
  2666. N(1,2), /*C*/
  2667. N(1,3), /*D*/
  2668. N(1,4), /*E*/
  2669. N(1,5), /*F*/
  2670. N(1,6), /*G*/
  2671. N(1,7), /*H*/
  2672. N(1,8), /*I*/
  2673. N(1,9), /*J*/
  2674. N(1,10), /*K*/
  2675. N(1,11), /*L*/
  2676. N(1,12), /*M*/
  2677. N(1,13), /*N*/
  2678. N(1,14), /*O*/
  2679. N(1,15), /*P*/
  2680. N(1,16), /*Q*/
  2681. N(1,17), /*R*/
  2682. N(1,18), /*S*/
  2683. N(1,19), /*T*/
  2684. N(1,20), /*U*/
  2685. N(1,21), /*V*/
  2686. N(1,22), /*W*/
  2687. N(1,23), /*X*/
  2688. N(1,24), /*Y*/
  2689. N(1,25), /*Z*/
  2690. N(11,341), /*bracketleft*/
  2691. N(9,135), /*backslash*/
  2692. N(12,192), /*bracketright*/
  2693. N(11,308), /*asciicircum*/
  2694. N(10,320), /*underscore*/
  2695. N(5,125), /*grave*/
  2696. N(1,26), /*a*/
  2697. N(1,27), /*b*/
  2698. N(1,28), /*c*/
  2699. N(1,29), /*d*/
  2700. N(1,30), /*e*/
  2701. N(1,31), /*f*/
  2702. N(1,32), /*g*/
  2703. N(1,33), /*h*/
  2704. N(1,34), /*i*/
  2705. N(1,35), /*j*/
  2706. N(1,36), /*k*/
  2707. N(1,37), /*l*/
  2708. N(1,38), /*m*/
  2709. N(1,39), /*n*/
  2710. N(1,40), /*o*/
  2711. N(1,41), /*p*/
  2712. N(1,42), /*q*/
  2713. N(1,43), /*r*/
  2714. N(1,44), /*s*/
  2715. N(1,45), /*t*/
  2716. N(1,46), /*u*/
  2717. N(1,47), /*v*/
  2718. N(1,48), /*w*/
  2719. N(1,49), /*x*/
  2720. N(1,50), /*y*/
  2721. N(1,51), /*z*/
  2722. N(9,144), /*braceleft*/
  2723. N(3,255), /*bar*/
  2724. N(10,140), /*braceright*/
  2725. N(10,130), /*asciitilde*/
  2726. N(6,390), /*bullet*/
  2727. N(4,4), /*Euro*/
  2728. N(6,390), /*bullet*/
  2729. N(14,364), /*quotesinglbase*/
  2730. N(6,480), /*florin*/
  2731. N(12,516), /*quotedblbase*/
  2732. N(8,88), /*ellipsis*/
  2733. N(6,408), /*dagger*/
  2734. N(9,189), /*daggerdbl*/
  2735. N(10,160), /*circumflex*/
  2736. N(11,528), /*perthousand*/
  2737. N(6,276), /*Scaron*/
  2738. N(13,221), /*guilsinglleft*/
  2739. N(2,8), /*OE*/
  2740. N(6,390), /*bullet*/
  2741. N(6,354), /*Zcaron*/
  2742. N(6,390), /*bullet*/
  2743. N(6,390), /*bullet*/
  2744. N(9,387), /*quoteleft*/
  2745. N(10,300), /*quoteright*/
  2746. N(12,528), /*quotedblleft*/
  2747. N(13,273), /*quotedblright*/
  2748. N(6,390), /*bullet*/
  2749. N(6,468), /*endash*/
  2750. N(6,462), /*emdash*/
  2751. N(5,190), /*tilde*/
  2752. N(9,450), /*trademark*/
  2753. N(6,630), /*scaron*/
  2754. N(14,252), /*guilsinglright*/
  2755. N(2,46), /*oe*/
  2756. N(6,390), /*bullet*/
  2757. N(6,684), /*zcaron*/
  2758. N(9,54), /*Ydieresis*/
  2759. N(5,165), /*space*/
  2760. N(10,180), /*exclamdown*/
  2761. N(4,424), /*cent*/
  2762. N(8,184), /*sterling*/
  2763. N(8,64), /*currency*/
  2764. N(3,297), /*yen*/
  2765. N(9,153), /*brokenbar*/
  2766. N(7,266), /*section*/
  2767. N(8,72), /*dieresis*/
  2768. N(9,180), /*copyright*/
  2769. N(11,473), /*ordfeminine*/
  2770. N(13,208), /*guillemotleft*/
  2771. N(10,250), /*logicalnot*/
  2772. N(6,492), /*hyphen*/
  2773. N(10,310), /*registered*/
  2774. N(6,534), /*macron*/
  2775. N(6,426), /*degree*/
  2776. N(9,378), /*plusminus*/
  2777. N(11,605), /*twosuperior*/
  2778. N(13,377), /*threesuperior*/
  2779. N(5,55), /*acute*/
  2780. N(2,42), /*mu*/
  2781. N(9,360), /*paragraph*/
  2782. N(14,308), /*periodcentered*/
  2783. N(7,133), /*cedilla*/
  2784. N(11,462), /*onesuperior*/
  2785. N(12,432), /*ordmasculine*/
  2786. N(14,238), /*guillemotright*/
  2787. N(10,280), /*onequarter*/
  2788. N(7,238), /*onehalf*/
  2789. N(13,364), /*threequarters*/
  2790. N(12,504), /*questiondown*/
  2791. N(6,12), /*Agrave*/
  2792. N(6,0), /*Aacute*/
  2793. N(11,11), /*Acircumflex*/
  2794. N(6,24), /*Atilde*/
  2795. N(9,0), /*Adieresis*/
  2796. N(5,10), /*Aring*/
  2797. N(2,0), /*AE*/
  2798. N(8,0), /*Ccedilla*/
  2799. N(6,84), /*Egrave*/
  2800. N(6,72), /*Eacute*/
  2801. N(11,55), /*Ecircumflex*/
  2802. N(9,9), /*Edieresis*/
  2803. N(6,126), /*Igrave*/
  2804. N(6,120), /*Iacute*/
  2805. N(11,88), /*Icircumflex*/
  2806. N(9,18), /*Idieresis*/
  2807. N(3,6), /*Eth*/
  2808. N(6,204), /*Ntilde*/
  2809. N(6,216), /*Ograve*/
  2810. N(6,210), /*Oacute*/
  2811. N(11,154), /*Ocircumflex*/
  2812. N(6,234), /*Otilde*/
  2813. N(9,27), /*Odieresis*/
  2814. N(8,136), /*multiply*/
  2815. N(6,222), /*Oslash*/
  2816. N(6,306), /*Ugrave*/
  2817. N(6,300), /*Uacute*/
  2818. N(11,231), /*Ucircumflex*/
  2819. N(9,45), /*Udieresis*/
  2820. N(6,336), /*Yacute*/
  2821. N(5,45), /*Thorn*/
  2822. N(10,200), /*germandbls*/
  2823. N(6,378), /*agrave*/
  2824. N(6,366), /*aacute*/
  2825. N(11,275), /*acircumflex*/
  2826. N(6,384), /*atilde*/
  2827. N(9,63), /*adieresis*/
  2828. N(5,75), /*aring*/
  2829. N(2,32), /*ae*/
  2830. N(8,56), /*ccedilla*/
  2831. N(6,456), /*egrave*/
  2832. N(6,444), /*eacute*/
  2833. N(11,363), /*ecircumflex*/
  2834. N(9,216), /*edieresis*/
  2835. N(6,504), /*igrave*/
  2836. N(6,498), /*iacute*/
  2837. N(11,418), /*icircumflex*/
  2838. N(9,234), /*idieresis*/
  2839. N(3,264), /*eth*/
  2840. N(6,558), /*ntilde*/
  2841. N(6,576), /*ograve*/
  2842. N(6,564), /*oacute*/
  2843. N(11,429), /*ocircumflex*/
  2844. N(6,594), /*otilde*/
  2845. N(9,315), /*odieresis*/
  2846. N(6,432), /*divide*/
  2847. N(6,588), /*oslash*/
  2848. N(6,666), /*ugrave*/
  2849. N(6,660), /*uacute*/
  2850. N(11,616), /*ucircumflex*/
  2851. N(9,477), /*udieresis*/
  2852. N(6,672), /*yacute*/
  2853. N(5,180), /*thorn*/
  2854. N(9,495), /*ydieresis*/
  2855. 0};
  2856. static const ushort gs_c_known_encoding_reverse_4[] = {
  2857. 65, /* N(1,0): A*/
  2858. 198, /* N(2,0): AE*/
  2859. 193, /* N(6,0): Aacute*/
  2860. 199, /* N(8,0): Ccedilla*/
  2861. 196, /* N(9,0): Adieresis*/
  2862. 66, /* N(1,1): B*/
  2863. 67, /* N(1,2): C*/
  2864. 68, /* N(1,3): D*/
  2865. 69, /* N(1,4): E*/
  2866. 128, /* N(4,4): Euro*/
  2867. 70, /* N(1,5): F*/
  2868. 71, /* N(1,6): G*/
  2869. 208, /* N(3,6): Eth*/
  2870. 72, /* N(1,7): H*/
  2871. 73, /* N(1,8): I*/
  2872. 140, /* N(2,8): OE*/
  2873. 74, /* N(1,9): J*/
  2874. 203, /* N(9,9): Edieresis*/
  2875. 75, /* N(1,10): K*/
  2876. 197, /* N(5,10): Aring*/
  2877. 76, /* N(1,11): L*/
  2878. 194, /* N(11,11): Acircumflex*/
  2879. 77, /* N(1,12): M*/
  2880. 192, /* N(6,12): Agrave*/
  2881. 78, /* N(1,13): N*/
  2882. 79, /* N(1,14): O*/
  2883. 80, /* N(1,15): P*/
  2884. 81, /* N(1,16): Q*/
  2885. 82, /* N(1,17): R*/
  2886. 83, /* N(1,18): S*/
  2887. 207, /* N(9,18): Idieresis*/
  2888. 84, /* N(1,19): T*/
  2889. 85, /* N(1,20): U*/
  2890. 86, /* N(1,21): V*/
  2891. 87, /* N(1,22): W*/
  2892. 88, /* N(1,23): X*/
  2893. 89, /* N(1,24): Y*/
  2894. 195, /* N(6,24): Atilde*/
  2895. 90, /* N(1,25): Z*/
  2896. 97, /* N(1,26): a*/
  2897. 98, /* N(1,27): b*/
  2898. 214, /* N(9,27): Odieresis*/
  2899. 99, /* N(1,28): c*/
  2900. 100, /* N(1,29): d*/
  2901. 101, /* N(1,30): e*/
  2902. 102, /* N(1,31): f*/
  2903. 103, /* N(1,32): g*/
  2904. 230, /* N(2,32): ae*/
  2905. 104, /* N(1,33): h*/
  2906. 105, /* N(1,34): i*/
  2907. 64, /* N(2,34): at*/
  2908. 106, /* N(1,35): j*/
  2909. 107, /* N(1,36): k*/
  2910. 108, /* N(1,37): l*/
  2911. 109, /* N(1,38): m*/
  2912. 110, /* N(1,39): n*/
  2913. 111, /* N(1,40): o*/
  2914. 112, /* N(1,41): p*/
  2915. 113, /* N(1,42): q*/
  2916. 181, /* N(2,42): mu*/
  2917. 114, /* N(1,43): r*/
  2918. 115, /* N(1,44): s*/
  2919. 116, /* N(1,45): t*/
  2920. 222, /* N(5,45): Thorn*/
  2921. 220, /* N(9,45): Udieresis*/
  2922. 117, /* N(1,46): u*/
  2923. 156, /* N(2,46): oe*/
  2924. 118, /* N(1,47): v*/
  2925. 119, /* N(1,48): w*/
  2926. 42, /* N(8,48): asterisk*/
  2927. 120, /* N(1,49): x*/
  2928. 121, /* N(1,50): y*/
  2929. 122, /* N(1,51): z*/
  2930. 159, /* N(9,54): Ydieresis*/
  2931. 180, /* N(5,55): acute*/
  2932. 202, /* N(11,55): Ecircumflex*/
  2933. 231, /* N(8,56): ccedilla*/
  2934. 228, /* N(9,63): adieresis*/
  2935. 164, /* N(8,64): currency*/
  2936. 201, /* N(6,72): Eacute*/
  2937. 168, /* N(8,72): dieresis*/
  2938. 38, /* N(9,72): ampersand*/
  2939. 229, /* N(5,75): aring*/
  2940. 200, /* N(6,84): Egrave*/
  2941. 133, /* N(8,88): ellipsis*/
  2942. 206, /* N(11,88): Icircumflex*/
  2943. 58, /* N(5,90): colon*/
  2944. 44, /* N(5,95): comma*/
  2945. 56, /* N(5,105): eight*/
  2946. 61, /* N(5,110): equal*/
  2947. 205, /* N(6,120): Iacute*/
  2948. 96, /* N(5,125): grave*/
  2949. 204, /* N(6,126): Igrave*/
  2950. 126, /* N(10,130): asciitilde*/
  2951. 184, /* N(7,133): cedilla*/
  2952. 92, /* N(9,135): backslash*/
  2953. 215, /* N(8,136): multiply*/
  2954. 125, /* N(10,140): braceright*/
  2955. 123, /* N(9,144): braceleft*/
  2956. 55, /* N(5,150): seven*/
  2957. 166, /* N(9,153): brokenbar*/
  2958. 212, /* N(11,154): Ocircumflex*/
  2959. 47, /* N(5,160): slash*/
  2960. 63, /* N(8,160): question*/
  2961. 136, /* N(10,160): circumflex*/
  2962. 160, /* N(5,165): space*/
  2963. 32, /* N(5,165): space*/
  2964. 34, /* N(8,168): quotedbl*/
  2965. 254, /* N(5,180): thorn*/
  2966. 169, /* N(9,180): copyright*/
  2967. 161, /* N(10,180): exclamdown*/
  2968. 163, /* N(8,184): sterling*/
  2969. 51, /* N(5,185): three*/
  2970. 62, /* N(7,189): greater*/
  2971. 135, /* N(9,189): daggerdbl*/
  2972. 152, /* N(5,190): tilde*/
  2973. 93, /* N(12,192): bracketright*/
  2974. 223, /* N(10,200): germandbls*/
  2975. 209, /* N(6,204): Ntilde*/
  2976. 171, /* N(13,208): guillemotleft*/
  2977. 211, /* N(6,210): Oacute*/
  2978. 210, /* N(6,216): Ograve*/
  2979. 235, /* N(9,216): edieresis*/
  2980. 139, /* N(13,221): guilsinglleft*/
  2981. 216, /* N(6,222): Oslash*/
  2982. 219, /* N(11,231): Ucircumflex*/
  2983. 213, /* N(6,234): Otilde*/
  2984. 239, /* N(9,234): idieresis*/
  2985. 189, /* N(7,238): onehalf*/
  2986. 187, /* N(14,238): guillemotright*/
  2987. 37, /* N(7,245): percent*/
  2988. 172, /* N(10,250): logicalnot*/
  2989. 155, /* N(14,252): guilsinglright*/
  2990. 124, /* N(3,255): bar*/
  2991. 240, /* N(3,264): eth*/
  2992. 167, /* N(7,266): section*/
  2993. 35, /* N(10,270): numbersign*/
  2994. 148, /* N(13,273): quotedblright*/
  2995. 226, /* N(11,275): acircumflex*/
  2996. 49, /* N(3,276): one*/
  2997. 138, /* N(6,276): Scaron*/
  2998. 188, /* N(10,280): onequarter*/
  2999. 54, /* N(3,288): six*/
  3000. 41, /* N(10,290): parenright*/
  3001. 50, /* N(3,294): two*/
  3002. 165, /* N(3,297): yen*/
  3003. 218, /* N(6,300): Uacute*/
  3004. 146, /* N(10,300): quoteright*/
  3005. 217, /* N(6,306): Ugrave*/
  3006. 94, /* N(11,308): asciicircum*/
  3007. 183, /* N(14,308): periodcentered*/
  3008. 174, /* N(10,310): registered*/
  3009. 246, /* N(9,315): odieresis*/
  3010. 95, /* N(10,320): underscore*/
  3011. 221, /* N(6,336): Yacute*/
  3012. 91, /* N(11,341): bracketleft*/
  3013. 142, /* N(6,354): Zcaron*/
  3014. 182, /* N(9,360): paragraph*/
  3015. 234, /* N(11,363): ecircumflex*/
  3016. 190, /* N(13,364): threequarters*/
  3017. 130, /* N(14,364): quotesinglbase*/
  3018. 225, /* N(6,366): aacute*/
  3019. 40, /* N(9,369): parenleft*/
  3020. 179, /* N(13,377): threesuperior*/
  3021. 224, /* N(6,378): agrave*/
  3022. 177, /* N(9,378): plusminus*/
  3023. 227, /* N(6,384): atilde*/
  3024. 145, /* N(9,387): quoteleft*/
  3025. 157, /* N(6,390): bullet*/
  3026. 149, /* N(6,390): bullet*/
  3027. 144, /* N(6,390): bullet*/
  3028. 143, /* N(6,390): bullet*/
  3029. 141, /* N(6,390): bullet*/
  3030. 129, /* N(6,390): bullet*/
  3031. 127, /* N(6,390): bullet*/
  3032. 134, /* N(6,408): dagger*/
  3033. 59, /* N(9,414): semicolon*/
  3034. 238, /* N(11,418): icircumflex*/
  3035. 162, /* N(4,424): cent*/
  3036. 176, /* N(6,426): degree*/
  3037. 244, /* N(11,429): ocircumflex*/
  3038. 53, /* N(4,432): five*/
  3039. 247, /* N(6,432): divide*/
  3040. 186, /* N(12,432): ordmasculine*/
  3041. 52, /* N(4,436): four*/
  3042. 36, /* N(6,438): dollar*/
  3043. 60, /* N(4,444): less*/
  3044. 233, /* N(6,444): eacute*/
  3045. 57, /* N(4,448): nine*/
  3046. 153, /* N(9,450): trademark*/
  3047. 43, /* N(4,456): plus*/
  3048. 232, /* N(6,456): egrave*/
  3049. 151, /* N(6,462): emdash*/
  3050. 185, /* N(11,462): onesuperior*/
  3051. 48, /* N(4,464): zero*/
  3052. 150, /* N(6,468): endash*/
  3053. 170, /* N(11,473): ordfeminine*/
  3054. 33, /* N(6,474): exclam*/
  3055. 252, /* N(9,477): udieresis*/
  3056. 131, /* N(6,480): florin*/
  3057. 173, /* N(6,492): hyphen*/
  3058. 45, /* N(6,492): hyphen*/
  3059. 255, /* N(9,495): ydieresis*/
  3060. 237, /* N(6,498): iacute*/
  3061. 236, /* N(6,504): igrave*/
  3062. 191, /* N(12,504): questiondown*/
  3063. 132, /* N(12,516): quotedblbase*/
  3064. 137, /* N(11,528): perthousand*/
  3065. 147, /* N(12,528): quotedblleft*/
  3066. 175, /* N(6,534): macron*/
  3067. 39, /* N(11,539): quotesingle*/
  3068. 241, /* N(6,558): ntilde*/
  3069. 243, /* N(6,564): oacute*/
  3070. 242, /* N(6,576): ograve*/
  3071. 248, /* N(6,588): oslash*/
  3072. 245, /* N(6,594): otilde*/
  3073. 46, /* N(6,600): period*/
  3074. 178, /* N(11,605): twosuperior*/
  3075. 251, /* N(11,616): ucircumflex*/
  3076. 154, /* N(6,630): scaron*/
  3077. 250, /* N(6,660): uacute*/
  3078. 249, /* N(6,666): ugrave*/
  3079. 253, /* N(6,672): yacute*/
  3080. 158, /* N(6,684): zcaron*/
  3081. 0};
  3082. /* MacRomanEncoding */
  3083. static const ushort gs_c_known_encoding_5[] = {
  3084. N(7,0), /*.notdef*/
  3085. N(7,0), /*.notdef*/
  3086. N(7,0), /*.notdef*/
  3087. N(7,0), /*.notdef*/
  3088. N(7,0), /*.notdef*/
  3089. N(7,0), /*.notdef*/
  3090. N(7,0), /*.notdef*/
  3091. N(7,0), /*.notdef*/
  3092. N(7,0), /*.notdef*/
  3093. N(7,0), /*.notdef*/
  3094. N(7,0), /*.notdef*/
  3095. N(7,0), /*.notdef*/
  3096. N(7,0), /*.notdef*/
  3097. N(7,0), /*.notdef*/
  3098. N(7,0), /*.notdef*/
  3099. N(7,0), /*.notdef*/
  3100. N(7,0), /*.notdef*/
  3101. N(7,0), /*.notdef*/
  3102. N(7,0), /*.notdef*/
  3103. N(7,0), /*.notdef*/
  3104. N(7,0), /*.notdef*/
  3105. N(7,0), /*.notdef*/
  3106. N(7,0), /*.notdef*/
  3107. N(7,0), /*.notdef*/
  3108. N(7,0), /*.notdef*/
  3109. N(7,0), /*.notdef*/
  3110. N(7,0), /*.notdef*/
  3111. N(7,0), /*.notdef*/
  3112. N(7,0), /*.notdef*/
  3113. N(7,0), /*.notdef*/
  3114. N(7,0), /*.notdef*/
  3115. N(7,0), /*.notdef*/
  3116. N(5,165), /*space*/
  3117. N(6,474), /*exclam*/
  3118. N(8,168), /*quotedbl*/
  3119. N(10,270), /*numbersign*/
  3120. N(6,438), /*dollar*/
  3121. N(7,245), /*percent*/
  3122. N(9,72), /*ampersand*/
  3123. N(11,539), /*quotesingle*/
  3124. N(9,369), /*parenleft*/
  3125. N(10,290), /*parenright*/
  3126. N(8,48), /*asterisk*/
  3127. N(4,456), /*plus*/
  3128. N(5,95), /*comma*/
  3129. N(6,492), /*hyphen*/
  3130. N(6,600), /*period*/
  3131. N(5,160), /*slash*/
  3132. N(4,464), /*zero*/
  3133. N(3,276), /*one*/
  3134. N(3,294), /*two*/
  3135. N(5,185), /*three*/
  3136. N(4,436), /*four*/
  3137. N(4,432), /*five*/
  3138. N(3,288), /*six*/
  3139. N(5,150), /*seven*/
  3140. N(5,105), /*eight*/
  3141. N(4,448), /*nine*/
  3142. N(5,90), /*colon*/
  3143. N(9,414), /*semicolon*/
  3144. N(4,444), /*less*/
  3145. N(5,110), /*equal*/
  3146. N(7,189), /*greater*/
  3147. N(8,160), /*question*/
  3148. N(2,34), /*at*/
  3149. N(1,0), /*A*/
  3150. N(1,1), /*B*/
  3151. N(1,2), /*C*/
  3152. N(1,3), /*D*/
  3153. N(1,4), /*E*/
  3154. N(1,5), /*F*/
  3155. N(1,6), /*G*/
  3156. N(1,7), /*H*/
  3157. N(1,8), /*I*/
  3158. N(1,9), /*J*/
  3159. N(1,10), /*K*/
  3160. N(1,11), /*L*/
  3161. N(1,12), /*M*/
  3162. N(1,13), /*N*/
  3163. N(1,14), /*O*/
  3164. N(1,15), /*P*/
  3165. N(1,16), /*Q*/
  3166. N(1,17), /*R*/
  3167. N(1,18), /*S*/
  3168. N(1,19), /*T*/
  3169. N(1,20), /*U*/
  3170. N(1,21), /*V*/
  3171. N(1,22), /*W*/
  3172. N(1,23), /*X*/
  3173. N(1,24), /*Y*/
  3174. N(1,25), /*Z*/
  3175. N(11,341), /*bracketleft*/
  3176. N(9,135), /*backslash*/
  3177. N(12,192), /*bracketright*/
  3178. N(11,308), /*asciicircum*/
  3179. N(10,320), /*underscore*/
  3180. N(5,125), /*grave*/
  3181. N(1,26), /*a*/
  3182. N(1,27), /*b*/
  3183. N(1,28), /*c*/
  3184. N(1,29), /*d*/
  3185. N(1,30), /*e*/
  3186. N(1,31), /*f*/
  3187. N(1,32), /*g*/
  3188. N(1,33), /*h*/
  3189. N(1,34), /*i*/
  3190. N(1,35), /*j*/
  3191. N(1,36), /*k*/
  3192. N(1,37), /*l*/
  3193. N(1,38), /*m*/
  3194. N(1,39), /*n*/
  3195. N(1,40), /*o*/
  3196. N(1,41), /*p*/
  3197. N(1,42), /*q*/
  3198. N(1,43), /*r*/
  3199. N(1,44), /*s*/
  3200. N(1,45), /*t*/
  3201. N(1,46), /*u*/
  3202. N(1,47), /*v*/
  3203. N(1,48), /*w*/
  3204. N(1,49), /*x*/
  3205. N(1,50), /*y*/
  3206. N(1,51), /*z*/
  3207. N(9,144), /*braceleft*/
  3208. N(3,255), /*bar*/
  3209. N(10,140), /*braceright*/
  3210. N(10,130), /*asciitilde*/
  3211. N(7,0), /*.notdef*/
  3212. N(9,0), /*Adieresis*/
  3213. N(5,10), /*Aring*/
  3214. N(8,0), /*Ccedilla*/
  3215. N(6,72), /*Eacute*/
  3216. N(6,204), /*Ntilde*/
  3217. N(9,27), /*Odieresis*/
  3218. N(9,45), /*Udieresis*/
  3219. N(6,366), /*aacute*/
  3220. N(6,378), /*agrave*/
  3221. N(11,275), /*acircumflex*/
  3222. N(9,63), /*adieresis*/
  3223. N(6,384), /*atilde*/
  3224. N(5,75), /*aring*/
  3225. N(8,56), /*ccedilla*/
  3226. N(6,444), /*eacute*/
  3227. N(6,456), /*egrave*/
  3228. N(11,363), /*ecircumflex*/
  3229. N(9,216), /*edieresis*/
  3230. N(6,498), /*iacute*/
  3231. N(6,504), /*igrave*/
  3232. N(11,418), /*icircumflex*/
  3233. N(9,234), /*idieresis*/
  3234. N(6,558), /*ntilde*/
  3235. N(6,564), /*oacute*/
  3236. N(6,576), /*ograve*/
  3237. N(11,429), /*ocircumflex*/
  3238. N(9,315), /*odieresis*/
  3239. N(6,594), /*otilde*/
  3240. N(6,660), /*uacute*/
  3241. N(6,666), /*ugrave*/
  3242. N(11,616), /*ucircumflex*/
  3243. N(9,477), /*udieresis*/
  3244. N(6,408), /*dagger*/
  3245. N(6,426), /*degree*/
  3246. N(4,424), /*cent*/
  3247. N(8,184), /*sterling*/
  3248. N(7,266), /*section*/
  3249. N(6,390), /*bullet*/
  3250. N(9,360), /*paragraph*/
  3251. N(10,200), /*germandbls*/
  3252. N(10,310), /*registered*/
  3253. N(9,180), /*copyright*/
  3254. N(9,450), /*trademark*/
  3255. N(5,55), /*acute*/
  3256. N(8,72), /*dieresis*/
  3257. N(7,0), /*.notdef*/
  3258. N(2,0), /*AE*/
  3259. N(6,222), /*Oslash*/
  3260. N(7,0), /*.notdef*/
  3261. N(9,378), /*plusminus*/
  3262. N(7,0), /*.notdef*/
  3263. N(7,0), /*.notdef*/
  3264. N(3,297), /*yen*/
  3265. N(2,42), /*mu*/
  3266. N(7,0), /*.notdef*/
  3267. N(7,0), /*.notdef*/
  3268. N(7,0), /*.notdef*/
  3269. N(7,0), /*.notdef*/
  3270. N(7,0), /*.notdef*/
  3271. N(11,473), /*ordfeminine*/
  3272. N(12,432), /*ordmasculine*/
  3273. N(7,0), /*.notdef*/
  3274. N(2,32), /*ae*/
  3275. N(6,588), /*oslash*/
  3276. N(12,504), /*questiondown*/
  3277. N(10,180), /*exclamdown*/
  3278. N(10,250), /*logicalnot*/
  3279. N(7,0), /*.notdef*/
  3280. N(6,480), /*florin*/
  3281. N(7,0), /*.notdef*/
  3282. N(7,0), /*.notdef*/
  3283. N(13,208), /*guillemotleft*/
  3284. N(14,238), /*guillemotright*/
  3285. N(8,88), /*ellipsis*/
  3286. N(5,165), /*space*/
  3287. N(6,12), /*Agrave*/
  3288. N(6,24), /*Atilde*/
  3289. N(6,234), /*Otilde*/
  3290. N(2,8), /*OE*/
  3291. N(2,46), /*oe*/
  3292. N(6,468), /*endash*/
  3293. N(6,462), /*emdash*/
  3294. N(12,528), /*quotedblleft*/
  3295. N(13,273), /*quotedblright*/
  3296. N(9,387), /*quoteleft*/
  3297. N(10,300), /*quoteright*/
  3298. N(6,432), /*divide*/
  3299. N(7,0), /*.notdef*/
  3300. N(9,495), /*ydieresis*/
  3301. N(9,54), /*Ydieresis*/
  3302. N(8,104), /*fraction*/
  3303. N(8,64), /*currency*/
  3304. N(13,221), /*guilsinglleft*/
  3305. N(14,252), /*guilsinglright*/
  3306. N(2,38), /*fi*/
  3307. N(2,40), /*fl*/
  3308. N(9,189), /*daggerdbl*/
  3309. N(14,308), /*periodcentered*/
  3310. N(14,364), /*quotesinglbase*/
  3311. N(12,516), /*quotedblbase*/
  3312. N(11,528), /*perthousand*/
  3313. N(11,11), /*Acircumflex*/
  3314. N(11,55), /*Ecircumflex*/
  3315. N(6,0), /*Aacute*/
  3316. N(9,9), /*Edieresis*/
  3317. N(6,84), /*Egrave*/
  3318. N(6,120), /*Iacute*/
  3319. N(11,88), /*Icircumflex*/
  3320. N(9,18), /*Idieresis*/
  3321. N(6,126), /*Igrave*/
  3322. N(6,210), /*Oacute*/
  3323. N(11,154), /*Ocircumflex*/
  3324. N(7,0), /*.notdef*/
  3325. N(6,216), /*Ograve*/
  3326. N(6,300), /*Uacute*/
  3327. N(11,231), /*Ucircumflex*/
  3328. N(6,306), /*Ugrave*/
  3329. N(8,80), /*dotlessi*/
  3330. N(10,160), /*circumflex*/
  3331. N(5,190), /*tilde*/
  3332. N(6,534), /*macron*/
  3333. N(5,80), /*breve*/
  3334. N(9,198), /*dotaccent*/
  3335. N(4,460), /*ring*/
  3336. N(7,133), /*cedilla*/
  3337. N(12,336), /*hungarumlaut*/
  3338. N(6,570), /*ogonek*/
  3339. N(5,85), /*caron*/
  3340. 0};
  3341. static const ushort gs_c_known_encoding_reverse_5[] = {
  3342. 65, /* N(1,0): A*/
  3343. 174, /* N(2,0): AE*/
  3344. 231, /* N(6,0): Aacute*/
  3345. 130, /* N(8,0): Ccedilla*/
  3346. 128, /* N(9,0): Adieresis*/
  3347. 66, /* N(1,1): B*/
  3348. 67, /* N(1,2): C*/
  3349. 68, /* N(1,3): D*/
  3350. 69, /* N(1,4): E*/
  3351. 70, /* N(1,5): F*/
  3352. 71, /* N(1,6): G*/
  3353. 72, /* N(1,7): H*/
  3354. 73, /* N(1,8): I*/
  3355. 206, /* N(2,8): OE*/
  3356. 74, /* N(1,9): J*/
  3357. 232, /* N(9,9): Edieresis*/
  3358. 75, /* N(1,10): K*/
  3359. 129, /* N(5,10): Aring*/
  3360. 76, /* N(1,11): L*/
  3361. 229, /* N(11,11): Acircumflex*/
  3362. 77, /* N(1,12): M*/
  3363. 203, /* N(6,12): Agrave*/
  3364. 78, /* N(1,13): N*/
  3365. 79, /* N(1,14): O*/
  3366. 80, /* N(1,15): P*/
  3367. 81, /* N(1,16): Q*/
  3368. 82, /* N(1,17): R*/
  3369. 83, /* N(1,18): S*/
  3370. 236, /* N(9,18): Idieresis*/
  3371. 84, /* N(1,19): T*/
  3372. 85, /* N(1,20): U*/
  3373. 86, /* N(1,21): V*/
  3374. 87, /* N(1,22): W*/
  3375. 88, /* N(1,23): X*/
  3376. 89, /* N(1,24): Y*/
  3377. 204, /* N(6,24): Atilde*/
  3378. 90, /* N(1,25): Z*/
  3379. 97, /* N(1,26): a*/
  3380. 98, /* N(1,27): b*/
  3381. 133, /* N(9,27): Odieresis*/
  3382. 99, /* N(1,28): c*/
  3383. 100, /* N(1,29): d*/
  3384. 101, /* N(1,30): e*/
  3385. 102, /* N(1,31): f*/
  3386. 103, /* N(1,32): g*/
  3387. 190, /* N(2,32): ae*/
  3388. 104, /* N(1,33): h*/
  3389. 105, /* N(1,34): i*/
  3390. 64, /* N(2,34): at*/
  3391. 106, /* N(1,35): j*/
  3392. 107, /* N(1,36): k*/
  3393. 108, /* N(1,37): l*/
  3394. 109, /* N(1,38): m*/
  3395. 222, /* N(2,38): fi*/
  3396. 110, /* N(1,39): n*/
  3397. 111, /* N(1,40): o*/
  3398. 223, /* N(2,40): fl*/
  3399. 112, /* N(1,41): p*/
  3400. 113, /* N(1,42): q*/
  3401. 181, /* N(2,42): mu*/
  3402. 114, /* N(1,43): r*/
  3403. 115, /* N(1,44): s*/
  3404. 116, /* N(1,45): t*/
  3405. 134, /* N(9,45): Udieresis*/
  3406. 117, /* N(1,46): u*/
  3407. 207, /* N(2,46): oe*/
  3408. 118, /* N(1,47): v*/
  3409. 119, /* N(1,48): w*/
  3410. 42, /* N(8,48): asterisk*/
  3411. 120, /* N(1,49): x*/
  3412. 121, /* N(1,50): y*/
  3413. 122, /* N(1,51): z*/
  3414. 217, /* N(9,54): Ydieresis*/
  3415. 171, /* N(5,55): acute*/
  3416. 230, /* N(11,55): Ecircumflex*/
  3417. 141, /* N(8,56): ccedilla*/
  3418. 138, /* N(9,63): adieresis*/
  3419. 219, /* N(8,64): currency*/
  3420. 131, /* N(6,72): Eacute*/
  3421. 172, /* N(8,72): dieresis*/
  3422. 38, /* N(9,72): ampersand*/
  3423. 140, /* N(5,75): aring*/
  3424. 249, /* N(5,80): breve*/
  3425. 245, /* N(8,80): dotlessi*/
  3426. 233, /* N(6,84): Egrave*/
  3427. 255, /* N(5,85): caron*/
  3428. 201, /* N(8,88): ellipsis*/
  3429. 235, /* N(11,88): Icircumflex*/
  3430. 58, /* N(5,90): colon*/
  3431. 44, /* N(5,95): comma*/
  3432. 218, /* N(8,104): fraction*/
  3433. 56, /* N(5,105): eight*/
  3434. 61, /* N(5,110): equal*/
  3435. 234, /* N(6,120): Iacute*/
  3436. 96, /* N(5,125): grave*/
  3437. 237, /* N(6,126): Igrave*/
  3438. 126, /* N(10,130): asciitilde*/
  3439. 252, /* N(7,133): cedilla*/
  3440. 92, /* N(9,135): backslash*/
  3441. 125, /* N(10,140): braceright*/
  3442. 123, /* N(9,144): braceleft*/
  3443. 55, /* N(5,150): seven*/
  3444. 239, /* N(11,154): Ocircumflex*/
  3445. 47, /* N(5,160): slash*/
  3446. 63, /* N(8,160): question*/
  3447. 246, /* N(10,160): circumflex*/
  3448. 202, /* N(5,165): space*/
  3449. 32, /* N(5,165): space*/
  3450. 34, /* N(8,168): quotedbl*/
  3451. 169, /* N(9,180): copyright*/
  3452. 193, /* N(10,180): exclamdown*/
  3453. 163, /* N(8,184): sterling*/
  3454. 51, /* N(5,185): three*/
  3455. 62, /* N(7,189): greater*/
  3456. 224, /* N(9,189): daggerdbl*/
  3457. 247, /* N(5,190): tilde*/
  3458. 93, /* N(12,192): bracketright*/
  3459. 250, /* N(9,198): dotaccent*/
  3460. 167, /* N(10,200): germandbls*/
  3461. 132, /* N(6,204): Ntilde*/
  3462. 199, /* N(13,208): guillemotleft*/
  3463. 238, /* N(6,210): Oacute*/
  3464. 241, /* N(6,216): Ograve*/
  3465. 145, /* N(9,216): edieresis*/
  3466. 220, /* N(13,221): guilsinglleft*/
  3467. 175, /* N(6,222): Oslash*/
  3468. 243, /* N(11,231): Ucircumflex*/
  3469. 205, /* N(6,234): Otilde*/
  3470. 149, /* N(9,234): idieresis*/
  3471. 200, /* N(14,238): guillemotright*/
  3472. 37, /* N(7,245): percent*/
  3473. 194, /* N(10,250): logicalnot*/
  3474. 221, /* N(14,252): guilsinglright*/
  3475. 124, /* N(3,255): bar*/
  3476. 164, /* N(7,266): section*/
  3477. 35, /* N(10,270): numbersign*/
  3478. 211, /* N(13,273): quotedblright*/
  3479. 137, /* N(11,275): acircumflex*/
  3480. 49, /* N(3,276): one*/
  3481. 54, /* N(3,288): six*/
  3482. 41, /* N(10,290): parenright*/
  3483. 50, /* N(3,294): two*/
  3484. 180, /* N(3,297): yen*/
  3485. 242, /* N(6,300): Uacute*/
  3486. 213, /* N(10,300): quoteright*/
  3487. 244, /* N(6,306): Ugrave*/
  3488. 94, /* N(11,308): asciicircum*/
  3489. 225, /* N(14,308): periodcentered*/
  3490. 168, /* N(10,310): registered*/
  3491. 154, /* N(9,315): odieresis*/
  3492. 95, /* N(10,320): underscore*/
  3493. 253, /* N(12,336): hungarumlaut*/
  3494. 91, /* N(11,341): bracketleft*/
  3495. 166, /* N(9,360): paragraph*/
  3496. 144, /* N(11,363): ecircumflex*/
  3497. 226, /* N(14,364): quotesinglbase*/
  3498. 135, /* N(6,366): aacute*/
  3499. 40, /* N(9,369): parenleft*/
  3500. 136, /* N(6,378): agrave*/
  3501. 177, /* N(9,378): plusminus*/
  3502. 139, /* N(6,384): atilde*/
  3503. 212, /* N(9,387): quoteleft*/
  3504. 165, /* N(6,390): bullet*/
  3505. 160, /* N(6,408): dagger*/
  3506. 59, /* N(9,414): semicolon*/
  3507. 148, /* N(11,418): icircumflex*/
  3508. 162, /* N(4,424): cent*/
  3509. 161, /* N(6,426): degree*/
  3510. 153, /* N(11,429): ocircumflex*/
  3511. 53, /* N(4,432): five*/
  3512. 214, /* N(6,432): divide*/
  3513. 188, /* N(12,432): ordmasculine*/
  3514. 52, /* N(4,436): four*/
  3515. 36, /* N(6,438): dollar*/
  3516. 60, /* N(4,444): less*/
  3517. 142, /* N(6,444): eacute*/
  3518. 57, /* N(4,448): nine*/
  3519. 170, /* N(9,450): trademark*/
  3520. 43, /* N(4,456): plus*/
  3521. 143, /* N(6,456): egrave*/
  3522. 251, /* N(4,460): ring*/
  3523. 209, /* N(6,462): emdash*/
  3524. 48, /* N(4,464): zero*/
  3525. 208, /* N(6,468): endash*/
  3526. 187, /* N(11,473): ordfeminine*/
  3527. 33, /* N(6,474): exclam*/
  3528. 159, /* N(9,477): udieresis*/
  3529. 196, /* N(6,480): florin*/
  3530. 45, /* N(6,492): hyphen*/
  3531. 216, /* N(9,495): ydieresis*/
  3532. 146, /* N(6,498): iacute*/
  3533. 147, /* N(6,504): igrave*/
  3534. 192, /* N(12,504): questiondown*/
  3535. 227, /* N(12,516): quotedblbase*/
  3536. 228, /* N(11,528): perthousand*/
  3537. 210, /* N(12,528): quotedblleft*/
  3538. 248, /* N(6,534): macron*/
  3539. 39, /* N(11,539): quotesingle*/
  3540. 150, /* N(6,558): ntilde*/
  3541. 151, /* N(6,564): oacute*/
  3542. 254, /* N(6,570): ogonek*/
  3543. 152, /* N(6,576): ograve*/
  3544. 191, /* N(6,588): oslash*/
  3545. 155, /* N(6,594): otilde*/
  3546. 46, /* N(6,600): period*/
  3547. 158, /* N(11,616): ucircumflex*/
  3548. 156, /* N(6,660): uacute*/
  3549. 157, /* N(6,666): ugrave*/
  3550. 0};
  3551. /* MacExpertEncoding */
  3552. static const ushort gs_c_known_encoding_6[] = {
  3553. N(7,0), /*.notdef*/
  3554. N(7,0), /*.notdef*/
  3555. N(7,0), /*.notdef*/
  3556. N(7,0), /*.notdef*/
  3557. N(7,0), /*.notdef*/
  3558. N(7,0), /*.notdef*/
  3559. N(7,0), /*.notdef*/
  3560. N(7,0), /*.notdef*/
  3561. N(7,0), /*.notdef*/
  3562. N(7,0), /*.notdef*/
  3563. N(7,0), /*.notdef*/
  3564. N(7,0), /*.notdef*/
  3565. N(7,0), /*.notdef*/
  3566. N(7,0), /*.notdef*/
  3567. N(7,0), /*.notdef*/
  3568. N(7,0), /*.notdef*/
  3569. N(7,0), /*.notdef*/
  3570. N(7,0), /*.notdef*/
  3571. N(7,0), /*.notdef*/
  3572. N(7,0), /*.notdef*/
  3573. N(7,0), /*.notdef*/
  3574. N(7,0), /*.notdef*/
  3575. N(7,0), /*.notdef*/
  3576. N(7,0), /*.notdef*/
  3577. N(7,0), /*.notdef*/
  3578. N(7,0), /*.notdef*/
  3579. N(7,0), /*.notdef*/
  3580. N(7,0), /*.notdef*/
  3581. N(7,0), /*.notdef*/
  3582. N(7,0), /*.notdef*/
  3583. N(7,0), /*.notdef*/
  3584. N(7,0), /*.notdef*/
  3585. N(5,165), /*space*/
  3586. N(11,385), /*exclamsmall*/
  3587. N(17,0), /*Hungarumlautsmall*/
  3588. N(12,216), /*centoldstyle*/
  3589. N(14,210), /*dollaroldstyle*/
  3590. N(14,224), /*dollarsuperior*/
  3591. N(14,98), /*ampersandsmall*/
  3592. N(10,0), /*Acutesmall*/
  3593. N(17,34), /*parenleftsuperior*/
  3594. N(18,18), /*parenrightsuperior*/
  3595. N(14,406), /*twodotenleader*/
  3596. N(14,294), /*onedotenleader*/
  3597. N(5,95), /*comma*/
  3598. N(6,492), /*hyphen*/
  3599. N(6,600), /*period*/
  3600. N(8,104), /*fraction*/
  3601. N(12,636), /*zerooldstyle*/
  3602. N(11,451), /*oneoldstyle*/
  3603. N(11,594), /*twooldstyle*/
  3604. N(13,351), /*threeoldstyle*/
  3605. N(12,288), /*fouroldstyle*/
  3606. N(12,252), /*fiveoldstyle*/
  3607. N(11,561), /*sixoldstyle*/
  3608. N(13,312), /*sevenoldstyle*/
  3609. N(13,182), /*eightoldstyle*/
  3610. N(12,408), /*nineoldstyle*/
  3611. N(5,90), /*colon*/
  3612. N(9,414), /*semicolon*/
  3613. N(7,0), /*.notdef*/
  3614. N(19,0), /*threequartersemdash*/
  3615. N(7,0), /*.notdef*/
  3616. N(13,260), /*questionsmall*/
  3617. N(7,0), /*.notdef*/
  3618. N(7,0), /*.notdef*/
  3619. N(7,0), /*.notdef*/
  3620. N(7,0), /*.notdef*/
  3621. N(8,8), /*Ethsmall*/
  3622. N(7,0), /*.notdef*/
  3623. N(7,0), /*.notdef*/
  3624. N(10,280), /*onequarter*/
  3625. N(7,238), /*onehalf*/
  3626. N(13,364), /*threequarters*/
  3627. N(9,324), /*oneeighth*/
  3628. N(12,612), /*threeeighths*/
  3629. N(11,407), /*fiveeighths*/
  3630. N(12,588), /*seveneighths*/
  3631. N(8,152), /*onethird*/
  3632. N(9,468), /*twothirds*/
  3633. N(7,0), /*.notdef*/
  3634. N(7,0), /*.notdef*/
  3635. N(7,0), /*.notdef*/
  3636. N(7,0), /*.notdef*/
  3637. N(7,0), /*.notdef*/
  3638. N(7,0), /*.notdef*/
  3639. N(2,36), /*ff*/
  3640. N(2,38), /*fi*/
  3641. N(2,40), /*fl*/
  3642. N(3,267), /*ffi*/
  3643. N(3,270), /*ffl*/
  3644. N(17,17), /*parenleftinferior*/
  3645. N(7,0), /*.notdef*/
  3646. N(18,0), /*parenrightinferior*/
  3647. N(15,0), /*Circumflexsmall*/
  3648. N(14,266), /*hypheninferior*/
  3649. N(10,50), /*Gravesmall*/
  3650. N(6,18), /*Asmall*/
  3651. N(6,30), /*Bsmall*/
  3652. N(6,48), /*Csmall*/
  3653. N(6,66), /*Dsmall*/
  3654. N(6,90), /*Esmall*/
  3655. N(6,96), /*Fsmall*/
  3656. N(6,108), /*Gsmall*/
  3657. N(6,114), /*Hsmall*/
  3658. N(6,132), /*Ismall*/
  3659. N(6,138), /*Jsmall*/
  3660. N(6,144), /*Ksmall*/
  3661. N(6,174), /*Lsmall*/
  3662. N(6,180), /*Msmall*/
  3663. N(6,198), /*Nsmall*/
  3664. N(6,228), /*Osmall*/
  3665. N(6,240), /*Psmall*/
  3666. N(6,246), /*Qsmall*/
  3667. N(6,264), /*Rsmall*/
  3668. N(6,282), /*Ssmall*/
  3669. N(6,294), /*Tsmall*/
  3670. N(6,312), /*Usmall*/
  3671. N(6,318), /*Vsmall*/
  3672. N(6,324), /*Wsmall*/
  3673. N(6,330), /*Xsmall*/
  3674. N(6,342), /*Ysmall*/
  3675. N(6,360), /*Zsmall*/
  3676. N(13,117), /*colonmonetary*/
  3677. N(9,333), /*onefitted*/
  3678. N(6,618), /*rupiah*/
  3679. N(10,80), /*Tildesmall*/
  3680. N(7,0), /*.notdef*/
  3681. N(7,0), /*.notdef*/
  3682. N(9,126), /*asuperior*/
  3683. N(12,228), /*centsuperior*/
  3684. N(7,0), /*.notdef*/
  3685. N(7,0), /*.notdef*/
  3686. N(7,0), /*.notdef*/
  3687. N(7,0), /*.notdef*/
  3688. N(11,0), /*Aacutesmall*/
  3689. N(11,22), /*Agravesmall*/
  3690. N(16,0), /*Acircumflexsmall*/
  3691. N(14,0), /*Adieresissmall*/
  3692. N(11,33), /*Atildesmall*/
  3693. N(10,10), /*Aringsmall*/
  3694. N(13,0), /*Ccedillasmall*/
  3695. N(11,44), /*Eacutesmall*/
  3696. N(11,66), /*Egravesmall*/
  3697. N(16,16), /*Ecircumflexsmall*/
  3698. N(14,28), /*Edieresissmall*/
  3699. N(11,77), /*Iacutesmall*/
  3700. N(11,99), /*Igravesmall*/
  3701. N(16,32), /*Icircumflexsmall*/
  3702. N(14,42), /*Idieresissmall*/
  3703. N(11,132), /*Ntildesmall*/
  3704. N(11,143), /*Oacutesmall*/
  3705. N(11,176), /*Ogravesmall*/
  3706. N(16,48), /*Ocircumflexsmall*/
  3707. N(14,56), /*Odieresissmall*/
  3708. N(11,198), /*Otildesmall*/
  3709. N(11,220), /*Uacutesmall*/
  3710. N(11,242), /*Ugravesmall*/
  3711. N(16,64), /*Ucircumflexsmall*/
  3712. N(14,70), /*Udieresissmall*/
  3713. N(7,0), /*.notdef*/
  3714. N(13,195), /*eightsuperior*/
  3715. N(12,276), /*fourinferior*/
  3716. N(13,338), /*threeinferior*/
  3717. N(11,550), /*sixinferior*/
  3718. N(13,169), /*eightinferior*/
  3719. N(13,299), /*seveninferior*/
  3720. N(11,209), /*Scaronsmall*/
  3721. N(7,0), /*.notdef*/
  3722. N(12,204), /*centinferior*/
  3723. N(11,583), /*twoinferior*/
  3724. N(7,0), /*.notdef*/
  3725. N(13,13), /*Dieresissmall*/
  3726. N(7,0), /*.notdef*/
  3727. N(10,30), /*Caronsmall*/
  3728. N(9,342), /*osuperior*/
  3729. N(12,240), /*fiveinferior*/
  3730. N(7,0), /*.notdef*/
  3731. N(13,130), /*commainferior*/
  3732. N(14,322), /*periodinferior*/
  3733. N(11,253), /*Yacutesmall*/
  3734. N(7,0), /*.notdef*/
  3735. N(14,196), /*dollarinferior*/
  3736. N(7,0), /*.notdef*/
  3737. N(7,0), /*.notdef*/
  3738. N(10,70), /*Thornsmall*/
  3739. N(7,0), /*.notdef*/
  3740. N(12,396), /*nineinferior*/
  3741. N(12,624), /*zeroinferior*/
  3742. N(11,264), /*Zcaronsmall*/
  3743. N(7,7), /*AEsmall*/
  3744. N(11,187), /*Oslashsmall*/
  3745. N(17,51), /*questiondownsmall*/
  3746. N(11,440), /*oneinferior*/
  3747. N(11,110), /*Lslashsmall*/
  3748. N(7,0), /*.notdef*/
  3749. N(7,0), /*.notdef*/
  3750. N(7,0), /*.notdef*/
  3751. N(7,0), /*.notdef*/
  3752. N(7,0), /*.notdef*/
  3753. N(7,0), /*.notdef*/
  3754. N(12,0), /*Cedillasmall*/
  3755. N(7,0), /*.notdef*/
  3756. N(7,0), /*.notdef*/
  3757. N(7,0), /*.notdef*/
  3758. N(7,0), /*.notdef*/
  3759. N(7,0), /*.notdef*/
  3760. N(7,63), /*OEsmall*/
  3761. N(10,190), /*figuredash*/
  3762. N(14,280), /*hyphensuperior*/
  3763. N(7,0), /*.notdef*/
  3764. N(7,0), /*.notdef*/
  3765. N(7,0), /*.notdef*/
  3766. N(7,0), /*.notdef*/
  3767. N(15,15), /*exclamdownsmall*/
  3768. N(7,0), /*.notdef*/
  3769. N(14,84), /*Ydieresissmall*/
  3770. N(7,0), /*.notdef*/
  3771. N(11,462), /*onesuperior*/
  3772. N(11,605), /*twosuperior*/
  3773. N(13,377), /*threesuperior*/
  3774. N(12,300), /*foursuperior*/
  3775. N(12,264), /*fivesuperior*/
  3776. N(11,572), /*sixsuperior*/
  3777. N(13,325), /*sevensuperior*/
  3778. N(12,420), /*ninesuperior*/
  3779. N(12,648), /*zerosuperior*/
  3780. N(7,0), /*.notdef*/
  3781. N(9,225), /*esuperior*/
  3782. N(9,405), /*rsuperior*/
  3783. N(9,459), /*tsuperior*/
  3784. N(7,0), /*.notdef*/
  3785. N(7,0), /*.notdef*/
  3786. N(9,252), /*isuperior*/
  3787. N(9,423), /*ssuperior*/
  3788. N(9,207), /*dsuperior*/
  3789. N(7,0), /*.notdef*/
  3790. N(7,0), /*.notdef*/
  3791. N(7,0), /*.notdef*/
  3792. N(7,0), /*.notdef*/
  3793. N(7,0), /*.notdef*/
  3794. N(9,279), /*lsuperior*/
  3795. N(11,165), /*Ogoneksmall*/
  3796. N(10,20), /*Brevesmall*/
  3797. N(11,121), /*Macronsmall*/
  3798. N(9,162), /*bsuperior*/
  3799. N(9,306), /*nsuperior*/
  3800. N(9,288), /*msuperior*/
  3801. N(13,143), /*commasuperior*/
  3802. N(14,336), /*periodsuperior*/
  3803. N(14,14), /*Dotaccentsmall*/
  3804. N(9,36), /*Ringsmall*/
  3805. N(7,0), /*.notdef*/
  3806. N(7,0), /*.notdef*/
  3807. N(7,0), /*.notdef*/
  3808. N(7,0), /*.notdef*/
  3809. 0};
  3810. static const ushort gs_c_known_encoding_reverse_6[] = {
  3811. 39, /* N(10,0): Acutesmall*/
  3812. 135, /* N(11,0): Aacutesmall*/
  3813. 201, /* N(12,0): Cedillasmall*/
  3814. 141, /* N(13,0): Ccedillasmall*/
  3815. 138, /* N(14,0): Adieresissmall*/
  3816. 94, /* N(15,0): Circumflexsmall*/
  3817. 137, /* N(16,0): Acircumflexsmall*/
  3818. 34, /* N(17,0): Hungarumlautsmall*/
  3819. 93, /* N(18,0): parenrightinferior*/
  3820. 61, /* N(19,0): threequartersemdash*/
  3821. 190, /* N(7,7): AEsmall*/
  3822. 68, /* N(8,8): Ethsmall*/
  3823. 140, /* N(10,10): Aringsmall*/
  3824. 172, /* N(13,13): Dieresissmall*/
  3825. 250, /* N(14,14): Dotaccentsmall*/
  3826. 214, /* N(15,15): exclamdownsmall*/
  3827. 144, /* N(16,16): Ecircumflexsmall*/
  3828. 91, /* N(17,17): parenleftinferior*/
  3829. 97, /* N(6,18): Asmall*/
  3830. 41, /* N(18,18): parenrightsuperior*/
  3831. 243, /* N(10,20): Brevesmall*/
  3832. 136, /* N(11,22): Agravesmall*/
  3833. 145, /* N(14,28): Edieresissmall*/
  3834. 98, /* N(6,30): Bsmall*/
  3835. 174, /* N(10,30): Caronsmall*/
  3836. 148, /* N(16,32): Icircumflexsmall*/
  3837. 139, /* N(11,33): Atildesmall*/
  3838. 40, /* N(17,34): parenleftsuperior*/
  3839. 86, /* N(2,36): ff*/
  3840. 251, /* N(9,36): Ringsmall*/
  3841. 87, /* N(2,38): fi*/
  3842. 88, /* N(2,40): fl*/
  3843. 149, /* N(14,42): Idieresissmall*/
  3844. 142, /* N(11,44): Eacutesmall*/
  3845. 99, /* N(6,48): Csmall*/
  3846. 153, /* N(16,48): Ocircumflexsmall*/
  3847. 96, /* N(10,50): Gravesmall*/
  3848. 192, /* N(17,51): questiondownsmall*/
  3849. 154, /* N(14,56): Odieresissmall*/
  3850. 207, /* N(7,63): OEsmall*/
  3851. 158, /* N(16,64): Ucircumflexsmall*/
  3852. 100, /* N(6,66): Dsmall*/
  3853. 143, /* N(11,66): Egravesmall*/
  3854. 185, /* N(10,70): Thornsmall*/
  3855. 159, /* N(14,70): Udieresissmall*/
  3856. 146, /* N(11,77): Iacutesmall*/
  3857. 126, /* N(10,80): Tildesmall*/
  3858. 216, /* N(14,84): Ydieresissmall*/
  3859. 58, /* N(5,90): colon*/
  3860. 101, /* N(6,90): Esmall*/
  3861. 44, /* N(5,95): comma*/
  3862. 102, /* N(6,96): Fsmall*/
  3863. 38, /* N(14,98): ampersandsmall*/
  3864. 147, /* N(11,99): Igravesmall*/
  3865. 47, /* N(8,104): fraction*/
  3866. 103, /* N(6,108): Gsmall*/
  3867. 194, /* N(11,110): Lslashsmall*/
  3868. 104, /* N(6,114): Hsmall*/
  3869. 123, /* N(13,117): colonmonetary*/
  3870. 244, /* N(11,121): Macronsmall*/
  3871. 129, /* N(9,126): asuperior*/
  3872. 178, /* N(13,130): commainferior*/
  3873. 105, /* N(6,132): Ismall*/
  3874. 150, /* N(11,132): Ntildesmall*/
  3875. 106, /* N(6,138): Jsmall*/
  3876. 151, /* N(11,143): Oacutesmall*/
  3877. 248, /* N(13,143): commasuperior*/
  3878. 107, /* N(6,144): Ksmall*/
  3879. 78, /* N(8,152): onethird*/
  3880. 245, /* N(9,162): bsuperior*/
  3881. 32, /* N(5,165): space*/
  3882. 242, /* N(11,165): Ogoneksmall*/
  3883. 165, /* N(13,169): eightinferior*/
  3884. 108, /* N(6,174): Lsmall*/
  3885. 152, /* N(11,176): Ogravesmall*/
  3886. 109, /* N(6,180): Msmall*/
  3887. 56, /* N(13,182): eightoldstyle*/
  3888. 191, /* N(11,187): Oslashsmall*/
  3889. 208, /* N(10,190): figuredash*/
  3890. 161, /* N(13,195): eightsuperior*/
  3891. 182, /* N(14,196): dollarinferior*/
  3892. 110, /* N(6,198): Nsmall*/
  3893. 155, /* N(11,198): Otildesmall*/
  3894. 169, /* N(12,204): centinferior*/
  3895. 235, /* N(9,207): dsuperior*/
  3896. 167, /* N(11,209): Scaronsmall*/
  3897. 36, /* N(14,210): dollaroldstyle*/
  3898. 35, /* N(12,216): centoldstyle*/
  3899. 156, /* N(11,220): Uacutesmall*/
  3900. 37, /* N(14,224): dollarsuperior*/
  3901. 228, /* N(9,225): esuperior*/
  3902. 111, /* N(6,228): Osmall*/
  3903. 130, /* N(12,228): centsuperior*/
  3904. 72, /* N(7,238): onehalf*/
  3905. 112, /* N(6,240): Psmall*/
  3906. 176, /* N(12,240): fiveinferior*/
  3907. 157, /* N(11,242): Ugravesmall*/
  3908. 113, /* N(6,246): Qsmall*/
  3909. 233, /* N(9,252): isuperior*/
  3910. 53, /* N(12,252): fiveoldstyle*/
  3911. 180, /* N(11,253): Yacutesmall*/
  3912. 63, /* N(13,260): questionsmall*/
  3913. 114, /* N(6,264): Rsmall*/
  3914. 189, /* N(11,264): Zcaronsmall*/
  3915. 222, /* N(12,264): fivesuperior*/
  3916. 95, /* N(14,266): hypheninferior*/
  3917. 89, /* N(3,267): ffi*/
  3918. 90, /* N(3,270): ffl*/
  3919. 162, /* N(12,276): fourinferior*/
  3920. 241, /* N(9,279): lsuperior*/
  3921. 71, /* N(10,280): onequarter*/
  3922. 209, /* N(14,280): hyphensuperior*/
  3923. 115, /* N(6,282): Ssmall*/
  3924. 247, /* N(9,288): msuperior*/
  3925. 52, /* N(12,288): fouroldstyle*/
  3926. 116, /* N(6,294): Tsmall*/
  3927. 43, /* N(14,294): onedotenleader*/
  3928. 166, /* N(13,299): seveninferior*/
  3929. 221, /* N(12,300): foursuperior*/
  3930. 246, /* N(9,306): nsuperior*/
  3931. 117, /* N(6,312): Usmall*/
  3932. 55, /* N(13,312): sevenoldstyle*/
  3933. 118, /* N(6,318): Vsmall*/
  3934. 179, /* N(14,322): periodinferior*/
  3935. 119, /* N(6,324): Wsmall*/
  3936. 74, /* N(9,324): oneeighth*/
  3937. 224, /* N(13,325): sevensuperior*/
  3938. 120, /* N(6,330): Xsmall*/
  3939. 124, /* N(9,333): onefitted*/
  3940. 249, /* N(14,336): periodsuperior*/
  3941. 163, /* N(13,338): threeinferior*/
  3942. 121, /* N(6,342): Ysmall*/
  3943. 175, /* N(9,342): osuperior*/
  3944. 51, /* N(13,351): threeoldstyle*/
  3945. 122, /* N(6,360): Zsmall*/
  3946. 73, /* N(13,364): threequarters*/
  3947. 220, /* N(13,377): threesuperior*/
  3948. 33, /* N(11,385): exclamsmall*/
  3949. 187, /* N(12,396): nineinferior*/
  3950. 229, /* N(9,405): rsuperior*/
  3951. 42, /* N(14,406): twodotenleader*/
  3952. 76, /* N(11,407): fiveeighths*/
  3953. 57, /* N(12,408): nineoldstyle*/
  3954. 59, /* N(9,414): semicolon*/
  3955. 225, /* N(12,420): ninesuperior*/
  3956. 234, /* N(9,423): ssuperior*/
  3957. 193, /* N(11,440): oneinferior*/
  3958. 49, /* N(11,451): oneoldstyle*/
  3959. 230, /* N(9,459): tsuperior*/
  3960. 218, /* N(11,462): onesuperior*/
  3961. 79, /* N(9,468): twothirds*/
  3962. 45, /* N(6,492): hyphen*/
  3963. 164, /* N(11,550): sixinferior*/
  3964. 54, /* N(11,561): sixoldstyle*/
  3965. 223, /* N(11,572): sixsuperior*/
  3966. 170, /* N(11,583): twoinferior*/
  3967. 77, /* N(12,588): seveneighths*/
  3968. 50, /* N(11,594): twooldstyle*/
  3969. 46, /* N(6,600): period*/
  3970. 219, /* N(11,605): twosuperior*/
  3971. 75, /* N(12,612): threeeighths*/
  3972. 125, /* N(6,618): rupiah*/
  3973. 188, /* N(12,624): zeroinferior*/
  3974. 48, /* N(12,636): zerooldstyle*/
  3975. 226, /* N(12,648): zerosuperior*/
  3976. 0};
  3977. /* MacGlyphEncoding */
  3978. static const ushort gs_c_known_encoding_7[] = {
  3979. N(7,0), /*.notdef*/
  3980. N(5,0), /*.null*/
  3981. N(2,2), /*CR*/
  3982. N(5,165), /*space*/
  3983. N(6,474), /*exclam*/
  3984. N(8,168), /*quotedbl*/
  3985. N(10,270), /*numbersign*/
  3986. N(6,438), /*dollar*/
  3987. N(7,245), /*percent*/
  3988. N(9,72), /*ampersand*/
  3989. N(11,539), /*quotesingle*/
  3990. N(9,369), /*parenleft*/
  3991. N(10,290), /*parenright*/
  3992. N(8,48), /*asterisk*/
  3993. N(4,456), /*plus*/
  3994. N(5,95), /*comma*/
  3995. N(6,492), /*hyphen*/
  3996. N(6,600), /*period*/
  3997. N(5,160), /*slash*/
  3998. N(4,464), /*zero*/
  3999. N(3,276), /*one*/
  4000. N(3,294), /*two*/
  4001. N(5,185), /*three*/
  4002. N(4,436), /*four*/
  4003. N(4,432), /*five*/
  4004. N(3,288), /*six*/
  4005. N(5,150), /*seven*/
  4006. N(5,105), /*eight*/
  4007. N(4,448), /*nine*/
  4008. N(5,90), /*colon*/
  4009. N(9,414), /*semicolon*/
  4010. N(4,444), /*less*/
  4011. N(5,110), /*equal*/
  4012. N(7,189), /*greater*/
  4013. N(8,160), /*question*/
  4014. N(2,34), /*at*/
  4015. N(1,0), /*A*/
  4016. N(1,1), /*B*/
  4017. N(1,2), /*C*/
  4018. N(1,3), /*D*/
  4019. N(1,4), /*E*/
  4020. N(1,5), /*F*/
  4021. N(1,6), /*G*/
  4022. N(1,7), /*H*/
  4023. N(1,8), /*I*/
  4024. N(1,9), /*J*/
  4025. N(1,10), /*K*/
  4026. N(1,11), /*L*/
  4027. N(1,12), /*M*/
  4028. N(1,13), /*N*/
  4029. N(1,14), /*O*/
  4030. N(1,15), /*P*/
  4031. N(1,16), /*Q*/
  4032. N(1,17), /*R*/
  4033. N(1,18), /*S*/
  4034. N(1,19), /*T*/
  4035. N(1,20), /*U*/
  4036. N(1,21), /*V*/
  4037. N(1,22), /*W*/
  4038. N(1,23), /*X*/
  4039. N(1,24), /*Y*/
  4040. N(1,25), /*Z*/
  4041. N(11,341), /*bracketleft*/
  4042. N(9,135), /*backslash*/
  4043. N(12,192), /*bracketright*/
  4044. N(11,308), /*asciicircum*/
  4045. N(10,320), /*underscore*/
  4046. N(5,125), /*grave*/
  4047. N(1,26), /*a*/
  4048. N(1,27), /*b*/
  4049. N(1,28), /*c*/
  4050. N(1,29), /*d*/
  4051. N(1,30), /*e*/
  4052. N(1,31), /*f*/
  4053. N(1,32), /*g*/
  4054. N(1,33), /*h*/
  4055. N(1,34), /*i*/
  4056. N(1,35), /*j*/
  4057. N(1,36), /*k*/
  4058. N(1,37), /*l*/
  4059. N(1,38), /*m*/
  4060. N(1,39), /*n*/
  4061. N(1,40), /*o*/
  4062. N(1,41), /*p*/
  4063. N(1,42), /*q*/
  4064. N(1,43), /*r*/
  4065. N(1,44), /*s*/
  4066. N(1,45), /*t*/
  4067. N(1,46), /*u*/
  4068. N(1,47), /*v*/
  4069. N(1,48), /*w*/
  4070. N(1,49), /*x*/
  4071. N(1,50), /*y*/
  4072. N(1,51), /*z*/
  4073. N(9,144), /*braceleft*/
  4074. N(3,255), /*bar*/
  4075. N(10,140), /*braceright*/
  4076. N(10,130), /*asciitilde*/
  4077. N(9,0), /*Adieresis*/
  4078. N(5,10), /*Aring*/
  4079. N(8,0), /*Ccedilla*/
  4080. N(6,72), /*Eacute*/
  4081. N(6,204), /*Ntilde*/
  4082. N(9,27), /*Odieresis*/
  4083. N(9,45), /*Udieresis*/
  4084. N(6,366), /*aacute*/
  4085. N(6,378), /*agrave*/
  4086. N(11,275), /*acircumflex*/
  4087. N(9,63), /*adieresis*/
  4088. N(6,384), /*atilde*/
  4089. N(5,75), /*aring*/
  4090. N(8,56), /*ccedilla*/
  4091. N(6,444), /*eacute*/
  4092. N(6,456), /*egrave*/
  4093. N(11,363), /*ecircumflex*/
  4094. N(9,216), /*edieresis*/
  4095. N(6,498), /*iacute*/
  4096. N(6,504), /*igrave*/
  4097. N(11,418), /*icircumflex*/
  4098. N(9,234), /*idieresis*/
  4099. N(6,558), /*ntilde*/
  4100. N(6,564), /*oacute*/
  4101. N(6,576), /*ograve*/
  4102. N(11,429), /*ocircumflex*/
  4103. N(9,315), /*odieresis*/
  4104. N(6,594), /*otilde*/
  4105. N(6,660), /*uacute*/
  4106. N(6,666), /*ugrave*/
  4107. N(11,616), /*ucircumflex*/
  4108. N(9,477), /*udieresis*/
  4109. N(6,408), /*dagger*/
  4110. N(6,426), /*degree*/
  4111. N(4,424), /*cent*/
  4112. N(8,184), /*sterling*/
  4113. N(7,266), /*section*/
  4114. N(6,390), /*bullet*/
  4115. N(9,360), /*paragraph*/
  4116. N(10,200), /*germandbls*/
  4117. N(10,310), /*registered*/
  4118. N(9,180), /*copyright*/
  4119. N(9,450), /*trademark*/
  4120. N(5,55), /*acute*/
  4121. N(8,72), /*dieresis*/
  4122. N(8,144), /*notequal*/
  4123. N(2,0), /*AE*/
  4124. N(6,222), /*Oslash*/
  4125. N(8,120), /*infinity*/
  4126. N(9,378), /*plusminus*/
  4127. N(9,261), /*lessequal*/
  4128. N(12,324), /*greaterequal*/
  4129. N(3,297), /*yen*/
  4130. N(3,273), /*mu1*/
  4131. N(11,517), /*partialdiff*/
  4132. N(9,432), /*summation*/
  4133. N(7,252), /*product*/
  4134. N(2,48), /*pi*/
  4135. N(8,128), /*integral*/
  4136. N(11,473), /*ordfeminine*/
  4137. N(12,432), /*ordmasculine*/
  4138. N(3,9), /*Ohm*/
  4139. N(2,32), /*ae*/
  4140. N(6,588), /*oslash*/
  4141. N(12,504), /*questiondown*/
  4142. N(10,180), /*exclamdown*/
  4143. N(10,250), /*logicalnot*/
  4144. N(7,259), /*radical*/
  4145. N(6,480), /*florin*/
  4146. N(11,286), /*approxequal*/
  4147. N(9,243), /*increment*/
  4148. N(13,208), /*guillemotleft*/
  4149. N(14,238), /*guillemotright*/
  4150. N(8,88), /*ellipsis*/
  4151. N(7,217), /*nbspace*/
  4152. N(6,12), /*Agrave*/
  4153. N(6,24), /*Atilde*/
  4154. N(6,234), /*Otilde*/
  4155. N(2,8), /*OE*/
  4156. N(2,46), /*oe*/
  4157. N(6,468), /*endash*/
  4158. N(6,462), /*emdash*/
  4159. N(12,528), /*quotedblleft*/
  4160. N(13,273), /*quotedblright*/
  4161. N(9,387), /*quoteleft*/
  4162. N(10,300), /*quoteright*/
  4163. N(6,432), /*divide*/
  4164. N(7,210), /*lozenge*/
  4165. N(9,495), /*ydieresis*/
  4166. N(9,54), /*Ydieresis*/
  4167. N(8,104), /*fraction*/
  4168. N(8,64), /*currency*/
  4169. N(13,221), /*guilsinglleft*/
  4170. N(14,252), /*guilsinglright*/
  4171. N(2,38), /*fi*/
  4172. N(2,40), /*fl*/
  4173. N(9,189), /*daggerdbl*/
  4174. N(14,308), /*periodcentered*/
  4175. N(14,364), /*quotesinglbase*/
  4176. N(12,516), /*quotedblbase*/
  4177. N(11,528), /*perthousand*/
  4178. N(11,11), /*Acircumflex*/
  4179. N(11,55), /*Ecircumflex*/
  4180. N(6,0), /*Aacute*/
  4181. N(9,9), /*Edieresis*/
  4182. N(6,84), /*Egrave*/
  4183. N(6,120), /*Iacute*/
  4184. N(11,88), /*Icircumflex*/
  4185. N(9,18), /*Idieresis*/
  4186. N(6,126), /*Igrave*/
  4187. N(6,210), /*Oacute*/
  4188. N(11,154), /*Ocircumflex*/
  4189. N(9,90), /*applelogo*/
  4190. N(6,216), /*Ograve*/
  4191. N(6,300), /*Uacute*/
  4192. N(11,231), /*Ucircumflex*/
  4193. N(6,306), /*Ugrave*/
  4194. N(8,80), /*dotlessi*/
  4195. N(10,160), /*circumflex*/
  4196. N(5,190), /*tilde*/
  4197. N(9,351), /*overscore*/
  4198. N(5,80), /*breve*/
  4199. N(9,198), /*dotaccent*/
  4200. N(4,460), /*ring*/
  4201. N(7,133), /*cedilla*/
  4202. N(12,336), /*hungarumlaut*/
  4203. N(6,570), /*ogonek*/
  4204. N(5,85), /*caron*/
  4205. N(6,168), /*Lslash*/
  4206. N(6,528), /*lslash*/
  4207. N(6,276), /*Scaron*/
  4208. N(6,630), /*scaron*/
  4209. N(6,354), /*Zcaron*/
  4210. N(6,684), /*zcaron*/
  4211. N(9,153), /*brokenbar*/
  4212. N(3,6), /*Eth*/
  4213. N(3,264), /*eth*/
  4214. N(6,336), /*Yacute*/
  4215. N(6,672), /*yacute*/
  4216. N(5,45), /*Thorn*/
  4217. N(5,180), /*thorn*/
  4218. N(5,140), /*minus*/
  4219. N(8,136), /*multiply*/
  4220. N(11,462), /*onesuperior*/
  4221. N(11,605), /*twosuperior*/
  4222. N(13,377), /*threesuperior*/
  4223. N(7,238), /*onehalf*/
  4224. N(10,280), /*onequarter*/
  4225. N(13,364), /*threequarters*/
  4226. N(5,115), /*franc*/
  4227. N(6,102), /*Gbreve*/
  4228. N(6,486), /*gbreve*/
  4229. N(10,60), /*Idotaccent*/
  4230. N(8,32), /*Scedilla*/
  4231. N(8,176), /*scedilla*/
  4232. N(6,36), /*Cacute*/
  4233. N(6,396), /*cacute*/
  4234. N(6,42), /*Ccaron*/
  4235. N(6,402), /*ccaron*/
  4236. N(7,147), /*dmacron*/
  4237. 0};
  4238. static const ushort gs_c_known_encoding_reverse_7[] = {
  4239. 36, /* N(1,0): A*/
  4240. 144, /* N(2,0): AE*/
  4241. 1, /* N(5,0): .null*/
  4242. 201, /* N(6,0): Aacute*/
  4243. 100, /* N(8,0): Ccedilla*/
  4244. 98, /* N(9,0): Adieresis*/
  4245. 37, /* N(1,1): B*/
  4246. 38, /* N(1,2): C*/
  4247. 2, /* N(2,2): CR*/
  4248. 39, /* N(1,3): D*/
  4249. 40, /* N(1,4): E*/
  4250. 41, /* N(1,5): F*/
  4251. 42, /* N(1,6): G*/
  4252. 233, /* N(3,6): Eth*/
  4253. 43, /* N(1,7): H*/
  4254. 44, /* N(1,8): I*/
  4255. 176, /* N(2,8): OE*/
  4256. 45, /* N(1,9): J*/
  4257. 159, /* N(3,9): Ohm*/
  4258. 202, /* N(9,9): Edieresis*/
  4259. 46, /* N(1,10): K*/
  4260. 99, /* N(5,10): Aring*/
  4261. 47, /* N(1,11): L*/
  4262. 199, /* N(11,11): Acircumflex*/
  4263. 48, /* N(1,12): M*/
  4264. 173, /* N(6,12): Agrave*/
  4265. 49, /* N(1,13): N*/
  4266. 50, /* N(1,14): O*/
  4267. 51, /* N(1,15): P*/
  4268. 52, /* N(1,16): Q*/
  4269. 53, /* N(1,17): R*/
  4270. 54, /* N(1,18): S*/
  4271. 206, /* N(9,18): Idieresis*/
  4272. 55, /* N(1,19): T*/
  4273. 56, /* N(1,20): U*/
  4274. 57, /* N(1,21): V*/
  4275. 58, /* N(1,22): W*/
  4276. 59, /* N(1,23): X*/
  4277. 60, /* N(1,24): Y*/
  4278. 174, /* N(6,24): Atilde*/
  4279. 61, /* N(1,25): Z*/
  4280. 68, /* N(1,26): a*/
  4281. 69, /* N(1,27): b*/
  4282. 103, /* N(9,27): Odieresis*/
  4283. 70, /* N(1,28): c*/
  4284. 71, /* N(1,29): d*/
  4285. 72, /* N(1,30): e*/
  4286. 73, /* N(1,31): f*/
  4287. 74, /* N(1,32): g*/
  4288. 160, /* N(2,32): ae*/
  4289. 251, /* N(8,32): Scedilla*/
  4290. 75, /* N(1,33): h*/
  4291. 76, /* N(1,34): i*/
  4292. 35, /* N(2,34): at*/
  4293. 77, /* N(1,35): j*/
  4294. 78, /* N(1,36): k*/
  4295. 253, /* N(6,36): Cacute*/
  4296. 79, /* N(1,37): l*/
  4297. 80, /* N(1,38): m*/
  4298. 192, /* N(2,38): fi*/
  4299. 81, /* N(1,39): n*/
  4300. 82, /* N(1,40): o*/
  4301. 193, /* N(2,40): fl*/
  4302. 83, /* N(1,41): p*/
  4303. 84, /* N(1,42): q*/
  4304. 255, /* N(6,42): Ccaron*/
  4305. 85, /* N(1,43): r*/
  4306. 86, /* N(1,44): s*/
  4307. 87, /* N(1,45): t*/
  4308. 237, /* N(5,45): Thorn*/
  4309. 104, /* N(9,45): Udieresis*/
  4310. 88, /* N(1,46): u*/
  4311. 177, /* N(2,46): oe*/
  4312. 89, /* N(1,47): v*/
  4313. 90, /* N(1,48): w*/
  4314. 155, /* N(2,48): pi*/
  4315. 13, /* N(8,48): asterisk*/
  4316. 91, /* N(1,49): x*/
  4317. 92, /* N(1,50): y*/
  4318. 93, /* N(1,51): z*/
  4319. 187, /* N(9,54): Ydieresis*/
  4320. 141, /* N(5,55): acute*/
  4321. 200, /* N(11,55): Ecircumflex*/
  4322. 111, /* N(8,56): ccedilla*/
  4323. 250, /* N(10,60): Idotaccent*/
  4324. 108, /* N(9,63): adieresis*/
  4325. 189, /* N(8,64): currency*/
  4326. 101, /* N(6,72): Eacute*/
  4327. 142, /* N(8,72): dieresis*/
  4328. 9, /* N(9,72): ampersand*/
  4329. 110, /* N(5,75): aring*/
  4330. 219, /* N(5,80): breve*/
  4331. 215, /* N(8,80): dotlessi*/
  4332. 203, /* N(6,84): Egrave*/
  4333. 225, /* N(5,85): caron*/
  4334. 171, /* N(8,88): ellipsis*/
  4335. 205, /* N(11,88): Icircumflex*/
  4336. 29, /* N(5,90): colon*/
  4337. 210, /* N(9,90): applelogo*/
  4338. 15, /* N(5,95): comma*/
  4339. 248, /* N(6,102): Gbreve*/
  4340. 188, /* N(8,104): fraction*/
  4341. 27, /* N(5,105): eight*/
  4342. 32, /* N(5,110): equal*/
  4343. 247, /* N(5,115): franc*/
  4344. 204, /* N(6,120): Iacute*/
  4345. 146, /* N(8,120): infinity*/
  4346. 67, /* N(5,125): grave*/
  4347. 207, /* N(6,126): Igrave*/
  4348. 156, /* N(8,128): integral*/
  4349. 97, /* N(10,130): asciitilde*/
  4350. 222, /* N(7,133): cedilla*/
  4351. 63, /* N(9,135): backslash*/
  4352. 240, /* N(8,136): multiply*/
  4353. 239, /* N(5,140): minus*/
  4354. 96, /* N(10,140): braceright*/
  4355. 143, /* N(8,144): notequal*/
  4356. 94, /* N(9,144): braceleft*/
  4357. 257, /* N(7,147): dmacron*/
  4358. 26, /* N(5,150): seven*/
  4359. 232, /* N(9,153): brokenbar*/
  4360. 209, /* N(11,154): Ocircumflex*/
  4361. 18, /* N(5,160): slash*/
  4362. 34, /* N(8,160): question*/
  4363. 216, /* N(10,160): circumflex*/
  4364. 3, /* N(5,165): space*/
  4365. 226, /* N(6,168): Lslash*/
  4366. 5, /* N(8,168): quotedbl*/
  4367. 252, /* N(8,176): scedilla*/
  4368. 238, /* N(5,180): thorn*/
  4369. 139, /* N(9,180): copyright*/
  4370. 163, /* N(10,180): exclamdown*/
  4371. 133, /* N(8,184): sterling*/
  4372. 22, /* N(5,185): three*/
  4373. 33, /* N(7,189): greater*/
  4374. 194, /* N(9,189): daggerdbl*/
  4375. 217, /* N(5,190): tilde*/
  4376. 64, /* N(12,192): bracketright*/
  4377. 220, /* N(9,198): dotaccent*/
  4378. 137, /* N(10,200): germandbls*/
  4379. 102, /* N(6,204): Ntilde*/
  4380. 169, /* N(13,208): guillemotleft*/
  4381. 208, /* N(6,210): Oacute*/
  4382. 185, /* N(7,210): lozenge*/
  4383. 211, /* N(6,216): Ograve*/
  4384. 115, /* N(9,216): edieresis*/
  4385. 172, /* N(7,217): nbspace*/
  4386. 190, /* N(13,221): guilsinglleft*/
  4387. 145, /* N(6,222): Oslash*/
  4388. 213, /* N(11,231): Ucircumflex*/
  4389. 175, /* N(6,234): Otilde*/
  4390. 119, /* N(9,234): idieresis*/
  4391. 244, /* N(7,238): onehalf*/
  4392. 170, /* N(14,238): guillemotright*/
  4393. 168, /* N(9,243): increment*/
  4394. 8, /* N(7,245): percent*/
  4395. 164, /* N(10,250): logicalnot*/
  4396. 154, /* N(7,252): product*/
  4397. 191, /* N(14,252): guilsinglright*/
  4398. 95, /* N(3,255): bar*/
  4399. 165, /* N(7,259): radical*/
  4400. 148, /* N(9,261): lessequal*/
  4401. 234, /* N(3,264): eth*/
  4402. 134, /* N(7,266): section*/
  4403. 6, /* N(10,270): numbersign*/
  4404. 151, /* N(3,273): mu1*/
  4405. 181, /* N(13,273): quotedblright*/
  4406. 107, /* N(11,275): acircumflex*/
  4407. 20, /* N(3,276): one*/
  4408. 228, /* N(6,276): Scaron*/
  4409. 245, /* N(10,280): onequarter*/
  4410. 167, /* N(11,286): approxequal*/
  4411. 25, /* N(3,288): six*/
  4412. 12, /* N(10,290): parenright*/
  4413. 21, /* N(3,294): two*/
  4414. 150, /* N(3,297): yen*/
  4415. 212, /* N(6,300): Uacute*/
  4416. 183, /* N(10,300): quoteright*/
  4417. 214, /* N(6,306): Ugrave*/
  4418. 65, /* N(11,308): asciicircum*/
  4419. 195, /* N(14,308): periodcentered*/
  4420. 138, /* N(10,310): registered*/
  4421. 124, /* N(9,315): odieresis*/
  4422. 66, /* N(10,320): underscore*/
  4423. 149, /* N(12,324): greaterequal*/
  4424. 235, /* N(6,336): Yacute*/
  4425. 223, /* N(12,336): hungarumlaut*/
  4426. 62, /* N(11,341): bracketleft*/
  4427. 218, /* N(9,351): overscore*/
  4428. 230, /* N(6,354): Zcaron*/
  4429. 136, /* N(9,360): paragraph*/
  4430. 114, /* N(11,363): ecircumflex*/
  4431. 246, /* N(13,364): threequarters*/
  4432. 196, /* N(14,364): quotesinglbase*/
  4433. 105, /* N(6,366): aacute*/
  4434. 11, /* N(9,369): parenleft*/
  4435. 243, /* N(13,377): threesuperior*/
  4436. 106, /* N(6,378): agrave*/
  4437. 147, /* N(9,378): plusminus*/
  4438. 109, /* N(6,384): atilde*/
  4439. 182, /* N(9,387): quoteleft*/
  4440. 135, /* N(6,390): bullet*/
  4441. 254, /* N(6,396): cacute*/
  4442. 256, /* N(6,402): ccaron*/
  4443. 130, /* N(6,408): dagger*/
  4444. 30, /* N(9,414): semicolon*/
  4445. 118, /* N(11,418): icircumflex*/
  4446. 132, /* N(4,424): cent*/
  4447. 131, /* N(6,426): degree*/
  4448. 123, /* N(11,429): ocircumflex*/
  4449. 24, /* N(4,432): five*/
  4450. 184, /* N(6,432): divide*/
  4451. 153, /* N(9,432): summation*/
  4452. 158, /* N(12,432): ordmasculine*/
  4453. 23, /* N(4,436): four*/
  4454. 7, /* N(6,438): dollar*/
  4455. 31, /* N(4,444): less*/
  4456. 112, /* N(6,444): eacute*/
  4457. 28, /* N(4,448): nine*/
  4458. 140, /* N(9,450): trademark*/
  4459. 14, /* N(4,456): plus*/
  4460. 113, /* N(6,456): egrave*/
  4461. 221, /* N(4,460): ring*/
  4462. 179, /* N(6,462): emdash*/
  4463. 241, /* N(11,462): onesuperior*/
  4464. 19, /* N(4,464): zero*/
  4465. 178, /* N(6,468): endash*/
  4466. 157, /* N(11,473): ordfeminine*/
  4467. 4, /* N(6,474): exclam*/
  4468. 129, /* N(9,477): udieresis*/
  4469. 166, /* N(6,480): florin*/
  4470. 249, /* N(6,486): gbreve*/
  4471. 16, /* N(6,492): hyphen*/
  4472. 186, /* N(9,495): ydieresis*/
  4473. 116, /* N(6,498): iacute*/
  4474. 117, /* N(6,504): igrave*/
  4475. 162, /* N(12,504): questiondown*/
  4476. 197, /* N(12,516): quotedblbase*/
  4477. 152, /* N(11,517): partialdiff*/
  4478. 227, /* N(6,528): lslash*/
  4479. 198, /* N(11,528): perthousand*/
  4480. 180, /* N(12,528): quotedblleft*/
  4481. 10, /* N(11,539): quotesingle*/
  4482. 120, /* N(6,558): ntilde*/
  4483. 121, /* N(6,564): oacute*/
  4484. 224, /* N(6,570): ogonek*/
  4485. 122, /* N(6,576): ograve*/
  4486. 161, /* N(6,588): oslash*/
  4487. 125, /* N(6,594): otilde*/
  4488. 17, /* N(6,600): period*/
  4489. 242, /* N(11,605): twosuperior*/
  4490. 128, /* N(11,616): ucircumflex*/
  4491. 229, /* N(6,630): scaron*/
  4492. 126, /* N(6,660): uacute*/
  4493. 127, /* N(6,666): ugrave*/
  4494. 236, /* N(6,672): yacute*/
  4495. 231, /* N(6,684): zcaron*/
  4496. 0};
  4497. /* AdobeLatinOriginalGlyphEncoding */
  4498. static const ushort gs_c_known_encoding_8[] = {
  4499. N(7,0), /*.notdef*/
  4500. N(1,0), /*A*/
  4501. N(2,0), /*AE*/
  4502. N(6,0), /*Aacute*/
  4503. N(11,11), /*Acircumflex*/
  4504. N(9,0), /*Adieresis*/
  4505. N(6,12), /*Agrave*/
  4506. N(5,10), /*Aring*/
  4507. N(6,24), /*Atilde*/
  4508. N(1,1), /*B*/
  4509. N(1,2), /*C*/
  4510. N(8,0), /*Ccedilla*/
  4511. N(1,3), /*D*/
  4512. N(1,4), /*E*/
  4513. N(6,72), /*Eacute*/
  4514. N(11,55), /*Ecircumflex*/
  4515. N(9,9), /*Edieresis*/
  4516. N(6,84), /*Egrave*/
  4517. N(3,6), /*Eth*/
  4518. N(1,5), /*F*/
  4519. N(1,6), /*G*/
  4520. N(1,7), /*H*/
  4521. N(1,8), /*I*/
  4522. N(6,120), /*Iacute*/
  4523. N(11,88), /*Icircumflex*/
  4524. N(9,18), /*Idieresis*/
  4525. N(6,126), /*Igrave*/
  4526. N(1,9), /*J*/
  4527. N(1,10), /*K*/
  4528. N(1,11), /*L*/
  4529. N(6,168), /*Lslash*/
  4530. N(1,12), /*M*/
  4531. N(1,13), /*N*/
  4532. N(6,204), /*Ntilde*/
  4533. N(1,14), /*O*/
  4534. N(2,8), /*OE*/
  4535. N(6,210), /*Oacute*/
  4536. N(11,154), /*Ocircumflex*/
  4537. N(9,27), /*Odieresis*/
  4538. N(6,216), /*Ograve*/
  4539. N(6,222), /*Oslash*/
  4540. N(6,234), /*Otilde*/
  4541. N(1,15), /*P*/
  4542. N(1,16), /*Q*/
  4543. N(1,17), /*R*/
  4544. N(1,18), /*S*/
  4545. N(6,276), /*Scaron*/
  4546. N(1,19), /*T*/
  4547. N(5,45), /*Thorn*/
  4548. N(1,20), /*U*/
  4549. N(6,300), /*Uacute*/
  4550. N(11,231), /*Ucircumflex*/
  4551. N(9,45), /*Udieresis*/
  4552. N(6,306), /*Ugrave*/
  4553. N(1,21), /*V*/
  4554. N(1,22), /*W*/
  4555. N(1,23), /*X*/
  4556. N(1,24), /*Y*/
  4557. N(6,336), /*Yacute*/
  4558. N(9,54), /*Ydieresis*/
  4559. N(1,25), /*Z*/
  4560. N(6,354), /*Zcaron*/
  4561. N(1,26), /*a*/
  4562. N(6,366), /*aacute*/
  4563. N(11,275), /*acircumflex*/
  4564. N(5,55), /*acute*/
  4565. N(9,63), /*adieresis*/
  4566. N(2,32), /*ae*/
  4567. N(6,378), /*agrave*/
  4568. N(9,72), /*ampersand*/
  4569. N(5,75), /*aring*/
  4570. N(11,308), /*asciicircum*/
  4571. N(10,130), /*asciitilde*/
  4572. N(8,48), /*asterisk*/
  4573. N(2,34), /*at*/
  4574. N(6,384), /*atilde*/
  4575. N(1,27), /*b*/
  4576. N(9,135), /*backslash*/
  4577. N(3,255), /*bar*/
  4578. N(9,144), /*braceleft*/
  4579. N(10,140), /*braceright*/
  4580. N(11,341), /*bracketleft*/
  4581. N(12,192), /*bracketright*/
  4582. N(5,80), /*breve*/
  4583. N(9,153), /*brokenbar*/
  4584. N(6,390), /*bullet*/
  4585. N(1,28), /*c*/
  4586. N(5,85), /*caron*/
  4587. N(8,56), /*ccedilla*/
  4588. N(7,133), /*cedilla*/
  4589. N(4,424), /*cent*/
  4590. N(10,160), /*circumflex*/
  4591. N(5,90), /*colon*/
  4592. N(5,95), /*comma*/
  4593. N(9,180), /*copyright*/
  4594. N(8,64), /*currency*/
  4595. N(1,29), /*d*/
  4596. N(6,408), /*dagger*/
  4597. N(9,189), /*daggerdbl*/
  4598. N(6,426), /*degree*/
  4599. N(8,72), /*dieresis*/
  4600. N(6,432), /*divide*/
  4601. N(6,438), /*dollar*/
  4602. N(9,198), /*dotaccent*/
  4603. N(8,80), /*dotlessi*/
  4604. N(1,30), /*e*/
  4605. N(6,444), /*eacute*/
  4606. N(11,363), /*ecircumflex*/
  4607. N(9,216), /*edieresis*/
  4608. N(6,456), /*egrave*/
  4609. N(5,105), /*eight*/
  4610. N(8,88), /*ellipsis*/
  4611. N(6,462), /*emdash*/
  4612. N(6,468), /*endash*/
  4613. N(5,110), /*equal*/
  4614. N(3,264), /*eth*/
  4615. N(6,474), /*exclam*/
  4616. N(10,180), /*exclamdown*/
  4617. N(1,31), /*f*/
  4618. N(2,38), /*fi*/
  4619. N(4,432), /*five*/
  4620. N(2,40), /*fl*/
  4621. N(6,480), /*florin*/
  4622. N(4,436), /*four*/
  4623. N(8,104), /*fraction*/
  4624. N(1,32), /*g*/
  4625. N(10,200), /*germandbls*/
  4626. N(5,125), /*grave*/
  4627. N(7,189), /*greater*/
  4628. N(13,208), /*guillemotleft*/
  4629. N(14,238), /*guillemotright*/
  4630. N(13,221), /*guilsinglleft*/
  4631. N(14,252), /*guilsinglright*/
  4632. N(1,33), /*h*/
  4633. N(12,336), /*hungarumlaut*/
  4634. N(6,492), /*hyphen*/
  4635. N(1,34), /*i*/
  4636. N(6,498), /*iacute*/
  4637. N(11,418), /*icircumflex*/
  4638. N(9,234), /*idieresis*/
  4639. N(6,504), /*igrave*/
  4640. N(1,35), /*j*/
  4641. N(1,36), /*k*/
  4642. N(1,37), /*l*/
  4643. N(4,444), /*less*/
  4644. N(10,250), /*logicalnot*/
  4645. N(6,528), /*lslash*/
  4646. N(1,38), /*m*/
  4647. N(6,534), /*macron*/
  4648. N(5,140), /*minus*/
  4649. N(2,42), /*mu*/
  4650. N(8,136), /*multiply*/
  4651. N(1,39), /*n*/
  4652. N(4,448), /*nine*/
  4653. N(6,558), /*ntilde*/
  4654. N(10,270), /*numbersign*/
  4655. N(1,40), /*o*/
  4656. N(6,564), /*oacute*/
  4657. N(11,429), /*ocircumflex*/
  4658. N(9,315), /*odieresis*/
  4659. N(2,46), /*oe*/
  4660. N(6,570), /*ogonek*/
  4661. N(6,576), /*ograve*/
  4662. N(3,276), /*one*/
  4663. N(7,238), /*onehalf*/
  4664. N(10,280), /*onequarter*/
  4665. N(11,462), /*onesuperior*/
  4666. N(11,473), /*ordfeminine*/
  4667. N(12,432), /*ordmasculine*/
  4668. N(6,588), /*oslash*/
  4669. N(6,594), /*otilde*/
  4670. N(1,41), /*p*/
  4671. N(9,360), /*paragraph*/
  4672. N(9,369), /*parenleft*/
  4673. N(10,290), /*parenright*/
  4674. N(7,245), /*percent*/
  4675. N(6,600), /*period*/
  4676. N(14,308), /*periodcentered*/
  4677. N(11,528), /*perthousand*/
  4678. N(4,456), /*plus*/
  4679. N(9,378), /*plusminus*/
  4680. N(1,42), /*q*/
  4681. N(8,160), /*question*/
  4682. N(12,504), /*questiondown*/
  4683. N(8,168), /*quotedbl*/
  4684. N(12,516), /*quotedblbase*/
  4685. N(12,528), /*quotedblleft*/
  4686. N(13,273), /*quotedblright*/
  4687. N(9,387), /*quoteleft*/
  4688. N(10,300), /*quoteright*/
  4689. N(14,364), /*quotesinglbase*/
  4690. N(11,539), /*quotesingle*/
  4691. N(1,43), /*r*/
  4692. N(10,310), /*registered*/
  4693. N(4,460), /*ring*/
  4694. N(1,44), /*s*/
  4695. N(6,630), /*scaron*/
  4696. N(7,266), /*section*/
  4697. N(9,414), /*semicolon*/
  4698. N(5,150), /*seven*/
  4699. N(3,288), /*six*/
  4700. N(5,160), /*slash*/
  4701. N(5,165), /*space*/
  4702. N(8,184), /*sterling*/
  4703. N(1,45), /*t*/
  4704. N(5,180), /*thorn*/
  4705. N(5,185), /*three*/
  4706. N(13,364), /*threequarters*/
  4707. N(13,377), /*threesuperior*/
  4708. N(5,190), /*tilde*/
  4709. N(9,450), /*trademark*/
  4710. N(3,294), /*two*/
  4711. N(11,605), /*twosuperior*/
  4712. N(1,46), /*u*/
  4713. N(6,660), /*uacute*/
  4714. N(11,616), /*ucircumflex*/
  4715. N(9,477), /*udieresis*/
  4716. N(6,666), /*ugrave*/
  4717. N(10,320), /*underscore*/
  4718. N(1,47), /*v*/
  4719. N(1,48), /*w*/
  4720. N(1,49), /*x*/
  4721. N(1,50), /*y*/
  4722. N(6,672), /*yacute*/
  4723. N(9,495), /*ydieresis*/
  4724. N(3,297), /*yen*/
  4725. N(1,51), /*z*/
  4726. N(6,684), /*zcaron*/
  4727. N(4,464), /*zero*/
  4728. 0};
  4729. static const ushort gs_c_known_encoding_reverse_8[] = {
  4730. 1, /* N(1,0): A*/
  4731. 2, /* N(2,0): AE*/
  4732. 3, /* N(6,0): Aacute*/
  4733. 11, /* N(8,0): Ccedilla*/
  4734. 5, /* N(9,0): Adieresis*/
  4735. 9, /* N(1,1): B*/
  4736. 10, /* N(1,2): C*/
  4737. 12, /* N(1,3): D*/
  4738. 13, /* N(1,4): E*/
  4739. 19, /* N(1,5): F*/
  4740. 20, /* N(1,6): G*/
  4741. 18, /* N(3,6): Eth*/
  4742. 21, /* N(1,7): H*/
  4743. 22, /* N(1,8): I*/
  4744. 35, /* N(2,8): OE*/
  4745. 27, /* N(1,9): J*/
  4746. 16, /* N(9,9): Edieresis*/
  4747. 28, /* N(1,10): K*/
  4748. 7, /* N(5,10): Aring*/
  4749. 29, /* N(1,11): L*/
  4750. 4, /* N(11,11): Acircumflex*/
  4751. 31, /* N(1,12): M*/
  4752. 6, /* N(6,12): Agrave*/
  4753. 32, /* N(1,13): N*/
  4754. 34, /* N(1,14): O*/
  4755. 42, /* N(1,15): P*/
  4756. 43, /* N(1,16): Q*/
  4757. 44, /* N(1,17): R*/
  4758. 45, /* N(1,18): S*/
  4759. 25, /* N(9,18): Idieresis*/
  4760. 47, /* N(1,19): T*/
  4761. 49, /* N(1,20): U*/
  4762. 54, /* N(1,21): V*/
  4763. 55, /* N(1,22): W*/
  4764. 56, /* N(1,23): X*/
  4765. 57, /* N(1,24): Y*/
  4766. 8, /* N(6,24): Atilde*/
  4767. 60, /* N(1,25): Z*/
  4768. 62, /* N(1,26): a*/
  4769. 76, /* N(1,27): b*/
  4770. 38, /* N(9,27): Odieresis*/
  4771. 86, /* N(1,28): c*/
  4772. 96, /* N(1,29): d*/
  4773. 105, /* N(1,30): e*/
  4774. 118, /* N(1,31): f*/
  4775. 125, /* N(1,32): g*/
  4776. 67, /* N(2,32): ae*/
  4777. 133, /* N(1,33): h*/
  4778. 136, /* N(1,34): i*/
  4779. 74, /* N(2,34): at*/
  4780. 141, /* N(1,35): j*/
  4781. 142, /* N(1,36): k*/
  4782. 143, /* N(1,37): l*/
  4783. 147, /* N(1,38): m*/
  4784. 119, /* N(2,38): fi*/
  4785. 152, /* N(1,39): n*/
  4786. 156, /* N(1,40): o*/
  4787. 121, /* N(2,40): fl*/
  4788. 171, /* N(1,41): p*/
  4789. 181, /* N(1,42): q*/
  4790. 150, /* N(2,42): mu*/
  4791. 192, /* N(1,43): r*/
  4792. 195, /* N(1,44): s*/
  4793. 204, /* N(1,45): t*/
  4794. 48, /* N(5,45): Thorn*/
  4795. 52, /* N(9,45): Udieresis*/
  4796. 213, /* N(1,46): u*/
  4797. 160, /* N(2,46): oe*/
  4798. 219, /* N(1,47): v*/
  4799. 220, /* N(1,48): w*/
  4800. 73, /* N(8,48): asterisk*/
  4801. 221, /* N(1,49): x*/
  4802. 222, /* N(1,50): y*/
  4803. 226, /* N(1,51): z*/
  4804. 59, /* N(9,54): Ydieresis*/
  4805. 65, /* N(5,55): acute*/
  4806. 15, /* N(11,55): Ecircumflex*/
  4807. 88, /* N(8,56): ccedilla*/
  4808. 66, /* N(9,63): adieresis*/
  4809. 95, /* N(8,64): currency*/
  4810. 14, /* N(6,72): Eacute*/
  4811. 100, /* N(8,72): dieresis*/
  4812. 69, /* N(9,72): ampersand*/
  4813. 70, /* N(5,75): aring*/
  4814. 83, /* N(5,80): breve*/
  4815. 104, /* N(8,80): dotlessi*/
  4816. 17, /* N(6,84): Egrave*/
  4817. 87, /* N(5,85): caron*/
  4818. 111, /* N(8,88): ellipsis*/
  4819. 24, /* N(11,88): Icircumflex*/
  4820. 92, /* N(5,90): colon*/
  4821. 93, /* N(5,95): comma*/
  4822. 124, /* N(8,104): fraction*/
  4823. 110, /* N(5,105): eight*/
  4824. 114, /* N(5,110): equal*/
  4825. 23, /* N(6,120): Iacute*/
  4826. 127, /* N(5,125): grave*/
  4827. 26, /* N(6,126): Igrave*/
  4828. 72, /* N(10,130): asciitilde*/
  4829. 89, /* N(7,133): cedilla*/
  4830. 77, /* N(9,135): backslash*/
  4831. 151, /* N(8,136): multiply*/
  4832. 149, /* N(5,140): minus*/
  4833. 80, /* N(10,140): braceright*/
  4834. 79, /* N(9,144): braceleft*/
  4835. 199, /* N(5,150): seven*/
  4836. 84, /* N(9,153): brokenbar*/
  4837. 37, /* N(11,154): Ocircumflex*/
  4838. 201, /* N(5,160): slash*/
  4839. 182, /* N(8,160): question*/
  4840. 91, /* N(10,160): circumflex*/
  4841. 202, /* N(5,165): space*/
  4842. 30, /* N(6,168): Lslash*/
  4843. 184, /* N(8,168): quotedbl*/
  4844. 205, /* N(5,180): thorn*/
  4845. 94, /* N(9,180): copyright*/
  4846. 117, /* N(10,180): exclamdown*/
  4847. 203, /* N(8,184): sterling*/
  4848. 206, /* N(5,185): three*/
  4849. 128, /* N(7,189): greater*/
  4850. 98, /* N(9,189): daggerdbl*/
  4851. 209, /* N(5,190): tilde*/
  4852. 82, /* N(12,192): bracketright*/
  4853. 103, /* N(9,198): dotaccent*/
  4854. 126, /* N(10,200): germandbls*/
  4855. 33, /* N(6,204): Ntilde*/
  4856. 129, /* N(13,208): guillemotleft*/
  4857. 36, /* N(6,210): Oacute*/
  4858. 39, /* N(6,216): Ograve*/
  4859. 108, /* N(9,216): edieresis*/
  4860. 131, /* N(13,221): guilsinglleft*/
  4861. 40, /* N(6,222): Oslash*/
  4862. 51, /* N(11,231): Ucircumflex*/
  4863. 41, /* N(6,234): Otilde*/
  4864. 139, /* N(9,234): idieresis*/
  4865. 164, /* N(7,238): onehalf*/
  4866. 130, /* N(14,238): guillemotright*/
  4867. 175, /* N(7,245): percent*/
  4868. 145, /* N(10,250): logicalnot*/
  4869. 132, /* N(14,252): guilsinglright*/
  4870. 78, /* N(3,255): bar*/
  4871. 115, /* N(3,264): eth*/
  4872. 197, /* N(7,266): section*/
  4873. 155, /* N(10,270): numbersign*/
  4874. 187, /* N(13,273): quotedblright*/
  4875. 64, /* N(11,275): acircumflex*/
  4876. 163, /* N(3,276): one*/
  4877. 46, /* N(6,276): Scaron*/
  4878. 165, /* N(10,280): onequarter*/
  4879. 200, /* N(3,288): six*/
  4880. 174, /* N(10,290): parenright*/
  4881. 211, /* N(3,294): two*/
  4882. 225, /* N(3,297): yen*/
  4883. 50, /* N(6,300): Uacute*/
  4884. 189, /* N(10,300): quoteright*/
  4885. 53, /* N(6,306): Ugrave*/
  4886. 71, /* N(11,308): asciicircum*/
  4887. 177, /* N(14,308): periodcentered*/
  4888. 193, /* N(10,310): registered*/
  4889. 159, /* N(9,315): odieresis*/
  4890. 218, /* N(10,320): underscore*/
  4891. 58, /* N(6,336): Yacute*/
  4892. 134, /* N(12,336): hungarumlaut*/
  4893. 81, /* N(11,341): bracketleft*/
  4894. 61, /* N(6,354): Zcaron*/
  4895. 172, /* N(9,360): paragraph*/
  4896. 107, /* N(11,363): ecircumflex*/
  4897. 207, /* N(13,364): threequarters*/
  4898. 190, /* N(14,364): quotesinglbase*/
  4899. 63, /* N(6,366): aacute*/
  4900. 173, /* N(9,369): parenleft*/
  4901. 208, /* N(13,377): threesuperior*/
  4902. 68, /* N(6,378): agrave*/
  4903. 180, /* N(9,378): plusminus*/
  4904. 75, /* N(6,384): atilde*/
  4905. 188, /* N(9,387): quoteleft*/
  4906. 85, /* N(6,390): bullet*/
  4907. 97, /* N(6,408): dagger*/
  4908. 198, /* N(9,414): semicolon*/
  4909. 138, /* N(11,418): icircumflex*/
  4910. 90, /* N(4,424): cent*/
  4911. 99, /* N(6,426): degree*/
  4912. 158, /* N(11,429): ocircumflex*/
  4913. 120, /* N(4,432): five*/
  4914. 101, /* N(6,432): divide*/
  4915. 168, /* N(12,432): ordmasculine*/
  4916. 123, /* N(4,436): four*/
  4917. 102, /* N(6,438): dollar*/
  4918. 144, /* N(4,444): less*/
  4919. 106, /* N(6,444): eacute*/
  4920. 153, /* N(4,448): nine*/
  4921. 210, /* N(9,450): trademark*/
  4922. 179, /* N(4,456): plus*/
  4923. 109, /* N(6,456): egrave*/
  4924. 194, /* N(4,460): ring*/
  4925. 112, /* N(6,462): emdash*/
  4926. 166, /* N(11,462): onesuperior*/
  4927. 228, /* N(4,464): zero*/
  4928. 113, /* N(6,468): endash*/
  4929. 167, /* N(11,473): ordfeminine*/
  4930. 116, /* N(6,474): exclam*/
  4931. 216, /* N(9,477): udieresis*/
  4932. 122, /* N(6,480): florin*/
  4933. 135, /* N(6,492): hyphen*/
  4934. 224, /* N(9,495): ydieresis*/
  4935. 137, /* N(6,498): iacute*/
  4936. 140, /* N(6,504): igrave*/
  4937. 183, /* N(12,504): questiondown*/
  4938. 185, /* N(12,516): quotedblbase*/
  4939. 146, /* N(6,528): lslash*/
  4940. 178, /* N(11,528): perthousand*/
  4941. 186, /* N(12,528): quotedblleft*/
  4942. 148, /* N(6,534): macron*/
  4943. 191, /* N(11,539): quotesingle*/
  4944. 154, /* N(6,558): ntilde*/
  4945. 157, /* N(6,564): oacute*/
  4946. 161, /* N(6,570): ogonek*/
  4947. 162, /* N(6,576): ograve*/
  4948. 169, /* N(6,588): oslash*/
  4949. 170, /* N(6,594): otilde*/
  4950. 176, /* N(6,600): period*/
  4951. 212, /* N(11,605): twosuperior*/
  4952. 215, /* N(11,616): ucircumflex*/
  4953. 196, /* N(6,630): scaron*/
  4954. 214, /* N(6,660): uacute*/
  4955. 217, /* N(6,666): ugrave*/
  4956. 223, /* N(6,672): yacute*/
  4957. 227, /* N(6,684): zcaron*/
  4958. 0};
  4959. /* AdobeLatinExtensionGlyphEncoding */
  4960. static const ushort gs_c_known_encoding_9[] = {
  4961. N(6,6), /*Abreve*/
  4962. N(7,14), /*Amacron*/
  4963. N(7,21), /*Aogonek*/
  4964. N(6,36), /*Cacute*/
  4965. N(6,42), /*Ccaron*/
  4966. N(6,54), /*Dcaron*/
  4967. N(6,60), /*Dcroat*/
  4968. N(5,15), /*Delta*/
  4969. N(6,78), /*Ecaron*/
  4970. N(10,40), /*Edotaccent*/
  4971. N(7,28), /*Emacron*/
  4972. N(7,35), /*Eogonek*/
  4973. N(6,102), /*Gbreve*/
  4974. N(12,12), /*Gcommaaccent*/
  4975. N(10,60), /*Idotaccent*/
  4976. N(7,49), /*Imacron*/
  4977. N(7,56), /*Iogonek*/
  4978. N(12,24), /*Kcommaaccent*/
  4979. N(6,150), /*Lacute*/
  4980. N(6,162), /*Lcaron*/
  4981. N(12,36), /*Lcommaaccent*/
  4982. N(6,186), /*Nacute*/
  4983. N(6,192), /*Ncaron*/
  4984. N(12,48), /*Ncommaaccent*/
  4985. N(13,26), /*Ohungarumlaut*/
  4986. N(7,70), /*Omacron*/
  4987. N(6,252), /*Racute*/
  4988. N(6,258), /*Rcaron*/
  4989. N(12,60), /*Rcommaaccent*/
  4990. N(6,270), /*Sacute*/
  4991. N(8,32), /*Scedilla*/
  4992. N(12,72), /*Scommaaccent*/
  4993. N(6,288), /*Tcaron*/
  4994. N(12,84), /*Tcommaaccent*/
  4995. N(13,39), /*Uhungarumlaut*/
  4996. N(7,84), /*Umacron*/
  4997. N(7,91), /*Uogonek*/
  4998. N(5,50), /*Uring*/
  4999. N(6,348), /*Zacute*/
  5000. N(10,90), /*Zdotaccent*/
  5001. N(6,372), /*abreve*/
  5002. N(7,105), /*amacron*/
  5003. N(7,112), /*aogonek*/
  5004. N(6,396), /*cacute*/
  5005. N(6,402), /*ccaron*/
  5006. N(11,352), /*commaaccent*/
  5007. N(6,414), /*dcaron*/
  5008. N(6,420), /*dcroat*/
  5009. N(6,450), /*ecaron*/
  5010. N(10,170), /*edotaccent*/
  5011. N(7,168), /*emacron*/
  5012. N(7,175), /*eogonek*/
  5013. N(6,486), /*gbreve*/
  5014. N(12,312), /*gcommaaccent*/
  5015. N(12,324), /*greaterequal*/
  5016. N(7,196), /*imacron*/
  5017. N(7,203), /*iogonek*/
  5018. N(12,360), /*kcommaaccent*/
  5019. N(6,510), /*lacute*/
  5020. N(6,522), /*lcaron*/
  5021. N(12,372), /*lcommaaccent*/
  5022. N(9,261), /*lessequal*/
  5023. N(7,210), /*lozenge*/
  5024. N(6,546), /*nacute*/
  5025. N(6,552), /*ncaron*/
  5026. N(12,384), /*ncommaaccent*/
  5027. N(8,144), /*notequal*/
  5028. N(13,234), /*ohungarumlaut*/
  5029. N(7,224), /*omacron*/
  5030. N(11,517), /*partialdiff*/
  5031. N(6,606), /*racute*/
  5032. N(7,259), /*radical*/
  5033. N(6,612), /*rcaron*/
  5034. N(12,540), /*rcommaaccent*/
  5035. N(6,624), /*sacute*/
  5036. N(8,176), /*scedilla*/
  5037. N(12,576), /*scommaaccent*/
  5038. N(9,432), /*summation*/
  5039. N(6,648), /*tcaron*/
  5040. N(12,600), /*tcommaaccent*/
  5041. N(13,403), /*uhungarumlaut*/
  5042. N(7,280), /*umacron*/
  5043. N(7,287), /*uogonek*/
  5044. N(5,200), /*uring*/
  5045. N(6,678), /*zacute*/
  5046. N(10,330), /*zdotaccent*/
  5047. 0};
  5048. static const ushort gs_c_known_encoding_reverse_9[] = {
  5049. 0, /* N(6,6): Abreve*/
  5050. 13, /* N(12,12): Gcommaaccent*/
  5051. 1, /* N(7,14): Amacron*/
  5052. 7, /* N(5,15): Delta*/
  5053. 2, /* N(7,21): Aogonek*/
  5054. 17, /* N(12,24): Kcommaaccent*/
  5055. 24, /* N(13,26): Ohungarumlaut*/
  5056. 10, /* N(7,28): Emacron*/
  5057. 30, /* N(8,32): Scedilla*/
  5058. 11, /* N(7,35): Eogonek*/
  5059. 3, /* N(6,36): Cacute*/
  5060. 20, /* N(12,36): Lcommaaccent*/
  5061. 34, /* N(13,39): Uhungarumlaut*/
  5062. 9, /* N(10,40): Edotaccent*/
  5063. 4, /* N(6,42): Ccaron*/
  5064. 23, /* N(12,48): Ncommaaccent*/
  5065. 15, /* N(7,49): Imacron*/
  5066. 37, /* N(5,50): Uring*/
  5067. 5, /* N(6,54): Dcaron*/
  5068. 16, /* N(7,56): Iogonek*/
  5069. 6, /* N(6,60): Dcroat*/
  5070. 14, /* N(10,60): Idotaccent*/
  5071. 28, /* N(12,60): Rcommaaccent*/
  5072. 25, /* N(7,70): Omacron*/
  5073. 31, /* N(12,72): Scommaaccent*/
  5074. 8, /* N(6,78): Ecaron*/
  5075. 35, /* N(7,84): Umacron*/
  5076. 33, /* N(12,84): Tcommaaccent*/
  5077. 39, /* N(10,90): Zdotaccent*/
  5078. 36, /* N(7,91): Uogonek*/
  5079. 12, /* N(6,102): Gbreve*/
  5080. 41, /* N(7,105): amacron*/
  5081. 42, /* N(7,112): aogonek*/
  5082. 66, /* N(8,144): notequal*/
  5083. 18, /* N(6,150): Lacute*/
  5084. 19, /* N(6,162): Lcaron*/
  5085. 50, /* N(7,168): emacron*/
  5086. 49, /* N(10,170): edotaccent*/
  5087. 51, /* N(7,175): eogonek*/
  5088. 75, /* N(8,176): scedilla*/
  5089. 21, /* N(6,186): Nacute*/
  5090. 22, /* N(6,192): Ncaron*/
  5091. 55, /* N(7,196): imacron*/
  5092. 83, /* N(5,200): uring*/
  5093. 56, /* N(7,203): iogonek*/
  5094. 62, /* N(7,210): lozenge*/
  5095. 68, /* N(7,224): omacron*/
  5096. 67, /* N(13,234): ohungarumlaut*/
  5097. 26, /* N(6,252): Racute*/
  5098. 27, /* N(6,258): Rcaron*/
  5099. 71, /* N(7,259): radical*/
  5100. 61, /* N(9,261): lessequal*/
  5101. 29, /* N(6,270): Sacute*/
  5102. 81, /* N(7,280): umacron*/
  5103. 82, /* N(7,287): uogonek*/
  5104. 32, /* N(6,288): Tcaron*/
  5105. 53, /* N(12,312): gcommaaccent*/
  5106. 54, /* N(12,324): greaterequal*/
  5107. 85, /* N(10,330): zdotaccent*/
  5108. 38, /* N(6,348): Zacute*/
  5109. 45, /* N(11,352): commaaccent*/
  5110. 57, /* N(12,360): kcommaaccent*/
  5111. 40, /* N(6,372): abreve*/
  5112. 60, /* N(12,372): lcommaaccent*/
  5113. 65, /* N(12,384): ncommaaccent*/
  5114. 43, /* N(6,396): cacute*/
  5115. 44, /* N(6,402): ccaron*/
  5116. 80, /* N(13,403): uhungarumlaut*/
  5117. 46, /* N(6,414): dcaron*/
  5118. 47, /* N(6,420): dcroat*/
  5119. 77, /* N(9,432): summation*/
  5120. 48, /* N(6,450): ecaron*/
  5121. 52, /* N(6,486): gbreve*/
  5122. 58, /* N(6,510): lacute*/
  5123. 69, /* N(11,517): partialdiff*/
  5124. 59, /* N(6,522): lcaron*/
  5125. 73, /* N(12,540): rcommaaccent*/
  5126. 63, /* N(6,546): nacute*/
  5127. 64, /* N(6,552): ncaron*/
  5128. 76, /* N(12,576): scommaaccent*/
  5129. 79, /* N(12,600): tcommaaccent*/
  5130. 70, /* N(6,606): racute*/
  5131. 72, /* N(6,612): rcaron*/
  5132. 74, /* N(6,624): sacute*/
  5133. 78, /* N(6,648): tcaron*/
  5134. 84, /* N(6,678): zacute*/
  5135. 0};
  5136. /* CFFStandardStrings */
  5137. static const ushort gs_c_known_encoding_10[] = {
  5138. N(7,0), /*.notdef*/
  5139. N(5,165), /*space*/
  5140. N(6,474), /*exclam*/
  5141. N(8,168), /*quotedbl*/
  5142. N(10,270), /*numbersign*/
  5143. N(6,438), /*dollar*/
  5144. N(7,245), /*percent*/
  5145. N(9,72), /*ampersand*/
  5146. N(10,300), /*quoteright*/
  5147. N(9,369), /*parenleft*/
  5148. N(10,290), /*parenright*/
  5149. N(8,48), /*asterisk*/
  5150. N(4,456), /*plus*/
  5151. N(5,95), /*comma*/
  5152. N(6,492), /*hyphen*/
  5153. N(6,600), /*period*/
  5154. N(5,160), /*slash*/
  5155. N(4,464), /*zero*/
  5156. N(3,276), /*one*/
  5157. N(3,294), /*two*/
  5158. N(5,185), /*three*/
  5159. N(4,436), /*four*/
  5160. N(4,432), /*five*/
  5161. N(3,288), /*six*/
  5162. N(5,150), /*seven*/
  5163. N(5,105), /*eight*/
  5164. N(4,448), /*nine*/
  5165. N(5,90), /*colon*/
  5166. N(9,414), /*semicolon*/
  5167. N(4,444), /*less*/
  5168. N(5,110), /*equal*/
  5169. N(7,189), /*greater*/
  5170. N(8,160), /*question*/
  5171. N(2,34), /*at*/
  5172. N(1,0), /*A*/
  5173. N(1,1), /*B*/
  5174. N(1,2), /*C*/
  5175. N(1,3), /*D*/
  5176. N(1,4), /*E*/
  5177. N(1,5), /*F*/
  5178. N(1,6), /*G*/
  5179. N(1,7), /*H*/
  5180. N(1,8), /*I*/
  5181. N(1,9), /*J*/
  5182. N(1,10), /*K*/
  5183. N(1,11), /*L*/
  5184. N(1,12), /*M*/
  5185. N(1,13), /*N*/
  5186. N(1,14), /*O*/
  5187. N(1,15), /*P*/
  5188. N(1,16), /*Q*/
  5189. N(1,17), /*R*/
  5190. N(1,18), /*S*/
  5191. N(1,19), /*T*/
  5192. N(1,20), /*U*/
  5193. N(1,21), /*V*/
  5194. N(1,22), /*W*/
  5195. N(1,23), /*X*/
  5196. N(1,24), /*Y*/
  5197. N(1,25), /*Z*/
  5198. N(11,341), /*bracketleft*/
  5199. N(9,135), /*backslash*/
  5200. N(12,192), /*bracketright*/
  5201. N(11,308), /*asciicircum*/
  5202. N(10,320), /*underscore*/
  5203. N(9,387), /*quoteleft*/
  5204. N(1,26), /*a*/
  5205. N(1,27), /*b*/
  5206. N(1,28), /*c*/
  5207. N(1,29), /*d*/
  5208. N(1,30), /*e*/
  5209. N(1,31), /*f*/
  5210. N(1,32), /*g*/
  5211. N(1,33), /*h*/
  5212. N(1,34), /*i*/
  5213. N(1,35), /*j*/
  5214. N(1,36), /*k*/
  5215. N(1,37), /*l*/
  5216. N(1,38), /*m*/
  5217. N(1,39), /*n*/
  5218. N(1,40), /*o*/
  5219. N(1,41), /*p*/
  5220. N(1,42), /*q*/
  5221. N(1,43), /*r*/
  5222. N(1,44), /*s*/
  5223. N(1,45), /*t*/
  5224. N(1,46), /*u*/
  5225. N(1,47), /*v*/
  5226. N(1,48), /*w*/
  5227. N(1,49), /*x*/
  5228. N(1,50), /*y*/
  5229. N(1,51), /*z*/
  5230. N(9,144), /*braceleft*/
  5231. N(3,255), /*bar*/
  5232. N(10,140), /*braceright*/
  5233. N(10,130), /*asciitilde*/
  5234. N(10,180), /*exclamdown*/
  5235. N(4,424), /*cent*/
  5236. N(8,184), /*sterling*/
  5237. N(8,104), /*fraction*/
  5238. N(3,297), /*yen*/
  5239. N(6,480), /*florin*/
  5240. N(7,266), /*section*/
  5241. N(8,64), /*currency*/
  5242. N(11,539), /*quotesingle*/
  5243. N(12,528), /*quotedblleft*/
  5244. N(13,208), /*guillemotleft*/
  5245. N(13,221), /*guilsinglleft*/
  5246. N(14,252), /*guilsinglright*/
  5247. N(2,38), /*fi*/
  5248. N(2,40), /*fl*/
  5249. N(6,468), /*endash*/
  5250. N(6,408), /*dagger*/
  5251. N(9,189), /*daggerdbl*/
  5252. N(14,308), /*periodcentered*/
  5253. N(9,360), /*paragraph*/
  5254. N(6,390), /*bullet*/
  5255. N(14,364), /*quotesinglbase*/
  5256. N(12,516), /*quotedblbase*/
  5257. N(13,273), /*quotedblright*/
  5258. N(14,238), /*guillemotright*/
  5259. N(8,88), /*ellipsis*/
  5260. N(11,528), /*perthousand*/
  5261. N(12,504), /*questiondown*/
  5262. N(5,125), /*grave*/
  5263. N(5,55), /*acute*/
  5264. N(10,160), /*circumflex*/
  5265. N(5,190), /*tilde*/
  5266. N(6,534), /*macron*/
  5267. N(5,80), /*breve*/
  5268. N(9,198), /*dotaccent*/
  5269. N(8,72), /*dieresis*/
  5270. N(4,460), /*ring*/
  5271. N(7,133), /*cedilla*/
  5272. N(12,336), /*hungarumlaut*/
  5273. N(6,570), /*ogonek*/
  5274. N(5,85), /*caron*/
  5275. N(6,462), /*emdash*/
  5276. N(2,0), /*AE*/
  5277. N(11,473), /*ordfeminine*/
  5278. N(6,168), /*Lslash*/
  5279. N(6,222), /*Oslash*/
  5280. N(2,8), /*OE*/
  5281. N(12,432), /*ordmasculine*/
  5282. N(2,32), /*ae*/
  5283. N(8,80), /*dotlessi*/
  5284. N(6,528), /*lslash*/
  5285. N(6,588), /*oslash*/
  5286. N(2,46), /*oe*/
  5287. N(10,200), /*germandbls*/
  5288. N(11,462), /*onesuperior*/
  5289. N(10,250), /*logicalnot*/
  5290. N(2,42), /*mu*/
  5291. N(9,450), /*trademark*/
  5292. N(3,6), /*Eth*/
  5293. N(7,238), /*onehalf*/
  5294. N(9,378), /*plusminus*/
  5295. N(5,45), /*Thorn*/
  5296. N(10,280), /*onequarter*/
  5297. N(6,432), /*divide*/
  5298. N(9,153), /*brokenbar*/
  5299. N(6,426), /*degree*/
  5300. N(5,180), /*thorn*/
  5301. N(13,364), /*threequarters*/
  5302. N(11,605), /*twosuperior*/
  5303. N(10,310), /*registered*/
  5304. N(5,140), /*minus*/
  5305. N(3,264), /*eth*/
  5306. N(8,136), /*multiply*/
  5307. N(13,377), /*threesuperior*/
  5308. N(9,180), /*copyright*/
  5309. N(6,0), /*Aacute*/
  5310. N(11,11), /*Acircumflex*/
  5311. N(9,0), /*Adieresis*/
  5312. N(6,12), /*Agrave*/
  5313. N(5,10), /*Aring*/
  5314. N(6,24), /*Atilde*/
  5315. N(8,0), /*Ccedilla*/
  5316. N(6,72), /*Eacute*/
  5317. N(11,55), /*Ecircumflex*/
  5318. N(9,9), /*Edieresis*/
  5319. N(6,84), /*Egrave*/
  5320. N(6,120), /*Iacute*/
  5321. N(11,88), /*Icircumflex*/
  5322. N(9,18), /*Idieresis*/
  5323. N(6,126), /*Igrave*/
  5324. N(6,204), /*Ntilde*/
  5325. N(6,210), /*Oacute*/
  5326. N(11,154), /*Ocircumflex*/
  5327. N(9,27), /*Odieresis*/
  5328. N(6,216), /*Ograve*/
  5329. N(6,234), /*Otilde*/
  5330. N(6,276), /*Scaron*/
  5331. N(6,300), /*Uacute*/
  5332. N(11,231), /*Ucircumflex*/
  5333. N(9,45), /*Udieresis*/
  5334. N(6,306), /*Ugrave*/
  5335. N(6,336), /*Yacute*/
  5336. N(9,54), /*Ydieresis*/
  5337. N(6,354), /*Zcaron*/
  5338. N(6,366), /*aacute*/
  5339. N(11,275), /*acircumflex*/
  5340. N(9,63), /*adieresis*/
  5341. N(6,378), /*agrave*/
  5342. N(5,75), /*aring*/
  5343. N(6,384), /*atilde*/
  5344. N(8,56), /*ccedilla*/
  5345. N(6,444), /*eacute*/
  5346. N(11,363), /*ecircumflex*/
  5347. N(9,216), /*edieresis*/
  5348. N(6,456), /*egrave*/
  5349. N(6,498), /*iacute*/
  5350. N(11,418), /*icircumflex*/
  5351. N(9,234), /*idieresis*/
  5352. N(6,504), /*igrave*/
  5353. N(6,558), /*ntilde*/
  5354. N(6,564), /*oacute*/
  5355. N(11,429), /*ocircumflex*/
  5356. N(9,315), /*odieresis*/
  5357. N(6,576), /*ograve*/
  5358. N(6,594), /*otilde*/
  5359. N(6,630), /*scaron*/
  5360. N(6,660), /*uacute*/
  5361. N(11,616), /*ucircumflex*/
  5362. N(9,477), /*udieresis*/
  5363. N(6,666), /*ugrave*/
  5364. N(6,672), /*yacute*/
  5365. N(9,495), /*ydieresis*/
  5366. N(6,684), /*zcaron*/
  5367. N(11,385), /*exclamsmall*/
  5368. N(17,0), /*Hungarumlautsmall*/
  5369. N(14,210), /*dollaroldstyle*/
  5370. N(14,224), /*dollarsuperior*/
  5371. N(14,98), /*ampersandsmall*/
  5372. N(10,0), /*Acutesmall*/
  5373. N(17,34), /*parenleftsuperior*/
  5374. N(18,18), /*parenrightsuperior*/
  5375. N(14,406), /*twodotenleader*/
  5376. N(14,294), /*onedotenleader*/
  5377. N(12,636), /*zerooldstyle*/
  5378. N(11,451), /*oneoldstyle*/
  5379. N(11,594), /*twooldstyle*/
  5380. N(13,351), /*threeoldstyle*/
  5381. N(12,288), /*fouroldstyle*/
  5382. N(12,252), /*fiveoldstyle*/
  5383. N(11,561), /*sixoldstyle*/
  5384. N(13,312), /*sevenoldstyle*/
  5385. N(13,182), /*eightoldstyle*/
  5386. N(12,408), /*nineoldstyle*/
  5387. N(13,143), /*commasuperior*/
  5388. N(19,0), /*threequartersemdash*/
  5389. N(14,336), /*periodsuperior*/
  5390. N(13,260), /*questionsmall*/
  5391. N(9,126), /*asuperior*/
  5392. N(9,162), /*bsuperior*/
  5393. N(12,228), /*centsuperior*/
  5394. N(9,207), /*dsuperior*/
  5395. N(9,225), /*esuperior*/
  5396. N(9,252), /*isuperior*/
  5397. N(9,279), /*lsuperior*/
  5398. N(9,288), /*msuperior*/
  5399. N(9,306), /*nsuperior*/
  5400. N(9,342), /*osuperior*/
  5401. N(9,405), /*rsuperior*/
  5402. N(9,423), /*ssuperior*/
  5403. N(9,459), /*tsuperior*/
  5404. N(2,36), /*ff*/
  5405. N(3,267), /*ffi*/
  5406. N(3,270), /*ffl*/
  5407. N(17,17), /*parenleftinferior*/
  5408. N(18,0), /*parenrightinferior*/
  5409. N(15,0), /*Circumflexsmall*/
  5410. N(14,280), /*hyphensuperior*/
  5411. N(10,50), /*Gravesmall*/
  5412. N(6,18), /*Asmall*/
  5413. N(6,30), /*Bsmall*/
  5414. N(6,48), /*Csmall*/
  5415. N(6,66), /*Dsmall*/
  5416. N(6,90), /*Esmall*/
  5417. N(6,96), /*Fsmall*/
  5418. N(6,108), /*Gsmall*/
  5419. N(6,114), /*Hsmall*/
  5420. N(6,132), /*Ismall*/
  5421. N(6,138), /*Jsmall*/
  5422. N(6,144), /*Ksmall*/
  5423. N(6,174), /*Lsmall*/
  5424. N(6,180), /*Msmall*/
  5425. N(6,198), /*Nsmall*/
  5426. N(6,228), /*Osmall*/
  5427. N(6,240), /*Psmall*/
  5428. N(6,246), /*Qsmall*/
  5429. N(6,264), /*Rsmall*/
  5430. N(6,282), /*Ssmall*/
  5431. N(6,294), /*Tsmall*/
  5432. N(6,312), /*Usmall*/
  5433. N(6,318), /*Vsmall*/
  5434. N(6,324), /*Wsmall*/
  5435. N(6,330), /*Xsmall*/
  5436. N(6,342), /*Ysmall*/
  5437. N(6,360), /*Zsmall*/
  5438. N(13,117), /*colonmonetary*/
  5439. N(9,333), /*onefitted*/
  5440. N(6,618), /*rupiah*/
  5441. N(10,80), /*Tildesmall*/
  5442. N(15,15), /*exclamdownsmall*/
  5443. N(12,216), /*centoldstyle*/
  5444. N(11,110), /*Lslashsmall*/
  5445. N(11,209), /*Scaronsmall*/
  5446. N(11,264), /*Zcaronsmall*/
  5447. N(13,13), /*Dieresissmall*/
  5448. N(10,20), /*Brevesmall*/
  5449. N(10,30), /*Caronsmall*/
  5450. N(14,14), /*Dotaccentsmall*/
  5451. N(11,121), /*Macronsmall*/
  5452. N(10,190), /*figuredash*/
  5453. N(14,266), /*hypheninferior*/
  5454. N(11,165), /*Ogoneksmall*/
  5455. N(9,36), /*Ringsmall*/
  5456. N(12,0), /*Cedillasmall*/
  5457. N(17,51), /*questiondownsmall*/
  5458. N(9,324), /*oneeighth*/
  5459. N(12,612), /*threeeighths*/
  5460. N(11,407), /*fiveeighths*/
  5461. N(12,588), /*seveneighths*/
  5462. N(8,152), /*onethird*/
  5463. N(9,468), /*twothirds*/
  5464. N(12,648), /*zerosuperior*/
  5465. N(12,300), /*foursuperior*/
  5466. N(12,264), /*fivesuperior*/
  5467. N(11,572), /*sixsuperior*/
  5468. N(13,325), /*sevensuperior*/
  5469. N(13,195), /*eightsuperior*/
  5470. N(12,420), /*ninesuperior*/
  5471. N(12,624), /*zeroinferior*/
  5472. N(11,440), /*oneinferior*/
  5473. N(11,583), /*twoinferior*/
  5474. N(13,338), /*threeinferior*/
  5475. N(12,276), /*fourinferior*/
  5476. N(12,240), /*fiveinferior*/
  5477. N(11,550), /*sixinferior*/
  5478. N(13,299), /*seveninferior*/
  5479. N(13,169), /*eightinferior*/
  5480. N(12,396), /*nineinferior*/
  5481. N(12,204), /*centinferior*/
  5482. N(14,196), /*dollarinferior*/
  5483. N(14,322), /*periodinferior*/
  5484. N(13,130), /*commainferior*/
  5485. N(11,22), /*Agravesmall*/
  5486. N(11,0), /*Aacutesmall*/
  5487. N(16,0), /*Acircumflexsmall*/
  5488. N(11,33), /*Atildesmall*/
  5489. N(14,0), /*Adieresissmall*/
  5490. N(10,10), /*Aringsmall*/
  5491. N(7,7), /*AEsmall*/
  5492. N(13,0), /*Ccedillasmall*/
  5493. N(11,66), /*Egravesmall*/
  5494. N(11,44), /*Eacutesmall*/
  5495. N(16,16), /*Ecircumflexsmall*/
  5496. N(14,28), /*Edieresissmall*/
  5497. N(11,99), /*Igravesmall*/
  5498. N(11,77), /*Iacutesmall*/
  5499. N(16,32), /*Icircumflexsmall*/
  5500. N(14,42), /*Idieresissmall*/
  5501. N(8,8), /*Ethsmall*/
  5502. N(11,132), /*Ntildesmall*/
  5503. N(11,176), /*Ogravesmall*/
  5504. N(11,143), /*Oacutesmall*/
  5505. N(16,48), /*Ocircumflexsmall*/
  5506. N(11,198), /*Otildesmall*/
  5507. N(14,56), /*Odieresissmall*/
  5508. N(7,63), /*OEsmall*/
  5509. N(11,187), /*Oslashsmall*/
  5510. N(11,242), /*Ugravesmall*/
  5511. N(11,220), /*Uacutesmall*/
  5512. N(16,64), /*Ucircumflexsmall*/
  5513. N(14,70), /*Udieresissmall*/
  5514. N(11,253), /*Yacutesmall*/
  5515. N(10,70), /*Thornsmall*/
  5516. N(14,84), /*Ydieresissmall*/
  5517. 0};
  5518. static const ushort gs_c_known_encoding_reverse_10[] = {
  5519. 34, /* N(1,0): A*/
  5520. 138, /* N(2,0): AE*/
  5521. 171, /* N(6,0): Aacute*/
  5522. 177, /* N(8,0): Ccedilla*/
  5523. 173, /* N(9,0): Adieresis*/
  5524. 234, /* N(10,0): Acutesmall*/
  5525. 348, /* N(11,0): Aacutesmall*/
  5526. 318, /* N(12,0): Cedillasmall*/
  5527. 354, /* N(13,0): Ccedillasmall*/
  5528. 351, /* N(14,0): Adieresissmall*/
  5529. 271, /* N(15,0): Circumflexsmall*/
  5530. 349, /* N(16,0): Acircumflexsmall*/
  5531. 230, /* N(17,0): Hungarumlautsmall*/
  5532. 270, /* N(18,0): parenrightinferior*/
  5533. 250, /* N(19,0): threequartersemdash*/
  5534. 35, /* N(1,1): B*/
  5535. 36, /* N(1,2): C*/
  5536. 37, /* N(1,3): D*/
  5537. 38, /* N(1,4): E*/
  5538. 39, /* N(1,5): F*/
  5539. 40, /* N(1,6): G*/
  5540. 154, /* N(3,6): Eth*/
  5541. 41, /* N(1,7): H*/
  5542. 353, /* N(7,7): AEsmall*/
  5543. 42, /* N(1,8): I*/
  5544. 142, /* N(2,8): OE*/
  5545. 363, /* N(8,8): Ethsmall*/
  5546. 43, /* N(1,9): J*/
  5547. 180, /* N(9,9): Edieresis*/
  5548. 44, /* N(1,10): K*/
  5549. 175, /* N(5,10): Aring*/
  5550. 352, /* N(10,10): Aringsmall*/
  5551. 45, /* N(1,11): L*/
  5552. 172, /* N(11,11): Acircumflex*/
  5553. 46, /* N(1,12): M*/
  5554. 174, /* N(6,12): Agrave*/
  5555. 47, /* N(1,13): N*/
  5556. 309, /* N(13,13): Dieresissmall*/
  5557. 48, /* N(1,14): O*/
  5558. 312, /* N(14,14): Dotaccentsmall*/
  5559. 49, /* N(1,15): P*/
  5560. 304, /* N(15,15): exclamdownsmall*/
  5561. 50, /* N(1,16): Q*/
  5562. 357, /* N(16,16): Ecircumflexsmall*/
  5563. 51, /* N(1,17): R*/
  5564. 269, /* N(17,17): parenleftinferior*/
  5565. 52, /* N(1,18): S*/
  5566. 274, /* N(6,18): Asmall*/
  5567. 184, /* N(9,18): Idieresis*/
  5568. 236, /* N(18,18): parenrightsuperior*/
  5569. 53, /* N(1,19): T*/
  5570. 54, /* N(1,20): U*/
  5571. 310, /* N(10,20): Brevesmall*/
  5572. 55, /* N(1,21): V*/
  5573. 56, /* N(1,22): W*/
  5574. 347, /* N(11,22): Agravesmall*/
  5575. 57, /* N(1,23): X*/
  5576. 58, /* N(1,24): Y*/
  5577. 176, /* N(6,24): Atilde*/
  5578. 59, /* N(1,25): Z*/
  5579. 66, /* N(1,26): a*/
  5580. 67, /* N(1,27): b*/
  5581. 189, /* N(9,27): Odieresis*/
  5582. 68, /* N(1,28): c*/
  5583. 358, /* N(14,28): Edieresissmall*/
  5584. 69, /* N(1,29): d*/
  5585. 70, /* N(1,30): e*/
  5586. 275, /* N(6,30): Bsmall*/
  5587. 311, /* N(10,30): Caronsmall*/
  5588. 71, /* N(1,31): f*/
  5589. 72, /* N(1,32): g*/
  5590. 144, /* N(2,32): ae*/
  5591. 361, /* N(16,32): Icircumflexsmall*/
  5592. 73, /* N(1,33): h*/
  5593. 350, /* N(11,33): Atildesmall*/
  5594. 74, /* N(1,34): i*/
  5595. 33, /* N(2,34): at*/
  5596. 235, /* N(17,34): parenleftsuperior*/
  5597. 75, /* N(1,35): j*/
  5598. 76, /* N(1,36): k*/
  5599. 266, /* N(2,36): ff*/
  5600. 317, /* N(9,36): Ringsmall*/
  5601. 77, /* N(1,37): l*/
  5602. 78, /* N(1,38): m*/
  5603. 109, /* N(2,38): fi*/
  5604. 79, /* N(1,39): n*/
  5605. 80, /* N(1,40): o*/
  5606. 110, /* N(2,40): fl*/
  5607. 81, /* N(1,41): p*/
  5608. 82, /* N(1,42): q*/
  5609. 152, /* N(2,42): mu*/
  5610. 362, /* N(14,42): Idieresissmall*/
  5611. 83, /* N(1,43): r*/
  5612. 84, /* N(1,44): s*/
  5613. 356, /* N(11,44): Eacutesmall*/
  5614. 85, /* N(1,45): t*/
  5615. 157, /* N(5,45): Thorn*/
  5616. 195, /* N(9,45): Udieresis*/
  5617. 86, /* N(1,46): u*/
  5618. 148, /* N(2,46): oe*/
  5619. 87, /* N(1,47): v*/
  5620. 88, /* N(1,48): w*/
  5621. 276, /* N(6,48): Csmall*/
  5622. 11, /* N(8,48): asterisk*/
  5623. 367, /* N(16,48): Ocircumflexsmall*/
  5624. 89, /* N(1,49): x*/
  5625. 90, /* N(1,50): y*/
  5626. 273, /* N(10,50): Gravesmall*/
  5627. 91, /* N(1,51): z*/
  5628. 319, /* N(17,51): questiondownsmall*/
  5629. 198, /* N(9,54): Ydieresis*/
  5630. 125, /* N(5,55): acute*/
  5631. 179, /* N(11,55): Ecircumflex*/
  5632. 206, /* N(8,56): ccedilla*/
  5633. 369, /* N(14,56): Odieresissmall*/
  5634. 370, /* N(7,63): OEsmall*/
  5635. 202, /* N(9,63): adieresis*/
  5636. 103, /* N(8,64): currency*/
  5637. 374, /* N(16,64): Ucircumflexsmall*/
  5638. 277, /* N(6,66): Dsmall*/
  5639. 355, /* N(11,66): Egravesmall*/
  5640. 377, /* N(10,70): Thornsmall*/
  5641. 375, /* N(14,70): Udieresissmall*/
  5642. 178, /* N(6,72): Eacute*/
  5643. 131, /* N(8,72): dieresis*/
  5644. 7, /* N(9,72): ampersand*/
  5645. 204, /* N(5,75): aring*/
  5646. 360, /* N(11,77): Iacutesmall*/
  5647. 129, /* N(5,80): breve*/
  5648. 145, /* N(8,80): dotlessi*/
  5649. 303, /* N(10,80): Tildesmall*/
  5650. 181, /* N(6,84): Egrave*/
  5651. 378, /* N(14,84): Ydieresissmall*/
  5652. 136, /* N(5,85): caron*/
  5653. 121, /* N(8,88): ellipsis*/
  5654. 183, /* N(11,88): Icircumflex*/
  5655. 27, /* N(5,90): colon*/
  5656. 278, /* N(6,90): Esmall*/
  5657. 13, /* N(5,95): comma*/
  5658. 279, /* N(6,96): Fsmall*/
  5659. 233, /* N(14,98): ampersandsmall*/
  5660. 359, /* N(11,99): Igravesmall*/
  5661. 99, /* N(8,104): fraction*/
  5662. 25, /* N(5,105): eight*/
  5663. 280, /* N(6,108): Gsmall*/
  5664. 30, /* N(5,110): equal*/
  5665. 306, /* N(11,110): Lslashsmall*/
  5666. 281, /* N(6,114): Hsmall*/
  5667. 300, /* N(13,117): colonmonetary*/
  5668. 182, /* N(6,120): Iacute*/
  5669. 313, /* N(11,121): Macronsmall*/
  5670. 124, /* N(5,125): grave*/
  5671. 185, /* N(6,126): Igrave*/
  5672. 253, /* N(9,126): asuperior*/
  5673. 95, /* N(10,130): asciitilde*/
  5674. 346, /* N(13,130): commainferior*/
  5675. 282, /* N(6,132): Ismall*/
  5676. 364, /* N(11,132): Ntildesmall*/
  5677. 133, /* N(7,133): cedilla*/
  5678. 61, /* N(9,135): backslash*/
  5679. 168, /* N(8,136): multiply*/
  5680. 283, /* N(6,138): Jsmall*/
  5681. 166, /* N(5,140): minus*/
  5682. 94, /* N(10,140): braceright*/
  5683. 366, /* N(11,143): Oacutesmall*/
  5684. 249, /* N(13,143): commasuperior*/
  5685. 284, /* N(6,144): Ksmall*/
  5686. 92, /* N(9,144): braceleft*/
  5687. 24, /* N(5,150): seven*/
  5688. 324, /* N(8,152): onethird*/
  5689. 160, /* N(9,153): brokenbar*/
  5690. 188, /* N(11,154): Ocircumflex*/
  5691. 16, /* N(5,160): slash*/
  5692. 32, /* N(8,160): question*/
  5693. 126, /* N(10,160): circumflex*/
  5694. 254, /* N(9,162): bsuperior*/
  5695. 1, /* N(5,165): space*/
  5696. 316, /* N(11,165): Ogoneksmall*/
  5697. 140, /* N(6,168): Lslash*/
  5698. 3, /* N(8,168): quotedbl*/
  5699. 341, /* N(13,169): eightinferior*/
  5700. 285, /* N(6,174): Lsmall*/
  5701. 365, /* N(11,176): Ogravesmall*/
  5702. 162, /* N(5,180): thorn*/
  5703. 286, /* N(6,180): Msmall*/
  5704. 170, /* N(9,180): copyright*/
  5705. 96, /* N(10,180): exclamdown*/
  5706. 247, /* N(13,182): eightoldstyle*/
  5707. 98, /* N(8,184): sterling*/
  5708. 20, /* N(5,185): three*/
  5709. 371, /* N(11,187): Oslashsmall*/
  5710. 31, /* N(7,189): greater*/
  5711. 113, /* N(9,189): daggerdbl*/
  5712. 127, /* N(5,190): tilde*/
  5713. 314, /* N(10,190): figuredash*/
  5714. 62, /* N(12,192): bracketright*/
  5715. 331, /* N(13,195): eightsuperior*/
  5716. 344, /* N(14,196): dollarinferior*/
  5717. 287, /* N(6,198): Nsmall*/
  5718. 130, /* N(9,198): dotaccent*/
  5719. 368, /* N(11,198): Otildesmall*/
  5720. 149, /* N(10,200): germandbls*/
  5721. 186, /* N(6,204): Ntilde*/
  5722. 343, /* N(12,204): centinferior*/
  5723. 256, /* N(9,207): dsuperior*/
  5724. 106, /* N(13,208): guillemotleft*/
  5725. 307, /* N(11,209): Scaronsmall*/
  5726. 187, /* N(6,210): Oacute*/
  5727. 231, /* N(14,210): dollaroldstyle*/
  5728. 190, /* N(6,216): Ograve*/
  5729. 209, /* N(9,216): edieresis*/
  5730. 305, /* N(12,216): centoldstyle*/
  5731. 373, /* N(11,220): Uacutesmall*/
  5732. 107, /* N(13,221): guilsinglleft*/
  5733. 141, /* N(6,222): Oslash*/
  5734. 232, /* N(14,224): dollarsuperior*/
  5735. 257, /* N(9,225): esuperior*/
  5736. 288, /* N(6,228): Osmall*/
  5737. 255, /* N(12,228): centsuperior*/
  5738. 194, /* N(11,231): Ucircumflex*/
  5739. 191, /* N(6,234): Otilde*/
  5740. 213, /* N(9,234): idieresis*/
  5741. 155, /* N(7,238): onehalf*/
  5742. 120, /* N(14,238): guillemotright*/
  5743. 289, /* N(6,240): Psmall*/
  5744. 338, /* N(12,240): fiveinferior*/
  5745. 372, /* N(11,242): Ugravesmall*/
  5746. 6, /* N(7,245): percent*/
  5747. 290, /* N(6,246): Qsmall*/
  5748. 151, /* N(10,250): logicalnot*/
  5749. 258, /* N(9,252): isuperior*/
  5750. 244, /* N(12,252): fiveoldstyle*/
  5751. 108, /* N(14,252): guilsinglright*/
  5752. 376, /* N(11,253): Yacutesmall*/
  5753. 93, /* N(3,255): bar*/
  5754. 252, /* N(13,260): questionsmall*/
  5755. 167, /* N(3,264): eth*/
  5756. 291, /* N(6,264): Rsmall*/
  5757. 308, /* N(11,264): Zcaronsmall*/
  5758. 328, /* N(12,264): fivesuperior*/
  5759. 102, /* N(7,266): section*/
  5760. 315, /* N(14,266): hypheninferior*/
  5761. 267, /* N(3,267): ffi*/
  5762. 268, /* N(3,270): ffl*/
  5763. 4, /* N(10,270): numbersign*/
  5764. 119, /* N(13,273): quotedblright*/
  5765. 201, /* N(11,275): acircumflex*/
  5766. 18, /* N(3,276): one*/
  5767. 192, /* N(6,276): Scaron*/
  5768. 337, /* N(12,276): fourinferior*/
  5769. 259, /* N(9,279): lsuperior*/
  5770. 158, /* N(10,280): onequarter*/
  5771. 272, /* N(14,280): hyphensuperior*/
  5772. 292, /* N(6,282): Ssmall*/
  5773. 23, /* N(3,288): six*/
  5774. 260, /* N(9,288): msuperior*/
  5775. 243, /* N(12,288): fouroldstyle*/
  5776. 10, /* N(10,290): parenright*/
  5777. 19, /* N(3,294): two*/
  5778. 293, /* N(6,294): Tsmall*/
  5779. 238, /* N(14,294): onedotenleader*/
  5780. 100, /* N(3,297): yen*/
  5781. 340, /* N(13,299): seveninferior*/
  5782. 193, /* N(6,300): Uacute*/
  5783. 8, /* N(10,300): quoteright*/
  5784. 327, /* N(12,300): foursuperior*/
  5785. 196, /* N(6,306): Ugrave*/
  5786. 261, /* N(9,306): nsuperior*/
  5787. 63, /* N(11,308): asciicircum*/
  5788. 114, /* N(14,308): periodcentered*/
  5789. 165, /* N(10,310): registered*/
  5790. 294, /* N(6,312): Usmall*/
  5791. 246, /* N(13,312): sevenoldstyle*/
  5792. 218, /* N(9,315): odieresis*/
  5793. 295, /* N(6,318): Vsmall*/
  5794. 64, /* N(10,320): underscore*/
  5795. 345, /* N(14,322): periodinferior*/
  5796. 296, /* N(6,324): Wsmall*/
  5797. 320, /* N(9,324): oneeighth*/
  5798. 330, /* N(13,325): sevensuperior*/
  5799. 297, /* N(6,330): Xsmall*/
  5800. 301, /* N(9,333): onefitted*/
  5801. 197, /* N(6,336): Yacute*/
  5802. 134, /* N(12,336): hungarumlaut*/
  5803. 251, /* N(14,336): periodsuperior*/
  5804. 336, /* N(13,338): threeinferior*/
  5805. 60, /* N(11,341): bracketleft*/
  5806. 298, /* N(6,342): Ysmall*/
  5807. 262, /* N(9,342): osuperior*/
  5808. 242, /* N(13,351): threeoldstyle*/
  5809. 199, /* N(6,354): Zcaron*/
  5810. 299, /* N(6,360): Zsmall*/
  5811. 115, /* N(9,360): paragraph*/
  5812. 208, /* N(11,363): ecircumflex*/
  5813. 163, /* N(13,364): threequarters*/
  5814. 117, /* N(14,364): quotesinglbase*/
  5815. 200, /* N(6,366): aacute*/
  5816. 9, /* N(9,369): parenleft*/
  5817. 169, /* N(13,377): threesuperior*/
  5818. 203, /* N(6,378): agrave*/
  5819. 156, /* N(9,378): plusminus*/
  5820. 205, /* N(6,384): atilde*/
  5821. 229, /* N(11,385): exclamsmall*/
  5822. 65, /* N(9,387): quoteleft*/
  5823. 116, /* N(6,390): bullet*/
  5824. 342, /* N(12,396): nineinferior*/
  5825. 263, /* N(9,405): rsuperior*/
  5826. 237, /* N(14,406): twodotenleader*/
  5827. 322, /* N(11,407): fiveeighths*/
  5828. 112, /* N(6,408): dagger*/
  5829. 248, /* N(12,408): nineoldstyle*/
  5830. 28, /* N(9,414): semicolon*/
  5831. 212, /* N(11,418): icircumflex*/
  5832. 332, /* N(12,420): ninesuperior*/
  5833. 264, /* N(9,423): ssuperior*/
  5834. 97, /* N(4,424): cent*/
  5835. 161, /* N(6,426): degree*/
  5836. 217, /* N(11,429): ocircumflex*/
  5837. 22, /* N(4,432): five*/
  5838. 159, /* N(6,432): divide*/
  5839. 143, /* N(12,432): ordmasculine*/
  5840. 21, /* N(4,436): four*/
  5841. 5, /* N(6,438): dollar*/
  5842. 334, /* N(11,440): oneinferior*/
  5843. 29, /* N(4,444): less*/
  5844. 207, /* N(6,444): eacute*/
  5845. 26, /* N(4,448): nine*/
  5846. 153, /* N(9,450): trademark*/
  5847. 240, /* N(11,451): oneoldstyle*/
  5848. 12, /* N(4,456): plus*/
  5849. 210, /* N(6,456): egrave*/
  5850. 265, /* N(9,459): tsuperior*/
  5851. 132, /* N(4,460): ring*/
  5852. 137, /* N(6,462): emdash*/
  5853. 150, /* N(11,462): onesuperior*/
  5854. 17, /* N(4,464): zero*/
  5855. 111, /* N(6,468): endash*/
  5856. 325, /* N(9,468): twothirds*/
  5857. 139, /* N(11,473): ordfeminine*/
  5858. 2, /* N(6,474): exclam*/
  5859. 224, /* N(9,477): udieresis*/
  5860. 101, /* N(6,480): florin*/
  5861. 14, /* N(6,492): hyphen*/
  5862. 227, /* N(9,495): ydieresis*/
  5863. 211, /* N(6,498): iacute*/
  5864. 214, /* N(6,504): igrave*/
  5865. 123, /* N(12,504): questiondown*/
  5866. 118, /* N(12,516): quotedblbase*/
  5867. 146, /* N(6,528): lslash*/
  5868. 122, /* N(11,528): perthousand*/
  5869. 105, /* N(12,528): quotedblleft*/
  5870. 128, /* N(6,534): macron*/
  5871. 104, /* N(11,539): quotesingle*/
  5872. 339, /* N(11,550): sixinferior*/
  5873. 215, /* N(6,558): ntilde*/
  5874. 245, /* N(11,561): sixoldstyle*/
  5875. 216, /* N(6,564): oacute*/
  5876. 135, /* N(6,570): ogonek*/
  5877. 329, /* N(11,572): sixsuperior*/
  5878. 219, /* N(6,576): ograve*/
  5879. 335, /* N(11,583): twoinferior*/
  5880. 147, /* N(6,588): oslash*/
  5881. 323, /* N(12,588): seveneighths*/
  5882. 220, /* N(6,594): otilde*/
  5883. 241, /* N(11,594): twooldstyle*/
  5884. 15, /* N(6,600): period*/
  5885. 164, /* N(11,605): twosuperior*/
  5886. 321, /* N(12,612): threeeighths*/
  5887. 223, /* N(11,616): ucircumflex*/
  5888. 302, /* N(6,618): rupiah*/
  5889. 333, /* N(12,624): zeroinferior*/
  5890. 221, /* N(6,630): scaron*/
  5891. 239, /* N(12,636): zerooldstyle*/
  5892. 326, /* N(12,648): zerosuperior*/
  5893. 222, /* N(6,660): uacute*/
  5894. 225, /* N(6,666): ugrave*/
  5895. 226, /* N(6,672): yacute*/
  5896. 228, /* N(6,684): zcaron*/
  5897. 0};
  5898. const ushort *const gs_c_known_encodings[] = {
  5899. gs_c_known_encoding_0, /* StandardEncoding */
  5900. gs_c_known_encoding_1, /* ISOLatin1Encoding */
  5901. gs_c_known_encoding_2, /* SymbolEncoding */
  5902. gs_c_known_encoding_3, /* DingbatsEncoding */
  5903. gs_c_known_encoding_4, /* WinAnsiEncoding */
  5904. gs_c_known_encoding_5, /* MacRomanEncoding */
  5905. gs_c_known_encoding_6, /* MacExpertEncoding */
  5906. gs_c_known_encoding_7, /* MacGlyphEncoding */
  5907. gs_c_known_encoding_8, /* AdobeLatinOriginalGlyphEncoding */
  5908. gs_c_known_encoding_9, /* AdobeLatinExtensionGlyphEncoding */
  5909. gs_c_known_encoding_10, /* CFFStandardStrings */
  5910. 0
  5911. };
  5912. const ushort *const gs_c_known_encodings_reverse[] = {
  5913. gs_c_known_encoding_reverse_0, /* StandardEncoding */
  5914. gs_c_known_encoding_reverse_1, /* ISOLatin1Encoding */
  5915. gs_c_known_encoding_reverse_2, /* SymbolEncoding */
  5916. gs_c_known_encoding_reverse_3, /* DingbatsEncoding */
  5917. gs_c_known_encoding_reverse_4, /* WinAnsiEncoding */
  5918. gs_c_known_encoding_reverse_5, /* MacRomanEncoding */
  5919. gs_c_known_encoding_reverse_6, /* MacExpertEncoding */
  5920. gs_c_known_encoding_reverse_7, /* MacGlyphEncoding */
  5921. gs_c_known_encoding_reverse_8, /* AdobeLatinOriginalGlyphEncoding */
  5922. gs_c_known_encoding_reverse_9, /* AdobeLatinExtensionGlyphEncoding */
  5923. gs_c_known_encoding_reverse_10, /* CFFStandardStrings */
  5924. 0
  5925. };
  5926. const ushort gs_c_known_encoding_lengths[] = {
  5927. 256,256,256,256,256,256,256,258,229,86,379,0};
  5928. const ushort gs_c_known_encoding_reverse_lengths[] = {
  5929. 149,205,189,188,224,208,165,257,228,86,378,0};