lex.zconf.c 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270
  1. #define yy_create_buffer zconf_create_buffer
  2. #define yy_delete_buffer zconf_delete_buffer
  3. #define yy_scan_buffer zconf_scan_buffer
  4. #define yy_scan_string zconf_scan_string
  5. #define yy_scan_bytes zconf_scan_bytes
  6. #define yy_flex_debug zconf_flex_debug
  7. #define yy_init_buffer zconf_init_buffer
  8. #define yy_flush_buffer zconf_flush_buffer
  9. #define yy_load_buffer_state zconf_load_buffer_state
  10. #define yy_switch_to_buffer zconf_switch_to_buffer
  11. #define yyin zconfin
  12. #define yyleng zconfleng
  13. #define yylex zconflex
  14. #define yyout zconfout
  15. #define yyrestart zconfrestart
  16. #define yytext zconftext
  17. /* A lexical scanner generated by flex */
  18. /* Scanner skeleton version:
  19. * $Header: /var/cvs/uClibc/extra/config/Attic/lex.zconf.c,v 1.1 2002/10/31 18:19:05 andersen Exp $
  20. */
  21. #define FLEX_SCANNER
  22. #define YY_FLEX_MAJOR_VERSION 2
  23. #define YY_FLEX_MINOR_VERSION 5
  24. #include <stdio.h>
  25. #include <errno.h>
  26. /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
  27. #ifdef c_plusplus
  28. #ifndef __cplusplus
  29. #define __cplusplus
  30. #endif
  31. #endif
  32. #ifdef __cplusplus
  33. #include <stdlib.h>
  34. #ifndef _WIN32
  35. #include <unistd.h>
  36. #endif
  37. /* Use prototypes in function declarations. */
  38. #define YY_USE_PROTOS
  39. /* The "const" storage-class-modifier is valid. */
  40. #define YY_USE_CONST
  41. #else /* ! __cplusplus */
  42. #if __STDC__
  43. #define YY_USE_PROTOS
  44. #define YY_USE_CONST
  45. #endif /* __STDC__ */
  46. #endif /* ! __cplusplus */
  47. #ifdef __TURBOC__
  48. #pragma warn -rch
  49. #pragma warn -use
  50. #include <io.h>
  51. #include <stdlib.h>
  52. #define YY_USE_CONST
  53. #define YY_USE_PROTOS
  54. #endif
  55. #ifdef YY_USE_CONST
  56. #define yyconst const
  57. #else
  58. #define yyconst
  59. #endif
  60. #ifdef YY_USE_PROTOS
  61. #define YY_PROTO(proto) proto
  62. #else
  63. #define YY_PROTO(proto) ()
  64. #endif
  65. /* Returned upon end-of-file. */
  66. #define YY_NULL 0
  67. /* Promotes a possibly negative, possibly signed char to an unsigned
  68. * integer for use as an array index. If the signed char is negative,
  69. * we want to instead treat it as an 8-bit unsigned char, hence the
  70. * double cast.
  71. */
  72. #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
  73. /* Enter a start condition. This macro really ought to take a parameter,
  74. * but we do it the disgusting crufty way forced on us by the ()-less
  75. * definition of BEGIN.
  76. */
  77. #define BEGIN yy_start = 1 + 2 *
  78. /* Translate the current start state into a value that can be later handed
  79. * to BEGIN to return to the state. The YYSTATE alias is for lex
  80. * compatibility.
  81. */
  82. #define YY_START ((yy_start - 1) / 2)
  83. #define YYSTATE YY_START
  84. /* Action number for EOF rule of a given start state. */
  85. #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
  86. /* Special action meaning "start processing a new file". */
  87. #define YY_NEW_FILE yyrestart( yyin )
  88. #define YY_END_OF_BUFFER_CHAR 0
  89. /* Size of default input buffer. */
  90. #define YY_BUF_SIZE 16384
  91. typedef struct yy_buffer_state *YY_BUFFER_STATE;
  92. extern int yyleng;
  93. extern FILE *yyin, *yyout;
  94. #define EOB_ACT_CONTINUE_SCAN 0
  95. #define EOB_ACT_END_OF_FILE 1
  96. #define EOB_ACT_LAST_MATCH 2
  97. /* The funky do-while in the following #define is used to turn the definition
  98. * int a single C statement (which needs a semi-colon terminator). This
  99. * avoids problems with code like:
  100. *
  101. * if ( condition_holds )
  102. * yyless( 5 );
  103. * else
  104. * do_something_else();
  105. *
  106. * Prior to using the do-while the compiler would get upset at the
  107. * "else" because it interpreted the "if" statement as being all
  108. * done when it reached the ';' after the yyless() call.
  109. */
  110. /* Return all but the first 'n' matched characters back to the input stream. */
  111. #define yyless(n) \
  112. do \
  113. { \
  114. /* Undo effects of setting up yytext. */ \
  115. *yy_cp = yy_hold_char; \
  116. YY_RESTORE_YY_MORE_OFFSET \
  117. yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
  118. YY_DO_BEFORE_ACTION; /* set up yytext again */ \
  119. } \
  120. while ( 0 )
  121. #define unput(c) yyunput( c, yytext_ptr )
  122. /* The following is because we cannot portably get our hands on size_t
  123. * (without autoconf's help, which isn't available because we want
  124. * flex-generated scanners to compile on their own).
  125. */
  126. typedef unsigned int yy_size_t;
  127. struct yy_buffer_state
  128. {
  129. FILE *yy_input_file;
  130. char *yy_ch_buf; /* input buffer */
  131. char *yy_buf_pos; /* current position in input buffer */
  132. /* Size of input buffer in bytes, not including room for EOB
  133. * characters.
  134. */
  135. yy_size_t yy_buf_size;
  136. /* Number of characters read into yy_ch_buf, not including EOB
  137. * characters.
  138. */
  139. int yy_n_chars;
  140. /* Whether we "own" the buffer - i.e., we know we created it,
  141. * and can realloc() it to grow it, and should free() it to
  142. * delete it.
  143. */
  144. int yy_is_our_buffer;
  145. /* Whether this is an "interactive" input source; if so, and
  146. * if we're using stdio for input, then we want to use getc()
  147. * instead of fread(), to make sure we stop fetching input after
  148. * each newline.
  149. */
  150. int yy_is_interactive;
  151. /* Whether we're considered to be at the beginning of a line.
  152. * If so, '^' rules will be active on the next match, otherwise
  153. * not.
  154. */
  155. int yy_at_bol;
  156. /* Whether to try to fill the input buffer when we reach the
  157. * end of it.
  158. */
  159. int yy_fill_buffer;
  160. int yy_buffer_status;
  161. #define YY_BUFFER_NEW 0
  162. #define YY_BUFFER_NORMAL 1
  163. /* When an EOF's been seen but there's still some text to process
  164. * then we mark the buffer as YY_EOF_PENDING, to indicate that we
  165. * shouldn't try reading from the input source any more. We might
  166. * still have a bunch of tokens to match, though, because of
  167. * possible backing-up.
  168. *
  169. * When we actually see the EOF, we change the status to "new"
  170. * (via yyrestart()), so that the user can continue scanning by
  171. * just pointing yyin at a new input file.
  172. */
  173. #define YY_BUFFER_EOF_PENDING 2
  174. };
  175. static YY_BUFFER_STATE yy_current_buffer = 0;
  176. /* We provide macros for accessing buffer states in case in the
  177. * future we want to put the buffer states in a more general
  178. * "scanner state".
  179. */
  180. #define YY_CURRENT_BUFFER yy_current_buffer
  181. /* yy_hold_char holds the character lost when yytext is formed. */
  182. static char yy_hold_char;
  183. static int yy_n_chars; /* number of characters read into yy_ch_buf */
  184. int yyleng;
  185. /* Points to current character in buffer. */
  186. static char *yy_c_buf_p = (char *) 0;
  187. static int yy_init = 1; /* whether we need to initialize */
  188. static int yy_start = 0; /* start state number */
  189. /* Flag which is used to allow yywrap()'s to do buffer switches
  190. * instead of setting up a fresh yyin. A bit of a hack ...
  191. */
  192. static int yy_did_buffer_switch_on_eof;
  193. void yyrestart YY_PROTO(( FILE *input_file ));
  194. void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
  195. void yy_load_buffer_state YY_PROTO(( void ));
  196. YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
  197. void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
  198. void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
  199. void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
  200. #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )
  201. YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));
  202. YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str ));
  203. YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));
  204. static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
  205. static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
  206. static void yy_flex_free YY_PROTO(( void * ));
  207. #define yy_new_buffer yy_create_buffer
  208. #define yy_set_interactive(is_interactive) \
  209. { \
  210. if ( ! yy_current_buffer ) \
  211. yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
  212. yy_current_buffer->yy_is_interactive = is_interactive; \
  213. }
  214. #define yy_set_bol(at_bol) \
  215. { \
  216. if ( ! yy_current_buffer ) \
  217. yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
  218. yy_current_buffer->yy_at_bol = at_bol; \
  219. }
  220. #define YY_AT_BOL() (yy_current_buffer->yy_at_bol)
  221. #define yywrap() 1
  222. #define YY_SKIP_YYWRAP
  223. typedef unsigned char YY_CHAR;
  224. FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
  225. typedef int yy_state_type;
  226. extern char *yytext;
  227. #define yytext_ptr yytext
  228. static yyconst short yy_nxt[][37] =
  229. {
  230. {
  231. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  232. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  233. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  234. 0, 0, 0, 0, 0, 0, 0
  235. },
  236. {
  237. 11, 12, 13, 14, 12, 12, 15, 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
  241. },
  242. {
  243. 11, 12, 13, 14, 12, 12, 15, 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
  247. },
  248. {
  249. 11, 16, 16, 17, 16, 16, 16, 16, 16, 16,
  250. 16, 16, 16, 18, 16, 16, 18, 19, 20, 21,
  251. 22, 18, 18, 23, 24, 18, 25, 18, 26, 27,
  252. 18, 28, 29, 30, 18, 18, 16
  253. },
  254. {
  255. 11, 16, 16, 17, 16, 16, 16, 16, 16, 16,
  256. 16, 16, 16, 18, 16, 16, 18, 19, 20, 21,
  257. 22, 18, 18, 23, 24, 18, 25, 18, 26, 27,
  258. 18, 28, 29, 30, 18, 18, 16
  259. },
  260. {
  261. 11, 31, 32, 33, 31, 31, 31, 31, 31, 31,
  262. 31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
  263. 31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
  264. 31, 31, 31, 31, 31, 31, 31
  265. },
  266. {
  267. 11, 31, 32, 33, 31, 31, 31, 31, 31, 31,
  268. 31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
  269. 31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
  270. 31, 31, 31, 31, 31, 31, 31
  271. },
  272. {
  273. 11, 34, 34, 35, 34, 36, 34, 34, 36, 34,
  274. 34, 34, 34, 34, 34, 37, 34, 34, 34, 34,
  275. 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
  276. 34, 34, 34, 34, 34, 34, 34
  277. },
  278. {
  279. 11, 34, 34, 35, 34, 36, 34, 34, 36, 34,
  280. 34, 34, 34, 34, 34, 37, 34, 34, 34, 34,
  281. 34, 34, 34, 34, 34, 34, 34, 34, 34, 34,
  282. 34, 34, 34, 34, 34, 34, 34
  283. },
  284. {
  285. 11, 38, 38, 39, 40, 41, 38, 42, 41, 43,
  286. 44, 45, 46, 46, 47, 38, 46, 46, 46, 46,
  287. 46, 46, 46, 46, 48, 46, 46, 46, 49, 46,
  288. 46, 46, 46, 46, 46, 46, 50
  289. },
  290. {
  291. 11, 38, 38, 39, 40, 41, 38, 42, 41, 43,
  292. 44, 45, 46, 46, 47, 38, 46, 46, 46, 46,
  293. 46, 46, 46, 46, 48, 46, 46, 46, 49, 46,
  294. 46, 46, 46, 46, 46, 46, 50
  295. },
  296. {
  297. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  298. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  299. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  300. -11, -11, -11, -11, -11, -11, -11
  301. },
  302. {
  303. 11, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  304. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  305. -12, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  306. -12, -12, -12, -12, -12, -12, -12
  307. },
  308. {
  309. 11, -13, 51, 52, -13, -13, 53, -13, -13, -13,
  310. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  311. -13, -13, -13, -13, -13, -13, -13, -13, -13, -13,
  312. -13, -13, -13, -13, -13, -13, -13
  313. },
  314. {
  315. 11, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  316. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  317. -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  318. -14, -14, -14, -14, -14, -14, -14
  319. },
  320. {
  321. 11, 54, 54, 55, 54, 54, 54, 54, 54, 54,
  322. 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
  323. 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
  324. 54, 54, 54, 54, 54, 54, 54
  325. },
  326. {
  327. 11, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  328. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  329. -16, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  330. -16, -16, -16, -16, -16, -16, -16
  331. },
  332. {
  333. 11, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  334. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  335. -17, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  336. -17, -17, -17, -17, -17, -17, -17
  337. },
  338. {
  339. 11, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  340. -18, -18, -18, 56, -18, -18, 56, 56, 56, 56,
  341. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  342. 56, 56, 56, 56, 56, 56, -18
  343. },
  344. {
  345. 11, -19, -19, -19, -19, -19, -19, -19, -19, -19,
  346. -19, -19, -19, 56, -19, -19, 56, 56, 56, 56,
  347. 56, 56, 56, 56, 56, 56, 56, 56, 57, 56,
  348. 56, 56, 56, 56, 56, 56, -19
  349. },
  350. {
  351. 11, -20, -20, -20, -20, -20, -20, -20, -20, -20,
  352. -20, -20, -20, 56, -20, -20, 56, 56, 56, 56,
  353. 56, 56, 56, 58, 56, 56, 56, 56, 59, 56,
  354. 56, 56, 56, 56, 56, 56, -20
  355. },
  356. {
  357. 11, -21, -21, -21, -21, -21, -21, -21, -21, -21,
  358. -21, -21, -21, 56, -21, -21, 56, 56, 56, 56,
  359. 60, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  360. 56, 56, 56, 56, 56, 56, -21
  361. },
  362. {
  363. 11, -22, -22, -22, -22, -22, -22, -22, -22, -22,
  364. -22, -22, -22, 56, -22, -22, 56, 56, 56, 56,
  365. 56, 56, 56, 56, 56, 56, 56, 61, 56, 56,
  366. 56, 56, 56, 56, 56, 56, -22
  367. },
  368. {
  369. 11, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  370. -23, -23, -23, 56, -23, -23, 56, 56, 56, 56,
  371. 62, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  372. 56, 56, 56, 56, 56, 56, -23
  373. },
  374. {
  375. 11, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  376. -24, -24, -24, 56, -24, -24, 56, 56, 56, 56,
  377. 56, 63, 56, 56, 56, 56, 56, 64, 56, 56,
  378. 56, 56, 56, 56, 56, 56, -24
  379. },
  380. {
  381. 11, -25, -25, -25, -25, -25, -25, -25, -25, -25,
  382. -25, -25, -25, 56, -25, -25, 65, 56, 56, 56,
  383. 66, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  384. 56, 56, 56, 56, 56, 56, -25
  385. },
  386. {
  387. 11, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  388. -26, -26, -26, 56, -26, -26, 56, 56, 56, 56,
  389. 56, 56, 56, 56, 56, 56, 56, 56, 56, 67,
  390. 56, 56, 56, 56, 56, 56, -26
  391. },
  392. {
  393. 11, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  394. -27, -27, -27, 56, -27, -27, 56, 56, 56, 56,
  395. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  396. 56, 68, 56, 56, 56, 56, -27
  397. },
  398. {
  399. 11, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  400. -28, -28, -28, 56, -28, -28, 56, 56, 56, 56,
  401. 69, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  402. 56, 56, 56, 56, 56, 56, -28
  403. },
  404. {
  405. 11, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  406. -29, -29, -29, 56, -29, -29, 56, 56, 56, 56,
  407. 56, 56, 56, 56, 56, 56, 56, 56, 70, 56,
  408. 56, 56, 56, 71, 56, 56, -29
  409. },
  410. {
  411. 11, -30, -30, -30, -30, -30, -30, -30, -30, -30,
  412. -30, -30, -30, 56, -30, -30, 56, 56, 56, 56,
  413. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  414. 56, 72, 56, 56, 56, 56, -30
  415. },
  416. {
  417. 11, 73, 73, -31, 73, 73, 73, 73, 73, 73,
  418. 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  419. 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  420. 73, 73, 73, 73, 73, 73, 73
  421. },
  422. {
  423. 11, -32, 74, 75, -32, -32, -32, -32, -32, -32,
  424. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  425. -32, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  426. -32, -32, -32, -32, -32, -32, -32
  427. },
  428. {
  429. 11, 76, -33, -33, 76, 76, 76, 76, 76, 76,
  430. 76, 76, 76, 76, 76, 76, 76, 76, 76, 76,
  431. 76, 76, 76, 76, 76, 76, 76, 76, 76, 76,
  432. 76, 76, 76, 76, 76, 76, 76
  433. },
  434. {
  435. 11, 77, 77, -34, 77, -34, 77, 77, -34, 77,
  436. 77, 77, 77, 77, 77, -34, 77, 77, 77, 77,
  437. 77, 77, 77, 77, 77, 77, 77, 77, 77, 77,
  438. 77, 77, 77, 77, 77, 77, 77
  439. },
  440. {
  441. 11, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  442. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  443. -35, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  444. -35, -35, -35, -35, -35, -35, -35
  445. },
  446. {
  447. 11, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  448. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  449. -36, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  450. -36, -36, -36, -36, -36, -36, -36
  451. },
  452. {
  453. 11, 78, 79, 80, 78, 78, 78, 78, 78, 78,
  454. 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
  455. 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
  456. 78, 78, 78, 78, 78, 78, 78
  457. },
  458. {
  459. 11, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  460. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  461. -38, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  462. -38, -38, -38, -38, -38, -38, -38
  463. },
  464. {
  465. 11, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  466. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  467. -39, -39, -39, -39, -39, -39, -39, -39, -39, -39,
  468. -39, -39, -39, -39, -39, -39, -39
  469. },
  470. {
  471. 11, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  472. -40, -40, -40, -40, 81, -40, -40, -40, -40, -40,
  473. -40, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  474. -40, -40, -40, -40, -40, -40, -40
  475. },
  476. {
  477. 11, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  478. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  479. -41, -41, -41, -41, -41, -41, -41, -41, -41, -41,
  480. -41, -41, -41, -41, -41, -41, -41
  481. },
  482. {
  483. 11, -42, -42, -42, -42, -42, -42, 82, -42, -42,
  484. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  485. -42, -42, -42, -42, -42, -42, -42, -42, -42, -42,
  486. -42, -42, -42, -42, -42, -42, -42
  487. },
  488. {
  489. 11, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  490. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  491. -43, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  492. -43, -43, -43, -43, -43, -43, -43
  493. },
  494. {
  495. 11, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  496. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  497. -44, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  498. -44, -44, -44, -44, -44, -44, -44
  499. },
  500. {
  501. 11, -45, -45, -45, -45, -45, -45, -45, -45, -45,
  502. -45, 83, 84, 84, -45, -45, 84, 84, 84, 84,
  503. 84, 84, 84, 84, 84, 84, 84, 84, 84, 84,
  504. 84, 84, 84, 84, 84, 84, -45
  505. },
  506. {
  507. 11, -46, -46, -46, -46, -46, -46, -46, -46, -46,
  508. -46, 84, 84, 84, -46, -46, 84, 84, 84, 84,
  509. 84, 84, 84, 84, 84, 84, 84, 84, 84, 84,
  510. 84, 84, 84, 84, 84, 84, -46
  511. },
  512. {
  513. 11, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  514. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  515. -47, -47, -47, -47, -47, -47, -47, -47, -47, -47,
  516. -47, -47, -47, -47, -47, -47, -47
  517. },
  518. {
  519. 11, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  520. -48, 84, 84, 84, -48, -48, 84, 84, 84, 84,
  521. 84, 85, 84, 84, 84, 84, 84, 84, 84, 84,
  522. 84, 84, 84, 84, 84, 84, -48
  523. },
  524. {
  525. 11, -49, -49, -49, -49, -49, -49, -49, -49, -49,
  526. -49, 84, 84, 84, -49, -49, 84, 84, 84, 84,
  527. 84, 84, 84, 84, 84, 84, 84, 86, 84, 84,
  528. 84, 84, 84, 84, 84, 84, -49
  529. },
  530. {
  531. 11, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  532. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  533. -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  534. -50, -50, -50, -50, -50, -50, 87
  535. },
  536. {
  537. 11, -51, 51, 52, -51, -51, 53, -51, -51, -51,
  538. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  539. -51, -51, -51, -51, -51, -51, -51, -51, -51, -51,
  540. -51, -51, -51, -51, -51, -51, -51
  541. },
  542. {
  543. 11, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  544. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  545. -52, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  546. -52, -52, -52, -52, -52, -52, -52
  547. },
  548. {
  549. 11, 54, 54, 55, 54, 54, 54, 54, 54, 54,
  550. 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
  551. 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
  552. 54, 54, 54, 54, 54, 54, 54
  553. },
  554. {
  555. 11, 54, 54, 55, 54, 54, 54, 54, 54, 54,
  556. 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
  557. 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
  558. 54, 54, 54, 54, 54, 54, 54
  559. },
  560. {
  561. 11, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  562. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  563. -55, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  564. -55, -55, -55, -55, -55, -55, -55
  565. },
  566. {
  567. 11, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  568. -56, -56, -56, 56, -56, -56, 56, 56, 56, 56,
  569. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  570. 56, 56, 56, 56, 56, 56, -56
  571. },
  572. {
  573. 11, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  574. -57, -57, -57, 56, -57, -57, 56, 56, 56, 56,
  575. 56, 56, 56, 56, 56, 56, 56, 56, 88, 56,
  576. 56, 56, 56, 56, 56, 56, -57
  577. },
  578. {
  579. 11, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  580. -58, -58, -58, 56, -58, -58, 56, 56, 56, 56,
  581. 56, 56, 56, 56, 56, 56, 56, 56, 89, 56,
  582. 56, 56, 56, 56, 56, 56, -58
  583. },
  584. {
  585. 11, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  586. -59, -59, -59, 56, -59, -59, 56, 56, 56, 56,
  587. 56, 56, 56, 56, 56, 56, 90, 91, 56, 56,
  588. 56, 56, 56, 56, 56, 56, -59
  589. },
  590. {
  591. 11, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  592. -60, -60, -60, 56, -60, -60, 56, 56, 56, 56,
  593. 56, 92, 56, 56, 56, 56, 56, 56, 56, 93,
  594. 56, 56, 56, 56, 56, 56, -60
  595. },
  596. {
  597. 11, -61, -61, -61, -61, -61, -61, -61, -61, -61,
  598. -61, -61, -61, 56, -61, -61, 56, 56, 56, 94,
  599. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  600. 56, 56, 56, 56, 56, 56, -61
  601. },
  602. {
  603. 11, -62, -62, -62, -62, -62, -62, -62, -62, -62,
  604. -62, -62, -62, 56, -62, -62, 56, 56, 56, 56,
  605. 56, 56, 56, 56, 56, 95, 56, 56, 56, 56,
  606. 56, 56, 56, 56, 56, 96, -62
  607. },
  608. {
  609. 11, -63, -63, -63, -63, -63, -63, -63, -63, -63,
  610. -63, -63, -63, 56, -63, -63, 56, 56, 56, 56,
  611. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  612. 56, 56, 56, 56, 56, 56, -63
  613. },
  614. {
  615. 11, -64, -64, -64, -64, -64, -64, -64, -64, -64,
  616. -64, -64, -64, 56, -64, -64, 56, 56, 56, 56,
  617. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  618. 56, 56, 56, 97, 56, 56, -64
  619. },
  620. {
  621. 11, -65, -65, -65, -65, -65, -65, -65, -65, -65,
  622. -65, -65, -65, 56, -65, -65, 56, 56, 56, 56,
  623. 56, 56, 56, 56, 98, 56, 56, 56, 56, 56,
  624. 56, 56, 56, 56, 56, 56, -65
  625. },
  626. {
  627. 11, -66, -66, -66, -66, -66, -66, -66, -66, -66,
  628. -66, -66, -66, 56, -66, -66, 56, 56, 56, 56,
  629. 56, 56, 56, 56, 56, 56, 56, 99, 56, 56,
  630. 56, 56, 56, 56, 56, 56, -66
  631. },
  632. {
  633. 11, -67, -67, -67, -67, -67, -67, -67, -67, -67,
  634. -67, -67, -67, 56, -67, -67, 56, 56, 56, 56,
  635. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  636. 56, 56, 56, 100, 56, 56, -67
  637. },
  638. {
  639. 11, -68, -68, -68, -68, -68, -68, -68, -68, -68,
  640. -68, -68, -68, 56, -68, -68, 56, 56, 56, 56,
  641. 56, 56, 56, 56, 56, 56, 56, 56, 101, 56,
  642. 56, 56, 56, 56, 56, 56, -68
  643. },
  644. {
  645. 11, -69, -69, -69, -69, -69, -69, -69, -69, -69,
  646. -69, -69, -69, 56, -69, -69, 56, 56, 56, 56,
  647. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  648. 102, 56, 56, 56, 56, 56, -69
  649. },
  650. {
  651. 11, -70, -70, -70, -70, -70, -70, -70, -70, -70,
  652. -70, -70, -70, 56, -70, -70, 56, 56, 56, 56,
  653. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  654. 56, 56, 56, 56, 103, 56, -70
  655. },
  656. {
  657. 11, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  658. -71, -71, -71, 56, -71, -71, 56, 56, 56, 56,
  659. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  660. 56, 104, 56, 56, 56, 56, -71
  661. },
  662. {
  663. 11, -72, -72, -72, -72, -72, -72, -72, -72, -72,
  664. -72, -72, -72, 56, -72, -72, 56, 56, 56, 56,
  665. 56, 56, 56, 56, 105, 56, 56, 56, 56, 56,
  666. 56, 56, 56, 56, 56, 56, -72
  667. },
  668. {
  669. 11, 73, 73, -73, 73, 73, 73, 73, 73, 73,
  670. 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  671. 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
  672. 73, 73, 73, 73, 73, 73, 73
  673. },
  674. {
  675. 11, -74, 74, 75, -74, -74, -74, -74, -74, -74,
  676. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  677. -74, -74, -74, -74, -74, -74, -74, -74, -74, -74,
  678. -74, -74, -74, -74, -74, -74, -74
  679. },
  680. {
  681. 11, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  682. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  683. -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
  684. -75, -75, -75, -75, -75, -75, -75
  685. },
  686. {
  687. 11, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  688. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  689. -76, -76, -76, -76, -76, -76, -76, -76, -76, -76,
  690. -76, -76, -76, -76, -76, -76, -76
  691. },
  692. {
  693. 11, 77, 77, -77, 77, -77, 77, 77, -77, 77,
  694. 77, 77, 77, 77, 77, -77, 77, 77, 77, 77,
  695. 77, 77, 77, 77, 77, 77, 77, 77, 77, 77,
  696. 77, 77, 77, 77, 77, 77, 77
  697. },
  698. {
  699. 11, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  700. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  701. -78, -78, -78, -78, -78, -78, -78, -78, -78, -78,
  702. -78, -78, -78, -78, -78, -78, -78
  703. },
  704. {
  705. 11, -79, 106, 80, -79, -79, -79, -79, -79, -79,
  706. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  707. -79, -79, -79, -79, -79, -79, -79, -79, -79, -79,
  708. -79, -79, -79, -79, -79, -79, -79
  709. },
  710. {
  711. 11, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  712. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  713. -80, -80, -80, -80, -80, -80, -80, -80, -80, -80,
  714. -80, -80, -80, -80, -80, -80, -80
  715. },
  716. {
  717. 11, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  718. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  719. -81, -81, -81, -81, -81, -81, -81, -81, -81, -81,
  720. -81, -81, -81, -81, -81, -81, -81
  721. },
  722. {
  723. 11, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  724. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  725. -82, -82, -82, -82, -82, -82, -82, -82, -82, -82,
  726. -82, -82, -82, -82, -82, -82, -82
  727. },
  728. {
  729. 11, -83, -83, -83, -83, -83, -83, -83, -83, -83,
  730. -83, 107, 84, 84, -83, -83, 84, 84, 84, 84,
  731. 84, 84, 84, 84, 84, 84, 84, 84, 84, 84,
  732. 84, 84, 84, 84, 84, 84, -83
  733. },
  734. {
  735. 11, -84, -84, -84, -84, -84, -84, -84, -84, -84,
  736. -84, 84, 84, 84, -84, -84, 84, 84, 84, 84,
  737. 84, 84, 84, 84, 84, 84, 84, 84, 84, 84,
  738. 84, 84, 84, 84, 84, 84, -84
  739. },
  740. {
  741. 11, -85, -85, -85, -85, -85, -85, -85, -85, -85,
  742. -85, 84, 84, 84, -85, -85, 84, 84, 84, 84,
  743. 84, 84, 84, 84, 84, 84, 84, 84, 84, 84,
  744. 84, 84, 84, 84, 84, 84, -85
  745. },
  746. {
  747. 11, -86, -86, -86, -86, -86, -86, -86, -86, -86,
  748. -86, 84, 84, 84, -86, -86, 84, 84, 84, 84,
  749. 84, 84, 84, 84, 84, 84, 84, 84, 84, 84,
  750. 84, 84, 84, 84, 84, 84, -86
  751. },
  752. {
  753. 11, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  754. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  755. -87, -87, -87, -87, -87, -87, -87, -87, -87, -87,
  756. -87, -87, -87, -87, -87, -87, -87
  757. },
  758. {
  759. 11, -88, -88, -88, -88, -88, -88, -88, -88, -88,
  760. -88, -88, -88, 56, -88, -88, 56, 56, 56, 56,
  761. 56, 56, 56, 56, 56, 108, 56, 56, 56, 56,
  762. 56, 56, 56, 56, 56, 56, -88
  763. },
  764. {
  765. 11, -89, -89, -89, -89, -89, -89, -89, -89, -89,
  766. -89, -89, -89, 56, -89, -89, 56, 56, 56, 56,
  767. 56, 56, 56, 56, 109, 56, 56, 56, 56, 56,
  768. 56, 56, 56, 56, 56, 56, -89
  769. },
  770. {
  771. 11, -90, -90, -90, -90, -90, -90, -90, -90, -90,
  772. -90, -90, -90, 56, -90, -90, 56, 56, 56, 56,
  773. 56, 56, 56, 56, 56, 56, 110, 56, 56, 56,
  774. 56, 56, 56, 56, 56, 56, -90
  775. },
  776. {
  777. 11, -91, -91, -91, -91, -91, -91, -91, -91, -91,
  778. -91, -91, -91, 56, -91, -91, 56, 56, 56, 56,
  779. 56, 111, 56, 56, 56, 56, 56, 56, 56, 56,
  780. 56, 56, 56, 56, 56, 56, -91
  781. },
  782. {
  783. 11, -92, -92, -92, -92, -92, -92, -92, -92, -92,
  784. -92, -92, -92, 56, -92, -92, 112, 56, 56, 56,
  785. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  786. 56, 56, 56, 56, 56, 56, -92
  787. },
  788. {
  789. 11, -93, -93, -93, -93, -93, -93, -93, -93, -93,
  790. -93, -93, -93, 56, -93, -93, 56, 56, 56, 56,
  791. 113, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  792. 56, 56, 56, 56, 56, 56, -93
  793. },
  794. {
  795. 11, -94, -94, -94, -94, -94, -94, -94, -94, -94,
  796. -94, -94, -94, 56, -94, -94, 56, 56, 114, 56,
  797. 56, 56, 56, 56, 115, 56, 116, 56, 56, 56,
  798. 56, 56, 56, 56, 56, 56, -94
  799. },
  800. {
  801. 11, -95, -95, -95, -95, -95, -95, -95, -95, -95,
  802. -95, -95, -95, 56, -95, -95, 56, 56, 56, 56,
  803. 56, 56, 56, 56, 56, 56, 56, 56, 56, 117,
  804. 56, 56, 56, 56, 56, 56, -95
  805. },
  806. {
  807. 11, -96, -96, -96, -96, -96, -96, -96, -96, -96,
  808. -96, -96, -96, 56, -96, -96, 56, 56, 56, 56,
  809. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  810. 56, 56, 56, 56, 56, 56, -96
  811. },
  812. {
  813. 11, -97, -97, -97, -97, -97, -97, -97, -97, -97,
  814. -97, -97, -97, 56, -97, -97, 56, 56, 56, 56,
  815. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  816. 56, 56, 56, 56, 56, 56, -97
  817. },
  818. {
  819. 11, -98, -98, -98, -98, -98, -98, -98, -98, -98,
  820. -98, -98, -98, 56, -98, -98, 56, 56, 56, 56,
  821. 56, 56, 56, 56, 56, 56, 56, 118, 56, 56,
  822. 56, 56, 56, 56, 56, 56, -98
  823. },
  824. {
  825. 11, -99, -99, -99, -99, -99, -99, -99, -99, -99,
  826. -99, -99, -99, 56, -99, -99, 56, 56, 56, 56,
  827. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  828. 56, 56, 56, 56, 119, 56, -99
  829. },
  830. {
  831. 11, -100, -100, -100, -100, -100, -100, -100, -100, -100,
  832. -100, -100, -100, 56, -100, -100, 56, 56, 56, 56,
  833. 56, 56, 56, 56, 120, 56, 56, 56, 56, 56,
  834. 56, 56, 56, 56, 56, 56, -100
  835. },
  836. {
  837. 11, -101, -101, -101, -101, -101, -101, -101, -101, -101,
  838. -101, -101, -101, 56, -101, -101, 56, 56, 56, 56,
  839. 56, 56, 56, 56, 56, 56, 121, 56, 56, 56,
  840. 56, 56, 56, 56, 56, 56, -101
  841. },
  842. {
  843. 11, -102, -102, -102, -102, -102, -102, -102, -102, -102,
  844. -102, -102, -102, 56, -102, -102, 56, 56, 56, 56,
  845. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  846. 56, 56, 56, 56, 122, 56, -102
  847. },
  848. {
  849. 11, -103, -103, -103, -103, -103, -103, -103, -103, -103,
  850. -103, -103, -103, 56, -103, -103, 56, 56, 56, 56,
  851. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  852. 56, 123, 56, 56, 56, 56, -103
  853. },
  854. {
  855. 11, -104, -104, -104, -104, -104, -104, -104, -104, -104,
  856. -104, -104, -104, 56, -104, -104, 56, 56, 56, 56,
  857. 56, 56, 56, 56, 124, 56, 56, 56, 56, 56,
  858. 56, 56, 56, 56, 56, 56, -104
  859. },
  860. {
  861. 11, -105, -105, -105, -105, -105, -105, -105, -105, -105,
  862. -105, -105, -105, 56, -105, -105, 56, 56, 56, 56,
  863. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  864. 56, 56, 125, 56, 56, 56, -105
  865. },
  866. {
  867. 11, -106, 106, 80, -106, -106, -106, -106, -106, -106,
  868. -106, -106, -106, -106, -106, -106, -106, -106, -106, -106,
  869. -106, -106, -106, -106, -106, -106, -106, -106, -106, -106,
  870. -106, -106, -106, -106, -106, -106, -106
  871. },
  872. {
  873. 11, -107, -107, -107, -107, -107, -107, -107, -107, -107,
  874. -107, 84, 84, 84, -107, -107, 84, 84, 84, 84,
  875. 84, 84, 84, 84, 84, 84, 84, 84, 84, 84,
  876. 84, 84, 84, 84, 84, 84, -107
  877. },
  878. {
  879. 11, -108, -108, -108, -108, -108, -108, -108, -108, -108,
  880. -108, -108, -108, 56, -108, -108, 56, 56, 56, 56,
  881. 126, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  882. 56, 56, 56, 56, 56, 56, -108
  883. },
  884. {
  885. 11, -109, -109, -109, -109, -109, -109, -109, -109, -109,
  886. -109, -109, -109, 56, -109, -109, 56, 56, 127, 56,
  887. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  888. 56, 56, 56, 56, 56, 56, -109
  889. },
  890. {
  891. 11, -110, -110, -110, -110, -110, -110, -110, -110, -110,
  892. -110, -110, -110, 56, -110, -110, 56, 56, 56, 56,
  893. 128, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  894. 56, 56, 56, 56, 56, 56, -110
  895. },
  896. {
  897. 11, -111, -111, -111, -111, -111, -111, -111, -111, -111,
  898. -111, -111, -111, 56, -111, -111, 56, 56, 56, 56,
  899. 56, 56, 56, 56, 129, 56, 56, 56, 56, 56,
  900. 56, 56, 56, 56, 56, 56, -111
  901. },
  902. {
  903. 11, -112, -112, -112, -112, -112, -112, -112, -112, -112,
  904. -112, -112, -112, 56, -112, -112, 56, 56, 56, 56,
  905. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  906. 56, 56, 56, 56, 130, 56, -112
  907. },
  908. {
  909. 11, -113, -113, -113, -113, -113, -113, -113, -113, -113,
  910. -113, -113, -113, 56, -113, -113, 56, 56, 56, 56,
  911. 56, 56, 56, 56, 56, 56, 56, 131, 56, 56,
  912. 56, 56, 56, 56, 56, 56, -113
  913. },
  914. {
  915. 11, -114, -114, -114, -114, -114, -114, -114, -114, -114,
  916. -114, -114, -114, 56, -114, -114, 56, 56, 56, 56,
  917. 56, 56, 56, 132, 56, 56, 56, 56, 56, 56,
  918. 56, 56, 56, 56, 56, 56, -114
  919. },
  920. {
  921. 11, -115, -115, -115, -115, -115, -115, -115, -115, -115,
  922. -115, -115, -115, 56, -115, -115, 56, 56, 56, 56,
  923. 56, 133, 56, 56, 56, 56, 56, 56, 56, 56,
  924. 56, 56, 56, 56, 56, 56, -115
  925. },
  926. {
  927. 11, -116, -116, -116, -116, -116, -116, -116, -116, -116,
  928. -116, -116, -116, 56, -116, -116, 56, 56, 56, 56,
  929. 134, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  930. 56, 56, 56, 56, 56, 56, -116
  931. },
  932. {
  933. 11, -117, -117, -117, -117, -117, -117, -117, -117, -117,
  934. -117, -117, -117, 56, -117, -117, 56, 56, 56, 56,
  935. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  936. 56, 56, 56, 56, 56, 56, -117
  937. },
  938. {
  939. 11, -118, -118, -118, -118, -118, -118, -118, -118, -118,
  940. -118, -118, -118, 56, -118, -118, 56, 56, 56, 56,
  941. 56, 56, 56, 56, 56, 56, 135, 56, 56, 56,
  942. 56, 56, 56, 56, 56, 56, -118
  943. },
  944. {
  945. 11, -119, -119, -119, -119, -119, -119, -119, -119, -119,
  946. -119, -119, -119, 56, -119, -119, 56, 56, 56, 56,
  947. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  948. 56, 56, 56, 56, 56, 56, -119
  949. },
  950. {
  951. 11, -120, -120, -120, -120, -120, -120, -120, -120, -120,
  952. -120, -120, -120, 56, -120, -120, 56, 56, 56, 56,
  953. 56, 56, 56, 56, 56, 56, 56, 56, 136, 56,
  954. 56, 56, 56, 56, 56, 56, -120
  955. },
  956. {
  957. 11, -121, -121, -121, -121, -121, -121, -121, -121, -121,
  958. -121, -121, -121, 56, -121, -121, 56, 56, 56, 56,
  959. 56, 56, 56, 56, 56, 56, 56, 56, 56, 137,
  960. 56, 56, 56, 56, 56, 56, -121
  961. },
  962. {
  963. 11, -122, -122, -122, -122, -122, -122, -122, -122, -122,
  964. -122, -122, -122, 56, -122, -122, 56, 56, 56, 56,
  965. 56, 56, 56, 56, 138, 56, 56, 56, 56, 56,
  966. 56, 56, 56, 56, 56, 56, -122
  967. },
  968. {
  969. 11, -123, -123, -123, -123, -123, -123, -123, -123, -123,
  970. -123, -123, -123, 56, -123, -123, 56, 56, 139, 56,
  971. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  972. 56, 56, 56, 56, 56, 56, -123
  973. },
  974. {
  975. 11, -124, -124, -124, -124, -124, -124, -124, -124, -124,
  976. -124, -124, -124, 56, -124, -124, 56, 56, 56, 56,
  977. 56, 56, 56, 56, 56, 56, 56, 140, 56, 56,
  978. 56, 56, 56, 56, 56, 56, -124
  979. },
  980. {
  981. 11, -125, -125, -125, -125, -125, -125, -125, -125, -125,
  982. -125, -125, -125, 56, -125, -125, 56, 56, 56, 56,
  983. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  984. 56, 56, 56, 141, 56, 56, -125
  985. },
  986. {
  987. 11, -126, -126, -126, -126, -126, -126, -126, -126, -126,
  988. -126, -126, -126, 56, -126, -126, 142, 56, 56, 56,
  989. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  990. 56, 56, 56, 56, 56, 56, -126
  991. },
  992. {
  993. 11, -127, -127, -127, -127, -127, -127, -127, -127, -127,
  994. -127, -127, -127, 56, -127, -127, 56, 56, 56, 56,
  995. 143, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  996. 56, 56, 56, 56, 56, 56, -127
  997. },
  998. {
  999. 11, -128, -128, -128, -128, -128, -128, -128, -128, -128,
  1000. -128, -128, -128, 56, -128, -128, 56, 56, 56, 56,
  1001. 56, 56, 56, 56, 56, 56, 56, 144, 56, 56,
  1002. 56, 56, 56, 56, 56, 56, -128
  1003. },
  1004. {
  1005. 11, -129, -129, -129, -129, -129, -129, -129, -129, -129,
  1006. -129, -129, -129, 56, -129, -129, 56, 56, 56, 56,
  1007. 56, 56, 145, 56, 56, 56, 56, 56, 56, 56,
  1008. 56, 56, 56, 56, 56, 56, -129
  1009. },
  1010. {
  1011. 11, -130, -130, -130, -130, -130, -130, -130, -130, -130,
  1012. -130, -130, -130, 56, -130, -130, 56, 56, 56, 56,
  1013. 56, 56, 56, 56, 56, 146, 56, 56, 56, 56,
  1014. 56, 56, 56, 56, 56, 56, -130
  1015. },
  1016. {
  1017. 11, -131, -131, -131, -131, -131, -131, -131, -131, -131,
  1018. -131, -131, -131, 56, -131, -131, 56, 56, 56, 147,
  1019. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1020. 56, 56, 56, 56, 56, 56, -131
  1021. },
  1022. {
  1023. 11, -132, -132, -132, -132, -132, -132, -132, -132, -132,
  1024. -132, -132, -132, 56, -132, -132, 56, 56, 56, 56,
  1025. 56, 56, 56, 56, 56, 56, 56, 56, 148, 56,
  1026. 56, 56, 56, 56, 56, 56, -132
  1027. },
  1028. {
  1029. 11, -133, -133, -133, -133, -133, -133, -133, -133, -133,
  1030. -133, -133, -133, 56, -133, -133, 56, 56, 56, 56,
  1031. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1032. 56, 56, 56, 56, 56, 56, -133
  1033. },
  1034. {
  1035. 11, -134, -134, -134, -134, -134, -134, -134, -134, -134,
  1036. -134, -134, -134, 56, -134, -134, 56, 56, 56, 56,
  1037. 56, 56, 56, 56, 56, 56, 56, 149, 56, 56,
  1038. 56, 56, 56, 56, 56, 56, -134
  1039. },
  1040. {
  1041. 11, -135, -135, -135, -135, -135, -135, -135, -135, -135,
  1042. -135, -135, -135, 56, -135, -135, 56, 56, 56, 56,
  1043. 150, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1044. 56, 56, 56, 56, 56, 56, -135
  1045. },
  1046. {
  1047. 11, -136, -136, -136, -136, -136, -136, -136, -136, -136,
  1048. -136, -136, -136, 56, -136, -136, 56, 56, 56, 56,
  1049. 56, 56, 56, 56, 56, 56, 56, 151, 56, 56,
  1050. 56, 56, 56, 56, 56, 56, -136
  1051. },
  1052. {
  1053. 11, -137, -137, -137, -137, -137, -137, -137, -137, -137,
  1054. -137, -137, -137, 56, -137, -137, 56, 56, 56, 56,
  1055. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1056. 56, 56, 56, 152, 56, 56, -137
  1057. },
  1058. {
  1059. 11, -138, -138, -138, -138, -138, -138, -138, -138, -138,
  1060. -138, -138, -138, 56, -138, -138, 56, 56, 56, 56,
  1061. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1062. 56, 153, 56, 56, 56, 56, -138
  1063. },
  1064. {
  1065. 11, -139, -139, -139, -139, -139, -139, -139, -139, -139,
  1066. -139, -139, -139, 56, -139, -139, 56, 56, 56, 56,
  1067. 154, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1068. 56, 56, 56, 56, 56, 56, -139
  1069. },
  1070. {
  1071. 11, -140, -140, -140, -140, -140, -140, -140, -140, -140,
  1072. -140, -140, -140, 56, -140, -140, 56, 56, 56, 56,
  1073. 56, 56, 155, 56, 56, 56, 56, 56, 56, 56,
  1074. 56, 56, 56, 56, 56, 56, -140
  1075. },
  1076. {
  1077. 11, -141, -141, -141, -141, -141, -141, -141, -141, -141,
  1078. -141, -141, -141, 56, -141, -141, 156, 56, 56, 56,
  1079. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1080. 56, 56, 56, 56, 56, 56, -141
  1081. },
  1082. {
  1083. 11, -142, -142, -142, -142, -142, -142, -142, -142, -142,
  1084. -142, -142, -142, 56, -142, -142, 56, 56, 56, 56,
  1085. 56, 56, 56, 56, 56, 56, 56, 157, 56, 56,
  1086. 56, 56, 56, 56, 56, 56, -142
  1087. },
  1088. {
  1089. 11, -143, -143, -143, -143, -143, -143, -143, -143, -143,
  1090. -143, -143, -143, 56, -143, -143, 56, 56, 56, 56,
  1091. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1092. 56, 56, 56, 56, 56, 56, -143
  1093. },
  1094. {
  1095. 11, -144, -144, -144, -144, -144, -144, -144, -144, -144,
  1096. -144, -144, -144, 56, -144, -144, 56, 56, 56, 56,
  1097. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1098. 56, 56, 56, 158, 56, 56, -144
  1099. },
  1100. {
  1101. 11, -145, -145, -145, -145, -145, -145, -145, -145, -145,
  1102. -145, -145, -145, 56, -145, -145, 56, 56, 56, 56,
  1103. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1104. 56, 56, 56, 56, 56, 56, -145
  1105. },
  1106. {
  1107. 11, -146, -146, -146, -146, -146, -146, -146, -146, -146,
  1108. -146, -146, -146, 56, -146, -146, 56, 56, 56, 56,
  1109. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1110. 56, 56, 56, 159, 56, 56, -146
  1111. },
  1112. {
  1113. 11, -147, -147, -147, -147, -147, -147, -147, -147, -147,
  1114. -147, -147, -147, 56, -147, -147, 56, 56, 56, 56,
  1115. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1116. 56, 56, 160, 56, 56, 56, -147
  1117. },
  1118. {
  1119. 11, -148, -148, -148, -148, -148, -148, -148, -148, -148,
  1120. -148, -148, -148, 56, -148, -148, 56, 56, 56, 56,
  1121. 56, 56, 56, 56, 161, 56, 56, 56, 56, 56,
  1122. 56, 56, 56, 56, 56, 56, -148
  1123. },
  1124. {
  1125. 11, -149, -149, -149, -149, -149, -149, -149, -149, -149,
  1126. -149, -149, -149, 56, -149, -149, 56, 56, 56, 56,
  1127. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1128. 56, 56, 56, 56, 162, 56, -149
  1129. },
  1130. {
  1131. 11, -150, -150, -150, -150, -150, -150, -150, -150, -150,
  1132. -150, -150, -150, 56, -150, -150, 56, 56, 56, 56,
  1133. 56, 56, 56, 56, 56, 56, 56, 163, 56, 56,
  1134. 56, 56, 56, 56, 56, 56, -150
  1135. },
  1136. {
  1137. 11, -151, -151, -151, -151, -151, -151, -151, -151, -151,
  1138. -151, -151, -151, 56, -151, -151, 164, 56, 56, 56,
  1139. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1140. 56, 56, 56, 56, 56, 56, -151
  1141. },
  1142. {
  1143. 11, -152, -152, -152, -152, -152, -152, -152, -152, -152,
  1144. -152, -152, -152, 56, -152, -152, 56, 56, 56, 56,
  1145. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1146. 56, 56, 56, 56, 56, 56, -152
  1147. },
  1148. {
  1149. 11, -153, -153, -153, -153, -153, -153, -153, -153, -153,
  1150. -153, -153, -153, 56, -153, -153, 56, 56, 56, 56,
  1151. 165, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1152. 56, 56, 56, 56, 56, 56, -153
  1153. },
  1154. {
  1155. 11, -154, -154, -154, -154, -154, -154, -154, -154, -154,
  1156. -154, -154, -154, 56, -154, -154, 56, 56, 56, 56,
  1157. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1158. 56, 56, 56, 56, 56, 56, -154
  1159. },
  1160. {
  1161. 11, -155, -155, -155, -155, -155, -155, -155, -155, -155,
  1162. -155, -155, -155, 56, -155, -155, 56, 56, 56, 56,
  1163. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1164. 56, 56, 56, 56, 56, 56, -155
  1165. },
  1166. {
  1167. 11, -156, -156, -156, -156, -156, -156, -156, -156, -156,
  1168. -156, -156, -156, 56, -156, -156, 56, 56, 56, 56,
  1169. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1170. 56, 56, 56, 166, 56, 56, -156
  1171. },
  1172. {
  1173. 11, -157, -157, -157, -157, -157, -157, -157, -157, -157,
  1174. -157, -157, -157, 56, -157, -157, 56, 56, 56, 56,
  1175. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1176. 56, 56, 56, 56, 56, 56, -157
  1177. },
  1178. {
  1179. 11, -158, -158, -158, -158, -158, -158, -158, -158, -158,
  1180. -158, -158, -158, 56, -158, -158, 56, 56, 56, 56,
  1181. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1182. 56, 56, 56, 56, 56, 56, -158
  1183. },
  1184. {
  1185. 11, -159, -159, -159, -159, -159, -159, -159, -159, -159,
  1186. -159, -159, -159, 56, -159, -159, 56, 56, 56, 56,
  1187. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1188. 56, 56, 56, 56, 56, 56, -159
  1189. },
  1190. {
  1191. 11, -160, -160, -160, -160, -160, -160, -160, -160, -160,
  1192. -160, -160, -160, 56, -160, -160, 56, 56, 56, 56,
  1193. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1194. 56, 56, 56, 56, 56, 56, -160
  1195. },
  1196. {
  1197. 11, -161, -161, -161, -161, -161, -161, -161, -161, -161,
  1198. -161, -161, -161, 56, -161, -161, 56, 56, 167, 56,
  1199. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1200. 56, 56, 56, 56, 56, 56, -161
  1201. },
  1202. {
  1203. 11, -162, -162, -162, -162, -162, -162, -162, -162, -162,
  1204. -162, -162, -162, 56, -162, -162, 56, 56, 56, 56,
  1205. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1206. 56, 56, 56, 56, 56, 56, -162
  1207. },
  1208. {
  1209. 11, -163, -163, -163, -163, -163, -163, -163, -163, -163,
  1210. -163, -163, -163, 56, -163, -163, 56, 56, 56, 56,
  1211. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1212. 56, 56, 56, 56, 168, 56, -163
  1213. },
  1214. {
  1215. 11, -164, -164, -164, -164, -164, -164, -164, -164, -164,
  1216. -164, -164, -164, 56, -164, -164, 56, 56, 56, 56,
  1217. 56, 56, 56, 56, 56, 169, 56, 56, 56, 56,
  1218. 56, 56, 56, 56, 56, 56, -164
  1219. },
  1220. {
  1221. 11, -165, -165, -165, -165, -165, -165, -165, -165, -165,
  1222. -165, -165, -165, 56, -165, -165, 56, 56, 56, 56,
  1223. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1224. 56, 56, 170, 56, 56, 56, -165
  1225. },
  1226. {
  1227. 11, -166, -166, -166, -166, -166, -166, -166, -166, -166,
  1228. -166, -166, -166, 56, -166, -166, 56, 56, 56, 56,
  1229. 171, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1230. 56, 56, 56, 56, 56, 56, -166
  1231. },
  1232. {
  1233. 11, -167, -167, -167, -167, -167, -167, -167, -167, -167,
  1234. -167, -167, -167, 56, -167, -167, 56, 56, 56, 56,
  1235. 172, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1236. 56, 56, 56, 56, 56, 56, -167
  1237. },
  1238. {
  1239. 11, -168, -168, -168, -168, -168, -168, -168, -168, -168,
  1240. -168, -168, -168, 56, -168, -168, 56, 56, 56, 56,
  1241. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1242. 56, 56, 56, 56, 56, 56, -168
  1243. },
  1244. {
  1245. 11, -169, -169, -169, -169, -169, -169, -169, -169, -169,
  1246. -169, -169, -169, 56, -169, -169, 56, 56, 56, 56,
  1247. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1248. 56, 56, 56, 56, 56, 56, -169
  1249. },
  1250. {
  1251. 11, -170, -170, -170, -170, -170, -170, -170, -170, -170,
  1252. -170, -170, -170, 56, -170, -170, 56, 56, 56, 56,
  1253. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1254. 56, 56, 56, 56, 56, 56, -170
  1255. },
  1256. {
  1257. 11, -171, -171, -171, -171, -171, -171, -171, -171, -171,
  1258. -171, -171, -171, 56, -171, -171, 56, 56, 56, 56,
  1259. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1260. 56, 56, 56, 56, 56, 56, -171
  1261. },
  1262. {
  1263. 11, -172, -172, -172, -172, -172, -172, -172, -172, -172,
  1264. -172, -172, -172, 56, -172, -172, 56, 56, 56, 56,
  1265. 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
  1266. 56, 56, 56, 56, 56, 56, -172
  1267. },
  1268. } ;
  1269. static yy_state_type yy_get_previous_state YY_PROTO(( void ));
  1270. static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
  1271. static int yy_get_next_buffer YY_PROTO(( void ));
  1272. static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));
  1273. /* Done after the current pattern has been matched and before the
  1274. * corresponding action - sets up yytext.
  1275. */
  1276. #define YY_DO_BEFORE_ACTION \
  1277. yytext_ptr = yy_bp; \
  1278. yyleng = (int) (yy_cp - yy_bp); \
  1279. yy_hold_char = *yy_cp; \
  1280. *yy_cp = '\0'; \
  1281. yy_c_buf_p = yy_cp;
  1282. #define YY_NUM_RULES 55
  1283. #define YY_END_OF_BUFFER 56
  1284. static yyconst short int yy_accept[173] =
  1285. { 0,
  1286. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1287. 56, 5, 4, 3, 2, 29, 30, 28, 28, 28,
  1288. 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
  1289. 54, 51, 53, 45, 50, 46, 48, 44, 41, 35,
  1290. 40, 44, 33, 34, 43, 43, 36, 43, 43, 44,
  1291. 4, 3, 2, 2, 1, 28, 28, 28, 28, 28,
  1292. 28, 28, 15, 28, 28, 28, 28, 28, 28, 28,
  1293. 28, 28, 54, 51, 53, 52, 45, 49, 48, 47,
  1294. 37, 31, 43, 43, 38, 39, 32, 28, 28, 28,
  1295. 28, 28, 28, 28, 28, 26, 25, 28, 28, 28,
  1296. 28, 28, 28, 28, 28, 48, 42, 23, 28, 28,
  1297. 28, 28, 28, 28, 28, 28, 14, 28, 7, 28,
  1298. 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
  1299. 28, 28, 16, 28, 28, 28, 28, 28, 28, 28,
  1300. 28, 28, 10, 28, 13, 28, 28, 28, 28, 28,
  1301. 28, 21, 28, 9, 27, 28, 24, 12, 20, 17,
  1302. 28, 8, 28, 28, 28, 28, 28, 6, 19, 18,
  1303. 22, 11
  1304. } ;
  1305. static yyconst int yy_ec[256] =
  1306. { 0,
  1307. 1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
  1308. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1309. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1310. 1, 2, 4, 5, 6, 1, 1, 7, 8, 9,
  1311. 10, 1, 1, 1, 11, 12, 12, 13, 13, 13,
  1312. 13, 13, 13, 13, 13, 13, 13, 1, 1, 1,
  1313. 14, 1, 1, 1, 13, 13, 13, 13, 13, 13,
  1314. 13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
  1315. 13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
  1316. 1, 15, 1, 1, 13, 1, 16, 17, 18, 19,
  1317. 20, 21, 22, 23, 24, 13, 13, 25, 26, 27,
  1318. 28, 29, 30, 31, 32, 33, 34, 13, 13, 35,
  1319. 13, 13, 1, 36, 1, 1, 1, 1, 1, 1,
  1320. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1321. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1322. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1323. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1324. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1325. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1326. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1327. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1328. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1329. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1330. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1331. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1332. 1, 1, 1, 1, 1
  1333. } ;
  1334. /* The intent behind this definition is that it'll catch
  1335. * any uses of REJECT which flex missed.
  1336. */
  1337. #define REJECT reject_used_but_not_detected
  1338. #define yymore() yymore_used_but_not_detected
  1339. #define YY_MORE_ADJ 0
  1340. #define YY_RESTORE_YY_MORE_OFFSET
  1341. char *yytext;
  1342. #line 1 "zconf.l"
  1343. #define INITIAL 0
  1344. #define COMMAND 1
  1345. #define HELP 2
  1346. #define STRING 3
  1347. #define PARAM 4
  1348. #line 5 "zconf.l"
  1349. /*
  1350. * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
  1351. * Released under the terms of the GNU GPL v2.0.
  1352. */
  1353. #include <stdio.h>
  1354. #include <stdlib.h>
  1355. #include <string.h>
  1356. #include <unistd.h>
  1357. #define LKC_DIRECT_LINK
  1358. #include "lkc.h"
  1359. #include "zconf.tab.h"
  1360. #define START_STRSIZE 16
  1361. char *text;
  1362. static char *text_ptr;
  1363. static int text_size, text_asize;
  1364. struct buffer {
  1365. struct buffer *parent;
  1366. YY_BUFFER_STATE state;
  1367. };
  1368. struct buffer *current_buf;
  1369. static int last_ts, first_ts;
  1370. static void zconf_endhelp(void);
  1371. static struct buffer *zconf_endfile(void);
  1372. void new_string(void)
  1373. {
  1374. text = malloc(START_STRSIZE);
  1375. text_asize = START_STRSIZE;
  1376. text_ptr = text;
  1377. text_size = 0;
  1378. *text_ptr = 0;
  1379. }
  1380. void append_string(const char *str, int size)
  1381. {
  1382. int new_size = text_size + size + 1;
  1383. if (new_size > text_asize) {
  1384. text = realloc(text, new_size);
  1385. text_asize = new_size;
  1386. text_ptr = text + text_size;
  1387. }
  1388. memcpy(text_ptr, str, size);
  1389. text_ptr += size;
  1390. text_size += size;
  1391. *text_ptr = 0;
  1392. }
  1393. void alloc_string(const char *str, int size)
  1394. {
  1395. text = malloc(size + 1);
  1396. memcpy(text, str, size);
  1397. text[size] = 0;
  1398. }
  1399. #line 1726 "lex.zconf.c"
  1400. /* Macros after this point can all be overridden by user definitions in
  1401. * section 1.
  1402. */
  1403. #ifndef YY_SKIP_YYWRAP
  1404. #ifdef __cplusplus
  1405. extern "C" int yywrap YY_PROTO(( void ));
  1406. #else
  1407. extern int yywrap YY_PROTO(( void ));
  1408. #endif
  1409. #endif
  1410. #ifndef YY_NO_UNPUT
  1411. static void yyunput YY_PROTO(( int c, char *buf_ptr ));
  1412. #endif
  1413. #ifndef yytext_ptr
  1414. static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int ));
  1415. #endif
  1416. #ifdef YY_NEED_STRLEN
  1417. static int yy_flex_strlen YY_PROTO(( yyconst char * ));
  1418. #endif
  1419. #ifndef YY_NO_INPUT
  1420. #ifdef __cplusplus
  1421. static int yyinput YY_PROTO(( void ));
  1422. #else
  1423. static int input YY_PROTO(( void ));
  1424. #endif
  1425. #endif
  1426. #if YY_STACK_USED
  1427. static int yy_start_stack_ptr = 0;
  1428. static int yy_start_stack_depth = 0;
  1429. static int *yy_start_stack = 0;
  1430. #ifndef YY_NO_PUSH_STATE
  1431. static void yy_push_state YY_PROTO(( int new_state ));
  1432. #endif
  1433. #ifndef YY_NO_POP_STATE
  1434. static void yy_pop_state YY_PROTO(( void ));
  1435. #endif
  1436. #ifndef YY_NO_TOP_STATE
  1437. static int yy_top_state YY_PROTO(( void ));
  1438. #endif
  1439. #else
  1440. #define YY_NO_PUSH_STATE 1
  1441. #define YY_NO_POP_STATE 1
  1442. #define YY_NO_TOP_STATE 1
  1443. #endif
  1444. #ifdef YY_MALLOC_DECL
  1445. YY_MALLOC_DECL
  1446. #else
  1447. #if __STDC__
  1448. #ifndef __cplusplus
  1449. #include <stdlib.h>
  1450. #endif
  1451. #else
  1452. /* Just try to get by without declaring the routines. This will fail
  1453. * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int)
  1454. * or sizeof(void*) != sizeof(int).
  1455. */
  1456. #endif
  1457. #endif
  1458. /* Amount of stuff to slurp up with each read. */
  1459. #ifndef YY_READ_BUF_SIZE
  1460. #define YY_READ_BUF_SIZE 8192
  1461. #endif
  1462. /* Copy whatever the last rule matched to the standard output. */
  1463. #ifndef ECHO
  1464. /* This used to be an fputs(), but since the string might contain NUL's,
  1465. * we now use fwrite().
  1466. */
  1467. #define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
  1468. #endif
  1469. /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
  1470. * is returned in "result".
  1471. */
  1472. #ifndef YY_INPUT
  1473. #define YY_INPUT(buf,result,max_size) \
  1474. errno=0; \
  1475. while ( (result = read( fileno(yyin), (char *) buf, max_size )) < 0 ) \
  1476. { \
  1477. if( errno != EINTR) \
  1478. { \
  1479. YY_FATAL_ERROR( "input in flex scanner failed" ); \
  1480. break; \
  1481. } \
  1482. errno=0; \
  1483. clearerr(yyin); \
  1484. }
  1485. #endif
  1486. /* No semi-colon after return; correct usage is to write "yyterminate();" -
  1487. * we don't want an extra ';' after the "return" because that will cause
  1488. * some compilers to complain about unreachable statements.
  1489. */
  1490. #ifndef yyterminate
  1491. #define yyterminate() return YY_NULL
  1492. #endif
  1493. /* Number of entries by which start-condition stack grows. */
  1494. #ifndef YY_START_STACK_INCR
  1495. #define YY_START_STACK_INCR 25
  1496. #endif
  1497. /* Report a fatal error. */
  1498. #ifndef YY_FATAL_ERROR
  1499. #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
  1500. #endif
  1501. /* Default declaration of generated scanner - a define so the user can
  1502. * easily add parameters.
  1503. */
  1504. #ifndef YY_DECL
  1505. #define YY_DECL int yylex YY_PROTO(( void ))
  1506. #endif
  1507. /* Code executed at the beginning of each rule, after yytext and yyleng
  1508. * have been set up.
  1509. */
  1510. #ifndef YY_USER_ACTION
  1511. #define YY_USER_ACTION
  1512. #endif
  1513. /* Code executed at the end of each rule. */
  1514. #ifndef YY_BREAK
  1515. #define YY_BREAK break;
  1516. #endif
  1517. #define YY_RULE_SETUP \
  1518. YY_USER_ACTION
  1519. YY_DECL
  1520. {
  1521. register yy_state_type yy_current_state;
  1522. register char *yy_cp, *yy_bp;
  1523. register int yy_act;
  1524. #line 71 "zconf.l"
  1525. int str = 0;
  1526. int ts, i;
  1527. #line 1878 "lex.zconf.c"
  1528. if ( yy_init )
  1529. {
  1530. yy_init = 0;
  1531. #ifdef YY_USER_INIT
  1532. YY_USER_INIT;
  1533. #endif
  1534. if ( ! yy_start )
  1535. yy_start = 1; /* first start state */
  1536. if ( ! yyin )
  1537. yyin = stdin;
  1538. if ( ! yyout )
  1539. yyout = stdout;
  1540. if ( ! yy_current_buffer )
  1541. yy_current_buffer =
  1542. yy_create_buffer( yyin, YY_BUF_SIZE );
  1543. yy_load_buffer_state();
  1544. }
  1545. while ( 1 ) /* loops until end-of-file is reached */
  1546. {
  1547. yy_cp = yy_c_buf_p;
  1548. /* Support of yytext. */
  1549. *yy_cp = yy_hold_char;
  1550. /* yy_bp points to the position in yy_ch_buf of the start of
  1551. * the current run.
  1552. */
  1553. yy_bp = yy_cp;
  1554. yy_current_state = yy_start;
  1555. yy_match:
  1556. while ( (yy_current_state = yy_nxt[yy_current_state][yy_ec[YY_SC_TO_UI(*yy_cp)]]) > 0 )
  1557. ++yy_cp;
  1558. yy_current_state = -yy_current_state;
  1559. yy_find_action:
  1560. yy_act = yy_accept[yy_current_state];
  1561. YY_DO_BEFORE_ACTION;
  1562. do_action: /* This label is used only to access EOF actions. */
  1563. switch ( yy_act )
  1564. { /* beginning of action switch */
  1565. case 1:
  1566. YY_RULE_SETUP
  1567. #line 75 "zconf.l"
  1568. current_file->lineno++;
  1569. YY_BREAK
  1570. case 2:
  1571. YY_RULE_SETUP
  1572. #line 76 "zconf.l"
  1573. YY_BREAK
  1574. case 3:
  1575. YY_RULE_SETUP
  1576. #line 78 "zconf.l"
  1577. current_file->lineno++; return T_EOL;
  1578. YY_BREAK
  1579. case 4:
  1580. YY_RULE_SETUP
  1581. #line 80 "zconf.l"
  1582. {
  1583. BEGIN(COMMAND);
  1584. }
  1585. YY_BREAK
  1586. case 5:
  1587. YY_RULE_SETUP
  1588. #line 84 "zconf.l"
  1589. {
  1590. unput(yytext[0]);
  1591. //printf("new config: ");
  1592. //symbol_end(NULL);
  1593. BEGIN(COMMAND);
  1594. }
  1595. YY_BREAK
  1596. case 6:
  1597. YY_RULE_SETUP
  1598. #line 93 "zconf.l"
  1599. BEGIN(PARAM); return T_MAINMENU;
  1600. YY_BREAK
  1601. case 7:
  1602. YY_RULE_SETUP
  1603. #line 94 "zconf.l"
  1604. BEGIN(PARAM); return T_MENU;
  1605. YY_BREAK
  1606. case 8:
  1607. YY_RULE_SETUP
  1608. #line 95 "zconf.l"
  1609. BEGIN(PARAM); return T_ENDMENU;
  1610. YY_BREAK
  1611. case 9:
  1612. YY_RULE_SETUP
  1613. #line 96 "zconf.l"
  1614. BEGIN(PARAM); return T_SOURCE;
  1615. YY_BREAK
  1616. case 10:
  1617. YY_RULE_SETUP
  1618. #line 97 "zconf.l"
  1619. BEGIN(PARAM); return T_CHOICE;
  1620. YY_BREAK
  1621. case 11:
  1622. YY_RULE_SETUP
  1623. #line 98 "zconf.l"
  1624. BEGIN(PARAM); return T_ENDCHOICE;
  1625. YY_BREAK
  1626. case 12:
  1627. YY_RULE_SETUP
  1628. #line 99 "zconf.l"
  1629. BEGIN(PARAM); return T_COMMENT;
  1630. YY_BREAK
  1631. case 13:
  1632. YY_RULE_SETUP
  1633. #line 100 "zconf.l"
  1634. BEGIN(PARAM); return T_CONFIG;
  1635. YY_BREAK
  1636. case 14:
  1637. YY_RULE_SETUP
  1638. #line 101 "zconf.l"
  1639. BEGIN(PARAM); return T_HELP;
  1640. YY_BREAK
  1641. case 15:
  1642. YY_RULE_SETUP
  1643. #line 102 "zconf.l"
  1644. BEGIN(PARAM); return T_IF;
  1645. YY_BREAK
  1646. case 16:
  1647. YY_RULE_SETUP
  1648. #line 103 "zconf.l"
  1649. BEGIN(PARAM); return T_ENDIF;
  1650. YY_BREAK
  1651. case 17:
  1652. YY_RULE_SETUP
  1653. #line 104 "zconf.l"
  1654. BEGIN(PARAM); return T_DEPENDS;
  1655. YY_BREAK
  1656. case 18:
  1657. YY_RULE_SETUP
  1658. #line 105 "zconf.l"
  1659. BEGIN(PARAM); return T_REQUIRES;
  1660. YY_BREAK
  1661. case 19:
  1662. YY_RULE_SETUP
  1663. #line 106 "zconf.l"
  1664. BEGIN(PARAM); return T_OPTIONAL;
  1665. YY_BREAK
  1666. case 20:
  1667. YY_RULE_SETUP
  1668. #line 107 "zconf.l"
  1669. BEGIN(PARAM); return T_DEFAULT;
  1670. YY_BREAK
  1671. case 21:
  1672. YY_RULE_SETUP
  1673. #line 108 "zconf.l"
  1674. BEGIN(PARAM); return T_PROMPT;
  1675. YY_BREAK
  1676. case 22:
  1677. YY_RULE_SETUP
  1678. #line 109 "zconf.l"
  1679. BEGIN(PARAM); return T_TRISTATE;
  1680. YY_BREAK
  1681. case 23:
  1682. YY_RULE_SETUP
  1683. #line 110 "zconf.l"
  1684. BEGIN(PARAM); return T_BOOLEAN;
  1685. YY_BREAK
  1686. case 24:
  1687. YY_RULE_SETUP
  1688. #line 111 "zconf.l"
  1689. BEGIN(PARAM); return T_BOOLEAN;
  1690. YY_BREAK
  1691. case 25:
  1692. YY_RULE_SETUP
  1693. #line 112 "zconf.l"
  1694. BEGIN(PARAM); return T_INT;
  1695. YY_BREAK
  1696. case 26:
  1697. YY_RULE_SETUP
  1698. #line 113 "zconf.l"
  1699. BEGIN(PARAM); return T_HEX;
  1700. YY_BREAK
  1701. case 27:
  1702. YY_RULE_SETUP
  1703. #line 114 "zconf.l"
  1704. BEGIN(PARAM); return T_STRING;
  1705. YY_BREAK
  1706. case 28:
  1707. YY_RULE_SETUP
  1708. #line 115 "zconf.l"
  1709. {
  1710. alloc_string(yytext, yyleng);
  1711. zconflval.string = text;
  1712. return T_WORD;
  1713. }
  1714. YY_BREAK
  1715. case 29:
  1716. YY_RULE_SETUP
  1717. #line 120 "zconf.l"
  1718. YY_BREAK
  1719. case 30:
  1720. YY_RULE_SETUP
  1721. #line 121 "zconf.l"
  1722. current_file->lineno++; BEGIN(INITIAL);
  1723. YY_BREAK
  1724. case 31:
  1725. YY_RULE_SETUP
  1726. #line 125 "zconf.l"
  1727. return T_AND;
  1728. YY_BREAK
  1729. case 32:
  1730. YY_RULE_SETUP
  1731. #line 126 "zconf.l"
  1732. return T_OR;
  1733. YY_BREAK
  1734. case 33:
  1735. YY_RULE_SETUP
  1736. #line 127 "zconf.l"
  1737. return T_OPEN_PAREN;
  1738. YY_BREAK
  1739. case 34:
  1740. YY_RULE_SETUP
  1741. #line 128 "zconf.l"
  1742. return T_CLOSE_PAREN;
  1743. YY_BREAK
  1744. case 35:
  1745. YY_RULE_SETUP
  1746. #line 129 "zconf.l"
  1747. return T_NOT;
  1748. YY_BREAK
  1749. case 36:
  1750. YY_RULE_SETUP
  1751. #line 130 "zconf.l"
  1752. return T_EQUAL;
  1753. YY_BREAK
  1754. case 37:
  1755. YY_RULE_SETUP
  1756. #line 131 "zconf.l"
  1757. return T_UNEQUAL;
  1758. YY_BREAK
  1759. case 38:
  1760. YY_RULE_SETUP
  1761. #line 132 "zconf.l"
  1762. return T_IF;
  1763. YY_BREAK
  1764. case 39:
  1765. YY_RULE_SETUP
  1766. #line 133 "zconf.l"
  1767. return T_ON;
  1768. YY_BREAK
  1769. case 40:
  1770. YY_RULE_SETUP
  1771. #line 134 "zconf.l"
  1772. {
  1773. str = yytext[0];
  1774. new_string();
  1775. BEGIN(STRING);
  1776. }
  1777. YY_BREAK
  1778. case 41:
  1779. YY_RULE_SETUP
  1780. #line 139 "zconf.l"
  1781. BEGIN(INITIAL); current_file->lineno++; return T_EOL;
  1782. YY_BREAK
  1783. case 42:
  1784. YY_RULE_SETUP
  1785. #line 140 "zconf.l"
  1786. /* ignore */
  1787. YY_BREAK
  1788. case 43:
  1789. YY_RULE_SETUP
  1790. #line 141 "zconf.l"
  1791. {
  1792. alloc_string(yytext, yyleng);
  1793. zconflval.string = text;
  1794. return T_WORD;
  1795. }
  1796. YY_BREAK
  1797. case 44:
  1798. YY_RULE_SETUP
  1799. #line 146 "zconf.l"
  1800. YY_BREAK
  1801. case 45:
  1802. YY_RULE_SETUP
  1803. #line 150 "zconf.l"
  1804. {
  1805. append_string(yytext, yyleng);
  1806. }
  1807. YY_BREAK
  1808. case 46:
  1809. YY_RULE_SETUP
  1810. #line 153 "zconf.l"
  1811. {
  1812. if (str == yytext[0]) {
  1813. BEGIN(PARAM);
  1814. zconflval.string = text;
  1815. //printf("s:%s\n", text);
  1816. return T_STRING;
  1817. } else
  1818. append_string(yytext, 1);
  1819. }
  1820. YY_BREAK
  1821. case 47:
  1822. YY_RULE_SETUP
  1823. #line 162 "zconf.l"
  1824. append_string(yytext+yyleng-1, 1); current_file->lineno++;
  1825. YY_BREAK
  1826. case 48:
  1827. YY_RULE_SETUP
  1828. #line 163 "zconf.l"
  1829. append_string(yytext+1, yyleng-1);
  1830. YY_BREAK
  1831. case 49:
  1832. YY_RULE_SETUP
  1833. #line 164 "zconf.l"
  1834. append_string(yytext+1, 1);
  1835. YY_BREAK
  1836. case 50:
  1837. YY_RULE_SETUP
  1838. #line 165 "zconf.l"
  1839. {
  1840. //printf(":%d: open string!\n", current_file->lineno+1);
  1841. exit(0);
  1842. }
  1843. YY_BREAK
  1844. case YY_STATE_EOF(STRING):
  1845. #line 169 "zconf.l"
  1846. {
  1847. //printf(":%d: open string!\n", current_file->lineno+1);
  1848. exit(0);
  1849. }
  1850. YY_BREAK
  1851. case 51:
  1852. YY_RULE_SETUP
  1853. #line 176 "zconf.l"
  1854. {
  1855. ts = 0;
  1856. for (i = 0; i < yyleng; i++) {
  1857. if (yytext[i] == '\t')
  1858. ts = (ts & ~7) + 8;
  1859. else
  1860. ts++;
  1861. }
  1862. last_ts = ts;
  1863. if (first_ts) {
  1864. if (ts < first_ts) {
  1865. zconf_endhelp();
  1866. return T_HELPTEXT;
  1867. }
  1868. ts -= first_ts;
  1869. while (ts > 8) {
  1870. append_string(" ", 8);
  1871. ts -= 8;
  1872. }
  1873. append_string(" ", ts);
  1874. }
  1875. }
  1876. YY_BREAK
  1877. case 52:
  1878. *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
  1879. yy_c_buf_p = yy_cp = yy_bp + 1;
  1880. YY_DO_BEFORE_ACTION; /* set up yytext again */
  1881. YY_RULE_SETUP
  1882. #line 199 "zconf.l"
  1883. {
  1884. current_file->lineno++;
  1885. zconf_endhelp();
  1886. return T_HELPTEXT;
  1887. }
  1888. YY_BREAK
  1889. case 53:
  1890. YY_RULE_SETUP
  1891. #line 204 "zconf.l"
  1892. {
  1893. current_file->lineno++;
  1894. append_string("\n", 1);
  1895. }
  1896. YY_BREAK
  1897. case 54:
  1898. YY_RULE_SETUP
  1899. #line 208 "zconf.l"
  1900. {
  1901. append_string(yytext, yyleng);
  1902. if (!first_ts)
  1903. first_ts = last_ts;
  1904. }
  1905. YY_BREAK
  1906. case YY_STATE_EOF(HELP):
  1907. #line 213 "zconf.l"
  1908. {
  1909. zconf_endhelp();
  1910. return T_HELPTEXT;
  1911. }
  1912. YY_BREAK
  1913. case YY_STATE_EOF(INITIAL):
  1914. case YY_STATE_EOF(COMMAND):
  1915. case YY_STATE_EOF(PARAM):
  1916. #line 219 "zconf.l"
  1917. {
  1918. if (current_buf) {
  1919. zconf_endfile();
  1920. return T_EOF;
  1921. }
  1922. yyterminate();
  1923. }
  1924. YY_BREAK
  1925. case 55:
  1926. YY_RULE_SETUP
  1927. #line 227 "zconf.l"
  1928. YY_FATAL_ERROR( "flex scanner jammed" );
  1929. YY_BREAK
  1930. #line 2311 "lex.zconf.c"
  1931. case YY_END_OF_BUFFER:
  1932. {
  1933. /* Amount of text matched not including the EOB char. */
  1934. int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1;
  1935. /* Undo the effects of YY_DO_BEFORE_ACTION. */
  1936. *yy_cp = yy_hold_char;
  1937. YY_RESTORE_YY_MORE_OFFSET
  1938. if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )
  1939. {
  1940. /* We're scanning a new file or input source. It's
  1941. * possible that this happened because the user
  1942. * just pointed yyin at a new source and called
  1943. * yylex(). If so, then we have to assure
  1944. * consistency between yy_current_buffer and our
  1945. * globals. Here is the right place to do so, because
  1946. * this is the first action (other than possibly a
  1947. * back-up) that will match for the new input source.
  1948. */
  1949. yy_n_chars = yy_current_buffer->yy_n_chars;
  1950. yy_current_buffer->yy_input_file = yyin;
  1951. yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL;
  1952. }
  1953. /* Note that here we test for yy_c_buf_p "<=" to the position
  1954. * of the first EOB in the buffer, since yy_c_buf_p will
  1955. * already have been incremented past the NUL character
  1956. * (since all states make transitions on EOB to the
  1957. * end-of-buffer state). Contrast this with the test
  1958. * in input().
  1959. */
  1960. if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  1961. { /* This was really a NUL. */
  1962. yy_state_type yy_next_state;
  1963. yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text;
  1964. yy_current_state = yy_get_previous_state();
  1965. /* Okay, we're now positioned to make the NUL
  1966. * transition. We couldn't have
  1967. * yy_get_previous_state() go ahead and do it
  1968. * for us because it doesn't know how to deal
  1969. * with the possibility of jamming (and we don't
  1970. * want to build jamming into it because then it
  1971. * will run more slowly).
  1972. */
  1973. yy_next_state = yy_try_NUL_trans( yy_current_state );
  1974. yy_bp = yytext_ptr + YY_MORE_ADJ;
  1975. if ( yy_next_state )
  1976. {
  1977. /* Consume the NUL. */
  1978. yy_cp = ++yy_c_buf_p;
  1979. yy_current_state = yy_next_state;
  1980. goto yy_match;
  1981. }
  1982. else
  1983. {
  1984. yy_cp = yy_c_buf_p;
  1985. goto yy_find_action;
  1986. }
  1987. }
  1988. else switch ( yy_get_next_buffer() )
  1989. {
  1990. case EOB_ACT_END_OF_FILE:
  1991. {
  1992. yy_did_buffer_switch_on_eof = 0;
  1993. if ( yywrap() )
  1994. {
  1995. /* Note: because we've taken care in
  1996. * yy_get_next_buffer() to have set up
  1997. * yytext, we can now set up
  1998. * yy_c_buf_p so that if some total
  1999. * hoser (like flex itself) wants to
  2000. * call the scanner after we return the
  2001. * YY_NULL, it'll still work - another
  2002. * YY_NULL will get returned.
  2003. */
  2004. yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;
  2005. yy_act = YY_STATE_EOF(YY_START);
  2006. goto do_action;
  2007. }
  2008. else
  2009. {
  2010. if ( ! yy_did_buffer_switch_on_eof )
  2011. YY_NEW_FILE;
  2012. }
  2013. break;
  2014. }
  2015. case EOB_ACT_CONTINUE_SCAN:
  2016. yy_c_buf_p =
  2017. yytext_ptr + yy_amount_of_matched_text;
  2018. yy_current_state = yy_get_previous_state();
  2019. yy_cp = yy_c_buf_p;
  2020. yy_bp = yytext_ptr + YY_MORE_ADJ;
  2021. goto yy_match;
  2022. case EOB_ACT_LAST_MATCH:
  2023. yy_c_buf_p =
  2024. &yy_current_buffer->yy_ch_buf[yy_n_chars];
  2025. yy_current_state = yy_get_previous_state();
  2026. yy_cp = yy_c_buf_p;
  2027. yy_bp = yytext_ptr + YY_MORE_ADJ;
  2028. goto yy_find_action;
  2029. }
  2030. break;
  2031. }
  2032. default:
  2033. YY_FATAL_ERROR(
  2034. "fatal flex scanner internal error--no action found" );
  2035. } /* end of action switch */
  2036. } /* end of scanning one token */
  2037. } /* end of yylex */
  2038. /* yy_get_next_buffer - try to read in a new buffer
  2039. *
  2040. * Returns a code representing an action:
  2041. * EOB_ACT_LAST_MATCH -
  2042. * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  2043. * EOB_ACT_END_OF_FILE - end of file
  2044. */
  2045. static int yy_get_next_buffer()
  2046. {
  2047. register char *dest = yy_current_buffer->yy_ch_buf;
  2048. register char *source = yytext_ptr;
  2049. register int number_to_move, i;
  2050. int ret_val;
  2051. if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
  2052. YY_FATAL_ERROR(
  2053. "fatal flex scanner internal error--end of buffer missed" );
  2054. if ( yy_current_buffer->yy_fill_buffer == 0 )
  2055. { /* Don't try to fill the buffer, so this is an EOF. */
  2056. if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 )
  2057. {
  2058. /* We matched a single character, the EOB, so
  2059. * treat this as a final EOF.
  2060. */
  2061. return EOB_ACT_END_OF_FILE;
  2062. }
  2063. else
  2064. {
  2065. /* We matched some text prior to the EOB, first
  2066. * process it.
  2067. */
  2068. return EOB_ACT_LAST_MATCH;
  2069. }
  2070. }
  2071. /* Try to read more data. */
  2072. /* First move last chars to start of buffer. */
  2073. number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1;
  2074. for ( i = 0; i < number_to_move; ++i )
  2075. *(dest++) = *(source++);
  2076. if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING )
  2077. /* don't do the read, it's not guaranteed to return an EOF,
  2078. * just force an EOF
  2079. */
  2080. yy_current_buffer->yy_n_chars = yy_n_chars = 0;
  2081. else
  2082. {
  2083. int num_to_read =
  2084. yy_current_buffer->yy_buf_size - number_to_move - 1;
  2085. while ( num_to_read <= 0 )
  2086. { /* Not enough room in the buffer - grow it. */
  2087. #ifdef YY_USES_REJECT
  2088. YY_FATAL_ERROR(
  2089. "input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
  2090. #else
  2091. /* just a shorter name for the current buffer */
  2092. YY_BUFFER_STATE b = yy_current_buffer;
  2093. int yy_c_buf_p_offset =
  2094. (int) (yy_c_buf_p - b->yy_ch_buf);
  2095. if ( b->yy_is_our_buffer )
  2096. {
  2097. int new_size = b->yy_buf_size * 2;
  2098. if ( new_size <= 0 )
  2099. b->yy_buf_size += b->yy_buf_size / 8;
  2100. else
  2101. b->yy_buf_size *= 2;
  2102. b->yy_ch_buf = (char *)
  2103. /* Include room in for 2 EOB chars. */
  2104. yy_flex_realloc( (void *) b->yy_ch_buf,
  2105. b->yy_buf_size + 2 );
  2106. }
  2107. else
  2108. /* Can't grow it, we don't own it. */
  2109. b->yy_ch_buf = 0;
  2110. if ( ! b->yy_ch_buf )
  2111. YY_FATAL_ERROR(
  2112. "fatal error - scanner input buffer overflow" );
  2113. yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
  2114. num_to_read = yy_current_buffer->yy_buf_size -
  2115. number_to_move - 1;
  2116. #endif
  2117. }
  2118. if ( num_to_read > YY_READ_BUF_SIZE )
  2119. num_to_read = YY_READ_BUF_SIZE;
  2120. /* Read in more data. */
  2121. YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
  2122. yy_n_chars, num_to_read );
  2123. yy_current_buffer->yy_n_chars = yy_n_chars;
  2124. }
  2125. if ( yy_n_chars == 0 )
  2126. {
  2127. if ( number_to_move == YY_MORE_ADJ )
  2128. {
  2129. ret_val = EOB_ACT_END_OF_FILE;
  2130. yyrestart( yyin );
  2131. }
  2132. else
  2133. {
  2134. ret_val = EOB_ACT_LAST_MATCH;
  2135. yy_current_buffer->yy_buffer_status =
  2136. YY_BUFFER_EOF_PENDING;
  2137. }
  2138. }
  2139. else
  2140. ret_val = EOB_ACT_CONTINUE_SCAN;
  2141. yy_n_chars += number_to_move;
  2142. yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
  2143. yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
  2144. yytext_ptr = &yy_current_buffer->yy_ch_buf[0];
  2145. return ret_val;
  2146. }
  2147. /* yy_get_previous_state - get the state just before the EOB char was reached */
  2148. static yy_state_type yy_get_previous_state()
  2149. {
  2150. register yy_state_type yy_current_state;
  2151. register char *yy_cp;
  2152. yy_current_state = yy_start;
  2153. for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
  2154. {
  2155. yy_current_state = yy_nxt[yy_current_state][(*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1)];
  2156. }
  2157. return yy_current_state;
  2158. }
  2159. /* yy_try_NUL_trans - try to make a transition on the NUL character
  2160. *
  2161. * synopsis
  2162. * next_state = yy_try_NUL_trans( current_state );
  2163. */
  2164. #ifdef YY_USE_PROTOS
  2165. static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state )
  2166. #else
  2167. static yy_state_type yy_try_NUL_trans( yy_current_state )
  2168. yy_state_type yy_current_state;
  2169. #endif
  2170. {
  2171. register int yy_is_jam;
  2172. yy_current_state = yy_nxt[yy_current_state][1];
  2173. yy_is_jam = (yy_current_state <= 0);
  2174. return yy_is_jam ? 0 : yy_current_state;
  2175. }
  2176. #ifndef YY_NO_UNPUT
  2177. #ifdef YY_USE_PROTOS
  2178. static void yyunput( int c, register char *yy_bp )
  2179. #else
  2180. static void yyunput( c, yy_bp )
  2181. int c;
  2182. register char *yy_bp;
  2183. #endif
  2184. {
  2185. register char *yy_cp = yy_c_buf_p;
  2186. /* undo effects of setting up yytext */
  2187. *yy_cp = yy_hold_char;
  2188. if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  2189. { /* need to shift things up to make room */
  2190. /* +2 for EOB chars. */
  2191. register int number_to_move = yy_n_chars + 2;
  2192. register char *dest = &yy_current_buffer->yy_ch_buf[
  2193. yy_current_buffer->yy_buf_size + 2];
  2194. register char *source =
  2195. &yy_current_buffer->yy_ch_buf[number_to_move];
  2196. while ( source > yy_current_buffer->yy_ch_buf )
  2197. *--dest = *--source;
  2198. yy_cp += (int) (dest - source);
  2199. yy_bp += (int) (dest - source);
  2200. yy_current_buffer->yy_n_chars =
  2201. yy_n_chars = yy_current_buffer->yy_buf_size;
  2202. if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  2203. YY_FATAL_ERROR( "flex scanner push-back overflow" );
  2204. }
  2205. *--yy_cp = (char) c;
  2206. yytext_ptr = yy_bp;
  2207. yy_hold_char = *yy_cp;
  2208. yy_c_buf_p = yy_cp;
  2209. }
  2210. #endif /* ifndef YY_NO_UNPUT */
  2211. #ifdef __cplusplus
  2212. static int yyinput()
  2213. #else
  2214. static int input()
  2215. #endif
  2216. {
  2217. int c;
  2218. *yy_c_buf_p = yy_hold_char;
  2219. if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
  2220. {
  2221. /* yy_c_buf_p now points to the character we want to return.
  2222. * If this occurs *before* the EOB characters, then it's a
  2223. * valid NUL; if not, then we've hit the end of the buffer.
  2224. */
  2225. if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  2226. /* This was really a NUL. */
  2227. *yy_c_buf_p = '\0';
  2228. else
  2229. { /* need more input */
  2230. int offset = yy_c_buf_p - yytext_ptr;
  2231. ++yy_c_buf_p;
  2232. switch ( yy_get_next_buffer() )
  2233. {
  2234. case EOB_ACT_LAST_MATCH:
  2235. /* This happens because yy_g_n_b()
  2236. * sees that we've accumulated a
  2237. * token and flags that we need to
  2238. * try matching the token before
  2239. * proceeding. But for input(),
  2240. * there's no matching to consider.
  2241. * So convert the EOB_ACT_LAST_MATCH
  2242. * to EOB_ACT_END_OF_FILE.
  2243. */
  2244. /* Reset buffer status. */
  2245. yyrestart( yyin );
  2246. /* fall through */
  2247. case EOB_ACT_END_OF_FILE:
  2248. {
  2249. if ( yywrap() )
  2250. return EOF;
  2251. if ( ! yy_did_buffer_switch_on_eof )
  2252. YY_NEW_FILE;
  2253. #ifdef __cplusplus
  2254. return yyinput();
  2255. #else
  2256. return input();
  2257. #endif
  2258. }
  2259. case EOB_ACT_CONTINUE_SCAN:
  2260. yy_c_buf_p = yytext_ptr + offset;
  2261. break;
  2262. }
  2263. }
  2264. }
  2265. c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */
  2266. *yy_c_buf_p = '\0'; /* preserve yytext */
  2267. yy_hold_char = *++yy_c_buf_p;
  2268. return c;
  2269. }
  2270. #ifdef YY_USE_PROTOS
  2271. void yyrestart( FILE *input_file )
  2272. #else
  2273. void yyrestart( input_file )
  2274. FILE *input_file;
  2275. #endif
  2276. {
  2277. if ( ! yy_current_buffer )
  2278. yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );
  2279. yy_init_buffer( yy_current_buffer, input_file );
  2280. yy_load_buffer_state();
  2281. }
  2282. #ifdef YY_USE_PROTOS
  2283. void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
  2284. #else
  2285. void yy_switch_to_buffer( new_buffer )
  2286. YY_BUFFER_STATE new_buffer;
  2287. #endif
  2288. {
  2289. if ( yy_current_buffer == new_buffer )
  2290. return;
  2291. if ( yy_current_buffer )
  2292. {
  2293. /* Flush out information for old buffer. */
  2294. *yy_c_buf_p = yy_hold_char;
  2295. yy_current_buffer->yy_buf_pos = yy_c_buf_p;
  2296. yy_current_buffer->yy_n_chars = yy_n_chars;
  2297. }
  2298. yy_current_buffer = new_buffer;
  2299. yy_load_buffer_state();
  2300. /* We don't actually know whether we did this switch during
  2301. * EOF (yywrap()) processing, but the only time this flag
  2302. * is looked at is after yywrap() is called, so it's safe
  2303. * to go ahead and always set it.
  2304. */
  2305. yy_did_buffer_switch_on_eof = 1;
  2306. }
  2307. #ifdef YY_USE_PROTOS
  2308. void yy_load_buffer_state( void )
  2309. #else
  2310. void yy_load_buffer_state()
  2311. #endif
  2312. {
  2313. yy_n_chars = yy_current_buffer->yy_n_chars;
  2314. yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
  2315. yyin = yy_current_buffer->yy_input_file;
  2316. yy_hold_char = *yy_c_buf_p;
  2317. }
  2318. #ifdef YY_USE_PROTOS
  2319. YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
  2320. #else
  2321. YY_BUFFER_STATE yy_create_buffer( file, size )
  2322. FILE *file;
  2323. int size;
  2324. #endif
  2325. {
  2326. YY_BUFFER_STATE b;
  2327. b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
  2328. if ( ! b )
  2329. YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  2330. b->yy_buf_size = size;
  2331. /* yy_ch_buf has to be 2 characters longer than the size given because
  2332. * we need to put in 2 end-of-buffer characters.
  2333. */
  2334. b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );
  2335. if ( ! b->yy_ch_buf )
  2336. YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  2337. b->yy_is_our_buffer = 1;
  2338. yy_init_buffer( b, file );
  2339. return b;
  2340. }
  2341. #ifdef YY_USE_PROTOS
  2342. void yy_delete_buffer( YY_BUFFER_STATE b )
  2343. #else
  2344. void yy_delete_buffer( b )
  2345. YY_BUFFER_STATE b;
  2346. #endif
  2347. {
  2348. if ( ! b )
  2349. return;
  2350. if ( b == yy_current_buffer )
  2351. yy_current_buffer = (YY_BUFFER_STATE) 0;
  2352. if ( b->yy_is_our_buffer )
  2353. yy_flex_free( (void *) b->yy_ch_buf );
  2354. yy_flex_free( (void *) b );
  2355. }
  2356. #ifndef _WIN32
  2357. #include <unistd.h>
  2358. #else
  2359. #ifndef YY_ALWAYS_INTERACTIVE
  2360. #ifndef YY_NEVER_INTERACTIVE
  2361. extern int isatty YY_PROTO(( int ));
  2362. #endif
  2363. #endif
  2364. #endif
  2365. #ifdef YY_USE_PROTOS
  2366. void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
  2367. #else
  2368. void yy_init_buffer( b, file )
  2369. YY_BUFFER_STATE b;
  2370. FILE *file;
  2371. #endif
  2372. {
  2373. yy_flush_buffer( b );
  2374. b->yy_input_file = file;
  2375. b->yy_fill_buffer = 1;
  2376. #if YY_ALWAYS_INTERACTIVE
  2377. b->yy_is_interactive = 1;
  2378. #else
  2379. #if YY_NEVER_INTERACTIVE
  2380. b->yy_is_interactive = 0;
  2381. #else
  2382. b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
  2383. #endif
  2384. #endif
  2385. }
  2386. #ifdef YY_USE_PROTOS
  2387. void yy_flush_buffer( YY_BUFFER_STATE b )
  2388. #else
  2389. void yy_flush_buffer( b )
  2390. YY_BUFFER_STATE b;
  2391. #endif
  2392. {
  2393. if ( ! b )
  2394. return;
  2395. b->yy_n_chars = 0;
  2396. /* We always need two end-of-buffer characters. The first causes
  2397. * a transition to the end-of-buffer state. The second causes
  2398. * a jam in that state.
  2399. */
  2400. b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
  2401. b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
  2402. b->yy_buf_pos = &b->yy_ch_buf[0];
  2403. b->yy_at_bol = 1;
  2404. b->yy_buffer_status = YY_BUFFER_NEW;
  2405. if ( b == yy_current_buffer )
  2406. yy_load_buffer_state();
  2407. }
  2408. #ifndef YY_NO_SCAN_BUFFER
  2409. #ifdef YY_USE_PROTOS
  2410. YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size )
  2411. #else
  2412. YY_BUFFER_STATE yy_scan_buffer( base, size )
  2413. char *base;
  2414. yy_size_t size;
  2415. #endif
  2416. {
  2417. YY_BUFFER_STATE b;
  2418. if ( size < 2 ||
  2419. base[size-2] != YY_END_OF_BUFFER_CHAR ||
  2420. base[size-1] != YY_END_OF_BUFFER_CHAR )
  2421. /* They forgot to leave room for the EOB's. */
  2422. return 0;
  2423. b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
  2424. if ( ! b )
  2425. YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
  2426. b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
  2427. b->yy_buf_pos = b->yy_ch_buf = base;
  2428. b->yy_is_our_buffer = 0;
  2429. b->yy_input_file = 0;
  2430. b->yy_n_chars = b->yy_buf_size;
  2431. b->yy_is_interactive = 0;
  2432. b->yy_at_bol = 1;
  2433. b->yy_fill_buffer = 0;
  2434. b->yy_buffer_status = YY_BUFFER_NEW;
  2435. yy_switch_to_buffer( b );
  2436. return b;
  2437. }
  2438. #endif
  2439. #ifndef YY_NO_SCAN_STRING
  2440. #ifdef YY_USE_PROTOS
  2441. YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str )
  2442. #else
  2443. YY_BUFFER_STATE yy_scan_string( yy_str )
  2444. yyconst char *yy_str;
  2445. #endif
  2446. {
  2447. int len;
  2448. for ( len = 0; yy_str[len]; ++len )
  2449. ;
  2450. return yy_scan_bytes( yy_str, len );
  2451. }
  2452. #endif
  2453. #ifndef YY_NO_SCAN_BYTES
  2454. #ifdef YY_USE_PROTOS
  2455. YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len )
  2456. #else
  2457. YY_BUFFER_STATE yy_scan_bytes( bytes, len )
  2458. yyconst char *bytes;
  2459. int len;
  2460. #endif
  2461. {
  2462. YY_BUFFER_STATE b;
  2463. char *buf;
  2464. yy_size_t n;
  2465. int i;
  2466. /* Get memory for full buffer, including space for trailing EOB's. */
  2467. n = len + 2;
  2468. buf = (char *) yy_flex_alloc( n );
  2469. if ( ! buf )
  2470. YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
  2471. for ( i = 0; i < len; ++i )
  2472. buf[i] = bytes[i];
  2473. buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR;
  2474. b = yy_scan_buffer( buf, n );
  2475. if ( ! b )
  2476. YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
  2477. /* It's okay to grow etc. this buffer, and we should throw it
  2478. * away when we're done.
  2479. */
  2480. b->yy_is_our_buffer = 1;
  2481. return b;
  2482. }
  2483. #endif
  2484. #ifndef YY_NO_PUSH_STATE
  2485. #ifdef YY_USE_PROTOS
  2486. static void yy_push_state( int new_state )
  2487. #else
  2488. static void yy_push_state( new_state )
  2489. int new_state;
  2490. #endif
  2491. {
  2492. if ( yy_start_stack_ptr >= yy_start_stack_depth )
  2493. {
  2494. yy_size_t new_size;
  2495. yy_start_stack_depth += YY_START_STACK_INCR;
  2496. new_size = yy_start_stack_depth * sizeof( int );
  2497. if ( ! yy_start_stack )
  2498. yy_start_stack = (int *) yy_flex_alloc( new_size );
  2499. else
  2500. yy_start_stack = (int *) yy_flex_realloc(
  2501. (void *) yy_start_stack, new_size );
  2502. if ( ! yy_start_stack )
  2503. YY_FATAL_ERROR(
  2504. "out of memory expanding start-condition stack" );
  2505. }
  2506. yy_start_stack[yy_start_stack_ptr++] = YY_START;
  2507. BEGIN(new_state);
  2508. }
  2509. #endif
  2510. #ifndef YY_NO_POP_STATE
  2511. static void yy_pop_state()
  2512. {
  2513. if ( --yy_start_stack_ptr < 0 )
  2514. YY_FATAL_ERROR( "start-condition stack underflow" );
  2515. BEGIN(yy_start_stack[yy_start_stack_ptr]);
  2516. }
  2517. #endif
  2518. #ifndef YY_NO_TOP_STATE
  2519. static int yy_top_state()
  2520. {
  2521. return yy_start_stack[yy_start_stack_ptr - 1];
  2522. }
  2523. #endif
  2524. #ifndef YY_EXIT_FAILURE
  2525. #define YY_EXIT_FAILURE 2
  2526. #endif
  2527. #ifdef YY_USE_PROTOS
  2528. static void yy_fatal_error( yyconst char msg[] )
  2529. #else
  2530. static void yy_fatal_error( msg )
  2531. char msg[];
  2532. #endif
  2533. {
  2534. (void) fprintf( stderr, "%s\n", msg );
  2535. exit( YY_EXIT_FAILURE );
  2536. }
  2537. /* Redefine yyless() so it works in section 3 code. */
  2538. #undef yyless
  2539. #define yyless(n) \
  2540. do \
  2541. { \
  2542. /* Undo effects of setting up yytext. */ \
  2543. yytext[yyleng] = yy_hold_char; \
  2544. yy_c_buf_p = yytext + n; \
  2545. yy_hold_char = *yy_c_buf_p; \
  2546. *yy_c_buf_p = '\0'; \
  2547. yyleng = n; \
  2548. } \
  2549. while ( 0 )
  2550. /* Internal utility routines. */
  2551. #ifndef yytext_ptr
  2552. #ifdef YY_USE_PROTOS
  2553. static void yy_flex_strncpy( char *s1, yyconst char *s2, int n )
  2554. #else
  2555. static void yy_flex_strncpy( s1, s2, n )
  2556. char *s1;
  2557. yyconst char *s2;
  2558. int n;
  2559. #endif
  2560. {
  2561. register int i;
  2562. for ( i = 0; i < n; ++i )
  2563. s1[i] = s2[i];
  2564. }
  2565. #endif
  2566. #ifdef YY_NEED_STRLEN
  2567. #ifdef YY_USE_PROTOS
  2568. static int yy_flex_strlen( yyconst char *s )
  2569. #else
  2570. static int yy_flex_strlen( s )
  2571. yyconst char *s;
  2572. #endif
  2573. {
  2574. register int n;
  2575. for ( n = 0; s[n]; ++n )
  2576. ;
  2577. return n;
  2578. }
  2579. #endif
  2580. #ifdef YY_USE_PROTOS
  2581. static void *yy_flex_alloc( yy_size_t size )
  2582. #else
  2583. static void *yy_flex_alloc( size )
  2584. yy_size_t size;
  2585. #endif
  2586. {
  2587. return (void *) malloc( size );
  2588. }
  2589. #ifdef YY_USE_PROTOS
  2590. static void *yy_flex_realloc( void *ptr, yy_size_t size )
  2591. #else
  2592. static void *yy_flex_realloc( ptr, size )
  2593. void *ptr;
  2594. yy_size_t size;
  2595. #endif
  2596. {
  2597. /* The cast to (char *) in the following accommodates both
  2598. * implementations that use char* generic pointers, and those
  2599. * that use void* generic pointers. It works with the latter
  2600. * because both ANSI C and C++ allow castless assignment from
  2601. * any pointer type to void*, and deal with argument conversions
  2602. * as though doing an assignment.
  2603. */
  2604. return (void *) realloc( (char *) ptr, size );
  2605. }
  2606. #ifdef YY_USE_PROTOS
  2607. static void yy_flex_free( void *ptr )
  2608. #else
  2609. static void yy_flex_free( ptr )
  2610. void *ptr;
  2611. #endif
  2612. {
  2613. free( ptr );
  2614. }
  2615. #if YY_MAIN
  2616. int main()
  2617. {
  2618. yylex();
  2619. return 0;
  2620. }
  2621. #endif
  2622. #line 227 "zconf.l"
  2623. void zconf_starthelp(void)
  2624. {
  2625. new_string();
  2626. last_ts = first_ts = 0;
  2627. BEGIN(HELP);
  2628. }
  2629. static void zconf_endhelp(void)
  2630. {
  2631. zconflval.string = text;
  2632. BEGIN(INITIAL);
  2633. }
  2634. void zconf_initscan(const char *name)
  2635. {
  2636. yyin = fopen(name, "r");
  2637. if (!yyin) {
  2638. printf("can't find file %s\n", name);
  2639. exit(1);
  2640. }
  2641. //fprintf(stderr, "zconf_initscan: %s\n", name);
  2642. current_buf = malloc(sizeof(*current_buf));
  2643. memset(current_buf, 0, sizeof(*current_buf));
  2644. current_file = file_lookup(name);
  2645. current_file->lineno = 1;
  2646. current_file->flags = FILE_BUSY;
  2647. }
  2648. void zconf_nextfile(const char *name)
  2649. {
  2650. struct file *file = file_lookup(name);
  2651. struct buffer *buf = malloc(sizeof(*buf));
  2652. memset(buf, 0, sizeof(*buf));
  2653. current_buf->state = YY_CURRENT_BUFFER;
  2654. yyin = fopen(name, "r");
  2655. if (!yyin) {
  2656. printf("%s:%d: can't open file \"%s\"\n", zconf_curname(), zconf_lineno(), name);
  2657. exit(1);
  2658. }
  2659. yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
  2660. buf->parent = current_buf;
  2661. current_buf = buf;
  2662. //fprintf(stderr, "zconf_nextfile: %s\n", name);
  2663. if (file->flags & FILE_BUSY) {
  2664. printf("recursive scan (%s)?\n", name);
  2665. exit(1);
  2666. }
  2667. if (file->flags & FILE_SCANNED) {
  2668. printf("file %s already scanned?\n", name);
  2669. exit(1);
  2670. }
  2671. file->flags |= FILE_BUSY;
  2672. file->lineno = 1;
  2673. file->parent = current_file;
  2674. current_file = file;
  2675. }
  2676. static struct buffer *zconf_endfile(void)
  2677. {
  2678. struct buffer *parent;
  2679. current_file->flags |= FILE_SCANNED;
  2680. current_file->flags &= ~FILE_BUSY;
  2681. current_file = current_file->parent;
  2682. parent = current_buf->parent;
  2683. if (parent) {
  2684. yy_delete_buffer(YY_CURRENT_BUFFER);
  2685. yy_switch_to_buffer(parent->state);
  2686. }
  2687. free(current_buf);
  2688. current_buf = parent;
  2689. return parent;
  2690. }
  2691. int zconf_lineno(void)
  2692. {
  2693. if (current_buf)
  2694. return current_file->lineno;
  2695. else
  2696. return 0;
  2697. }
  2698. char *zconf_curname(void)
  2699. {
  2700. if (current_buf)
  2701. return current_file->name;
  2702. else
  2703. return "<none>";
  2704. }