ReplaceIdIdref.C 179 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these librararies and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /* A lexical scanner generated by flex */
  24. /* scanner skeleton version:
  25. * $XConsortium: ReplaceIdIdref.C /main/7 1996/10/28 14:04:30 drk $
  26. */
  27. #define FLEX_SCANNER
  28. #include <stdio.h>
  29. /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
  30. #ifdef c_plusplus
  31. #ifndef __cplusplus
  32. #define __cplusplus
  33. #endif
  34. #endif
  35. #ifdef __cplusplus
  36. #include <stdlib.h>
  37. #if !defined(__osf__) && !defined(USL) && !defined(linux) && !defined(CSRG_BASED)
  38. #include <osfcn.h>
  39. #endif
  40. /* use prototypes in function declarations */
  41. #define nodedata_USE_PROTOS
  42. /* the "const" storage-class-modifier is valid */
  43. #define nodedata_USE_CONST
  44. #else /* ! __cplusplus */
  45. #ifdef __STDC__
  46. #ifdef __GNUC__
  47. #include <stddef.h>
  48. void *malloc( size_t );
  49. void free( void* );
  50. #else
  51. #include <stdlib.h>
  52. #endif /* __GNUC__ */
  53. #define nodedata_USE_PROTOS
  54. #define nodedata_USE_CONST
  55. #endif /* __STDC__ */
  56. #endif /* ! __cplusplus */
  57. #ifdef __TURBOC__
  58. #define nodedata_USE_CONST
  59. #endif
  60. #ifndef nodedata_USE_CONST
  61. #define const
  62. #endif
  63. #ifdef nodedata_USE_PROTOS
  64. #define nodedata_PROTO(proto) proto
  65. #else
  66. #define nodedata_PROTO(proto) ()
  67. /* we can't get here if it's an ANSI C compiler, or a C++ compiler,
  68. * so it's got to be a K&R compiler, and therefore there's no standard
  69. * place from which to include these definitions
  70. */
  71. char *malloc();
  72. int free();
  73. int read();
  74. #endif
  75. /* amount of stuff to slurp up with each read */
  76. #ifndef nodedata_READ_BUF_SIZE
  77. #define nodedata_READ_BUF_SIZE 8192
  78. #endif
  79. /* returned upon end-of-file */
  80. #define nodedata_END_TOK 0
  81. /* copy whatever the last rule matched to the standard output */
  82. /* cast to (char *) is because for 8-bit chars, nodedatatext is (unsigned char *) */
  83. /* this used to be an fputs(), but since the string might contain NUL's,
  84. * we now use fwrite()
  85. */
  86. #define ECHO (void) fwrite( (char *) nodedatatext, nodedataleng, 1, nodedataout )
  87. /* gets input and stuffs it into "buf". number of characters read, or nodedata_NULL,
  88. * is returned in "result".
  89. */
  90. #define nodedata_INPUT(buf,result,max_size) \
  91. if ( (result = read( fileno(nodedatain), (char *) buf, max_size )) < 0 ) \
  92. nodedata_FATAL_ERROR( "read() in flex scanner failed" );
  93. #define nodedata_NULL 0
  94. /* no semi-colon after return; correct usage is to write "nodedataterminate();" -
  95. * we don't want an extra ';' after the "return" because that will cause
  96. * some compilers to complain about unreachable statements.
  97. */
  98. #define nodedataterminate() return ( nodedata_NULL )
  99. /* report a fatal error */
  100. /* The funky do-while is used to turn this macro definition into
  101. * a single C statement (which needs a semi-colon terminator).
  102. * This avoids problems with code like:
  103. *
  104. * if ( something_happens )
  105. * nodedata_FATAL_ERROR( "oops, the something happened" );
  106. * else
  107. * everything_okay();
  108. *
  109. * Prior to using the do-while the compiler would get upset at the
  110. * "else" because it interpreted the "if" statement as being all
  111. * done when it reached the ';' after the nodedata_FATAL_ERROR() call.
  112. */
  113. #define nodedata_FATAL_ERROR(msg) \
  114. do \
  115. { \
  116. (void) fputs( msg, stderr ); \
  117. (void) putc( '\n', stderr ); \
  118. exit( 1 ); \
  119. } \
  120. while ( 0 )
  121. /* default nodedatawrap function - always treat EOF as an EOF */
  122. #define nodedatawrap() 1
  123. /* enter a start condition. This macro really ought to take a parameter,
  124. * but we do it the disgusting crufty way forced on us by the ()-less
  125. * definition of BEGIN
  126. */
  127. #define BEGIN nodedata_start = 1 + 2 *
  128. /* action number for EOF rule of a given start state */
  129. #define nodedata_STATE_EOF(state) (nodedata_END_OF_BUFFER + state + 1)
  130. /* special action meaning "start processing a new file" */
  131. #define nodedata_NEW_FILE \
  132. do \
  133. { \
  134. nodedata_init_buffer( nodedata_current_buffer, nodedatain ); \
  135. nodedata_load_buffer_state(); \
  136. } \
  137. while ( 0 )
  138. /* default declaration of generated scanner - a define so the user can
  139. * easily add parameters
  140. */
  141. #define nodedata_DECL int nodedatalex nodedata_PROTO(( void ))
  142. /* code executed at the end of each rule */
  143. #define nodedata_BREAK break;
  144. #define nodedata_END_OF_BUFFER_CHAR 0
  145. #ifndef nodedata_BUF_SIZE
  146. #define nodedata_BUF_SIZE (nodedata_READ_BUF_SIZE * 2) /* size of default input buffer */
  147. #endif
  148. typedef struct nodedata_buffer_state *nodedata_BUFFER_STATE;
  149. #define nodedata_CHAR unsigned char
  150. #define INITIAL 0
  151. /* exported interfaces... */
  152. #include "NodeData.h"
  153. /* imported interfaces... */
  154. #include <iostream>
  155. #include <sstream>
  156. using namespace std;
  157. #include <stdlib.h>
  158. #include <stdio.h>
  159. #include <assert.h>
  160. #include "misc/unique_id.h"
  161. #include "Token.h"
  162. #include "FlexBuffer.h"
  163. #include "NodeTask.h"
  164. #include "SearchEng.h"
  165. #include "OLAF.h"
  166. #include "SGMLName.h"
  167. #include "OL-Data.h"
  168. #include "BookTasks.h"
  169. #include "DataBase.h"
  170. #include "BookCaseDB.h"
  171. #include "GraphicsTask.h"
  172. #include "Dispatch.h"
  173. #include "api/utility.h"
  174. // Debugging macro
  175. #ifdef DEBUG
  176. static int dbgLevel=-1;
  177. #define DBG(level) if ( dbgLevel >= level)
  178. #else
  179. #define DBG(level) if (0)
  180. #endif
  181. /*
  182. * Forward declaration for my_input
  183. */
  184. static int my_input ( char *, int );
  185. #undef nodedata_INPUT
  186. #define nodedata_INPUT(b, r, ms ) ( r=my_input( ( char *)b,ms) )
  187. static char *myinput;
  188. static char *myinputptr;
  189. static char *myinputlim;
  190. NodeData *CurrentNodeData;
  191. extern void replace_entity ( FlexBuffer *, const char *);
  192. #define OLID 1
  193. #define OLIDREF 2
  194. #define GRAPHIC 3
  195. #define XREF 4
  196. static short int nodedata_nxt[][256] =
  197. {
  198. { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  199. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  200. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  201. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  202. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  203. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  204. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  205. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  206. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  207. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  208. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  209. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  210. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  211. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  212. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  213. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  214. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  215. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  216. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  217. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  218. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  219. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  220. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  221. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  222. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  223. 0, 0, 0, 0, 0, 0 },
  224. { 11, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  225. 13, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  226. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  227. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  228. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  229. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  230. 14, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  231. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  232. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  233. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  234. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  235. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  236. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  237. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  238. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  239. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  240. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  241. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  242. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  243. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  244. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  245. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  246. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  247. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  248. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  249. 12, 12, 12, 12, 12, 12 },
  250. { 11, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  251. 13, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  252. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  253. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  254. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  255. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  256. 14, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  257. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  258. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  259. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  260. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  261. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  262. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  263. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  264. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  265. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  266. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  267. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  268. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  269. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  270. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  271. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  272. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  273. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  274. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  275. 12, 12, 12, 12, 12, 12 },
  276. { 11, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  277. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  278. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  279. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  280. 15, 15, 15, 15, 15, 15, 15, 15, 16, 16,
  281. 16, 16, 16, 16, 16, 16, 16, 16, 15, 15,
  282. 17, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  283. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  284. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  285. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  286. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  287. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  288. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  289. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  290. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  291. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  292. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  293. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  294. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  295. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  296. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  297. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  298. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  299. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  300. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  301. 15, 15, 15, 15, 15, 15 },
  302. { 11, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  303. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  304. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  305. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  306. 15, 15, 15, 15, 15, 15, 15, 15, 16, 16,
  307. 16, 16, 16, 16, 16, 16, 16, 16, 15, 15,
  308. 17, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  309. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  310. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  311. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  312. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  313. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  314. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  315. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  316. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  317. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  318. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  319. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  320. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  321. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  322. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  323. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  324. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  325. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  326. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  327. 15, 15, 15, 15, 15, 15 },
  328. { 11, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  329. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  330. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  331. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  332. 15, 15, 15, 15, 15, 15, 15, 15, 18, 18,
  333. 18, 18, 18, 18, 18, 18, 18, 18, 15, 15,
  334. 19, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  335. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  336. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  337. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  338. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  339. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  340. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  341. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  342. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  343. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  344. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  345. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  346. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  347. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  348. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  349. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  350. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  351. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  352. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  353. 15, 15, 15, 15, 15, 15 },
  354. { 11, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  355. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  356. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  357. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  358. 15, 15, 15, 15, 15, 15, 15, 15, 18, 18,
  359. 18, 18, 18, 18, 18, 18, 18, 18, 15, 15,
  360. 19, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  361. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  362. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  363. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  364. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  365. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  366. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  367. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  368. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  369. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  370. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  371. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  372. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  373. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  374. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  375. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  376. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  377. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  378. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  379. 15, 15, 15, 15, 15, 15 },
  380. { 11, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  381. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  382. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  383. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  384. 15, 15, 15, 15, 15, 15, 15, 15, 20, 20,
  385. 20, 20, 20, 20, 20, 20, 20, 20, 15, 15,
  386. 21, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  387. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  388. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  389. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  390. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  391. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  392. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  393. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  394. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  395. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  396. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  397. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  398. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  399. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  400. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  401. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  402. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  403. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  404. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  405. 15, 15, 15, 15, 15, 15 },
  406. { 11, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  407. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  408. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  409. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  410. 15, 15, 15, 15, 15, 15, 15, 15, 20, 20,
  411. 20, 20, 20, 20, 20, 20, 20, 20, 15, 15,
  412. 21, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  413. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  414. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  415. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  416. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  417. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  418. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  419. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  420. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  421. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  422. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  423. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  424. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  425. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  426. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  427. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  428. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  429. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  430. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  431. 15, 15, 15, 15, 15, 15 },
  432. { 11, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  433. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  434. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  435. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  436. 15, 15, 15, 15, 15, 15, 15, 15, 22, 22,
  437. 22, 22, 22, 22, 22, 22, 22, 22, 15, 15,
  438. 23, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  439. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  440. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  441. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  442. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  443. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  444. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  445. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  446. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  447. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  448. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  449. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  450. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  451. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  452. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  453. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  454. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  455. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  456. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  457. 15, 15, 15, 15, 15, 15 },
  458. { 11, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  459. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  460. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  461. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  462. 15, 15, 15, 15, 15, 15, 15, 15, 22, 22,
  463. 22, 22, 22, 22, 22, 22, 22, 22, 15, 15,
  464. 23, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  465. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  466. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  467. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  468. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  469. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  470. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  471. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  472. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  473. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  474. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  475. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  476. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  477. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  478. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  479. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  480. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  481. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  482. 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
  483. 15, 15, 15, 15, 15, 15 },
  484. {-11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  485. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  486. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  487. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  488. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  489. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  490. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  491. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  492. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  493. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  494. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  495. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  496. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  497. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  498. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  499. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  500. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  501. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  502. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  503. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  504. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  505. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  506. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  507. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  508. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  509. -11, -11, -11, -11, -11, -11 },
  510. { 11, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  511. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  512. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  513. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  514. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  515. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  516. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  517. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  518. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  519. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  520. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  521. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  522. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  523. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  524. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  525. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  526. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  527. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  528. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  529. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  530. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  531. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  532. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  533. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  534. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  535. -12, -12, -12, -12, -12, -12 },
  536. { 11, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  537. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  538. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  539. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  540. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  541. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  542. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  543. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  544. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  545. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  546. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  547. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  548. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  549. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  550. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  551. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  552. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  553. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  554. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  555. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  556. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  557. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  558. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  559. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  560. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  561. -13, -13, -13, -13, -13, -13 },
  562. { 11, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  563. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  564. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  565. -14, -14, -14, -14, -14, 24, -14, -14, -14, -14,
  566. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  567. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  568. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  569. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  570. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  571. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  572. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  573. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  574. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  575. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  576. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  577. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  578. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  579. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  580. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  581. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  582. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  583. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  584. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  585. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  586. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  587. -14, -14, -14, -14, -14, -14 },
  588. { 11, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  589. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  590. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  591. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  592. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  593. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  594. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  595. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  596. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  597. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  598. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  599. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  600. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  601. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  602. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  603. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  604. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  605. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  606. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  607. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  608. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  609. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  610. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  611. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  612. -15, -15, -15, -15, -15, -15, -15, -15, -15, -15,
  613. -15, -15, -15, -15, -15, -15 },
  614. { 11, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  615. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  616. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  617. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  618. -16, -16, -16, -16, -16, -16, -16, -16, 25, 25,
  619. 25, 25, 25, 25, 25, 25, 25, 25, -16, -16,
  620. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  621. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  622. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  623. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  624. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  625. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  626. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  627. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  628. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  629. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  630. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  631. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  632. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  633. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  634. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  635. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  636. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  637. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  638. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  639. -16, -16, -16, -16, -16, -16 },
  640. { 11, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  641. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  642. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  643. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  644. -17, -17, -17, -17, -17, -17, -17, 26, -17, -17,
  645. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  646. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  647. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  648. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  649. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  650. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  651. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  652. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  653. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  654. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  655. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  656. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  657. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  658. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  659. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  660. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  661. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  662. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  663. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  664. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  665. -17, -17, -17, -17, -17, -17 },
  666. { 11, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  667. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  668. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  669. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  670. -18, -18, -18, -18, -18, -18, -18, -18, 27, 27,
  671. 27, 27, 27, 27, 27, 27, 27, 27, -18, -18,
  672. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  673. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  674. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  675. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  676. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  677. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  678. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  679. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  680. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  681. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  682. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  683. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  684. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  685. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  686. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  687. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  688. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  689. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  690. -18, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  691. -18, -18, -18, -18, -18, -18 },
  692. { 11, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  693. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  694. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  695. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  696. -19, -19, -19, -19, -19, -19, -19, 28, -19, -19,
  697. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  698. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  699. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  700. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  701. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  702. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  703. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  704. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  705. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  706. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  707. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  708. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  709. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  710. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  711. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  712. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  713. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  714. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  715. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  716. -19, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  717. -19, -19, -19, -19, -19, -19 },
  718. { 11, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  719. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  720. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  721. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  722. -20, -20, -20, -20, -20, -20, -20, -20, 29, 29,
  723. 29, 29, 29, 29, 29, 29, 29, 29, -20, -20,
  724. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  725. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  726. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  727. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  728. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  729. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  730. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  731. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  732. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  733. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  734. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  735. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  736. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  737. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  738. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  739. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  740. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  741. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  742. -20, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  743. -20, -20, -20, -20, -20, -20 },
  744. { 11, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  745. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  746. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  747. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  748. -21, -21, -21, -21, -21, -21, -21, 30, -21, -21,
  749. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  750. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  751. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  752. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  753. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  754. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  755. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  756. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  757. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  758. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  759. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  760. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  761. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  762. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  763. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  764. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  765. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  766. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  767. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  768. -21, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  769. -21, -21, -21, -21, -21, -21 },
  770. { 11, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  771. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  772. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  773. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  774. -22, -22, -22, -22, -22, -22, -22, -22, 31, 31,
  775. 31, 31, 31, 31, 31, 31, 31, 31, -22, -22,
  776. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  777. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  778. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  779. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  780. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  781. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  782. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  783. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  784. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  785. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  786. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  787. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  788. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  789. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  790. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  791. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  792. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  793. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  794. -22, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  795. -22, -22, -22, -22, -22, -22 },
  796. { 11, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  797. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  798. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  799. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  800. -23, -23, -23, -23, -23, -23, -23, 32, -23, -23,
  801. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  802. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  803. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  804. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  805. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  806. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  807. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  808. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  809. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  810. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  811. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  812. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  813. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  814. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  815. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  816. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  817. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  818. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  819. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  820. -23, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  821. -23, -23, -23, -23, -23, -23 },
  822. { 11, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  823. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  824. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  825. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  826. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  827. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  828. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  829. -24, 33, -24, -24, -24, -24, -24, -24, -24, 34,
  830. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  831. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  832. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  833. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  834. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  835. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  836. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  837. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  838. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  839. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  840. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  841. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  842. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  843. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  844. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  845. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  846. -24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  847. -24, -24, -24, -24, -24, -24 },
  848. { 11, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  849. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  850. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  851. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  852. -25, -25, -25, -25, -25, -25, -25, -25, 25, 25,
  853. 25, 25, 25, 25, 25, 25, 25, 25, -25, -25,
  854. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  855. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  856. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  857. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  858. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  859. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  860. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  861. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  862. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  863. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  864. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  865. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  866. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  867. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  868. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  869. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  870. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  871. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  872. -25, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  873. -25, -25, -25, -25, -25, -25 },
  874. { 11, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  875. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  876. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  877. -26, -26, -26, -26, -26, 35, -26, -26, -26, -26,
  878. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  879. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  880. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  881. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  882. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  883. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  884. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  885. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  886. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  887. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  888. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  889. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  890. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  891. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  892. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  893. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  894. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  895. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  896. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  897. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  898. -26, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  899. -26, -26, -26, -26, -26, -26 },
  900. { 11, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  901. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  902. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  903. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  904. -27, -27, -27, -27, -27, -27, -27, -27, 27, 27,
  905. 27, 27, 27, 27, 27, 27, 27, 27, -27, -27,
  906. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  907. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  908. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  909. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  910. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  911. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  912. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  913. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  914. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  915. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  916. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  917. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  918. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  919. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  920. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  921. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  922. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  923. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  924. -27, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  925. -27, -27, -27, -27, -27, -27 },
  926. { 11, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  927. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  928. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  929. -28, -28, -28, -28, -28, 36, -28, -28, -28, -28,
  930. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  931. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  932. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  933. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  934. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  935. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  936. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  937. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  938. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  939. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  940. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  941. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  942. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  943. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  944. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  945. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  946. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  947. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  948. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  949. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  950. -28, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  951. -28, -28, -28, -28, -28, -28 },
  952. { 11, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  953. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  954. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  955. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  956. -29, -29, -29, -29, -29, -29, -29, -29, 29, 29,
  957. 29, 29, 29, 29, 29, 29, 29, 29, -29, -29,
  958. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  959. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  960. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  961. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  962. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  963. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  964. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  965. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  966. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  967. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  968. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  969. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  970. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  971. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  972. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  973. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  974. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  975. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  976. -29, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  977. -29, -29, -29, -29, -29, -29 },
  978. { 11, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  979. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  980. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  981. -30, -30, -30, -30, -30, 37, -30, -30, -30, -30,
  982. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  983. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  984. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  985. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  986. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  987. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  988. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  989. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  990. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  991. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  992. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  993. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  994. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  995. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  996. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  997. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  998. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  999. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1000. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1001. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1002. -30, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  1003. -30, -30, -30, -30, -30, -30 },
  1004. { 11, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1005. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1006. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1007. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1008. -31, -31, -31, -31, -31, -31, -31, -31, 31, 31,
  1009. 31, 31, 31, 31, 31, 31, 31, 31, -31, -31,
  1010. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1011. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1012. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1013. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1014. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1015. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1016. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1017. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1018. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1019. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1020. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1021. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1022. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1023. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1024. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1025. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1026. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1027. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1028. -31, -31, -31, -31, -31, -31, -31, -31, -31, -31,
  1029. -31, -31, -31, -31, -31, -31 },
  1030. { 11, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1031. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1032. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1033. -32, -32, -32, -32, -32, 38, -32, -32, -32, -32,
  1034. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1035. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1036. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1037. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1038. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1039. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1040. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1041. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1042. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1043. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1044. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1045. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1046. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1047. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1048. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1049. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1050. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1051. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1052. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1053. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1054. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  1055. -32, -32, -32, -32, -32, -32 },
  1056. { 11, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1057. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1058. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1059. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1060. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1061. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1062. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1063. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1064. -33, -33, 39, -33, -33, -33, -33, -33, -33, -33,
  1065. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1066. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1067. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1068. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1069. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1070. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1071. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1072. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1073. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1074. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1075. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1076. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1077. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1078. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1079. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1080. -33, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  1081. -33, -33, -33, -33, -33, -33 },
  1082. { 11, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1083. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1084. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1085. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1086. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1087. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1088. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1089. -34, -34, -34, -34, -34, -34, 40, -34, -34, -34,
  1090. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1091. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1092. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1093. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1094. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1095. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1096. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1097. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1098. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1099. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1100. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1101. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1102. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1103. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1104. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1105. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1106. -34, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  1107. -34, -34, -34, -34, -34, -34 },
  1108. { 11, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1109. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1110. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1111. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1112. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1113. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1114. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1115. -35, -35, -35, -35, -35, -35, -35, -35, -35, 41,
  1116. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1117. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1118. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1119. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1120. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1121. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1122. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1123. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1124. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1125. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1126. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1127. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1128. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1129. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1130. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1131. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1132. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  1133. -35, -35, -35, -35, -35, -35 },
  1134. { 11, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1135. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1136. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1137. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1138. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1139. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1140. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1141. -36, -36, -36, -36, -36, -36, -36, -36, -36, 42,
  1142. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1143. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1144. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1145. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1146. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1147. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1148. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1149. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1150. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1151. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1152. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1153. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1154. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1155. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1156. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1157. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1158. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  1159. -36, -36, -36, -36, -36, -36 },
  1160. { 11, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1161. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1162. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1163. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1164. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1165. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1166. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1167. -37, 43, -37, -37, -37, -37, -37, -37, -37, -37,
  1168. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1169. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1170. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1171. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1172. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1173. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1174. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1175. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1176. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1177. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1178. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1179. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1180. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1181. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1182. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1183. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1184. -37, -37, -37, -37, -37, -37, -37, -37, -37, -37,
  1185. -37, -37, -37, -37, -37, -37 },
  1186. { 11, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1187. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1188. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1189. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1190. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1191. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1192. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1193. -38, -38, -38, -38, -38, -38, -38, -38, -38, 44,
  1194. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1195. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1196. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1197. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1198. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1199. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1200. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1201. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1202. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1203. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1204. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1205. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1206. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1207. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1208. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1209. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1210. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  1211. -38, -38, -38, -38, -38, -38 },
  1212. { 11, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1213. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1214. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1215. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1216. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1217. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1218. -39, -39, -39, -39, -39, 45, -39, -39, -39, -39,
  1219. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1220. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1221. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1222. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1223. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1224. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1225. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1226. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1227. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1228. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1229. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1230. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1231. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1232. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1233. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1234. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1235. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1236. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  1237. -39, -39, -39, -39, -39, -39 },
  1238. { 11, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1239. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1240. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1241. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1242. -40, -40, -40, -40, -40, 46, -40, -40, -40, -40,
  1243. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1244. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1245. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1246. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1247. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1248. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1249. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1250. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1251. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1252. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1253. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1254. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1255. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1256. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1257. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1258. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1259. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1260. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1261. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1262. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  1263. -40, -40, -40, -40, -40, -40 },
  1264. { 11, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1265. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1266. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1267. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1268. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1269. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1270. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1271. -41, -41, -41, -41, -41, -41, 47, -41, -41, -41,
  1272. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1273. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1274. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1275. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1276. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1277. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1278. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1279. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1280. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1281. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1282. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1283. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1284. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1285. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1286. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1287. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1288. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  1289. -41, -41, -41, -41, -41, -41 },
  1290. { 11, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1291. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1292. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1293. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1294. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1295. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1296. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1297. -42, -42, -42, -42, -42, -42, 48, -42, -42, -42,
  1298. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1299. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1300. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1301. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1302. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1303. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1304. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1305. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1306. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1307. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1308. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1309. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1310. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1311. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1312. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1313. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1314. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  1315. -42, -42, -42, -42, -42, -42 },
  1316. { 11, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1317. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1318. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1319. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1320. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1321. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1322. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1323. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1324. -43, -43, 49, -43, -43, -43, -43, -43, -43, -43,
  1325. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1326. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1327. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1328. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1329. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1330. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1331. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1332. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1333. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1334. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1335. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1336. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1337. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1338. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1339. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1340. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  1341. -43, -43, -43, -43, -43, -43 },
  1342. { 11, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1343. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1344. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1345. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1346. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1347. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1348. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1349. -44, -44, -44, -44, -44, -44, 50, -44, -44, -44,
  1350. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1351. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1352. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1353. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1354. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1355. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1356. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1357. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1358. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1359. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1360. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1361. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1362. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1363. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1364. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1365. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1366. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  1367. -44, -44, -44, -44, -44, -44 },
  1368. { 11, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1369. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1370. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1371. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1372. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1373. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1374. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1375. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1376. 51, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1377. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1378. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1379. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1380. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1381. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1382. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1383. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1384. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1385. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1386. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1387. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1388. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1389. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1390. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1391. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1392. -45, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  1393. -45, -45, -45, -45, -45, -45 },
  1394. { 11, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1395. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1396. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1397. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1398. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1399. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1400. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1401. -46, -46, -46, 52, -46, -46, -46, -46, -46, -46,
  1402. -46, -46, -46, -46, -46, -46, -46, -46, 53, -46,
  1403. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1404. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1405. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1406. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1407. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1408. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1409. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1410. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1411. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1412. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1413. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1414. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1415. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1416. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1417. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1418. -46, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  1419. -46, -46, -46, -46, -46, -46 },
  1420. { 11, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1421. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1422. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1423. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1424. -47, -47, -47, -47, -47, 54, -47, -47, -47, -47,
  1425. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1426. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1427. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1428. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1429. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1430. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1431. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1432. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1433. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1434. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1435. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1436. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1437. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1438. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1439. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1440. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1441. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1442. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1443. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1444. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  1445. -47, -47, -47, -47, -47, -47 },
  1446. { 11, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1447. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1448. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1449. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1450. -48, -48, -48, -48, -48, 55, -48, -48, -48, -48,
  1451. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1452. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1453. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1454. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1455. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1456. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1457. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1458. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1459. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1460. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1461. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1462. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1463. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1464. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1465. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1466. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1467. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1468. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1469. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1470. -48, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  1471. -48, -48, -48, -48, -48, -48 },
  1472. { 11, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1473. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1474. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1475. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1476. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1477. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1478. -49, -49, -49, -49, -49, 56, -49, -49, -49, -49,
  1479. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1480. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1481. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1482. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1483. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1484. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1485. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1486. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1487. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1488. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1489. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1490. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1491. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1492. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1493. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1494. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1495. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1496. -49, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  1497. -49, -49, -49, -49, -49, -49 },
  1498. { 11, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1499. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1500. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1501. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1502. -50, -50, -50, -50, -50, 57, -50, -50, -50, -50,
  1503. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1504. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1505. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1506. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1507. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1508. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1509. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1510. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1511. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1512. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1513. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1514. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1515. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1516. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1517. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1518. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1519. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1520. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1521. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1522. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  1523. -50, -50, -50, -50, -50, -50 },
  1524. { 11, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1525. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1526. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1527. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1528. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1529. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1530. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1531. -51, -51, 58, -51, -51, -51, -51, -51, -51, -51,
  1532. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1533. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1534. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1535. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1536. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1537. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1538. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1539. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1540. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1541. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1542. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1543. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1544. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1545. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1546. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1547. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1548. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  1549. -51, -51, -51, -51, -51, -51 },
  1550. { 11, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1551. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1552. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1553. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1554. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1555. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1556. -52, -52, -52, -52, -52, -52, -52, -52, 59, -52,
  1557. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1558. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1559. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1560. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1561. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1562. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1563. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1564. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1565. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1566. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1567. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1568. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1569. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1570. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1571. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1572. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1573. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1574. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  1575. -52, -52, -52, -52, -52, -52 },
  1576. { 11, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1577. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1578. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1579. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1580. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1581. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1582. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1583. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1584. -53, -53, 60, -53, -53, -53, -53, -53, -53, -53,
  1585. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1586. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1587. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1588. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1589. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1590. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1591. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1592. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1593. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1594. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1595. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1596. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1597. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1598. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1599. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1600. -53, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  1601. -53, -53, -53, -53, -53, -53 },
  1602. { 11, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1603. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1604. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1605. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1606. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1607. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1608. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1609. -54, -54, -54, 61, -54, -54, -54, -54, -54, -54,
  1610. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1611. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1612. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1613. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1614. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1615. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1616. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1617. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1618. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1619. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1620. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1621. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1622. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1623. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1624. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1625. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1626. -54, -54, -54, -54, -54, -54, -54, -54, -54, -54,
  1627. -54, -54, -54, -54, -54, -54 },
  1628. { 11, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1629. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1630. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1631. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1632. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1633. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1634. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1635. -55, -55, -55, 62, -55, -55, -55, -55, -55, -55,
  1636. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1637. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1638. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1639. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1640. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1641. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1642. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1643. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1644. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1645. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1646. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1647. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1648. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1649. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1650. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1651. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1652. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  1653. -55, -55, -55, -55, -55, -55 },
  1654. { 11, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1655. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1656. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1657. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1658. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1659. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1660. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1661. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1662. 63, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1663. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1664. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1665. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1666. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1667. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1668. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1669. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1670. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1671. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1672. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1673. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1674. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1675. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1676. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1677. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1678. -56, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  1679. -56, -56, -56, -56, -56, -56 },
  1680. { 11, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1681. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1682. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1683. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1684. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1685. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1686. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1687. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1688. -57, -57, -57, -57, -57, -57, -57, -57, 64, -57,
  1689. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1690. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1691. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1692. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1693. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1694. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1695. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1696. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1697. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1698. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1699. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1700. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1701. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1702. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1703. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1704. -57, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  1705. -57, -57, -57, -57, -57, -57 },
  1706. { 11, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1707. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1708. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1709. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1710. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1711. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1712. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1713. -58, -58, -58, 65, -58, -58, -58, -58, -58, -58,
  1714. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1715. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1716. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1717. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1718. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1719. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1720. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1721. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1722. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1723. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1724. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1725. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1726. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1727. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1728. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1729. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1730. -58, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  1731. -58, -58, -58, -58, -58, -58 },
  1732. { 11, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1733. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1734. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1735. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1736. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1737. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1738. -59, -59, 66, -59, -59, -59, -59, -59, -59, -59,
  1739. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1740. -59, -59, 67, -59, -59, -59, -59, -59, -59, -59,
  1741. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1742. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1743. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1744. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1745. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1746. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1747. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1748. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1749. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1750. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1751. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1752. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1753. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1754. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1755. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1756. -59, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  1757. -59, -59, -59, -59, -59, -59 },
  1758. { 11, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1759. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1760. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1761. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1762. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1763. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1764. -60, -60, -60, -60, -60, -60, -60, -60, -60, 68,
  1765. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1766. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1767. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1768. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1769. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1770. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1771. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1772. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1773. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1774. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1775. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1776. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1777. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1778. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1779. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1780. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1781. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1782. -60, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  1783. -60, -60, -60, -60, -60, -60 },
  1784. { 11, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1785. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1786. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1787. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1788. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1789. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1790. -61, -61, -61, -61, -61, -61, -61, -61, 69, -61,
  1791. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1792. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1793. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1794. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1795. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1796. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1797. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1798. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1799. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1800. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1801. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1802. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1803. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1804. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1805. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1806. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1807. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1808. -61, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  1809. -61, -61, -61, -61, -61, -61 },
  1810. { 11, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1811. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1812. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1813. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1814. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1815. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1816. -62, -62, -62, -62, -62, -62, -62, -62, 70, -62,
  1817. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1818. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1819. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1820. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1821. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1822. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1823. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1824. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1825. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1826. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1827. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1828. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1829. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1830. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1831. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1832. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1833. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1834. -62, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  1835. -62, -62, -62, -62, -62, -62 },
  1836. { 11, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1837. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1838. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1839. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1840. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1841. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1842. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1843. -63, -63, 71, -63, -63, -63, -63, -63, -63, -63,
  1844. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1845. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1846. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1847. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1848. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1849. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1850. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1851. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1852. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1853. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1854. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1855. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1856. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1857. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1858. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1859. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1860. -63, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  1861. -63, -63, -63, -63, -63, -63 },
  1862. { 11, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1863. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1864. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1865. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1866. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1867. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1868. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1869. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1870. -64, -64, 72, -64, -64, -64, -64, -64, -64, -64,
  1871. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1872. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1873. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1874. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1875. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1876. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1877. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1878. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1879. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1880. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1881. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1882. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1883. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1884. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1885. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1886. -64, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  1887. -64, -64, -64, -64, -64, -64 },
  1888. { 11, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1889. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1890. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1891. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1892. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1893. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1894. -65, -65, -65, -65, -65, -65, -65, 73, -65, -65,
  1895. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1896. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1897. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1898. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1899. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1900. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1901. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1902. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1903. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1904. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1905. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1906. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1907. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1908. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1909. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1910. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1911. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1912. -65, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  1913. -65, -65, -65, -65, -65, -65 },
  1914. { 11, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1915. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1916. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1917. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1918. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1919. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1920. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1921. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1922. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1923. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1924. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1925. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1926. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1927. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1928. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1929. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1930. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1931. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1932. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1933. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1934. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1935. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1936. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1937. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1938. -66, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  1939. -66, -66, -66, -66, -66, -66 },
  1940. { 11, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1941. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1942. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1943. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1944. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1945. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1946. -67, -67, -67, -67, -67, -67, -67, -67, -67, 74,
  1947. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1948. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1949. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1950. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1951. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1952. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1953. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1954. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1955. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1956. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1957. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1958. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1959. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1960. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1961. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1962. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1963. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1964. -67, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  1965. -67, -67, -67, -67, -67, -67 },
  1966. { 11, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1967. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1968. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1969. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1970. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1971. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1972. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1973. 75, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1974. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1975. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1976. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1977. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1978. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1979. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1980. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1981. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1982. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1983. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1984. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1985. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1986. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1987. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1988. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1989. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1990. -68, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  1991. -68, -68, -68, -68, -68, -68 },
  1992. { 11, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  1993. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  1994. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  1995. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  1996. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  1997. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  1998. -69, -69, 76, -69, -69, -69, -69, -69, -69, -69,
  1999. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2000. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2001. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2002. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2003. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2004. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2005. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2006. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2007. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2008. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2009. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2010. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2011. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2012. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2013. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2014. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2015. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2016. -69, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  2017. -69, -69, -69, -69, -69, -69 },
  2018. { 11, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2019. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2020. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2021. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2022. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2023. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2024. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2025. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2026. -70, -70, 77, -70, -70, -70, -70, -70, -70, -70,
  2027. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2028. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2029. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2030. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2031. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2032. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2033. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2034. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2035. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2036. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2037. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2038. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2039. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2040. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2041. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2042. -70, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  2043. -70, -70, -70, -70, -70, -70 },
  2044. { 11, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2045. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2046. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2047. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2048. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2049. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2050. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2051. -71, -71, -71, 78, -71, -71, -71, -71, -71, -71,
  2052. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2053. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2054. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2055. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2056. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2057. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2058. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2059. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2060. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2061. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2062. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2063. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2064. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2065. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2066. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2067. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2068. -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  2069. -71, -71, -71, -71, -71, -71 },
  2070. { 11, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2071. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2072. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2073. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2074. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2075. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2076. -72, -72, -72, -72, -72, -72, -72, -72, -72, 79,
  2077. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2078. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2079. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2080. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2081. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2082. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2083. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2084. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2085. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2086. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2087. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2088. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2089. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2090. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2091. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2092. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2093. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2094. -72, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  2095. -72, -72, -72, -72, -72, -72 },
  2096. { 11, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2097. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2098. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2099. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2100. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2101. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2102. -73, -73, 80, -73, -73, -73, -73, -73, -73, -73,
  2103. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2104. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2105. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2106. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2107. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2108. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2109. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2110. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2111. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2112. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2113. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2114. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2115. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2116. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2117. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2118. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2119. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2120. -73, -73, -73, -73, -73, -73, -73, -73, -73, -73,
  2121. -73, -73, -73, -73, -73, -73 },
  2122. { 11, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2123. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2124. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2125. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2126. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2127. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2128. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2129. 81, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2130. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2131. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2132. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2133. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2134. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2135. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2136. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2137. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2138. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2139. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2140. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2141. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2142. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2143. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2144. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2145. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2146. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  2147. -74, -74, -74, -74, -74, -74 },
  2148. { 11, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2149. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2150. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2151. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2152. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2153. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2154. -75, -75, 82, -75, -75, -75, -75, -75, -75, -75,
  2155. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2156. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2157. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2158. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2159. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2160. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2161. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2162. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2163. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2164. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2165. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2166. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2167. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2168. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2169. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2170. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2171. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2172. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  2173. -75, -75, -75, -75, -75, -75 },
  2174. { 11, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2175. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2176. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2177. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2178. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2179. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2180. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2181. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2182. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2183. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2184. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2185. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2186. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2187. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2188. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2189. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2190. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2191. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2192. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2193. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2194. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2195. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2196. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2197. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2198. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  2199. -76, -76, -76, -76, -76, -76 },
  2200. { 11, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2201. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2202. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2203. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2204. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2205. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2206. -77, -77, -77, -77, -77, -77, -77, -77, -77, 83,
  2207. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2208. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2209. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2210. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2211. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2212. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2213. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2214. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2215. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2216. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2217. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2218. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2219. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2220. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2221. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2222. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2223. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2224. -77, -77, -77, -77, -77, -77, -77, -77, -77, -77,
  2225. -77, -77, -77, -77, -77, -77 },
  2226. { 11, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2227. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2228. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2229. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2230. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2231. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2232. -78, -78, -78, -78, -78, -78, -78, 84, -78, -78,
  2233. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2234. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2235. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2236. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2237. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2238. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2239. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2240. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2241. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2242. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2243. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2244. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2245. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2246. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2247. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2248. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2249. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2250. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  2251. -78, -78, -78, -78, -78, -78 },
  2252. { 11, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2253. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2254. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2255. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2256. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2257. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2258. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2259. 85, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2260. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2261. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2262. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2263. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2264. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2265. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2266. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2267. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2268. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2269. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2270. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2271. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2272. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2273. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2274. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2275. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2276. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  2277. -79, -79, -79, -79, -79, -79 },
  2278. { 11, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2279. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2280. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2281. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2282. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2283. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2284. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2285. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2286. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2287. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2288. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2289. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2290. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2291. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2292. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2293. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2294. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2295. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2296. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2297. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2298. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2299. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2300. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2301. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2302. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  2303. -80, -80, -80, -80, -80, -80 },
  2304. { 11, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2305. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2306. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2307. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2308. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2309. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2310. -81, -81, 86, -81, -81, -81, -81, -81, -81, -81,
  2311. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2312. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2313. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2314. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2315. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2316. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2317. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2318. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2319. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2320. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2321. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2322. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2323. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2324. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2325. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2326. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2327. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2328. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  2329. -81, -81, -81, -81, -81, -81 },
  2330. { 11, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2331. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2332. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2333. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2334. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2335. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2336. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2337. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2338. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2339. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2340. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2341. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2342. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2343. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2344. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2345. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2346. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2347. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2348. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2349. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2350. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2351. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2352. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2353. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2354. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  2355. -82, -82, -82, -82, -82, -82 },
  2356. { 11, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2357. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2358. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2359. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2360. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2361. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2362. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2363. 87, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2364. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2365. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2366. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2367. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2368. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2369. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2370. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2371. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2372. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2373. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2374. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2375. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2376. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2377. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2378. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2379. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2380. -83, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  2381. -83, -83, -83, -83, -83, -83 },
  2382. { 11, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2383. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2384. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2385. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2386. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2387. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2388. -84, -84, 88, -84, -84, -84, -84, -84, -84, -84,
  2389. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2390. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2391. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2392. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2393. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2394. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2395. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2396. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2397. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2398. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2399. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2400. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2401. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2402. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2403. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2404. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2405. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2406. -84, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  2407. -84, -84, -84, -84, -84, -84 },
  2408. { 11, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2409. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2410. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2411. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2412. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2413. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2414. -85, -85, 89, -85, -85, -85, -85, -85, -85, -85,
  2415. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2416. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2417. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2418. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2419. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2420. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2421. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2422. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2423. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2424. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2425. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2426. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2427. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2428. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2429. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2430. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2431. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2432. -85, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  2433. -85, -85, -85, -85, -85, -85 },
  2434. { 11, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2435. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2436. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2437. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2438. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2439. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2440. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2441. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2442. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2443. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2444. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2445. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2446. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2447. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2448. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2449. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2450. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2451. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2452. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2453. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2454. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2455. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2456. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2457. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2458. -86, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  2459. -86, -86, -86, -86, -86, -86 },
  2460. { 11, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2461. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2462. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2463. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2464. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2465. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2466. -87, -87, 90, -87, -87, -87, -87, -87, -87, -87,
  2467. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2468. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2469. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2470. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2471. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2472. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2473. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2474. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2475. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2476. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2477. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2478. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2479. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2480. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2481. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2482. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2483. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2484. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  2485. -87, -87, -87, -87, -87, -87 },
  2486. { 11, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2487. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2488. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2489. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2490. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2491. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2492. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2493. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2494. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2495. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2496. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2497. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2498. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2499. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2500. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2501. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2502. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2503. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2504. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2505. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2506. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2507. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2508. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2509. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2510. -88, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  2511. -88, -88, -88, -88, -88, -88 },
  2512. { 11, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2513. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2514. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2515. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2516. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2517. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2518. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2519. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2520. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2521. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2522. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2523. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2524. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2525. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2526. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2527. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2528. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2529. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2530. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2531. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2532. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2533. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2534. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2535. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2536. -89, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  2537. -89, -89, -89, -89, -89, -89 },
  2538. { 11, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2539. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2540. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2541. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2542. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2543. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2544. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2545. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2546. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2547. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2548. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2549. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2550. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2551. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2552. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2553. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2554. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2555. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2556. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2557. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2558. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2559. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2560. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2561. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2562. -90, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  2563. -90, -90, -90, -90, -90, -90 }
  2564. } ;
  2565. /* done after the current pattern has been matched and before the
  2566. * corresponding action - sets up nodedatatext
  2567. */
  2568. #define nodedata_DO_BEFORE_ACTION \
  2569. nodedatatext = nodedata_bp; \
  2570. nodedataleng = nodedata_cp - nodedata_bp; \
  2571. nodedata_hold_char = *nodedata_cp; \
  2572. *nodedata_cp = '\0'; \
  2573. nodedata_c_buf_p = nodedata_cp;
  2574. #define EOB_ACT_CONTINUE_SCAN 0
  2575. #define EOB_ACT_END_OF_FILE 1
  2576. #define EOB_ACT_LAST_MATCH 2
  2577. /* return all but the first 'n' matched characters back to the input stream */
  2578. #define nodedataless(n) \
  2579. do \
  2580. { \
  2581. /* undo effects of setting up nodedatatext */ \
  2582. *nodedata_cp = nodedata_hold_char; \
  2583. nodedata_c_buf_p = nodedata_cp = nodedata_bp + n; \
  2584. nodedata_DO_BEFORE_ACTION; /* set up nodedatatext again */ \
  2585. } \
  2586. while ( 0 )
  2587. #define unput(c) nodedataunput( c, nodedatatext )
  2588. struct nodedata_buffer_state
  2589. {
  2590. FILE *nodedata_input_file;
  2591. nodedata_CHAR *nodedata_ch_buf; /* input buffer */
  2592. nodedata_CHAR *nodedata_buf_pos; /* current position in input buffer */
  2593. /* size of input buffer in bytes, not including room for EOB characters */
  2594. int nodedata_buf_size;
  2595. /* number of characters read into nodedata_ch_buf, not including EOB characters */
  2596. int nodedata_n_chars;
  2597. int nodedata_eof_status; /* whether we've seen an EOF on this buffer */
  2598. #define EOF_NOT_SEEN 0
  2599. /* "pending" happens when the EOF has been seen but there's still
  2600. * some text process
  2601. */
  2602. #define EOF_PENDING 1
  2603. #define EOF_DONE 2
  2604. };
  2605. static nodedata_BUFFER_STATE nodedata_current_buffer;
  2606. /* we provide macros for accessing buffer states in case in the
  2607. * future we want to put the buffer states in a more general
  2608. * "scanner state"
  2609. */
  2610. #define nodedata_CURRENT_BUFFER nodedata_current_buffer
  2611. /* nodedata_hold_char holds the character lost when nodedatatext is formed */
  2612. static nodedata_CHAR nodedata_hold_char;
  2613. static int nodedata_n_chars; /* number of characters read into nodedata_ch_buf */
  2614. #ifndef nodedata_USER_ACTION
  2615. #define nodedata_USER_ACTION
  2616. #endif
  2617. #ifndef nodedata_USER_INIT
  2618. #define nodedata_USER_INIT
  2619. #endif
  2620. extern nodedata_CHAR *nodedatatext;
  2621. extern int nodedataleng;
  2622. extern FILE *nodedatain, *nodedataout;
  2623. nodedata_CHAR *nodedatatext;
  2624. int nodedataleng;
  2625. FILE *nodedatain = (FILE *) 0, *nodedataout = (FILE *) 0;
  2626. #define nodedata_END_OF_BUFFER 16
  2627. typedef int nodedata_state_type;
  2628. static const short int nodedata_accept[91] =
  2629. { 0,
  2630. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2631. 16, 13, 14, 13, 15, 5, 15, 8, 15, 11,
  2632. 15, 2, 15, 0, 5, 0, 8, 0, 11, 0,
  2633. 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2634. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2635. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2636. 0, 0, 0, 0, 0, 4, 0, 0, 0, 0,
  2637. 0, 0, 0, 0, 0, 6, 0, 0, 0, 10,
  2638. 0, 1, 0, 0, 0, 7, 0, 12, 3, 9
  2639. } ;
  2640. static nodedata_state_type nodedata_last_accepting_state;
  2641. static nodedata_CHAR *nodedata_last_accepting_cpos;
  2642. static const nodedata_state_type nodedata_NUL_trans[91] =
  2643. { 0,
  2644. 12, 12, 15, 15, 15, 15, 15, 15, 15, 15,
  2645. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2646. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2647. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2648. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2649. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2650. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2651. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  2652. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  2653. } ;
  2654. /* the intent behind this definition is that it'll catch
  2655. * any uses of REJECT which flex missed
  2656. */
  2657. #define REJECT reject_used_but_not_detected
  2658. #define nodedatamore() nodedatamore_used_but_not_detected
  2659. #define nodedata_MORE_ADJ 0
  2660. /* these variables are all declared out here so that section 3 code can
  2661. * manipulate them
  2662. */
  2663. /* points to current character in buffer */
  2664. static nodedata_CHAR *nodedata_c_buf_p = (nodedata_CHAR *) 0;
  2665. static int nodedata_init = 1; /* whether we need to initialize */
  2666. static int nodedata_start = 0; /* start state number */
  2667. /* flag which is used to allow nodedatawrap()'s to do buffer switches
  2668. * instead of setting up a fresh nodedatain. A bit of a hack ...
  2669. */
  2670. static int nodedata_did_buffer_switch_on_eof;
  2671. static nodedata_state_type nodedata_get_previous_state nodedata_PROTO(( void ));
  2672. static nodedata_state_type nodedata_try_NUL_trans nodedata_PROTO(( nodedata_state_type current_state ));
  2673. static int nodedata_get_next_buffer nodedata_PROTO(( void ));
  2674. #if 0
  2675. static void nodedataunput nodedata_PROTO(( nodedata_CHAR c, nodedata_CHAR *buf_ptr ));
  2676. #endif
  2677. void nodedatarestart nodedata_PROTO(( FILE *input_file ));
  2678. void nodedata_switch_to_buffer nodedata_PROTO(( nodedata_BUFFER_STATE new_buffer ));
  2679. void nodedata_load_buffer_state nodedata_PROTO(( void ));
  2680. nodedata_BUFFER_STATE nodedata_create_buffer nodedata_PROTO(( FILE *file, int size ));
  2681. void nodedata_delete_buffer nodedata_PROTO(( nodedata_BUFFER_STATE b ));
  2682. void nodedata_init_buffer nodedata_PROTO(( nodedata_BUFFER_STATE b, FILE *file ));
  2683. #define nodedata_new_buffer nodedata_create_buffer
  2684. #if 0
  2685. #ifdef __cplusplus
  2686. static int nodedatainput nodedata_PROTO(( void ));
  2687. #else
  2688. static int input nodedata_PROTO(( void ));
  2689. #endif
  2690. #endif
  2691. nodedata_DECL
  2692. {
  2693. register nodedata_state_type nodedata_current_state;
  2694. register nodedata_CHAR *nodedata_cp, *nodedata_bp;
  2695. register int nodedata_act;
  2696. if ( nodedata_init )
  2697. {
  2698. nodedata_USER_INIT;
  2699. if ( ! nodedata_start )
  2700. nodedata_start = 1; /* first start state */
  2701. if ( ! nodedatain )
  2702. nodedatain = stdin;
  2703. if ( ! nodedataout )
  2704. nodedataout = stdout;
  2705. if ( nodedata_current_buffer )
  2706. nodedata_init_buffer( nodedata_current_buffer, nodedatain );
  2707. else
  2708. nodedata_current_buffer = nodedata_create_buffer( nodedatain, nodedata_BUF_SIZE );
  2709. nodedata_load_buffer_state();
  2710. nodedata_init = 0;
  2711. }
  2712. while ( 1 ) /* loops until end-of-file is reached */
  2713. {
  2714. nodedata_cp = nodedata_c_buf_p;
  2715. /* support of nodedatatext */
  2716. *nodedata_cp = nodedata_hold_char;
  2717. /* nodedata_bp points to the position in nodedata_ch_buf of the start of the
  2718. * current run.
  2719. */
  2720. nodedata_bp = nodedata_cp;
  2721. nodedata_current_state = nodedata_start;
  2722. nodedata_match:
  2723. while ( (nodedata_current_state = nodedata_nxt[nodedata_current_state][*nodedata_cp]) > 0 )
  2724. {
  2725. if ( nodedata_accept[nodedata_current_state] )
  2726. {
  2727. nodedata_last_accepting_state = nodedata_current_state;
  2728. nodedata_last_accepting_cpos = nodedata_cp;
  2729. }
  2730. ++nodedata_cp;
  2731. }
  2732. nodedata_current_state = -nodedata_current_state;
  2733. nodedata_find_action:
  2734. nodedata_act = nodedata_accept[nodedata_current_state];
  2735. nodedata_DO_BEFORE_ACTION;
  2736. nodedata_USER_ACTION;
  2737. do_action: /* this label is used only to access EOF actions */
  2738. switch ( nodedata_act )
  2739. {
  2740. case 0: /* must backtrack */
  2741. /* undo the effects of nodedata_DO_BEFORE_ACTION */
  2742. *nodedata_cp = nodedata_hold_char;
  2743. nodedata_cp = nodedata_last_accepting_cpos + 1;
  2744. nodedata_current_state = nodedata_last_accepting_state;
  2745. goto nodedata_find_action;
  2746. case 1:
  2747. {
  2748. BEGIN ( XREF );
  2749. }
  2750. nodedata_BREAK
  2751. case 2:
  2752. {
  2753. const char *str = ( const char *)nodedatatext;
  2754. OL_Data *idref =
  2755. (OL_Data *)CurrentNodeData->subtask( atoi(str) );
  2756. if ( !idref->ContentIsEmpty() ) {
  2757. const char *idrefval = idref->content();
  2758. FlexBuffer *db_buf = CurrentNodeData->DbBuffer;
  2759. db_buf->writeStr("<#OL-XREF>");
  2760. replace_entity ( db_buf, idrefval );
  2761. db_buf->writeStr("</#OL-XREF>");
  2762. }
  2763. }
  2764. nodedata_BREAK
  2765. case 3:
  2766. {
  2767. BEGIN ( 0 );
  2768. }
  2769. nodedata_BREAK
  2770. case 4:
  2771. {
  2772. BEGIN ( OLID );
  2773. }
  2774. nodedata_BREAK
  2775. case 5:
  2776. {
  2777. /*
  2778. * query the array for the real no.
  2779. */
  2780. const char *str = ( const char *)nodedatatext;
  2781. OL_Data *id =
  2782. (OL_Data *)CurrentNodeData->subtask( atoi(str) );
  2783. if ( !id->ContentIsEmpty() ) {
  2784. const char *idval = id->content();
  2785. FlexBuffer *db_buf = CurrentNodeData->DbBuffer;
  2786. db_buf->writeStr("<#OL-ID>");
  2787. replace_entity( db_buf, idval );
  2788. db_buf->writeStr("</#OL-ID>");
  2789. }
  2790. }
  2791. nodedata_BREAK
  2792. case 6:
  2793. {
  2794. BEGIN ( 0 );
  2795. }
  2796. nodedata_BREAK
  2797. case 7:
  2798. {
  2799. BEGIN( OLIDREF );
  2800. }
  2801. nodedata_BREAK
  2802. case 8:
  2803. {
  2804. const char *str = (const char *)nodedatatext;
  2805. OL_Data *idref =
  2806. (OL_Data *)CurrentNodeData->subtask(atoi(str));
  2807. if ( !idref->ContentIsEmpty() ) {
  2808. const char *idrefval = idref->content();
  2809. int line_num = idref->line_no();
  2810. const char *filename = idref->filename();
  2811. FlexBuffer *db_buf = CurrentNodeData->DbBuffer;
  2812. db_buf->writeStr("<#OL-IDREF>");
  2813. db_buf->writeStr(form("<#L>%d</#L>", line_num));
  2814. db_buf->writeStr(form("<#F>%s</#F>", filename));
  2815. replace_entity ( db_buf, idrefval );
  2816. db_buf->writeStr("</#OL-IDREF>");
  2817. }
  2818. }
  2819. nodedata_BREAK
  2820. case 9:
  2821. {
  2822. BEGIN( 0 );
  2823. }
  2824. nodedata_BREAK
  2825. case 10:
  2826. {
  2827. BEGIN( GRAPHIC );
  2828. }
  2829. nodedata_BREAK
  2830. case 11:
  2831. {
  2832. const char *str = (const char *)nodedatatext;
  2833. OL_Data *graphic_id =
  2834. (OL_Data *)CurrentNodeData->subtask(atoi(str));
  2835. if ( !graphic_id->ContentIsEmpty() ) {
  2836. const char *graphic_id_val =
  2837. graphic_id->content();
  2838. CurrentNodeData->DbBuffer->writeStr("<#GRAPHIC>");
  2839. replace_entity (CurrentNodeData->DbBuffer,
  2840. graphic_id_val);
  2841. CurrentNodeData->DbBuffer->writeStr("</#GRAPHIC>");
  2842. }
  2843. }
  2844. nodedata_BREAK
  2845. case 12:
  2846. {
  2847. BEGIN(0);
  2848. }
  2849. nodedata_BREAK
  2850. case 13:
  2851. case 14:
  2852. {
  2853. CurrentNodeData->DbBuffer->put( nodedatatext[0] );
  2854. }
  2855. nodedata_BREAK
  2856. case 15:
  2857. nodedata_FATAL_ERROR( "flex scanner jammed" );
  2858. nodedata_BREAK
  2859. case nodedata_STATE_EOF(INITIAL):
  2860. case nodedata_STATE_EOF(OLID):
  2861. case nodedata_STATE_EOF(OLIDREF):
  2862. case nodedata_STATE_EOF(GRAPHIC):
  2863. case nodedata_STATE_EOF(XREF):
  2864. nodedataterminate();
  2865. case nodedata_END_OF_BUFFER:
  2866. {
  2867. /* amount of text matched not including the EOB char */
  2868. int nodedata_amount_of_matched_text = nodedata_cp - nodedatatext - 1;
  2869. /* undo the effects of nodedata_DO_BEFORE_ACTION */
  2870. *nodedata_cp = nodedata_hold_char;
  2871. /* note that here we test for nodedata_c_buf_p "<=" to the position
  2872. * of the first EOB in the buffer, since nodedata_c_buf_p will
  2873. * already have been incremented past the NUL character
  2874. * (since all states make transitions on EOB to the end-
  2875. * of-buffer state). Contrast this with the test in nodedatainput().
  2876. */
  2877. if ( nodedata_c_buf_p <= &nodedata_current_buffer->nodedata_ch_buf[nodedata_n_chars] )
  2878. /* this was really a NUL */
  2879. {
  2880. nodedata_state_type nodedata_next_state;
  2881. nodedata_c_buf_p = nodedatatext + nodedata_amount_of_matched_text;
  2882. nodedata_current_state = nodedata_get_previous_state();
  2883. /* okay, we're now positioned to make the
  2884. * NUL transition. We couldn't have
  2885. * nodedata_get_previous_state() go ahead and do it
  2886. * for us because it doesn't know how to deal
  2887. * with the possibility of jamming (and we
  2888. * don't want to build jamming into it because
  2889. * then it will run more slowly)
  2890. */
  2891. nodedata_next_state = nodedata_try_NUL_trans( nodedata_current_state );
  2892. nodedata_bp = nodedatatext + nodedata_MORE_ADJ;
  2893. if ( nodedata_next_state )
  2894. {
  2895. /* consume the NUL */
  2896. nodedata_cp = ++nodedata_c_buf_p;
  2897. nodedata_current_state = nodedata_next_state;
  2898. goto nodedata_match;
  2899. }
  2900. else
  2901. {
  2902. nodedata_cp = nodedata_c_buf_p;
  2903. goto nodedata_find_action;
  2904. }
  2905. }
  2906. else switch ( nodedata_get_next_buffer() )
  2907. {
  2908. case EOB_ACT_END_OF_FILE:
  2909. {
  2910. nodedata_did_buffer_switch_on_eof = 0;
  2911. if ( nodedatawrap() )
  2912. {
  2913. /* note: because we've taken care in
  2914. * nodedata_get_next_buffer() to have set up nodedatatext,
  2915. * we can now set up nodedata_c_buf_p so that if some
  2916. * total hoser (like flex itself) wants
  2917. * to call the scanner after we return the
  2918. * nodedata_NULL, it'll still work - another nodedata_NULL
  2919. * will get returned.
  2920. */
  2921. nodedata_c_buf_p = nodedatatext + nodedata_MORE_ADJ;
  2922. nodedata_act = nodedata_STATE_EOF((nodedata_start - 1) / 2);
  2923. goto do_action;
  2924. }
  2925. else
  2926. {
  2927. if ( ! nodedata_did_buffer_switch_on_eof )
  2928. nodedata_NEW_FILE;
  2929. }
  2930. }
  2931. break;
  2932. case EOB_ACT_CONTINUE_SCAN:
  2933. nodedata_c_buf_p = nodedatatext + nodedata_amount_of_matched_text;
  2934. nodedata_current_state = nodedata_get_previous_state();
  2935. nodedata_cp = nodedata_c_buf_p;
  2936. nodedata_bp = nodedatatext + nodedata_MORE_ADJ;
  2937. goto nodedata_match;
  2938. case EOB_ACT_LAST_MATCH:
  2939. nodedata_c_buf_p =
  2940. &nodedata_current_buffer->nodedata_ch_buf[nodedata_n_chars];
  2941. nodedata_current_state = nodedata_get_previous_state();
  2942. nodedata_cp = nodedata_c_buf_p;
  2943. nodedata_bp = nodedatatext + nodedata_MORE_ADJ;
  2944. goto nodedata_find_action;
  2945. }
  2946. break;
  2947. }
  2948. default:
  2949. #ifdef FLEX_DEBUG
  2950. printf( "action # %d\n", nodedata_act );
  2951. #endif
  2952. nodedata_FATAL_ERROR(
  2953. "fatal flex scanner internal error--no action found" );
  2954. }
  2955. }
  2956. }
  2957. /* nodedata_get_next_buffer - try to read in a new buffer
  2958. *
  2959. * synopsis
  2960. * int nodedata_get_next_buffer();
  2961. *
  2962. * returns a code representing an action
  2963. * EOB_ACT_LAST_MATCH -
  2964. * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  2965. * EOB_ACT_END_OF_FILE - end of file
  2966. */
  2967. static int nodedata_get_next_buffer()
  2968. {
  2969. register nodedata_CHAR *dest = nodedata_current_buffer->nodedata_ch_buf;
  2970. register nodedata_CHAR *source = nodedatatext - 1; /* copy prev. char, too */
  2971. register int number_to_move, i;
  2972. int ret_val;
  2973. if ( nodedata_c_buf_p > &nodedata_current_buffer->nodedata_ch_buf[nodedata_n_chars + 1] )
  2974. nodedata_FATAL_ERROR(
  2975. "fatal flex scanner internal error--end of buffer missed" );
  2976. /* try to read more data */
  2977. /* first move last chars to start of buffer */
  2978. number_to_move = nodedata_c_buf_p - nodedatatext;
  2979. for ( i = 0; i < number_to_move; ++i )
  2980. *(dest++) = *(source++);
  2981. if ( nodedata_current_buffer->nodedata_eof_status != EOF_NOT_SEEN )
  2982. /* don't do the read, it's not guaranteed to return an EOF,
  2983. * just force an EOF
  2984. */
  2985. nodedata_n_chars = 0;
  2986. else
  2987. {
  2988. int num_to_read = nodedata_current_buffer->nodedata_buf_size - number_to_move - 1;
  2989. if ( num_to_read > nodedata_READ_BUF_SIZE )
  2990. num_to_read = nodedata_READ_BUF_SIZE;
  2991. else if ( num_to_read <= 0 )
  2992. nodedata_FATAL_ERROR( "fatal error - scanner input buffer overflow" );
  2993. /* read in more data */
  2994. nodedata_INPUT( (&nodedata_current_buffer->nodedata_ch_buf[number_to_move]),
  2995. nodedata_n_chars, num_to_read );
  2996. }
  2997. if ( nodedata_n_chars == 0 )
  2998. {
  2999. if ( number_to_move - nodedata_MORE_ADJ == 1 )
  3000. {
  3001. ret_val = EOB_ACT_END_OF_FILE;
  3002. nodedata_current_buffer->nodedata_eof_status = EOF_DONE;
  3003. }
  3004. else
  3005. {
  3006. ret_val = EOB_ACT_LAST_MATCH;
  3007. nodedata_current_buffer->nodedata_eof_status = EOF_PENDING;
  3008. }
  3009. }
  3010. else
  3011. ret_val = EOB_ACT_CONTINUE_SCAN;
  3012. nodedata_n_chars += number_to_move;
  3013. nodedata_current_buffer->nodedata_ch_buf[nodedata_n_chars] = nodedata_END_OF_BUFFER_CHAR;
  3014. nodedata_current_buffer->nodedata_ch_buf[nodedata_n_chars + 1] = nodedata_END_OF_BUFFER_CHAR;
  3015. /* nodedatatext begins at the second character in nodedata_ch_buf; the first
  3016. * character is the one which preceded it before reading in the latest
  3017. * buffer; it needs to be kept around in case it's a newline, so
  3018. * nodedata_get_previous_state() will have with '^' rules active
  3019. */
  3020. nodedatatext = &nodedata_current_buffer->nodedata_ch_buf[1];
  3021. return ( ret_val );
  3022. }
  3023. /* nodedata_get_previous_state - get the state just before the EOB char was reached
  3024. *
  3025. * synopsis
  3026. * nodedata_state_type nodedata_get_previous_state();
  3027. */
  3028. static nodedata_state_type nodedata_get_previous_state()
  3029. {
  3030. register nodedata_state_type nodedata_current_state;
  3031. register nodedata_CHAR *nodedata_cp;
  3032. nodedata_current_state = nodedata_start;
  3033. for ( nodedata_cp = nodedatatext + nodedata_MORE_ADJ; nodedata_cp < nodedata_c_buf_p; ++nodedata_cp )
  3034. {
  3035. if ( *nodedata_cp )
  3036. {
  3037. nodedata_current_state = nodedata_nxt[nodedata_current_state][*nodedata_cp];
  3038. }
  3039. else
  3040. nodedata_current_state = nodedata_NUL_trans[nodedata_current_state];
  3041. if ( nodedata_accept[nodedata_current_state] )
  3042. {
  3043. nodedata_last_accepting_state = nodedata_current_state;
  3044. nodedata_last_accepting_cpos = nodedata_cp;
  3045. }
  3046. }
  3047. return ( nodedata_current_state );
  3048. }
  3049. /* nodedata_try_NUL_trans - try to make a transition on the NUL character
  3050. *
  3051. * synopsis
  3052. * next_state = nodedata_try_NUL_trans( current_state );
  3053. */
  3054. #ifdef nodedata_USE_PROTOS
  3055. static nodedata_state_type nodedata_try_NUL_trans( register nodedata_state_type nodedata_current_state )
  3056. #else
  3057. static nodedata_state_type nodedata_try_NUL_trans( nodedata_current_state )
  3058. register nodedata_state_type nodedata_current_state;
  3059. #endif
  3060. {
  3061. register int nodedata_is_jam;
  3062. register nodedata_CHAR *nodedata_cp = nodedata_c_buf_p;
  3063. nodedata_current_state = nodedata_NUL_trans[nodedata_current_state];
  3064. nodedata_is_jam = (nodedata_current_state == 0);
  3065. if ( ! nodedata_is_jam )
  3066. {
  3067. if ( nodedata_accept[nodedata_current_state] )
  3068. {
  3069. nodedata_last_accepting_state = nodedata_current_state;
  3070. nodedata_last_accepting_cpos = nodedata_cp;
  3071. }
  3072. }
  3073. return ( nodedata_is_jam ? 0 : nodedata_current_state );
  3074. }
  3075. #if 0
  3076. #ifdef nodedata_USE_PROTOS
  3077. static void nodedataunput( nodedata_CHAR c, register nodedata_CHAR *nodedata_bp )
  3078. #else
  3079. static void nodedataunput( c, nodedata_bp )
  3080. nodedata_CHAR c;
  3081. register nodedata_CHAR *nodedata_bp;
  3082. #endif
  3083. {
  3084. register nodedata_CHAR *nodedata_cp = nodedata_c_buf_p;
  3085. /* undo effects of setting up nodedatatext */
  3086. *nodedata_cp = nodedata_hold_char;
  3087. if ( nodedata_cp < nodedata_current_buffer->nodedata_ch_buf + 2 )
  3088. { /* need to shift things up to make room */
  3089. register int number_to_move = nodedata_n_chars + 2; /* +2 for EOB chars */
  3090. register nodedata_CHAR *dest =
  3091. &nodedata_current_buffer->nodedata_ch_buf[nodedata_current_buffer->nodedata_buf_size + 2];
  3092. register nodedata_CHAR *source =
  3093. &nodedata_current_buffer->nodedata_ch_buf[number_to_move];
  3094. while ( source > nodedata_current_buffer->nodedata_ch_buf )
  3095. *--dest = *--source;
  3096. nodedata_cp += dest - source;
  3097. nodedata_bp += dest - source;
  3098. nodedata_n_chars = nodedata_current_buffer->nodedata_buf_size;
  3099. if ( nodedata_cp < nodedata_current_buffer->nodedata_ch_buf + 2 )
  3100. nodedata_FATAL_ERROR( "flex scanner push-back overflow" );
  3101. }
  3102. if ( nodedata_cp > nodedata_bp && nodedata_cp[-1] == '\n' )
  3103. nodedata_cp[-2] = '\n';
  3104. *--nodedata_cp = c;
  3105. /* note: the formal parameter *must* be called "nodedata_bp" for this
  3106. * macro to now work correctly
  3107. */
  3108. nodedata_DO_BEFORE_ACTION; /* set up nodedatatext again */
  3109. }
  3110. #endif
  3111. #if 0
  3112. #ifdef __cplusplus
  3113. static int nodedatainput()
  3114. #else
  3115. static int input()
  3116. #endif
  3117. {
  3118. int c;
  3119. nodedata_CHAR *nodedata_cp = nodedata_c_buf_p;
  3120. *nodedata_cp = nodedata_hold_char;
  3121. if ( *nodedata_c_buf_p == nodedata_END_OF_BUFFER_CHAR )
  3122. {
  3123. /* nodedata_c_buf_p now points to the character we want to return.
  3124. * If this occurs *before* the EOB characters, then it's a
  3125. * valid NUL; if not, then we've hit the end of the buffer.
  3126. */
  3127. if ( nodedata_c_buf_p < &nodedata_current_buffer->nodedata_ch_buf[nodedata_n_chars] )
  3128. /* this was really a NUL */
  3129. *nodedata_c_buf_p = '\0';
  3130. else
  3131. { /* need more input */
  3132. nodedatatext = nodedata_c_buf_p;
  3133. ++nodedata_c_buf_p;
  3134. switch ( nodedata_get_next_buffer() )
  3135. {
  3136. case EOB_ACT_END_OF_FILE:
  3137. {
  3138. if ( nodedatawrap() )
  3139. {
  3140. nodedata_c_buf_p = nodedatatext + nodedata_MORE_ADJ;
  3141. return ( EOF );
  3142. }
  3143. nodedata_NEW_FILE;
  3144. #ifdef __cplusplus
  3145. return ( nodedatainput() );
  3146. #else
  3147. return ( input() );
  3148. #endif
  3149. }
  3150. break;
  3151. case EOB_ACT_CONTINUE_SCAN:
  3152. nodedata_c_buf_p = nodedatatext + nodedata_MORE_ADJ;
  3153. break;
  3154. case EOB_ACT_LAST_MATCH:
  3155. #ifdef __cplusplus
  3156. nodedata_FATAL_ERROR( "unexpected last match in nodedatainput()" );
  3157. #else
  3158. nodedata_FATAL_ERROR( "unexpected last match in input()" );
  3159. #endif
  3160. }
  3161. }
  3162. }
  3163. c = *nodedata_c_buf_p;
  3164. nodedata_hold_char = *++nodedata_c_buf_p;
  3165. return ( c );
  3166. }
  3167. #endif
  3168. #ifdef nodedata_USE_PROTOS
  3169. void nodedatarestart( FILE *input_file )
  3170. #else
  3171. void nodedatarestart( input_file )
  3172. FILE *input_file;
  3173. #endif
  3174. {
  3175. nodedata_init_buffer( nodedata_current_buffer, input_file );
  3176. nodedata_load_buffer_state();
  3177. }
  3178. #ifdef nodedata_USE_PROTOS
  3179. void nodedata_switch_to_buffer( nodedata_BUFFER_STATE new_buffer )
  3180. #else
  3181. void nodedata_switch_to_buffer( new_buffer )
  3182. nodedata_BUFFER_STATE new_buffer;
  3183. #endif
  3184. {
  3185. if ( nodedata_current_buffer == new_buffer )
  3186. return;
  3187. if ( nodedata_current_buffer )
  3188. {
  3189. /* flush out information for old buffer */
  3190. *nodedata_c_buf_p = nodedata_hold_char;
  3191. nodedata_current_buffer->nodedata_buf_pos = nodedata_c_buf_p;
  3192. nodedata_current_buffer->nodedata_n_chars = nodedata_n_chars;
  3193. }
  3194. nodedata_current_buffer = new_buffer;
  3195. nodedata_load_buffer_state();
  3196. /* we don't actually know whether we did this switch during
  3197. * EOF (nodedatawrap()) processing, but the only time this flag
  3198. * is looked at is after nodedatawrap() is called, so it's safe
  3199. * to go ahead and always set it.
  3200. */
  3201. nodedata_did_buffer_switch_on_eof = 1;
  3202. }
  3203. #ifdef nodedata_USE_PROTOS
  3204. void nodedata_load_buffer_state( void )
  3205. #else
  3206. void nodedata_load_buffer_state()
  3207. #endif
  3208. {
  3209. nodedata_n_chars = nodedata_current_buffer->nodedata_n_chars;
  3210. nodedatatext = nodedata_c_buf_p = nodedata_current_buffer->nodedata_buf_pos;
  3211. nodedatain = nodedata_current_buffer->nodedata_input_file;
  3212. nodedata_hold_char = *nodedata_c_buf_p;
  3213. }
  3214. #ifdef nodedata_USE_PROTOS
  3215. nodedata_BUFFER_STATE nodedata_create_buffer( FILE *file, int size )
  3216. #else
  3217. nodedata_BUFFER_STATE nodedata_create_buffer( file, size )
  3218. FILE *file;
  3219. int size;
  3220. #endif
  3221. {
  3222. nodedata_BUFFER_STATE b;
  3223. b = (nodedata_BUFFER_STATE) malloc( sizeof( struct nodedata_buffer_state ) );
  3224. if ( ! b )
  3225. nodedata_FATAL_ERROR( "out of dynamic memory in nodedata_create_buffer()" );
  3226. b->nodedata_buf_size = size;
  3227. /* nodedata_ch_buf has to be 2 characters longer than the size given because
  3228. * we need to put in 2 end-of-buffer characters.
  3229. */
  3230. b->nodedata_ch_buf = (nodedata_CHAR *) malloc( (unsigned) (b->nodedata_buf_size + 2) );
  3231. if ( ! b->nodedata_ch_buf )
  3232. nodedata_FATAL_ERROR( "out of dynamic memory in nodedata_create_buffer()" );
  3233. nodedata_init_buffer( b, file );
  3234. return ( b );
  3235. }
  3236. #ifdef nodedata_USE_PROTOS
  3237. void nodedata_delete_buffer( nodedata_BUFFER_STATE b )
  3238. #else
  3239. void nodedata_delete_buffer( b )
  3240. nodedata_BUFFER_STATE b;
  3241. #endif
  3242. {
  3243. if ( b == nodedata_current_buffer )
  3244. nodedata_current_buffer = (nodedata_BUFFER_STATE) 0;
  3245. free( (char *) b->nodedata_ch_buf );
  3246. free( (char *) b );
  3247. }
  3248. #ifdef nodedata_USE_PROTOS
  3249. void nodedata_init_buffer( nodedata_BUFFER_STATE b, FILE *file )
  3250. #else
  3251. void nodedata_init_buffer( b, file )
  3252. nodedata_BUFFER_STATE b;
  3253. FILE *file;
  3254. #endif
  3255. {
  3256. b->nodedata_input_file = file;
  3257. /* we put in the '\n' and start reading from [1] so that an
  3258. * initial match-at-newline will be true.
  3259. */
  3260. b->nodedata_ch_buf[0] = '\n';
  3261. b->nodedata_n_chars = 1;
  3262. /* we always need two end-of-buffer characters. The first causes
  3263. * a transition to the end-of-buffer state. The second causes
  3264. * a jam in that state.
  3265. */
  3266. b->nodedata_ch_buf[1] = nodedata_END_OF_BUFFER_CHAR;
  3267. b->nodedata_ch_buf[2] = nodedata_END_OF_BUFFER_CHAR;
  3268. b->nodedata_buf_pos = &b->nodedata_ch_buf[1];
  3269. b->nodedata_eof_status = EOF_NOT_SEEN;
  3270. }
  3271. //-----------------------------------------------------------------------
  3272. static int
  3273. my_input ( char *buf, int max_size )
  3274. {
  3275. int remain = myinputlim - myinputptr;
  3276. int n = ( max_size > remain ? remain : max_size );
  3277. if ( n > 0 ) {
  3278. memcpy ( buf, myinputptr, n );
  3279. myinputptr += n;
  3280. }
  3281. return n;
  3282. }
  3283. //----------------------------------------------------------------------
  3284. void ReplaceIdIdRef( NodeData *nd , char *buffer, int sz )
  3285. {
  3286. CurrentNodeData = nd;
  3287. myinput = buffer;
  3288. myinputptr = buffer;
  3289. myinputlim = buffer + sz;
  3290. nodedatalex();
  3291. BEGIN INITIAL;
  3292. nodedatarestart(NULL);
  3293. }