substitutions_complex.tokens 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564
  1. <?php
  2. return array (
  3. 0 =>
  4. ezcDocumentRstToken::__set_state(array(
  5. 'type' => 4,
  6. 'content' => '|',
  7. 'line' => 1,
  8. 'position' => 1,
  9. 'escaped' => false,
  10. )),
  11. 1 =>
  12. ezcDocumentRstToken::__set_state(array(
  13. 'type' => 5,
  14. 'content' => 'Michael',
  15. 'line' => 1,
  16. 'position' => 2,
  17. 'escaped' => false,
  18. )),
  19. 2 =>
  20. ezcDocumentRstToken::__set_state(array(
  21. 'type' => 4,
  22. 'content' => '|',
  23. 'line' => 1,
  24. 'position' => 9,
  25. 'escaped' => false,
  26. )),
  27. 3 =>
  28. ezcDocumentRstToken::__set_state(array(
  29. 'type' => 1,
  30. 'content' => ' ',
  31. 'line' => 1,
  32. 'position' => 10,
  33. 'escaped' => false,
  34. )),
  35. 4 =>
  36. ezcDocumentRstToken::__set_state(array(
  37. 'type' => 5,
  38. 'content' => 'and',
  39. 'line' => 1,
  40. 'position' => 11,
  41. 'escaped' => false,
  42. )),
  43. 5 =>
  44. ezcDocumentRstToken::__set_state(array(
  45. 'type' => 1,
  46. 'content' => ' ',
  47. 'line' => 1,
  48. 'position' => 14,
  49. 'escaped' => false,
  50. )),
  51. 6 =>
  52. ezcDocumentRstToken::__set_state(array(
  53. 'type' => 4,
  54. 'content' => '|',
  55. 'line' => 1,
  56. 'position' => 15,
  57. 'escaped' => false,
  58. )),
  59. 7 =>
  60. ezcDocumentRstToken::__set_state(array(
  61. 'type' => 5,
  62. 'content' => 'Jon',
  63. 'line' => 1,
  64. 'position' => 16,
  65. 'escaped' => false,
  66. )),
  67. 8 =>
  68. ezcDocumentRstToken::__set_state(array(
  69. 'type' => 4,
  70. 'content' => '|',
  71. 'line' => 1,
  72. 'position' => 19,
  73. 'escaped' => false,
  74. )),
  75. 9 =>
  76. ezcDocumentRstToken::__set_state(array(
  77. 'type' => 1,
  78. 'content' => ' ',
  79. 'line' => 1,
  80. 'position' => 20,
  81. 'escaped' => false,
  82. )),
  83. 10 =>
  84. ezcDocumentRstToken::__set_state(array(
  85. 'type' => 5,
  86. 'content' => 'are our widget-wranglers',
  87. 'line' => 1,
  88. 'position' => 21,
  89. 'escaped' => false,
  90. )),
  91. 11 =>
  92. ezcDocumentRstToken::__set_state(array(
  93. 'type' => 4,
  94. 'content' => '.',
  95. 'line' => 1,
  96. 'position' => 45,
  97. 'escaped' => false,
  98. )),
  99. 12 =>
  100. ezcDocumentRstToken::__set_state(array(
  101. 'type' => 2,
  102. 'content' => '
  103. ',
  104. 'line' => 1,
  105. 'position' => 46,
  106. 'escaped' => false,
  107. )),
  108. 13 =>
  109. ezcDocumentRstToken::__set_state(array(
  110. 'type' => 2,
  111. 'content' => '
  112. ',
  113. 'line' => 2,
  114. 'position' => 1,
  115. 'escaped' => false,
  116. )),
  117. 14 =>
  118. ezcDocumentRstToken::__set_state(array(
  119. 'type' => 4,
  120. 'content' => '..',
  121. 'line' => 3,
  122. 'position' => 1,
  123. 'escaped' => false,
  124. )),
  125. 15 =>
  126. ezcDocumentRstToken::__set_state(array(
  127. 'type' => 1,
  128. 'content' => ' ',
  129. 'line' => 3,
  130. 'position' => 3,
  131. 'escaped' => false,
  132. )),
  133. 16 =>
  134. ezcDocumentRstToken::__set_state(array(
  135. 'type' => 4,
  136. 'content' => '|',
  137. 'line' => 3,
  138. 'position' => 4,
  139. 'escaped' => false,
  140. )),
  141. 17 =>
  142. ezcDocumentRstToken::__set_state(array(
  143. 'type' => 5,
  144. 'content' => 'Michael',
  145. 'line' => 3,
  146. 'position' => 5,
  147. 'escaped' => false,
  148. )),
  149. 18 =>
  150. ezcDocumentRstToken::__set_state(array(
  151. 'type' => 4,
  152. 'content' => '|',
  153. 'line' => 3,
  154. 'position' => 12,
  155. 'escaped' => false,
  156. )),
  157. 19 =>
  158. ezcDocumentRstToken::__set_state(array(
  159. 'type' => 1,
  160. 'content' => ' ',
  161. 'line' => 3,
  162. 'position' => 13,
  163. 'escaped' => false,
  164. )),
  165. 20 =>
  166. ezcDocumentRstToken::__set_state(array(
  167. 'type' => 5,
  168. 'content' => 'user',
  169. 'line' => 3,
  170. 'position' => 14,
  171. 'escaped' => false,
  172. )),
  173. 21 =>
  174. ezcDocumentRstToken::__set_state(array(
  175. 'type' => 4,
  176. 'content' => '::',
  177. 'line' => 3,
  178. 'position' => 18,
  179. 'escaped' => false,
  180. )),
  181. 22 =>
  182. ezcDocumentRstToken::__set_state(array(
  183. 'type' => 1,
  184. 'content' => ' ',
  185. 'line' => 3,
  186. 'position' => 20,
  187. 'escaped' => false,
  188. )),
  189. 23 =>
  190. ezcDocumentRstToken::__set_state(array(
  191. 'type' => 5,
  192. 'content' => 'mjones',
  193. 'line' => 3,
  194. 'position' => 21,
  195. 'escaped' => false,
  196. )),
  197. 24 =>
  198. ezcDocumentRstToken::__set_state(array(
  199. 'type' => 2,
  200. 'content' => '
  201. ',
  202. 'line' => 3,
  203. 'position' => 27,
  204. 'escaped' => false,
  205. )),
  206. 25 =>
  207. ezcDocumentRstToken::__set_state(array(
  208. 'type' => 4,
  209. 'content' => '..',
  210. 'line' => 4,
  211. 'position' => 1,
  212. 'escaped' => false,
  213. )),
  214. 26 =>
  215. ezcDocumentRstToken::__set_state(array(
  216. 'type' => 1,
  217. 'content' => ' ',
  218. 'line' => 4,
  219. 'position' => 3,
  220. 'escaped' => false,
  221. )),
  222. 27 =>
  223. ezcDocumentRstToken::__set_state(array(
  224. 'type' => 4,
  225. 'content' => '|',
  226. 'line' => 4,
  227. 'position' => 4,
  228. 'escaped' => false,
  229. )),
  230. 28 =>
  231. ezcDocumentRstToken::__set_state(array(
  232. 'type' => 5,
  233. 'content' => 'Jon',
  234. 'line' => 4,
  235. 'position' => 5,
  236. 'escaped' => false,
  237. )),
  238. 29 =>
  239. ezcDocumentRstToken::__set_state(array(
  240. 'type' => 4,
  241. 'content' => '|',
  242. 'line' => 4,
  243. 'position' => 8,
  244. 'escaped' => false,
  245. )),
  246. 30 =>
  247. ezcDocumentRstToken::__set_state(array(
  248. 'type' => 1,
  249. 'content' => ' ',
  250. 'line' => 4,
  251. 'position' => 9,
  252. 'escaped' => false,
  253. )),
  254. 31 =>
  255. ezcDocumentRstToken::__set_state(array(
  256. 'type' => 5,
  257. 'content' => 'user',
  258. 'line' => 4,
  259. 'position' => 14,
  260. 'escaped' => false,
  261. )),
  262. 32 =>
  263. ezcDocumentRstToken::__set_state(array(
  264. 'type' => 4,
  265. 'content' => '::',
  266. 'line' => 4,
  267. 'position' => 18,
  268. 'escaped' => false,
  269. )),
  270. 33 =>
  271. ezcDocumentRstToken::__set_state(array(
  272. 'type' => 1,
  273. 'content' => ' ',
  274. 'line' => 4,
  275. 'position' => 20,
  276. 'escaped' => false,
  277. )),
  278. 34 =>
  279. ezcDocumentRstToken::__set_state(array(
  280. 'type' => 5,
  281. 'content' => 'jhl',
  282. 'line' => 4,
  283. 'position' => 21,
  284. 'escaped' => false,
  285. )),
  286. 35 =>
  287. ezcDocumentRstToken::__set_state(array(
  288. 'type' => 2,
  289. 'content' => '
  290. ',
  291. 'line' => 4,
  292. 'position' => 24,
  293. 'escaped' => false,
  294. )),
  295. 36 =>
  296. ezcDocumentRstToken::__set_state(array(
  297. 'type' => 2,
  298. 'content' => '
  299. ',
  300. 'line' => 5,
  301. 'position' => 1,
  302. 'escaped' => false,
  303. )),
  304. 37 =>
  305. ezcDocumentRstToken::__set_state(array(
  306. 'type' => 4,
  307. 'content' => '|',
  308. 'line' => 6,
  309. 'position' => 1,
  310. 'escaped' => false,
  311. )),
  312. 38 =>
  313. ezcDocumentRstToken::__set_state(array(
  314. 'type' => 5,
  315. 'content' => 'The Transparent Society',
  316. 'line' => 6,
  317. 'position' => 2,
  318. 'escaped' => false,
  319. )),
  320. 39 =>
  321. ezcDocumentRstToken::__set_state(array(
  322. 'type' => 4,
  323. 'content' => '|',
  324. 'line' => 6,
  325. 'position' => 25,
  326. 'escaped' => false,
  327. )),
  328. 40 =>
  329. ezcDocumentRstToken::__set_state(array(
  330. 'type' => 1,
  331. 'content' => ' ',
  332. 'line' => 6,
  333. 'position' => 26,
  334. 'escaped' => false,
  335. )),
  336. 41 =>
  337. ezcDocumentRstToken::__set_state(array(
  338. 'type' => 5,
  339. 'content' => 'offers a fascinating alternate view',
  340. 'line' => 6,
  341. 'position' => 27,
  342. 'escaped' => false,
  343. )),
  344. 42 =>
  345. ezcDocumentRstToken::__set_state(array(
  346. 'type' => 2,
  347. 'content' => '
  348. ',
  349. 'line' => 6,
  350. 'position' => 62,
  351. 'escaped' => false,
  352. )),
  353. 43 =>
  354. ezcDocumentRstToken::__set_state(array(
  355. 'type' => 5,
  356. 'content' => 'on privacy issues',
  357. 'line' => 7,
  358. 'position' => 1,
  359. 'escaped' => false,
  360. )),
  361. 44 =>
  362. ezcDocumentRstToken::__set_state(array(
  363. 'type' => 4,
  364. 'content' => '.',
  365. 'line' => 7,
  366. 'position' => 18,
  367. 'escaped' => false,
  368. )),
  369. 45 =>
  370. ezcDocumentRstToken::__set_state(array(
  371. 'type' => 2,
  372. 'content' => '
  373. ',
  374. 'line' => 7,
  375. 'position' => 19,
  376. 'escaped' => false,
  377. )),
  378. 46 =>
  379. ezcDocumentRstToken::__set_state(array(
  380. 'type' => 2,
  381. 'content' => '
  382. ',
  383. 'line' => 8,
  384. 'position' => 1,
  385. 'escaped' => false,
  386. )),
  387. 47 =>
  388. ezcDocumentRstToken::__set_state(array(
  389. 'type' => 4,
  390. 'content' => '..',
  391. 'line' => 9,
  392. 'position' => 1,
  393. 'escaped' => false,
  394. )),
  395. 48 =>
  396. ezcDocumentRstToken::__set_state(array(
  397. 'type' => 1,
  398. 'content' => ' ',
  399. 'line' => 9,
  400. 'position' => 3,
  401. 'escaped' => false,
  402. )),
  403. 49 =>
  404. ezcDocumentRstToken::__set_state(array(
  405. 'type' => 4,
  406. 'content' => '|',
  407. 'line' => 9,
  408. 'position' => 4,
  409. 'escaped' => false,
  410. )),
  411. 50 =>
  412. ezcDocumentRstToken::__set_state(array(
  413. 'type' => 5,
  414. 'content' => 'The Transparent Society',
  415. 'line' => 9,
  416. 'position' => 5,
  417. 'escaped' => false,
  418. )),
  419. 51 =>
  420. ezcDocumentRstToken::__set_state(array(
  421. 'type' => 4,
  422. 'content' => '|',
  423. 'line' => 9,
  424. 'position' => 28,
  425. 'escaped' => false,
  426. )),
  427. 52 =>
  428. ezcDocumentRstToken::__set_state(array(
  429. 'type' => 1,
  430. 'content' => ' ',
  431. 'line' => 9,
  432. 'position' => 29,
  433. 'escaped' => false,
  434. )),
  435. 53 =>
  436. ezcDocumentRstToken::__set_state(array(
  437. 'type' => 5,
  438. 'content' => 'book',
  439. 'line' => 9,
  440. 'position' => 30,
  441. 'escaped' => false,
  442. )),
  443. 54 =>
  444. ezcDocumentRstToken::__set_state(array(
  445. 'type' => 4,
  446. 'content' => '::',
  447. 'line' => 9,
  448. 'position' => 34,
  449. 'escaped' => false,
  450. )),
  451. 55 =>
  452. ezcDocumentRstToken::__set_state(array(
  453. 'type' => 1,
  454. 'content' => ' ',
  455. 'line' => 9,
  456. 'position' => 36,
  457. 'escaped' => false,
  458. )),
  459. 56 =>
  460. ezcDocumentRstToken::__set_state(array(
  461. 'type' => 5,
  462. 'content' => 'isbn=0738201448',
  463. 'line' => 9,
  464. 'position' => 37,
  465. 'escaped' => false,
  466. )),
  467. 57 =>
  468. ezcDocumentRstToken::__set_state(array(
  469. 'type' => 2,
  470. 'content' => '
  471. ',
  472. 'line' => 9,
  473. 'position' => 52,
  474. 'escaped' => false,
  475. )),
  476. 58 =>
  477. ezcDocumentRstToken::__set_state(array(
  478. 'type' => 2,
  479. 'content' => '
  480. ',
  481. 'line' => 10,
  482. 'position' => 1,
  483. 'escaped' => false,
  484. )),
  485. 59 =>
  486. ezcDocumentRstToken::__set_state(array(
  487. 'type' => 4,
  488. 'content' => '|',
  489. 'line' => 11,
  490. 'position' => 1,
  491. 'escaped' => false,
  492. )),
  493. 60 =>
  494. ezcDocumentRstToken::__set_state(array(
  495. 'type' => 5,
  496. 'content' => 'The Transparent Society',
  497. 'line' => 11,
  498. 'position' => 2,
  499. 'escaped' => false,
  500. )),
  501. 61 =>
  502. ezcDocumentRstToken::__set_state(array(
  503. 'type' => 4,
  504. 'content' => '|',
  505. 'line' => 11,
  506. 'position' => 25,
  507. 'escaped' => false,
  508. )),
  509. 62 =>
  510. ezcDocumentRstToken::__set_state(array(
  511. 'type' => 1,
  512. 'content' => ' ',
  513. 'line' => 11,
  514. 'position' => 26,
  515. 'escaped' => false,
  516. )),
  517. 63 =>
  518. ezcDocumentRstToken::__set_state(array(
  519. 'type' => 5,
  520. 'content' => 'offers a fascinating alternate view',
  521. 'line' => 11,
  522. 'position' => 27,
  523. 'escaped' => false,
  524. )),
  525. 64 =>
  526. ezcDocumentRstToken::__set_state(array(
  527. 'type' => 2,
  528. 'content' => '
  529. ',
  530. 'line' => 11,
  531. 'position' => 62,
  532. 'escaped' => false,
  533. )),
  534. 65 =>
  535. ezcDocumentRstToken::__set_state(array(
  536. 'type' => 5,
  537. 'content' => 'on privacy issues',
  538. 'line' => 12,
  539. 'position' => 1,
  540. 'escaped' => false,
  541. )),
  542. 66 =>
  543. ezcDocumentRstToken::__set_state(array(
  544. 'type' => 4,
  545. 'content' => '.',
  546. 'line' => 12,
  547. 'position' => 18,
  548. 'escaped' => false,
  549. )),
  550. 67 =>
  551. ezcDocumentRstToken::__set_state(array(
  552. 'type' => 2,
  553. 'content' => '
  554. ',
  555. 'line' => 12,
  556. 'position' => 19,
  557. 'escaped' => false,
  558. )),
  559. 68 =>
  560. ezcDocumentRstToken::__set_state(array(
  561. 'type' => 2,
  562. 'content' => '
  563. ',
  564. 'line' => 13,
  565. 'position' => 1,
  566. 'escaped' => false,
  567. )),
  568. 69 =>
  569. ezcDocumentRstToken::__set_state(array(
  570. 'type' => 4,
  571. 'content' => '..',
  572. 'line' => 14,
  573. 'position' => 1,
  574. 'escaped' => false,
  575. )),
  576. 70 =>
  577. ezcDocumentRstToken::__set_state(array(
  578. 'type' => 1,
  579. 'content' => ' ',
  580. 'line' => 14,
  581. 'position' => 3,
  582. 'escaped' => false,
  583. )),
  584. 71 =>
  585. ezcDocumentRstToken::__set_state(array(
  586. 'type' => 4,
  587. 'content' => '|',
  588. 'line' => 14,
  589. 'position' => 4,
  590. 'escaped' => false,
  591. )),
  592. 72 =>
  593. ezcDocumentRstToken::__set_state(array(
  594. 'type' => 5,
  595. 'content' => 'The Transparent Society',
  596. 'line' => 14,
  597. 'position' => 5,
  598. 'escaped' => false,
  599. )),
  600. 73 =>
  601. ezcDocumentRstToken::__set_state(array(
  602. 'type' => 4,
  603. 'content' => '|',
  604. 'line' => 14,
  605. 'position' => 28,
  606. 'escaped' => false,
  607. )),
  608. 74 =>
  609. ezcDocumentRstToken::__set_state(array(
  610. 'type' => 1,
  611. 'content' => ' ',
  612. 'line' => 14,
  613. 'position' => 29,
  614. 'escaped' => false,
  615. )),
  616. 75 =>
  617. ezcDocumentRstToken::__set_state(array(
  618. 'type' => 5,
  619. 'content' => 'book',
  620. 'line' => 14,
  621. 'position' => 30,
  622. 'escaped' => false,
  623. )),
  624. 76 =>
  625. ezcDocumentRstToken::__set_state(array(
  626. 'type' => 4,
  627. 'content' => '::',
  628. 'line' => 14,
  629. 'position' => 34,
  630. 'escaped' => false,
  631. )),
  632. 77 =>
  633. ezcDocumentRstToken::__set_state(array(
  634. 'type' => 1,
  635. 'content' => ' ',
  636. 'line' => 14,
  637. 'position' => 36,
  638. 'escaped' => false,
  639. )),
  640. 78 =>
  641. ezcDocumentRstToken::__set_state(array(
  642. 'type' => 5,
  643. 'content' => 'isbn=0738201448',
  644. 'line' => 14,
  645. 'position' => 37,
  646. 'escaped' => false,
  647. )),
  648. 79 =>
  649. ezcDocumentRstToken::__set_state(array(
  650. 'type' => 2,
  651. 'content' => '
  652. ',
  653. 'line' => 14,
  654. 'position' => 52,
  655. 'escaped' => false,
  656. )),
  657. 80 =>
  658. ezcDocumentRstToken::__set_state(array(
  659. 'type' => 2,
  660. 'content' => '
  661. ',
  662. 'line' => 15,
  663. 'position' => 1,
  664. 'escaped' => false,
  665. )),
  666. 81 =>
  667. ezcDocumentRstToken::__set_state(array(
  668. 'type' => 5,
  669. 'content' => '4XSLT has the convenience method',
  670. 'line' => 16,
  671. 'position' => 1,
  672. 'escaped' => false,
  673. )),
  674. 82 =>
  675. ezcDocumentRstToken::__set_state(array(
  676. 'type' => 1,
  677. 'content' => ' ',
  678. 'line' => 16,
  679. 'position' => 33,
  680. 'escaped' => false,
  681. )),
  682. 83 =>
  683. ezcDocumentRstToken::__set_state(array(
  684. 'type' => 4,
  685. 'content' => '|',
  686. 'line' => 16,
  687. 'position' => 34,
  688. 'escaped' => false,
  689. )),
  690. 84 =>
  691. ezcDocumentRstToken::__set_state(array(
  692. 'type' => 5,
  693. 'content' => 'runString',
  694. 'line' => 16,
  695. 'position' => 35,
  696. 'escaped' => false,
  697. )),
  698. 85 =>
  699. ezcDocumentRstToken::__set_state(array(
  700. 'type' => 4,
  701. 'content' => '|',
  702. 'line' => 16,
  703. 'position' => 44,
  704. 'escaped' => false,
  705. )),
  706. 86 =>
  707. ezcDocumentRstToken::__set_state(array(
  708. 'type' => 4,
  709. 'content' => ',',
  710. 'line' => 16,
  711. 'position' => 45,
  712. 'escaped' => false,
  713. )),
  714. 87 =>
  715. ezcDocumentRstToken::__set_state(array(
  716. 'type' => 1,
  717. 'content' => ' ',
  718. 'line' => 16,
  719. 'position' => 46,
  720. 'escaped' => false,
  721. )),
  722. 88 =>
  723. ezcDocumentRstToken::__set_state(array(
  724. 'type' => 5,
  725. 'content' => 'so you don',
  726. 'line' => 16,
  727. 'position' => 47,
  728. 'escaped' => false,
  729. )),
  730. 89 =>
  731. ezcDocumentRstToken::__set_state(array(
  732. 'type' => 4,
  733. 'content' => '\'',
  734. 'line' => 16,
  735. 'position' => 57,
  736. 'escaped' => false,
  737. )),
  738. 90 =>
  739. ezcDocumentRstToken::__set_state(array(
  740. 'type' => 5,
  741. 'content' => 't',
  742. 'line' => 16,
  743. 'position' => 58,
  744. 'escaped' => false,
  745. )),
  746. 91 =>
  747. ezcDocumentRstToken::__set_state(array(
  748. 'type' => 2,
  749. 'content' => '
  750. ',
  751. 'line' => 16,
  752. 'position' => 59,
  753. 'escaped' => false,
  754. )),
  755. 92 =>
  756. ezcDocumentRstToken::__set_state(array(
  757. 'type' => 5,
  758. 'content' => 'have to mess with DOM objects if all you want is the',
  759. 'line' => 17,
  760. 'position' => 1,
  761. 'escaped' => false,
  762. )),
  763. 93 =>
  764. ezcDocumentRstToken::__set_state(array(
  765. 'type' => 2,
  766. 'content' => '
  767. ',
  768. 'line' => 17,
  769. 'position' => 53,
  770. 'escaped' => false,
  771. )),
  772. 94 =>
  773. ezcDocumentRstToken::__set_state(array(
  774. 'type' => 5,
  775. 'content' => 'transformed output',
  776. 'line' => 18,
  777. 'position' => 1,
  778. 'escaped' => false,
  779. )),
  780. 95 =>
  781. ezcDocumentRstToken::__set_state(array(
  782. 'type' => 4,
  783. 'content' => '.',
  784. 'line' => 18,
  785. 'position' => 19,
  786. 'escaped' => false,
  787. )),
  788. 96 =>
  789. ezcDocumentRstToken::__set_state(array(
  790. 'type' => 2,
  791. 'content' => '
  792. ',
  793. 'line' => 18,
  794. 'position' => 20,
  795. 'escaped' => false,
  796. )),
  797. 97 =>
  798. ezcDocumentRstToken::__set_state(array(
  799. 'type' => 2,
  800. 'content' => '
  801. ',
  802. 'line' => 19,
  803. 'position' => 1,
  804. 'escaped' => false,
  805. )),
  806. 98 =>
  807. ezcDocumentRstToken::__set_state(array(
  808. 'type' => 4,
  809. 'content' => '..',
  810. 'line' => 20,
  811. 'position' => 1,
  812. 'escaped' => false,
  813. )),
  814. 99 =>
  815. ezcDocumentRstToken::__set_state(array(
  816. 'type' => 1,
  817. 'content' => ' ',
  818. 'line' => 20,
  819. 'position' => 3,
  820. 'escaped' => false,
  821. )),
  822. 100 =>
  823. ezcDocumentRstToken::__set_state(array(
  824. 'type' => 4,
  825. 'content' => '|',
  826. 'line' => 20,
  827. 'position' => 4,
  828. 'escaped' => false,
  829. )),
  830. 101 =>
  831. ezcDocumentRstToken::__set_state(array(
  832. 'type' => 5,
  833. 'content' => 'runString',
  834. 'line' => 20,
  835. 'position' => 5,
  836. 'escaped' => false,
  837. )),
  838. 102 =>
  839. ezcDocumentRstToken::__set_state(array(
  840. 'type' => 4,
  841. 'content' => '|',
  842. 'line' => 20,
  843. 'position' => 14,
  844. 'escaped' => false,
  845. )),
  846. 103 =>
  847. ezcDocumentRstToken::__set_state(array(
  848. 'type' => 1,
  849. 'content' => ' ',
  850. 'line' => 20,
  851. 'position' => 15,
  852. 'escaped' => false,
  853. )),
  854. 104 =>
  855. ezcDocumentRstToken::__set_state(array(
  856. 'type' => 5,
  857. 'content' => 'function',
  858. 'line' => 20,
  859. 'position' => 16,
  860. 'escaped' => false,
  861. )),
  862. 105 =>
  863. ezcDocumentRstToken::__set_state(array(
  864. 'type' => 4,
  865. 'content' => '::',
  866. 'line' => 20,
  867. 'position' => 24,
  868. 'escaped' => false,
  869. )),
  870. 106 =>
  871. ezcDocumentRstToken::__set_state(array(
  872. 'type' => 1,
  873. 'content' => ' ',
  874. 'line' => 20,
  875. 'position' => 26,
  876. 'escaped' => false,
  877. )),
  878. 107 =>
  879. ezcDocumentRstToken::__set_state(array(
  880. 'type' => 5,
  881. 'content' => 'module=xml',
  882. 'line' => 20,
  883. 'position' => 27,
  884. 'escaped' => false,
  885. )),
  886. 108 =>
  887. ezcDocumentRstToken::__set_state(array(
  888. 'type' => 4,
  889. 'content' => '.',
  890. 'line' => 20,
  891. 'position' => 37,
  892. 'escaped' => false,
  893. )),
  894. 109 =>
  895. ezcDocumentRstToken::__set_state(array(
  896. 'type' => 5,
  897. 'content' => 'xslt class=Processor',
  898. 'line' => 20,
  899. 'position' => 38,
  900. 'escaped' => false,
  901. )),
  902. 110 =>
  903. ezcDocumentRstToken::__set_state(array(
  904. 'type' => 2,
  905. 'content' => '
  906. ',
  907. 'line' => 20,
  908. 'position' => 58,
  909. 'escaped' => false,
  910. )),
  911. 111 =>
  912. ezcDocumentRstToken::__set_state(array(
  913. 'type' => 2,
  914. 'content' => '
  915. ',
  916. 'line' => 21,
  917. 'position' => 1,
  918. 'escaped' => false,
  919. )),
  920. 112 =>
  921. ezcDocumentRstToken::__set_state(array(
  922. 'type' => 5,
  923. 'content' => 'West led the',
  924. 'line' => 22,
  925. 'position' => 1,
  926. 'escaped' => false,
  927. )),
  928. 113 =>
  929. ezcDocumentRstToken::__set_state(array(
  930. 'type' => 1,
  931. 'content' => ' ',
  932. 'line' => 22,
  933. 'position' => 13,
  934. 'escaped' => false,
  935. )),
  936. 114 =>
  937. ezcDocumentRstToken::__set_state(array(
  938. 'type' => 4,
  939. 'content' => '|',
  940. 'line' => 22,
  941. 'position' => 14,
  942. 'escaped' => false,
  943. )),
  944. 115 =>
  945. ezcDocumentRstToken::__set_state(array(
  946. 'type' => 5,
  947. 'content' => 'H',
  948. 'line' => 22,
  949. 'position' => 15,
  950. 'escaped' => false,
  951. )),
  952. 116 =>
  953. ezcDocumentRstToken::__set_state(array(
  954. 'type' => 4,
  955. 'content' => '|',
  956. 'line' => 22,
  957. 'position' => 16,
  958. 'escaped' => false,
  959. )),
  960. 117 =>
  961. ezcDocumentRstToken::__set_state(array(
  962. 'type' => 1,
  963. 'content' => ' ',
  964. 'line' => 22,
  965. 'position' => 17,
  966. 'escaped' => false,
  967. )),
  968. 118 =>
  969. ezcDocumentRstToken::__set_state(array(
  970. 'type' => 5,
  971. 'content' => '3, covered by dummy',
  972. 'line' => 22,
  973. 'position' => 18,
  974. 'escaped' => false,
  975. )),
  976. 119 =>
  977. ezcDocumentRstToken::__set_state(array(
  978. 'type' => 4,
  979. 'content' => '\'',
  980. 'line' => 22,
  981. 'position' => 37,
  982. 'escaped' => false,
  983. )),
  984. 120 =>
  985. ezcDocumentRstToken::__set_state(array(
  986. 'type' => 5,
  987. 'content' => 's',
  988. 'line' => 22,
  989. 'position' => 38,
  990. 'escaped' => false,
  991. )),
  992. 121 =>
  993. ezcDocumentRstToken::__set_state(array(
  994. 'type' => 1,
  995. 'content' => ' ',
  996. 'line' => 22,
  997. 'position' => 39,
  998. 'escaped' => false,
  999. )),
  1000. 122 =>
  1001. ezcDocumentRstToken::__set_state(array(
  1002. 'type' => 4,
  1003. 'content' => '|',
  1004. 'line' => 22,
  1005. 'position' => 40,
  1006. 'escaped' => false,
  1007. )),
  1008. 123 =>
  1009. ezcDocumentRstToken::__set_state(array(
  1010. 'type' => 5,
  1011. 'content' => 'H',
  1012. 'line' => 22,
  1013. 'position' => 41,
  1014. 'escaped' => false,
  1015. )),
  1016. 124 =>
  1017. ezcDocumentRstToken::__set_state(array(
  1018. 'type' => 4,
  1019. 'content' => '|',
  1020. 'line' => 22,
  1021. 'position' => 42,
  1022. 'escaped' => false,
  1023. )),
  1024. 125 =>
  1025. ezcDocumentRstToken::__set_state(array(
  1026. 'type' => 1,
  1027. 'content' => ' ',
  1028. 'line' => 22,
  1029. 'position' => 43,
  1030. 'escaped' => false,
  1031. )),
  1032. 126 =>
  1033. ezcDocumentRstToken::__set_state(array(
  1034. 'type' => 5,
  1035. 'content' => 'Q, East',
  1036. 'line' => 22,
  1037. 'position' => 44,
  1038. 'escaped' => false,
  1039. )),
  1040. 127 =>
  1041. ezcDocumentRstToken::__set_state(array(
  1042. 'type' => 4,
  1043. 'content' => '\'',
  1044. 'line' => 22,
  1045. 'position' => 51,
  1046. 'escaped' => false,
  1047. )),
  1048. 128 =>
  1049. ezcDocumentRstToken::__set_state(array(
  1050. 'type' => 5,
  1051. 'content' => 's',
  1052. 'line' => 22,
  1053. 'position' => 52,
  1054. 'escaped' => false,
  1055. )),
  1056. 129 =>
  1057. ezcDocumentRstToken::__set_state(array(
  1058. 'type' => 1,
  1059. 'content' => ' ',
  1060. 'line' => 22,
  1061. 'position' => 53,
  1062. 'escaped' => false,
  1063. )),
  1064. 130 =>
  1065. ezcDocumentRstToken::__set_state(array(
  1066. 'type' => 4,
  1067. 'content' => '|',
  1068. 'line' => 22,
  1069. 'position' => 54,
  1070. 'escaped' => false,
  1071. )),
  1072. 131 =>
  1073. ezcDocumentRstToken::__set_state(array(
  1074. 'type' => 5,
  1075. 'content' => 'H',
  1076. 'line' => 22,
  1077. 'position' => 55,
  1078. 'escaped' => false,
  1079. )),
  1080. 132 =>
  1081. ezcDocumentRstToken::__set_state(array(
  1082. 'type' => 4,
  1083. 'content' => '|',
  1084. 'line' => 22,
  1085. 'position' => 56,
  1086. 'escaped' => false,
  1087. )),
  1088. 133 =>
  1089. ezcDocumentRstToken::__set_state(array(
  1090. 'type' => 1,
  1091. 'content' => ' ',
  1092. 'line' => 22,
  1093. 'position' => 57,
  1094. 'escaped' => false,
  1095. )),
  1096. 134 =>
  1097. ezcDocumentRstToken::__set_state(array(
  1098. 'type' => 5,
  1099. 'content' => 'K,',
  1100. 'line' => 22,
  1101. 'position' => 58,
  1102. 'escaped' => false,
  1103. )),
  1104. 135 =>
  1105. ezcDocumentRstToken::__set_state(array(
  1106. 'type' => 2,
  1107. 'content' => '
  1108. ',
  1109. 'line' => 22,
  1110. 'position' => 60,
  1111. 'escaped' => false,
  1112. )),
  1113. 136 =>
  1114. ezcDocumentRstToken::__set_state(array(
  1115. 'type' => 5,
  1116. 'content' => 'and trumped in hand with the',
  1117. 'line' => 23,
  1118. 'position' => 1,
  1119. 'escaped' => false,
  1120. )),
  1121. 137 =>
  1122. ezcDocumentRstToken::__set_state(array(
  1123. 'type' => 1,
  1124. 'content' => ' ',
  1125. 'line' => 23,
  1126. 'position' => 29,
  1127. 'escaped' => false,
  1128. )),
  1129. 138 =>
  1130. ezcDocumentRstToken::__set_state(array(
  1131. 'type' => 4,
  1132. 'content' => '|',
  1133. 'line' => 23,
  1134. 'position' => 30,
  1135. 'escaped' => false,
  1136. )),
  1137. 139 =>
  1138. ezcDocumentRstToken::__set_state(array(
  1139. 'type' => 5,
  1140. 'content' => 'S',
  1141. 'line' => 23,
  1142. 'position' => 31,
  1143. 'escaped' => false,
  1144. )),
  1145. 140 =>
  1146. ezcDocumentRstToken::__set_state(array(
  1147. 'type' => 4,
  1148. 'content' => '|',
  1149. 'line' => 23,
  1150. 'position' => 32,
  1151. 'escaped' => false,
  1152. )),
  1153. 141 =>
  1154. ezcDocumentRstToken::__set_state(array(
  1155. 'type' => 1,
  1156. 'content' => ' ',
  1157. 'line' => 23,
  1158. 'position' => 33,
  1159. 'escaped' => false,
  1160. )),
  1161. 142 =>
  1162. ezcDocumentRstToken::__set_state(array(
  1163. 'type' => 5,
  1164. 'content' => '2',
  1165. 'line' => 23,
  1166. 'position' => 34,
  1167. 'escaped' => false,
  1168. )),
  1169. 143 =>
  1170. ezcDocumentRstToken::__set_state(array(
  1171. 'type' => 4,
  1172. 'content' => '.',
  1173. 'line' => 23,
  1174. 'position' => 35,
  1175. 'escaped' => false,
  1176. )),
  1177. 144 =>
  1178. ezcDocumentRstToken::__set_state(array(
  1179. 'type' => 2,
  1180. 'content' => '
  1181. ',
  1182. 'line' => 23,
  1183. 'position' => 36,
  1184. 'escaped' => false,
  1185. )),
  1186. 145 =>
  1187. ezcDocumentRstToken::__set_state(array(
  1188. 'type' => 2,
  1189. 'content' => '
  1190. ',
  1191. 'line' => 24,
  1192. 'position' => 1,
  1193. 'escaped' => false,
  1194. )),
  1195. 146 =>
  1196. ezcDocumentRstToken::__set_state(array(
  1197. 'type' => 4,
  1198. 'content' => '..',
  1199. 'line' => 25,
  1200. 'position' => 1,
  1201. 'escaped' => false,
  1202. )),
  1203. 147 =>
  1204. ezcDocumentRstToken::__set_state(array(
  1205. 'type' => 1,
  1206. 'content' => ' ',
  1207. 'line' => 25,
  1208. 'position' => 3,
  1209. 'escaped' => false,
  1210. )),
  1211. 148 =>
  1212. ezcDocumentRstToken::__set_state(array(
  1213. 'type' => 4,
  1214. 'content' => '|',
  1215. 'line' => 25,
  1216. 'position' => 4,
  1217. 'escaped' => false,
  1218. )),
  1219. 149 =>
  1220. ezcDocumentRstToken::__set_state(array(
  1221. 'type' => 5,
  1222. 'content' => 'H',
  1223. 'line' => 25,
  1224. 'position' => 5,
  1225. 'escaped' => false,
  1226. )),
  1227. 150 =>
  1228. ezcDocumentRstToken::__set_state(array(
  1229. 'type' => 4,
  1230. 'content' => '|',
  1231. 'line' => 25,
  1232. 'position' => 6,
  1233. 'escaped' => false,
  1234. )),
  1235. 151 =>
  1236. ezcDocumentRstToken::__set_state(array(
  1237. 'type' => 1,
  1238. 'content' => ' ',
  1239. 'line' => 25,
  1240. 'position' => 7,
  1241. 'escaped' => false,
  1242. )),
  1243. 152 =>
  1244. ezcDocumentRstToken::__set_state(array(
  1245. 'type' => 5,
  1246. 'content' => 'image',
  1247. 'line' => 25,
  1248. 'position' => 8,
  1249. 'escaped' => false,
  1250. )),
  1251. 153 =>
  1252. ezcDocumentRstToken::__set_state(array(
  1253. 'type' => 4,
  1254. 'content' => '::',
  1255. 'line' => 25,
  1256. 'position' => 13,
  1257. 'escaped' => false,
  1258. )),
  1259. 154 =>
  1260. ezcDocumentRstToken::__set_state(array(
  1261. 'type' => 1,
  1262. 'content' => ' ',
  1263. 'line' => 25,
  1264. 'position' => 15,
  1265. 'escaped' => false,
  1266. )),
  1267. 155 =>
  1268. ezcDocumentRstToken::__set_state(array(
  1269. 'type' => 4,
  1270. 'content' => '/',
  1271. 'line' => 25,
  1272. 'position' => 16,
  1273. 'escaped' => false,
  1274. )),
  1275. 156 =>
  1276. ezcDocumentRstToken::__set_state(array(
  1277. 'type' => 5,
  1278. 'content' => 'images/heart',
  1279. 'line' => 25,
  1280. 'position' => 17,
  1281. 'escaped' => false,
  1282. )),
  1283. 157 =>
  1284. ezcDocumentRstToken::__set_state(array(
  1285. 'type' => 4,
  1286. 'content' => '.',
  1287. 'line' => 25,
  1288. 'position' => 29,
  1289. 'escaped' => false,
  1290. )),
  1291. 158 =>
  1292. ezcDocumentRstToken::__set_state(array(
  1293. 'type' => 5,
  1294. 'content' => 'png',
  1295. 'line' => 25,
  1296. 'position' => 30,
  1297. 'escaped' => false,
  1298. )),
  1299. 159 =>
  1300. ezcDocumentRstToken::__set_state(array(
  1301. 'type' => 2,
  1302. 'content' => '
  1303. ',
  1304. 'line' => 25,
  1305. 'position' => 33,
  1306. 'escaped' => false,
  1307. )),
  1308. 160 =>
  1309. ezcDocumentRstToken::__set_state(array(
  1310. 'type' => 1,
  1311. 'content' => ' ',
  1312. 'line' => 26,
  1313. 'position' => 1,
  1314. 'escaped' => false,
  1315. )),
  1316. 161 =>
  1317. ezcDocumentRstToken::__set_state(array(
  1318. 'type' => 4,
  1319. 'content' => ':',
  1320. 'line' => 26,
  1321. 'position' => 4,
  1322. 'escaped' => false,
  1323. )),
  1324. 162 =>
  1325. ezcDocumentRstToken::__set_state(array(
  1326. 'type' => 5,
  1327. 'content' => 'height',
  1328. 'line' => 26,
  1329. 'position' => 5,
  1330. 'escaped' => false,
  1331. )),
  1332. 163 =>
  1333. ezcDocumentRstToken::__set_state(array(
  1334. 'type' => 4,
  1335. 'content' => ':',
  1336. 'line' => 26,
  1337. 'position' => 11,
  1338. 'escaped' => false,
  1339. )),
  1340. 164 =>
  1341. ezcDocumentRstToken::__set_state(array(
  1342. 'type' => 1,
  1343. 'content' => ' ',
  1344. 'line' => 26,
  1345. 'position' => 12,
  1346. 'escaped' => false,
  1347. )),
  1348. 165 =>
  1349. ezcDocumentRstToken::__set_state(array(
  1350. 'type' => 5,
  1351. 'content' => '11',
  1352. 'line' => 26,
  1353. 'position' => 13,
  1354. 'escaped' => false,
  1355. )),
  1356. 166 =>
  1357. ezcDocumentRstToken::__set_state(array(
  1358. 'type' => 2,
  1359. 'content' => '
  1360. ',
  1361. 'line' => 26,
  1362. 'position' => 15,
  1363. 'escaped' => false,
  1364. )),
  1365. 167 =>
  1366. ezcDocumentRstToken::__set_state(array(
  1367. 'type' => 1,
  1368. 'content' => ' ',
  1369. 'line' => 27,
  1370. 'position' => 1,
  1371. 'escaped' => false,
  1372. )),
  1373. 168 =>
  1374. ezcDocumentRstToken::__set_state(array(
  1375. 'type' => 4,
  1376. 'content' => ':',
  1377. 'line' => 27,
  1378. 'position' => 4,
  1379. 'escaped' => false,
  1380. )),
  1381. 169 =>
  1382. ezcDocumentRstToken::__set_state(array(
  1383. 'type' => 5,
  1384. 'content' => 'width',
  1385. 'line' => 27,
  1386. 'position' => 5,
  1387. 'escaped' => false,
  1388. )),
  1389. 170 =>
  1390. ezcDocumentRstToken::__set_state(array(
  1391. 'type' => 4,
  1392. 'content' => ':',
  1393. 'line' => 27,
  1394. 'position' => 10,
  1395. 'escaped' => false,
  1396. )),
  1397. 171 =>
  1398. ezcDocumentRstToken::__set_state(array(
  1399. 'type' => 1,
  1400. 'content' => ' ',
  1401. 'line' => 27,
  1402. 'position' => 11,
  1403. 'escaped' => false,
  1404. )),
  1405. 172 =>
  1406. ezcDocumentRstToken::__set_state(array(
  1407. 'type' => 5,
  1408. 'content' => '11',
  1409. 'line' => 27,
  1410. 'position' => 12,
  1411. 'escaped' => false,
  1412. )),
  1413. 173 =>
  1414. ezcDocumentRstToken::__set_state(array(
  1415. 'type' => 2,
  1416. 'content' => '
  1417. ',
  1418. 'line' => 27,
  1419. 'position' => 14,
  1420. 'escaped' => false,
  1421. )),
  1422. 174 =>
  1423. ezcDocumentRstToken::__set_state(array(
  1424. 'type' => 4,
  1425. 'content' => '..',
  1426. 'line' => 28,
  1427. 'position' => 1,
  1428. 'escaped' => false,
  1429. )),
  1430. 175 =>
  1431. ezcDocumentRstToken::__set_state(array(
  1432. 'type' => 1,
  1433. 'content' => ' ',
  1434. 'line' => 28,
  1435. 'position' => 3,
  1436. 'escaped' => false,
  1437. )),
  1438. 176 =>
  1439. ezcDocumentRstToken::__set_state(array(
  1440. 'type' => 4,
  1441. 'content' => '|',
  1442. 'line' => 28,
  1443. 'position' => 4,
  1444. 'escaped' => false,
  1445. )),
  1446. 177 =>
  1447. ezcDocumentRstToken::__set_state(array(
  1448. 'type' => 5,
  1449. 'content' => 'S',
  1450. 'line' => 28,
  1451. 'position' => 5,
  1452. 'escaped' => false,
  1453. )),
  1454. 178 =>
  1455. ezcDocumentRstToken::__set_state(array(
  1456. 'type' => 4,
  1457. 'content' => '|',
  1458. 'line' => 28,
  1459. 'position' => 6,
  1460. 'escaped' => false,
  1461. )),
  1462. 179 =>
  1463. ezcDocumentRstToken::__set_state(array(
  1464. 'type' => 1,
  1465. 'content' => ' ',
  1466. 'line' => 28,
  1467. 'position' => 7,
  1468. 'escaped' => false,
  1469. )),
  1470. 180 =>
  1471. ezcDocumentRstToken::__set_state(array(
  1472. 'type' => 5,
  1473. 'content' => 'image',
  1474. 'line' => 28,
  1475. 'position' => 8,
  1476. 'escaped' => false,
  1477. )),
  1478. 181 =>
  1479. ezcDocumentRstToken::__set_state(array(
  1480. 'type' => 4,
  1481. 'content' => '::',
  1482. 'line' => 28,
  1483. 'position' => 13,
  1484. 'escaped' => false,
  1485. )),
  1486. 182 =>
  1487. ezcDocumentRstToken::__set_state(array(
  1488. 'type' => 1,
  1489. 'content' => ' ',
  1490. 'line' => 28,
  1491. 'position' => 15,
  1492. 'escaped' => false,
  1493. )),
  1494. 183 =>
  1495. ezcDocumentRstToken::__set_state(array(
  1496. 'type' => 4,
  1497. 'content' => '/',
  1498. 'line' => 28,
  1499. 'position' => 16,
  1500. 'escaped' => false,
  1501. )),
  1502. 184 =>
  1503. ezcDocumentRstToken::__set_state(array(
  1504. 'type' => 5,
  1505. 'content' => 'images/spade',
  1506. 'line' => 28,
  1507. 'position' => 17,
  1508. 'escaped' => false,
  1509. )),
  1510. 185 =>
  1511. ezcDocumentRstToken::__set_state(array(
  1512. 'type' => 4,
  1513. 'content' => '.',
  1514. 'line' => 28,
  1515. 'position' => 29,
  1516. 'escaped' => false,
  1517. )),
  1518. 186 =>
  1519. ezcDocumentRstToken::__set_state(array(
  1520. 'type' => 5,
  1521. 'content' => 'png',
  1522. 'line' => 28,
  1523. 'position' => 30,
  1524. 'escaped' => false,
  1525. )),
  1526. 187 =>
  1527. ezcDocumentRstToken::__set_state(array(
  1528. 'type' => 2,
  1529. 'content' => '
  1530. ',
  1531. 'line' => 28,
  1532. 'position' => 33,
  1533. 'escaped' => false,
  1534. )),
  1535. 188 =>
  1536. ezcDocumentRstToken::__set_state(array(
  1537. 'type' => 1,
  1538. 'content' => ' ',
  1539. 'line' => 29,
  1540. 'position' => 1,
  1541. 'escaped' => false,
  1542. )),
  1543. 189 =>
  1544. ezcDocumentRstToken::__set_state(array(
  1545. 'type' => 4,
  1546. 'content' => ':',
  1547. 'line' => 29,
  1548. 'position' => 4,
  1549. 'escaped' => false,
  1550. )),
  1551. 190 =>
  1552. ezcDocumentRstToken::__set_state(array(
  1553. 'type' => 5,
  1554. 'content' => 'height',
  1555. 'line' => 29,
  1556. 'position' => 5,
  1557. 'escaped' => false,
  1558. )),
  1559. 191 =>
  1560. ezcDocumentRstToken::__set_state(array(
  1561. 'type' => 4,
  1562. 'content' => ':',
  1563. 'line' => 29,
  1564. 'position' => 11,
  1565. 'escaped' => false,
  1566. )),
  1567. 192 =>
  1568. ezcDocumentRstToken::__set_state(array(
  1569. 'type' => 1,
  1570. 'content' => ' ',
  1571. 'line' => 29,
  1572. 'position' => 12,
  1573. 'escaped' => false,
  1574. )),
  1575. 193 =>
  1576. ezcDocumentRstToken::__set_state(array(
  1577. 'type' => 5,
  1578. 'content' => '11',
  1579. 'line' => 29,
  1580. 'position' => 13,
  1581. 'escaped' => false,
  1582. )),
  1583. 194 =>
  1584. ezcDocumentRstToken::__set_state(array(
  1585. 'type' => 2,
  1586. 'content' => '
  1587. ',
  1588. 'line' => 29,
  1589. 'position' => 15,
  1590. 'escaped' => false,
  1591. )),
  1592. 195 =>
  1593. ezcDocumentRstToken::__set_state(array(
  1594. 'type' => 1,
  1595. 'content' => ' ',
  1596. 'line' => 30,
  1597. 'position' => 1,
  1598. 'escaped' => false,
  1599. )),
  1600. 196 =>
  1601. ezcDocumentRstToken::__set_state(array(
  1602. 'type' => 4,
  1603. 'content' => ':',
  1604. 'line' => 30,
  1605. 'position' => 4,
  1606. 'escaped' => false,
  1607. )),
  1608. 197 =>
  1609. ezcDocumentRstToken::__set_state(array(
  1610. 'type' => 5,
  1611. 'content' => 'width',
  1612. 'line' => 30,
  1613. 'position' => 5,
  1614. 'escaped' => false,
  1615. )),
  1616. 198 =>
  1617. ezcDocumentRstToken::__set_state(array(
  1618. 'type' => 4,
  1619. 'content' => ':',
  1620. 'line' => 30,
  1621. 'position' => 10,
  1622. 'escaped' => false,
  1623. )),
  1624. 199 =>
  1625. ezcDocumentRstToken::__set_state(array(
  1626. 'type' => 1,
  1627. 'content' => ' ',
  1628. 'line' => 30,
  1629. 'position' => 11,
  1630. 'escaped' => false,
  1631. )),
  1632. 200 =>
  1633. ezcDocumentRstToken::__set_state(array(
  1634. 'type' => 5,
  1635. 'content' => '11',
  1636. 'line' => 30,
  1637. 'position' => 12,
  1638. 'escaped' => false,
  1639. )),
  1640. 201 =>
  1641. ezcDocumentRstToken::__set_state(array(
  1642. 'type' => 2,
  1643. 'content' => '
  1644. ',
  1645. 'line' => 30,
  1646. 'position' => 14,
  1647. 'escaped' => false,
  1648. )),
  1649. 202 =>
  1650. ezcDocumentRstToken::__set_state(array(
  1651. 'type' => 2,
  1652. 'content' => '
  1653. ',
  1654. 'line' => 31,
  1655. 'position' => 1,
  1656. 'escaped' => false,
  1657. )),
  1658. 203 =>
  1659. ezcDocumentRstToken::__set_state(array(
  1660. 'type' => 4,
  1661. 'content' => '*',
  1662. 'line' => 32,
  1663. 'position' => 1,
  1664. 'escaped' => false,
  1665. )),
  1666. 204 =>
  1667. ezcDocumentRstToken::__set_state(array(
  1668. 'type' => 1,
  1669. 'content' => ' ',
  1670. 'line' => 32,
  1671. 'position' => 2,
  1672. 'escaped' => false,
  1673. )),
  1674. 205 =>
  1675. ezcDocumentRstToken::__set_state(array(
  1676. 'type' => 4,
  1677. 'content' => '|',
  1678. 'line' => 32,
  1679. 'position' => 3,
  1680. 'escaped' => false,
  1681. )),
  1682. 206 =>
  1683. ezcDocumentRstToken::__set_state(array(
  1684. 'type' => 5,
  1685. 'content' => 'Red light',
  1686. 'line' => 32,
  1687. 'position' => 4,
  1688. 'escaped' => false,
  1689. )),
  1690. 207 =>
  1691. ezcDocumentRstToken::__set_state(array(
  1692. 'type' => 4,
  1693. 'content' => '|',
  1694. 'line' => 32,
  1695. 'position' => 13,
  1696. 'escaped' => false,
  1697. )),
  1698. 208 =>
  1699. ezcDocumentRstToken::__set_state(array(
  1700. 'type' => 1,
  1701. 'content' => ' ',
  1702. 'line' => 32,
  1703. 'position' => 14,
  1704. 'escaped' => false,
  1705. )),
  1706. 209 =>
  1707. ezcDocumentRstToken::__set_state(array(
  1708. 'type' => 5,
  1709. 'content' => 'means stop',
  1710. 'line' => 32,
  1711. 'position' => 15,
  1712. 'escaped' => false,
  1713. )),
  1714. 210 =>
  1715. ezcDocumentRstToken::__set_state(array(
  1716. 'type' => 4,
  1717. 'content' => '.',
  1718. 'line' => 32,
  1719. 'position' => 25,
  1720. 'escaped' => false,
  1721. )),
  1722. 211 =>
  1723. ezcDocumentRstToken::__set_state(array(
  1724. 'type' => 2,
  1725. 'content' => '
  1726. ',
  1727. 'line' => 32,
  1728. 'position' => 26,
  1729. 'escaped' => false,
  1730. )),
  1731. 212 =>
  1732. ezcDocumentRstToken::__set_state(array(
  1733. 'type' => 4,
  1734. 'content' => '*',
  1735. 'line' => 33,
  1736. 'position' => 1,
  1737. 'escaped' => false,
  1738. )),
  1739. 213 =>
  1740. ezcDocumentRstToken::__set_state(array(
  1741. 'type' => 1,
  1742. 'content' => ' ',
  1743. 'line' => 33,
  1744. 'position' => 2,
  1745. 'escaped' => false,
  1746. )),
  1747. 214 =>
  1748. ezcDocumentRstToken::__set_state(array(
  1749. 'type' => 4,
  1750. 'content' => '|',
  1751. 'line' => 33,
  1752. 'position' => 3,
  1753. 'escaped' => false,
  1754. )),
  1755. 215 =>
  1756. ezcDocumentRstToken::__set_state(array(
  1757. 'type' => 5,
  1758. 'content' => 'Green light',
  1759. 'line' => 33,
  1760. 'position' => 4,
  1761. 'escaped' => false,
  1762. )),
  1763. 216 =>
  1764. ezcDocumentRstToken::__set_state(array(
  1765. 'type' => 4,
  1766. 'content' => '|',
  1767. 'line' => 33,
  1768. 'position' => 15,
  1769. 'escaped' => false,
  1770. )),
  1771. 217 =>
  1772. ezcDocumentRstToken::__set_state(array(
  1773. 'type' => 1,
  1774. 'content' => ' ',
  1775. 'line' => 33,
  1776. 'position' => 16,
  1777. 'escaped' => false,
  1778. )),
  1779. 218 =>
  1780. ezcDocumentRstToken::__set_state(array(
  1781. 'type' => 5,
  1782. 'content' => 'means go',
  1783. 'line' => 33,
  1784. 'position' => 17,
  1785. 'escaped' => false,
  1786. )),
  1787. 219 =>
  1788. ezcDocumentRstToken::__set_state(array(
  1789. 'type' => 4,
  1790. 'content' => '.',
  1791. 'line' => 33,
  1792. 'position' => 25,
  1793. 'escaped' => false,
  1794. )),
  1795. 220 =>
  1796. ezcDocumentRstToken::__set_state(array(
  1797. 'type' => 2,
  1798. 'content' => '
  1799. ',
  1800. 'line' => 33,
  1801. 'position' => 26,
  1802. 'escaped' => false,
  1803. )),
  1804. 221 =>
  1805. ezcDocumentRstToken::__set_state(array(
  1806. 'type' => 4,
  1807. 'content' => '*',
  1808. 'line' => 34,
  1809. 'position' => 1,
  1810. 'escaped' => false,
  1811. )),
  1812. 222 =>
  1813. ezcDocumentRstToken::__set_state(array(
  1814. 'type' => 1,
  1815. 'content' => ' ',
  1816. 'line' => 34,
  1817. 'position' => 2,
  1818. 'escaped' => false,
  1819. )),
  1820. 223 =>
  1821. ezcDocumentRstToken::__set_state(array(
  1822. 'type' => 4,
  1823. 'content' => '|',
  1824. 'line' => 34,
  1825. 'position' => 3,
  1826. 'escaped' => false,
  1827. )),
  1828. 224 =>
  1829. ezcDocumentRstToken::__set_state(array(
  1830. 'type' => 5,
  1831. 'content' => 'Yellow light',
  1832. 'line' => 34,
  1833. 'position' => 4,
  1834. 'escaped' => false,
  1835. )),
  1836. 225 =>
  1837. ezcDocumentRstToken::__set_state(array(
  1838. 'type' => 4,
  1839. 'content' => '|',
  1840. 'line' => 34,
  1841. 'position' => 16,
  1842. 'escaped' => false,
  1843. )),
  1844. 226 =>
  1845. ezcDocumentRstToken::__set_state(array(
  1846. 'type' => 1,
  1847. 'content' => ' ',
  1848. 'line' => 34,
  1849. 'position' => 17,
  1850. 'escaped' => false,
  1851. )),
  1852. 227 =>
  1853. ezcDocumentRstToken::__set_state(array(
  1854. 'type' => 5,
  1855. 'content' => 'means go really fast',
  1856. 'line' => 34,
  1857. 'position' => 18,
  1858. 'escaped' => false,
  1859. )),
  1860. 228 =>
  1861. ezcDocumentRstToken::__set_state(array(
  1862. 'type' => 4,
  1863. 'content' => '.',
  1864. 'line' => 34,
  1865. 'position' => 38,
  1866. 'escaped' => false,
  1867. )),
  1868. 229 =>
  1869. ezcDocumentRstToken::__set_state(array(
  1870. 'type' => 2,
  1871. 'content' => '
  1872. ',
  1873. 'line' => 34,
  1874. 'position' => 39,
  1875. 'escaped' => false,
  1876. )),
  1877. 230 =>
  1878. ezcDocumentRstToken::__set_state(array(
  1879. 'type' => 2,
  1880. 'content' => '
  1881. ',
  1882. 'line' => 35,
  1883. 'position' => 1,
  1884. 'escaped' => false,
  1885. )),
  1886. 231 =>
  1887. ezcDocumentRstToken::__set_state(array(
  1888. 'type' => 4,
  1889. 'content' => '..',
  1890. 'line' => 36,
  1891. 'position' => 1,
  1892. 'escaped' => false,
  1893. )),
  1894. 232 =>
  1895. ezcDocumentRstToken::__set_state(array(
  1896. 'type' => 1,
  1897. 'content' => ' ',
  1898. 'line' => 36,
  1899. 'position' => 3,
  1900. 'escaped' => false,
  1901. )),
  1902. 233 =>
  1903. ezcDocumentRstToken::__set_state(array(
  1904. 'type' => 4,
  1905. 'content' => '|',
  1906. 'line' => 36,
  1907. 'position' => 4,
  1908. 'escaped' => false,
  1909. )),
  1910. 234 =>
  1911. ezcDocumentRstToken::__set_state(array(
  1912. 'type' => 5,
  1913. 'content' => 'Red light',
  1914. 'line' => 36,
  1915. 'position' => 5,
  1916. 'escaped' => false,
  1917. )),
  1918. 235 =>
  1919. ezcDocumentRstToken::__set_state(array(
  1920. 'type' => 4,
  1921. 'content' => '|',
  1922. 'line' => 36,
  1923. 'position' => 14,
  1924. 'escaped' => false,
  1925. )),
  1926. 236 =>
  1927. ezcDocumentRstToken::__set_state(array(
  1928. 'type' => 1,
  1929. 'content' => ' ',
  1930. 'line' => 36,
  1931. 'position' => 15,
  1932. 'escaped' => false,
  1933. )),
  1934. 237 =>
  1935. ezcDocumentRstToken::__set_state(array(
  1936. 'type' => 5,
  1937. 'content' => 'image',
  1938. 'line' => 36,
  1939. 'position' => 19,
  1940. 'escaped' => false,
  1941. )),
  1942. 238 =>
  1943. ezcDocumentRstToken::__set_state(array(
  1944. 'type' => 4,
  1945. 'content' => '::',
  1946. 'line' => 36,
  1947. 'position' => 24,
  1948. 'escaped' => false,
  1949. )),
  1950. 239 =>
  1951. ezcDocumentRstToken::__set_state(array(
  1952. 'type' => 1,
  1953. 'content' => ' ',
  1954. 'line' => 36,
  1955. 'position' => 26,
  1956. 'escaped' => false,
  1957. )),
  1958. 240 =>
  1959. ezcDocumentRstToken::__set_state(array(
  1960. 'type' => 5,
  1961. 'content' => 'red',
  1962. 'line' => 36,
  1963. 'position' => 27,
  1964. 'escaped' => false,
  1965. )),
  1966. 241 =>
  1967. ezcDocumentRstToken::__set_state(array(
  1968. 'type' => 4,
  1969. 'content' => '_',
  1970. 'line' => 36,
  1971. 'position' => 30,
  1972. 'escaped' => false,
  1973. )),
  1974. 242 =>
  1975. ezcDocumentRstToken::__set_state(array(
  1976. 'type' => 5,
  1977. 'content' => 'light',
  1978. 'line' => 36,
  1979. 'position' => 31,
  1980. 'escaped' => false,
  1981. )),
  1982. 243 =>
  1983. ezcDocumentRstToken::__set_state(array(
  1984. 'type' => 4,
  1985. 'content' => '.',
  1986. 'line' => 36,
  1987. 'position' => 36,
  1988. 'escaped' => false,
  1989. )),
  1990. 244 =>
  1991. ezcDocumentRstToken::__set_state(array(
  1992. 'type' => 5,
  1993. 'content' => 'png',
  1994. 'line' => 36,
  1995. 'position' => 37,
  1996. 'escaped' => false,
  1997. )),
  1998. 245 =>
  1999. ezcDocumentRstToken::__set_state(array(
  2000. 'type' => 2,
  2001. 'content' => '
  2002. ',
  2003. 'line' => 36,
  2004. 'position' => 40,
  2005. 'escaped' => false,
  2006. )),
  2007. 246 =>
  2008. ezcDocumentRstToken::__set_state(array(
  2009. 'type' => 4,
  2010. 'content' => '..',
  2011. 'line' => 37,
  2012. 'position' => 1,
  2013. 'escaped' => false,
  2014. )),
  2015. 247 =>
  2016. ezcDocumentRstToken::__set_state(array(
  2017. 'type' => 1,
  2018. 'content' => ' ',
  2019. 'line' => 37,
  2020. 'position' => 3,
  2021. 'escaped' => false,
  2022. )),
  2023. 248 =>
  2024. ezcDocumentRstToken::__set_state(array(
  2025. 'type' => 4,
  2026. 'content' => '|',
  2027. 'line' => 37,
  2028. 'position' => 4,
  2029. 'escaped' => false,
  2030. )),
  2031. 249 =>
  2032. ezcDocumentRstToken::__set_state(array(
  2033. 'type' => 5,
  2034. 'content' => 'Green light',
  2035. 'line' => 37,
  2036. 'position' => 5,
  2037. 'escaped' => false,
  2038. )),
  2039. 250 =>
  2040. ezcDocumentRstToken::__set_state(array(
  2041. 'type' => 4,
  2042. 'content' => '|',
  2043. 'line' => 37,
  2044. 'position' => 16,
  2045. 'escaped' => false,
  2046. )),
  2047. 251 =>
  2048. ezcDocumentRstToken::__set_state(array(
  2049. 'type' => 1,
  2050. 'content' => ' ',
  2051. 'line' => 37,
  2052. 'position' => 17,
  2053. 'escaped' => false,
  2054. )),
  2055. 252 =>
  2056. ezcDocumentRstToken::__set_state(array(
  2057. 'type' => 5,
  2058. 'content' => 'image',
  2059. 'line' => 37,
  2060. 'position' => 19,
  2061. 'escaped' => false,
  2062. )),
  2063. 253 =>
  2064. ezcDocumentRstToken::__set_state(array(
  2065. 'type' => 4,
  2066. 'content' => '::',
  2067. 'line' => 37,
  2068. 'position' => 24,
  2069. 'escaped' => false,
  2070. )),
  2071. 254 =>
  2072. ezcDocumentRstToken::__set_state(array(
  2073. 'type' => 1,
  2074. 'content' => ' ',
  2075. 'line' => 37,
  2076. 'position' => 26,
  2077. 'escaped' => false,
  2078. )),
  2079. 255 =>
  2080. ezcDocumentRstToken::__set_state(array(
  2081. 'type' => 5,
  2082. 'content' => 'green',
  2083. 'line' => 37,
  2084. 'position' => 27,
  2085. 'escaped' => false,
  2086. )),
  2087. 256 =>
  2088. ezcDocumentRstToken::__set_state(array(
  2089. 'type' => 4,
  2090. 'content' => '_',
  2091. 'line' => 37,
  2092. 'position' => 32,
  2093. 'escaped' => false,
  2094. )),
  2095. 257 =>
  2096. ezcDocumentRstToken::__set_state(array(
  2097. 'type' => 5,
  2098. 'content' => 'light',
  2099. 'line' => 37,
  2100. 'position' => 33,
  2101. 'escaped' => false,
  2102. )),
  2103. 258 =>
  2104. ezcDocumentRstToken::__set_state(array(
  2105. 'type' => 4,
  2106. 'content' => '.',
  2107. 'line' => 37,
  2108. 'position' => 38,
  2109. 'escaped' => false,
  2110. )),
  2111. 259 =>
  2112. ezcDocumentRstToken::__set_state(array(
  2113. 'type' => 5,
  2114. 'content' => 'png',
  2115. 'line' => 37,
  2116. 'position' => 39,
  2117. 'escaped' => false,
  2118. )),
  2119. 260 =>
  2120. ezcDocumentRstToken::__set_state(array(
  2121. 'type' => 2,
  2122. 'content' => '
  2123. ',
  2124. 'line' => 37,
  2125. 'position' => 42,
  2126. 'escaped' => false,
  2127. )),
  2128. 261 =>
  2129. ezcDocumentRstToken::__set_state(array(
  2130. 'type' => 4,
  2131. 'content' => '..',
  2132. 'line' => 38,
  2133. 'position' => 1,
  2134. 'escaped' => false,
  2135. )),
  2136. 262 =>
  2137. ezcDocumentRstToken::__set_state(array(
  2138. 'type' => 1,
  2139. 'content' => ' ',
  2140. 'line' => 38,
  2141. 'position' => 3,
  2142. 'escaped' => false,
  2143. )),
  2144. 263 =>
  2145. ezcDocumentRstToken::__set_state(array(
  2146. 'type' => 4,
  2147. 'content' => '|',
  2148. 'line' => 38,
  2149. 'position' => 4,
  2150. 'escaped' => false,
  2151. )),
  2152. 264 =>
  2153. ezcDocumentRstToken::__set_state(array(
  2154. 'type' => 5,
  2155. 'content' => 'Yellow light',
  2156. 'line' => 38,
  2157. 'position' => 5,
  2158. 'escaped' => false,
  2159. )),
  2160. 265 =>
  2161. ezcDocumentRstToken::__set_state(array(
  2162. 'type' => 4,
  2163. 'content' => '|',
  2164. 'line' => 38,
  2165. 'position' => 17,
  2166. 'escaped' => false,
  2167. )),
  2168. 266 =>
  2169. ezcDocumentRstToken::__set_state(array(
  2170. 'type' => 1,
  2171. 'content' => ' ',
  2172. 'line' => 38,
  2173. 'position' => 18,
  2174. 'escaped' => false,
  2175. )),
  2176. 267 =>
  2177. ezcDocumentRstToken::__set_state(array(
  2178. 'type' => 5,
  2179. 'content' => 'image',
  2180. 'line' => 38,
  2181. 'position' => 19,
  2182. 'escaped' => false,
  2183. )),
  2184. 268 =>
  2185. ezcDocumentRstToken::__set_state(array(
  2186. 'type' => 4,
  2187. 'content' => '::',
  2188. 'line' => 38,
  2189. 'position' => 24,
  2190. 'escaped' => false,
  2191. )),
  2192. 269 =>
  2193. ezcDocumentRstToken::__set_state(array(
  2194. 'type' => 1,
  2195. 'content' => ' ',
  2196. 'line' => 38,
  2197. 'position' => 26,
  2198. 'escaped' => false,
  2199. )),
  2200. 270 =>
  2201. ezcDocumentRstToken::__set_state(array(
  2202. 'type' => 5,
  2203. 'content' => 'yellow',
  2204. 'line' => 38,
  2205. 'position' => 27,
  2206. 'escaped' => false,
  2207. )),
  2208. 271 =>
  2209. ezcDocumentRstToken::__set_state(array(
  2210. 'type' => 4,
  2211. 'content' => '_',
  2212. 'line' => 38,
  2213. 'position' => 33,
  2214. 'escaped' => false,
  2215. )),
  2216. 272 =>
  2217. ezcDocumentRstToken::__set_state(array(
  2218. 'type' => 5,
  2219. 'content' => 'light',
  2220. 'line' => 38,
  2221. 'position' => 34,
  2222. 'escaped' => false,
  2223. )),
  2224. 273 =>
  2225. ezcDocumentRstToken::__set_state(array(
  2226. 'type' => 4,
  2227. 'content' => '.',
  2228. 'line' => 38,
  2229. 'position' => 39,
  2230. 'escaped' => false,
  2231. )),
  2232. 274 =>
  2233. ezcDocumentRstToken::__set_state(array(
  2234. 'type' => 5,
  2235. 'content' => 'png',
  2236. 'line' => 38,
  2237. 'position' => 40,
  2238. 'escaped' => false,
  2239. )),
  2240. 275 =>
  2241. ezcDocumentRstToken::__set_state(array(
  2242. 'type' => 2,
  2243. 'content' => '
  2244. ',
  2245. 'line' => 38,
  2246. 'position' => 43,
  2247. 'escaped' => false,
  2248. )),
  2249. 276 =>
  2250. ezcDocumentRstToken::__set_state(array(
  2251. 'type' => 2,
  2252. 'content' => '
  2253. ',
  2254. 'line' => 39,
  2255. 'position' => 1,
  2256. 'escaped' => false,
  2257. )),
  2258. 277 =>
  2259. ezcDocumentRstToken::__set_state(array(
  2260. 'type' => 4,
  2261. 'content' => '|',
  2262. 'line' => 40,
  2263. 'position' => 1,
  2264. 'escaped' => false,
  2265. )),
  2266. 278 =>
  2267. ezcDocumentRstToken::__set_state(array(
  2268. 'type' => 4,
  2269. 'content' => '-',
  2270. 'line' => 40,
  2271. 'position' => 2,
  2272. 'escaped' => false,
  2273. )),
  2274. 279 =>
  2275. ezcDocumentRstToken::__set_state(array(
  2276. 'type' => 4,
  2277. 'content' => '>',
  2278. 'line' => 40,
  2279. 'position' => 3,
  2280. 'escaped' => false,
  2281. )),
  2282. 280 =>
  2283. ezcDocumentRstToken::__set_state(array(
  2284. 'type' => 4,
  2285. 'content' => '<',
  2286. 'line' => 40,
  2287. 'position' => 4,
  2288. 'escaped' => false,
  2289. )),
  2290. 281 =>
  2291. ezcDocumentRstToken::__set_state(array(
  2292. 'type' => 4,
  2293. 'content' => '-',
  2294. 'line' => 40,
  2295. 'position' => 5,
  2296. 'escaped' => false,
  2297. )),
  2298. 282 =>
  2299. ezcDocumentRstToken::__set_state(array(
  2300. 'type' => 4,
  2301. 'content' => '|',
  2302. 'line' => 40,
  2303. 'position' => 6,
  2304. 'escaped' => false,
  2305. )),
  2306. 283 =>
  2307. ezcDocumentRstToken::__set_state(array(
  2308. 'type' => 1,
  2309. 'content' => ' ',
  2310. 'line' => 40,
  2311. 'position' => 7,
  2312. 'escaped' => false,
  2313. )),
  2314. 284 =>
  2315. ezcDocumentRstToken::__set_state(array(
  2316. 'type' => 5,
  2317. 'content' => 'is the official symbol of POEE',
  2318. 'line' => 40,
  2319. 'position' => 8,
  2320. 'escaped' => false,
  2321. )),
  2322. 285 =>
  2323. ezcDocumentRstToken::__set_state(array(
  2324. 'type' => 4,
  2325. 'content' => '_',
  2326. 'line' => 40,
  2327. 'position' => 38,
  2328. 'escaped' => false,
  2329. )),
  2330. 286 =>
  2331. ezcDocumentRstToken::__set_state(array(
  2332. 'type' => 4,
  2333. 'content' => '.',
  2334. 'line' => 40,
  2335. 'position' => 39,
  2336. 'escaped' => false,
  2337. )),
  2338. 287 =>
  2339. ezcDocumentRstToken::__set_state(array(
  2340. 'type' => 2,
  2341. 'content' => '
  2342. ',
  2343. 'line' => 40,
  2344. 'position' => 40,
  2345. 'escaped' => false,
  2346. )),
  2347. 288 =>
  2348. ezcDocumentRstToken::__set_state(array(
  2349. 'type' => 2,
  2350. 'content' => '
  2351. ',
  2352. 'line' => 41,
  2353. 'position' => 1,
  2354. 'escaped' => false,
  2355. )),
  2356. 289 =>
  2357. ezcDocumentRstToken::__set_state(array(
  2358. 'type' => 4,
  2359. 'content' => '..',
  2360. 'line' => 42,
  2361. 'position' => 1,
  2362. 'escaped' => false,
  2363. )),
  2364. 290 =>
  2365. ezcDocumentRstToken::__set_state(array(
  2366. 'type' => 1,
  2367. 'content' => ' ',
  2368. 'line' => 42,
  2369. 'position' => 3,
  2370. 'escaped' => false,
  2371. )),
  2372. 291 =>
  2373. ezcDocumentRstToken::__set_state(array(
  2374. 'type' => 4,
  2375. 'content' => '|',
  2376. 'line' => 42,
  2377. 'position' => 4,
  2378. 'escaped' => false,
  2379. )),
  2380. 292 =>
  2381. ezcDocumentRstToken::__set_state(array(
  2382. 'type' => 4,
  2383. 'content' => '-',
  2384. 'line' => 42,
  2385. 'position' => 5,
  2386. 'escaped' => false,
  2387. )),
  2388. 293 =>
  2389. ezcDocumentRstToken::__set_state(array(
  2390. 'type' => 4,
  2391. 'content' => '>',
  2392. 'line' => 42,
  2393. 'position' => 6,
  2394. 'escaped' => false,
  2395. )),
  2396. 294 =>
  2397. ezcDocumentRstToken::__set_state(array(
  2398. 'type' => 4,
  2399. 'content' => '<',
  2400. 'line' => 42,
  2401. 'position' => 7,
  2402. 'escaped' => false,
  2403. )),
  2404. 295 =>
  2405. ezcDocumentRstToken::__set_state(array(
  2406. 'type' => 4,
  2407. 'content' => '-',
  2408. 'line' => 42,
  2409. 'position' => 8,
  2410. 'escaped' => false,
  2411. )),
  2412. 296 =>
  2413. ezcDocumentRstToken::__set_state(array(
  2414. 'type' => 4,
  2415. 'content' => '|',
  2416. 'line' => 42,
  2417. 'position' => 9,
  2418. 'escaped' => false,
  2419. )),
  2420. 297 =>
  2421. ezcDocumentRstToken::__set_state(array(
  2422. 'type' => 1,
  2423. 'content' => ' ',
  2424. 'line' => 42,
  2425. 'position' => 10,
  2426. 'escaped' => false,
  2427. )),
  2428. 298 =>
  2429. ezcDocumentRstToken::__set_state(array(
  2430. 'type' => 5,
  2431. 'content' => 'image',
  2432. 'line' => 42,
  2433. 'position' => 11,
  2434. 'escaped' => false,
  2435. )),
  2436. 299 =>
  2437. ezcDocumentRstToken::__set_state(array(
  2438. 'type' => 4,
  2439. 'content' => '::',
  2440. 'line' => 42,
  2441. 'position' => 16,
  2442. 'escaped' => false,
  2443. )),
  2444. 300 =>
  2445. ezcDocumentRstToken::__set_state(array(
  2446. 'type' => 1,
  2447. 'content' => ' ',
  2448. 'line' => 42,
  2449. 'position' => 18,
  2450. 'escaped' => false,
  2451. )),
  2452. 301 =>
  2453. ezcDocumentRstToken::__set_state(array(
  2454. 'type' => 5,
  2455. 'content' => 'discord',
  2456. 'line' => 42,
  2457. 'position' => 19,
  2458. 'escaped' => false,
  2459. )),
  2460. 302 =>
  2461. ezcDocumentRstToken::__set_state(array(
  2462. 'type' => 4,
  2463. 'content' => '.',
  2464. 'line' => 42,
  2465. 'position' => 26,
  2466. 'escaped' => false,
  2467. )),
  2468. 303 =>
  2469. ezcDocumentRstToken::__set_state(array(
  2470. 'type' => 5,
  2471. 'content' => 'png',
  2472. 'line' => 42,
  2473. 'position' => 27,
  2474. 'escaped' => false,
  2475. )),
  2476. 304 =>
  2477. ezcDocumentRstToken::__set_state(array(
  2478. 'type' => 2,
  2479. 'content' => '
  2480. ',
  2481. 'line' => 42,
  2482. 'position' => 30,
  2483. 'escaped' => false,
  2484. )),
  2485. 305 =>
  2486. ezcDocumentRstToken::__set_state(array(
  2487. 'type' => 4,
  2488. 'content' => '..',
  2489. 'line' => 43,
  2490. 'position' => 1,
  2491. 'escaped' => false,
  2492. )),
  2493. 306 =>
  2494. ezcDocumentRstToken::__set_state(array(
  2495. 'type' => 1,
  2496. 'content' => ' ',
  2497. 'line' => 43,
  2498. 'position' => 3,
  2499. 'escaped' => false,
  2500. )),
  2501. 307 =>
  2502. ezcDocumentRstToken::__set_state(array(
  2503. 'type' => 4,
  2504. 'content' => '_',
  2505. 'line' => 43,
  2506. 'position' => 4,
  2507. 'escaped' => false,
  2508. )),
  2509. 308 =>
  2510. ezcDocumentRstToken::__set_state(array(
  2511. 'type' => 5,
  2512. 'content' => 'POEE',
  2513. 'line' => 43,
  2514. 'position' => 5,
  2515. 'escaped' => false,
  2516. )),
  2517. 309 =>
  2518. ezcDocumentRstToken::__set_state(array(
  2519. 'type' => 4,
  2520. 'content' => ':',
  2521. 'line' => 43,
  2522. 'position' => 9,
  2523. 'escaped' => false,
  2524. )),
  2525. 310 =>
  2526. ezcDocumentRstToken::__set_state(array(
  2527. 'type' => 1,
  2528. 'content' => ' ',
  2529. 'line' => 43,
  2530. 'position' => 10,
  2531. 'escaped' => false,
  2532. )),
  2533. 311 =>
  2534. ezcDocumentRstToken::__set_state(array(
  2535. 'type' => 5,
  2536. 'content' => 'http',
  2537. 'line' => 43,
  2538. 'position' => 11,
  2539. 'escaped' => false,
  2540. )),
  2541. 312 =>
  2542. ezcDocumentRstToken::__set_state(array(
  2543. 'type' => 4,
  2544. 'content' => ':',
  2545. 'line' => 43,
  2546. 'position' => 15,
  2547. 'escaped' => false,
  2548. )),
  2549. 313 =>
  2550. ezcDocumentRstToken::__set_state(array(
  2551. 'type' => 4,
  2552. 'content' => '//',
  2553. 'line' => 43,
  2554. 'position' => 16,
  2555. 'escaped' => false,
  2556. )),
  2557. 314 =>
  2558. ezcDocumentRstToken::__set_state(array(
  2559. 'type' => 5,
  2560. 'content' => 'www',
  2561. 'line' => 43,
  2562. 'position' => 18,
  2563. 'escaped' => false,
  2564. )),
  2565. 315 =>
  2566. ezcDocumentRstToken::__set_state(array(
  2567. 'type' => 4,
  2568. 'content' => '.',
  2569. 'line' => 43,
  2570. 'position' => 21,
  2571. 'escaped' => false,
  2572. )),
  2573. 316 =>
  2574. ezcDocumentRstToken::__set_state(array(
  2575. 'type' => 5,
  2576. 'content' => 'poee',
  2577. 'line' => 43,
  2578. 'position' => 22,
  2579. 'escaped' => false,
  2580. )),
  2581. 317 =>
  2582. ezcDocumentRstToken::__set_state(array(
  2583. 'type' => 4,
  2584. 'content' => '.',
  2585. 'line' => 43,
  2586. 'position' => 26,
  2587. 'escaped' => false,
  2588. )),
  2589. 318 =>
  2590. ezcDocumentRstToken::__set_state(array(
  2591. 'type' => 5,
  2592. 'content' => 'org/',
  2593. 'line' => 43,
  2594. 'position' => 27,
  2595. 'escaped' => false,
  2596. )),
  2597. 319 =>
  2598. ezcDocumentRstToken::__set_state(array(
  2599. 'type' => 2,
  2600. 'content' => '
  2601. ',
  2602. 'line' => 43,
  2603. 'position' => 31,
  2604. 'escaped' => false,
  2605. )),
  2606. 320 =>
  2607. ezcDocumentRstToken::__set_state(array(
  2608. 'type' => 2,
  2609. 'content' => '
  2610. ',
  2611. 'line' => 44,
  2612. 'position' => 1,
  2613. 'escaped' => false,
  2614. )),
  2615. 321 =>
  2616. ezcDocumentRstToken::__set_state(array(
  2617. 'type' => 4,
  2618. 'content' => '|',
  2619. 'line' => 45,
  2620. 'position' => 1,
  2621. 'escaped' => false,
  2622. )),
  2623. 322 =>
  2624. ezcDocumentRstToken::__set_state(array(
  2625. 'type' => 5,
  2626. 'content' => 'RST',
  2627. 'line' => 45,
  2628. 'position' => 2,
  2629. 'escaped' => false,
  2630. )),
  2631. 323 =>
  2632. ezcDocumentRstToken::__set_state(array(
  2633. 'type' => 4,
  2634. 'content' => '|',
  2635. 'line' => 45,
  2636. 'position' => 5,
  2637. 'escaped' => false,
  2638. )),
  2639. 324 =>
  2640. ezcDocumentRstToken::__set_state(array(
  2641. 'type' => 1,
  2642. 'content' => ' ',
  2643. 'line' => 45,
  2644. 'position' => 6,
  2645. 'escaped' => false,
  2646. )),
  2647. 325 =>
  2648. ezcDocumentRstToken::__set_state(array(
  2649. 'type' => 5,
  2650. 'content' => 'is a little annoying to type over and over, especially',
  2651. 'line' => 45,
  2652. 'position' => 7,
  2653. 'escaped' => false,
  2654. )),
  2655. 326 =>
  2656. ezcDocumentRstToken::__set_state(array(
  2657. 'type' => 2,
  2658. 'content' => '
  2659. ',
  2660. 'line' => 45,
  2661. 'position' => 61,
  2662. 'escaped' => false,
  2663. )),
  2664. 327 =>
  2665. ezcDocumentRstToken::__set_state(array(
  2666. 'type' => 5,
  2667. 'content' => 'when writing about',
  2668. 'line' => 46,
  2669. 'position' => 1,
  2670. 'escaped' => false,
  2671. )),
  2672. 328 =>
  2673. ezcDocumentRstToken::__set_state(array(
  2674. 'type' => 1,
  2675. 'content' => ' ',
  2676. 'line' => 46,
  2677. 'position' => 19,
  2678. 'escaped' => false,
  2679. )),
  2680. 329 =>
  2681. ezcDocumentRstToken::__set_state(array(
  2682. 'type' => 4,
  2683. 'content' => '|',
  2684. 'line' => 46,
  2685. 'position' => 20,
  2686. 'escaped' => false,
  2687. )),
  2688. 330 =>
  2689. ezcDocumentRstToken::__set_state(array(
  2690. 'type' => 5,
  2691. 'content' => 'RST',
  2692. 'line' => 46,
  2693. 'position' => 21,
  2694. 'escaped' => false,
  2695. )),
  2696. 331 =>
  2697. ezcDocumentRstToken::__set_state(array(
  2698. 'type' => 4,
  2699. 'content' => '|',
  2700. 'line' => 46,
  2701. 'position' => 24,
  2702. 'escaped' => false,
  2703. )),
  2704. 332 =>
  2705. ezcDocumentRstToken::__set_state(array(
  2706. 'type' => 1,
  2707. 'content' => ' ',
  2708. 'line' => 46,
  2709. 'position' => 25,
  2710. 'escaped' => false,
  2711. )),
  2712. 333 =>
  2713. ezcDocumentRstToken::__set_state(array(
  2714. 'type' => 5,
  2715. 'content' => 'itself, and spelling out the',
  2716. 'line' => 46,
  2717. 'position' => 26,
  2718. 'escaped' => false,
  2719. )),
  2720. 334 =>
  2721. ezcDocumentRstToken::__set_state(array(
  2722. 'type' => 2,
  2723. 'content' => '
  2724. ',
  2725. 'line' => 46,
  2726. 'position' => 54,
  2727. 'escaped' => false,
  2728. )),
  2729. 335 =>
  2730. ezcDocumentRstToken::__set_state(array(
  2731. 'type' => 5,
  2732. 'content' => 'bicapitalized word',
  2733. 'line' => 47,
  2734. 'position' => 1,
  2735. 'escaped' => false,
  2736. )),
  2737. 336 =>
  2738. ezcDocumentRstToken::__set_state(array(
  2739. 'type' => 1,
  2740. 'content' => ' ',
  2741. 'line' => 47,
  2742. 'position' => 19,
  2743. 'escaped' => false,
  2744. )),
  2745. 337 =>
  2746. ezcDocumentRstToken::__set_state(array(
  2747. 'type' => 4,
  2748. 'content' => '|',
  2749. 'line' => 47,
  2750. 'position' => 20,
  2751. 'escaped' => false,
  2752. )),
  2753. 338 =>
  2754. ezcDocumentRstToken::__set_state(array(
  2755. 'type' => 5,
  2756. 'content' => 'RST',
  2757. 'line' => 47,
  2758. 'position' => 21,
  2759. 'escaped' => false,
  2760. )),
  2761. 339 =>
  2762. ezcDocumentRstToken::__set_state(array(
  2763. 'type' => 4,
  2764. 'content' => '|',
  2765. 'line' => 47,
  2766. 'position' => 24,
  2767. 'escaped' => false,
  2768. )),
  2769. 340 =>
  2770. ezcDocumentRstToken::__set_state(array(
  2771. 'type' => 1,
  2772. 'content' => ' ',
  2773. 'line' => 47,
  2774. 'position' => 25,
  2775. 'escaped' => false,
  2776. )),
  2777. 341 =>
  2778. ezcDocumentRstToken::__set_state(array(
  2779. 'type' => 5,
  2780. 'content' => 'every time isn',
  2781. 'line' => 47,
  2782. 'position' => 26,
  2783. 'escaped' => false,
  2784. )),
  2785. 342 =>
  2786. ezcDocumentRstToken::__set_state(array(
  2787. 'type' => 4,
  2788. 'content' => '\'',
  2789. 'line' => 47,
  2790. 'position' => 40,
  2791. 'escaped' => false,
  2792. )),
  2793. 343 =>
  2794. ezcDocumentRstToken::__set_state(array(
  2795. 'type' => 5,
  2796. 'content' => 't really necessary for',
  2797. 'line' => 47,
  2798. 'position' => 41,
  2799. 'escaped' => false,
  2800. )),
  2801. 344 =>
  2802. ezcDocumentRstToken::__set_state(array(
  2803. 'type' => 2,
  2804. 'content' => '
  2805. ',
  2806. 'line' => 47,
  2807. 'position' => 63,
  2808. 'escaped' => false,
  2809. )),
  2810. 345 =>
  2811. ezcDocumentRstToken::__set_state(array(
  2812. 'type' => 4,
  2813. 'content' => '|',
  2814. 'line' => 48,
  2815. 'position' => 1,
  2816. 'escaped' => false,
  2817. )),
  2818. 346 =>
  2819. ezcDocumentRstToken::__set_state(array(
  2820. 'type' => 5,
  2821. 'content' => 'RST',
  2822. 'line' => 48,
  2823. 'position' => 2,
  2824. 'escaped' => false,
  2825. )),
  2826. 347 =>
  2827. ezcDocumentRstToken::__set_state(array(
  2828. 'type' => 4,
  2829. 'content' => '|',
  2830. 'line' => 48,
  2831. 'position' => 5,
  2832. 'escaped' => false,
  2833. )),
  2834. 348 =>
  2835. ezcDocumentRstToken::__set_state(array(
  2836. 'type' => 1,
  2837. 'content' => ' ',
  2838. 'line' => 48,
  2839. 'position' => 6,
  2840. 'escaped' => false,
  2841. )),
  2842. 349 =>
  2843. ezcDocumentRstToken::__set_state(array(
  2844. 'type' => 5,
  2845. 'content' => 'source readability',
  2846. 'line' => 48,
  2847. 'position' => 7,
  2848. 'escaped' => false,
  2849. )),
  2850. 350 =>
  2851. ezcDocumentRstToken::__set_state(array(
  2852. 'type' => 4,
  2853. 'content' => '.',
  2854. 'line' => 48,
  2855. 'position' => 25,
  2856. 'escaped' => false,
  2857. )),
  2858. 351 =>
  2859. ezcDocumentRstToken::__set_state(array(
  2860. 'type' => 2,
  2861. 'content' => '
  2862. ',
  2863. 'line' => 48,
  2864. 'position' => 26,
  2865. 'escaped' => false,
  2866. )),
  2867. 352 =>
  2868. ezcDocumentRstToken::__set_state(array(
  2869. 'type' => 2,
  2870. 'content' => '
  2871. ',
  2872. 'line' => 49,
  2873. 'position' => 1,
  2874. 'escaped' => false,
  2875. )),
  2876. 353 =>
  2877. ezcDocumentRstToken::__set_state(array(
  2878. 'type' => 4,
  2879. 'content' => '..',
  2880. 'line' => 50,
  2881. 'position' => 1,
  2882. 'escaped' => false,
  2883. )),
  2884. 354 =>
  2885. ezcDocumentRstToken::__set_state(array(
  2886. 'type' => 1,
  2887. 'content' => ' ',
  2888. 'line' => 50,
  2889. 'position' => 3,
  2890. 'escaped' => false,
  2891. )),
  2892. 355 =>
  2893. ezcDocumentRstToken::__set_state(array(
  2894. 'type' => 4,
  2895. 'content' => '|',
  2896. 'line' => 50,
  2897. 'position' => 4,
  2898. 'escaped' => false,
  2899. )),
  2900. 356 =>
  2901. ezcDocumentRstToken::__set_state(array(
  2902. 'type' => 5,
  2903. 'content' => 'RST',
  2904. 'line' => 50,
  2905. 'position' => 5,
  2906. 'escaped' => false,
  2907. )),
  2908. 357 =>
  2909. ezcDocumentRstToken::__set_state(array(
  2910. 'type' => 4,
  2911. 'content' => '|',
  2912. 'line' => 50,
  2913. 'position' => 8,
  2914. 'escaped' => false,
  2915. )),
  2916. 358 =>
  2917. ezcDocumentRstToken::__set_state(array(
  2918. 'type' => 1,
  2919. 'content' => ' ',
  2920. 'line' => 50,
  2921. 'position' => 9,
  2922. 'escaped' => false,
  2923. )),
  2924. 359 =>
  2925. ezcDocumentRstToken::__set_state(array(
  2926. 'type' => 5,
  2927. 'content' => 'replace',
  2928. 'line' => 50,
  2929. 'position' => 10,
  2930. 'escaped' => false,
  2931. )),
  2932. 360 =>
  2933. ezcDocumentRstToken::__set_state(array(
  2934. 'type' => 4,
  2935. 'content' => '::',
  2936. 'line' => 50,
  2937. 'position' => 17,
  2938. 'escaped' => false,
  2939. )),
  2940. 361 =>
  2941. ezcDocumentRstToken::__set_state(array(
  2942. 'type' => 1,
  2943. 'content' => ' ',
  2944. 'line' => 50,
  2945. 'position' => 19,
  2946. 'escaped' => false,
  2947. )),
  2948. 362 =>
  2949. ezcDocumentRstToken::__set_state(array(
  2950. 'type' => 5,
  2951. 'content' => 'reStructuredText',
  2952. 'line' => 50,
  2953. 'position' => 20,
  2954. 'escaped' => false,
  2955. )),
  2956. 363 =>
  2957. ezcDocumentRstToken::__set_state(array(
  2958. 'type' => 4,
  2959. 'content' => '_',
  2960. 'line' => 50,
  2961. 'position' => 36,
  2962. 'escaped' => false,
  2963. )),
  2964. 364 =>
  2965. ezcDocumentRstToken::__set_state(array(
  2966. 'type' => 2,
  2967. 'content' => '
  2968. ',
  2969. 'line' => 50,
  2970. 'position' => 37,
  2971. 'escaped' => false,
  2972. )),
  2973. 365 =>
  2974. ezcDocumentRstToken::__set_state(array(
  2975. 'type' => 4,
  2976. 'content' => '..',
  2977. 'line' => 51,
  2978. 'position' => 1,
  2979. 'escaped' => false,
  2980. )),
  2981. 366 =>
  2982. ezcDocumentRstToken::__set_state(array(
  2983. 'type' => 1,
  2984. 'content' => ' ',
  2985. 'line' => 51,
  2986. 'position' => 3,
  2987. 'escaped' => false,
  2988. )),
  2989. 367 =>
  2990. ezcDocumentRstToken::__set_state(array(
  2991. 'type' => 4,
  2992. 'content' => '_',
  2993. 'line' => 51,
  2994. 'position' => 4,
  2995. 'escaped' => false,
  2996. )),
  2997. 368 =>
  2998. ezcDocumentRstToken::__set_state(array(
  2999. 'type' => 5,
  3000. 'content' => 'reStructuredText',
  3001. 'line' => 51,
  3002. 'position' => 5,
  3003. 'escaped' => false,
  3004. )),
  3005. 369 =>
  3006. ezcDocumentRstToken::__set_state(array(
  3007. 'type' => 4,
  3008. 'content' => ':',
  3009. 'line' => 51,
  3010. 'position' => 21,
  3011. 'escaped' => false,
  3012. )),
  3013. 370 =>
  3014. ezcDocumentRstToken::__set_state(array(
  3015. 'type' => 1,
  3016. 'content' => ' ',
  3017. 'line' => 51,
  3018. 'position' => 22,
  3019. 'escaped' => false,
  3020. )),
  3021. 371 =>
  3022. ezcDocumentRstToken::__set_state(array(
  3023. 'type' => 5,
  3024. 'content' => 'http',
  3025. 'line' => 51,
  3026. 'position' => 23,
  3027. 'escaped' => false,
  3028. )),
  3029. 372 =>
  3030. ezcDocumentRstToken::__set_state(array(
  3031. 'type' => 4,
  3032. 'content' => ':',
  3033. 'line' => 51,
  3034. 'position' => 27,
  3035. 'escaped' => false,
  3036. )),
  3037. 373 =>
  3038. ezcDocumentRstToken::__set_state(array(
  3039. 'type' => 4,
  3040. 'content' => '//',
  3041. 'line' => 51,
  3042. 'position' => 28,
  3043. 'escaped' => false,
  3044. )),
  3045. 374 =>
  3046. ezcDocumentRstToken::__set_state(array(
  3047. 'type' => 5,
  3048. 'content' => 'docutils',
  3049. 'line' => 51,
  3050. 'position' => 30,
  3051. 'escaped' => false,
  3052. )),
  3053. 375 =>
  3054. ezcDocumentRstToken::__set_state(array(
  3055. 'type' => 4,
  3056. 'content' => '.',
  3057. 'line' => 51,
  3058. 'position' => 38,
  3059. 'escaped' => false,
  3060. )),
  3061. 376 =>
  3062. ezcDocumentRstToken::__set_state(array(
  3063. 'type' => 5,
  3064. 'content' => 'sourceforge',
  3065. 'line' => 51,
  3066. 'position' => 39,
  3067. 'escaped' => false,
  3068. )),
  3069. 377 =>
  3070. ezcDocumentRstToken::__set_state(array(
  3071. 'type' => 4,
  3072. 'content' => '.',
  3073. 'line' => 51,
  3074. 'position' => 50,
  3075. 'escaped' => false,
  3076. )),
  3077. 378 =>
  3078. ezcDocumentRstToken::__set_state(array(
  3079. 'type' => 5,
  3080. 'content' => 'net/rst',
  3081. 'line' => 51,
  3082. 'position' => 51,
  3083. 'escaped' => false,
  3084. )),
  3085. 379 =>
  3086. ezcDocumentRstToken::__set_state(array(
  3087. 'type' => 4,
  3088. 'content' => '.',
  3089. 'line' => 51,
  3090. 'position' => 58,
  3091. 'escaped' => false,
  3092. )),
  3093. 380 =>
  3094. ezcDocumentRstToken::__set_state(array(
  3095. 'type' => 5,
  3096. 'content' => 'html',
  3097. 'line' => 51,
  3098. 'position' => 59,
  3099. 'escaped' => false,
  3100. )),
  3101. 381 =>
  3102. ezcDocumentRstToken::__set_state(array(
  3103. 'type' => 2,
  3104. 'content' => '
  3105. ',
  3106. 'line' => 51,
  3107. 'position' => 63,
  3108. 'escaped' => false,
  3109. )),
  3110. 382 =>
  3111. ezcDocumentRstToken::__set_state(array(
  3112. 'type' => 2,
  3113. 'content' => '
  3114. ',
  3115. 'line' => 52,
  3116. 'position' => 1,
  3117. 'escaped' => false,
  3118. )),
  3119. 383 =>
  3120. ezcDocumentRstToken::__set_state(array(
  3121. 'type' => 5,
  3122. 'content' => 'But still, that',
  3123. 'line' => 53,
  3124. 'position' => 1,
  3125. 'escaped' => false,
  3126. )),
  3127. 384 =>
  3128. ezcDocumentRstToken::__set_state(array(
  3129. 'type' => 4,
  3130. 'content' => '\'',
  3131. 'line' => 53,
  3132. 'position' => 16,
  3133. 'escaped' => false,
  3134. )),
  3135. 385 =>
  3136. ezcDocumentRstToken::__set_state(array(
  3137. 'type' => 5,
  3138. 'content' => 's nothing compared to a name like',
  3139. 'line' => 53,
  3140. 'position' => 17,
  3141. 'escaped' => false,
  3142. )),
  3143. 386 =>
  3144. ezcDocumentRstToken::__set_state(array(
  3145. 'type' => 2,
  3146. 'content' => '
  3147. ',
  3148. 'line' => 53,
  3149. 'position' => 50,
  3150. 'escaped' => false,
  3151. )),
  3152. 387 =>
  3153. ezcDocumentRstToken::__set_state(array(
  3154. 'type' => 4,
  3155. 'content' => '|',
  3156. 'line' => 54,
  3157. 'position' => 1,
  3158. 'escaped' => false,
  3159. )),
  3160. 388 =>
  3161. ezcDocumentRstToken::__set_state(array(
  3162. 'type' => 5,
  3163. 'content' => 'j2ee-cas',
  3164. 'line' => 54,
  3165. 'position' => 2,
  3166. 'escaped' => false,
  3167. )),
  3168. 389 =>
  3169. ezcDocumentRstToken::__set_state(array(
  3170. 'type' => 4,
  3171. 'content' => '|',
  3172. 'line' => 54,
  3173. 'position' => 10,
  3174. 'escaped' => false,
  3175. )),
  3176. 390 =>
  3177. ezcDocumentRstToken::__set_state(array(
  3178. 'type' => 4,
  3179. 'content' => '__',
  3180. 'line' => 54,
  3181. 'position' => 11,
  3182. 'escaped' => false,
  3183. )),
  3184. 391 =>
  3185. ezcDocumentRstToken::__set_state(array(
  3186. 'type' => 4,
  3187. 'content' => '.',
  3188. 'line' => 54,
  3189. 'position' => 13,
  3190. 'escaped' => false,
  3191. )),
  3192. 392 =>
  3193. ezcDocumentRstToken::__set_state(array(
  3194. 'type' => 2,
  3195. 'content' => '
  3196. ',
  3197. 'line' => 54,
  3198. 'position' => 14,
  3199. 'escaped' => false,
  3200. )),
  3201. 393 =>
  3202. ezcDocumentRstToken::__set_state(array(
  3203. 'type' => 2,
  3204. 'content' => '
  3205. ',
  3206. 'line' => 55,
  3207. 'position' => 1,
  3208. 'escaped' => false,
  3209. )),
  3210. 394 =>
  3211. ezcDocumentRstToken::__set_state(array(
  3212. 'type' => 4,
  3213. 'content' => '..',
  3214. 'line' => 56,
  3215. 'position' => 1,
  3216. 'escaped' => false,
  3217. )),
  3218. 395 =>
  3219. ezcDocumentRstToken::__set_state(array(
  3220. 'type' => 1,
  3221. 'content' => ' ',
  3222. 'line' => 56,
  3223. 'position' => 3,
  3224. 'escaped' => false,
  3225. )),
  3226. 396 =>
  3227. ezcDocumentRstToken::__set_state(array(
  3228. 'type' => 4,
  3229. 'content' => '|',
  3230. 'line' => 56,
  3231. 'position' => 4,
  3232. 'escaped' => false,
  3233. )),
  3234. 397 =>
  3235. ezcDocumentRstToken::__set_state(array(
  3236. 'type' => 5,
  3237. 'content' => 'j2ee-cas',
  3238. 'line' => 56,
  3239. 'position' => 5,
  3240. 'escaped' => false,
  3241. )),
  3242. 398 =>
  3243. ezcDocumentRstToken::__set_state(array(
  3244. 'type' => 4,
  3245. 'content' => '|',
  3246. 'line' => 56,
  3247. 'position' => 13,
  3248. 'escaped' => false,
  3249. )),
  3250. 399 =>
  3251. ezcDocumentRstToken::__set_state(array(
  3252. 'type' => 1,
  3253. 'content' => ' ',
  3254. 'line' => 56,
  3255. 'position' => 14,
  3256. 'escaped' => false,
  3257. )),
  3258. 400 =>
  3259. ezcDocumentRstToken::__set_state(array(
  3260. 'type' => 5,
  3261. 'content' => 'replace',
  3262. 'line' => 56,
  3263. 'position' => 15,
  3264. 'escaped' => false,
  3265. )),
  3266. 401 =>
  3267. ezcDocumentRstToken::__set_state(array(
  3268. 'type' => 4,
  3269. 'content' => '::',
  3270. 'line' => 56,
  3271. 'position' => 22,
  3272. 'escaped' => false,
  3273. )),
  3274. 402 =>
  3275. ezcDocumentRstToken::__set_state(array(
  3276. 'type' => 2,
  3277. 'content' => '
  3278. ',
  3279. 'line' => 56,
  3280. 'position' => 24,
  3281. 'escaped' => false,
  3282. )),
  3283. 403 =>
  3284. ezcDocumentRstToken::__set_state(array(
  3285. 'type' => 1,
  3286. 'content' => ' ',
  3287. 'line' => 57,
  3288. 'position' => 1,
  3289. 'escaped' => false,
  3290. )),
  3291. 404 =>
  3292. ezcDocumentRstToken::__set_state(array(
  3293. 'type' => 5,
  3294. 'content' => 'the Java',
  3295. 'line' => 57,
  3296. 'position' => 4,
  3297. 'escaped' => false,
  3298. )),
  3299. 405 =>
  3300. ezcDocumentRstToken::__set_state(array(
  3301. 'type' => 1,
  3302. 'content' => ' ',
  3303. 'line' => 57,
  3304. 'position' => 12,
  3305. 'escaped' => false,
  3306. )),
  3307. 406 =>
  3308. ezcDocumentRstToken::__set_state(array(
  3309. 'type' => 4,
  3310. 'content' => '`',
  3311. 'line' => 57,
  3312. 'position' => 13,
  3313. 'escaped' => false,
  3314. )),
  3315. 407 =>
  3316. ezcDocumentRstToken::__set_state(array(
  3317. 'type' => 5,
  3318. 'content' => 'TM',
  3319. 'line' => 57,
  3320. 'position' => 14,
  3321. 'escaped' => false,
  3322. )),
  3323. 408 =>
  3324. ezcDocumentRstToken::__set_state(array(
  3325. 'type' => 4,
  3326. 'content' => '`',
  3327. 'line' => 57,
  3328. 'position' => 16,
  3329. 'escaped' => false,
  3330. )),
  3331. 409 =>
  3332. ezcDocumentRstToken::__set_state(array(
  3333. 'type' => 4,
  3334. 'content' => ':',
  3335. 'line' => 57,
  3336. 'position' => 17,
  3337. 'escaped' => false,
  3338. )),
  3339. 410 =>
  3340. ezcDocumentRstToken::__set_state(array(
  3341. 'type' => 5,
  3342. 'content' => 'super',
  3343. 'line' => 57,
  3344. 'position' => 18,
  3345. 'escaped' => false,
  3346. )),
  3347. 411 =>
  3348. ezcDocumentRstToken::__set_state(array(
  3349. 'type' => 4,
  3350. 'content' => ':',
  3351. 'line' => 57,
  3352. 'position' => 23,
  3353. 'escaped' => false,
  3354. )),
  3355. 412 =>
  3356. ezcDocumentRstToken::__set_state(array(
  3357. 'type' => 1,
  3358. 'content' => ' ',
  3359. 'line' => 57,
  3360. 'position' => 24,
  3361. 'escaped' => false,
  3362. )),
  3363. 413 =>
  3364. ezcDocumentRstToken::__set_state(array(
  3365. 'type' => 5,
  3366. 'content' => '2 Platform, Enterprise Edition Client',
  3367. 'line' => 57,
  3368. 'position' => 25,
  3369. 'escaped' => false,
  3370. )),
  3371. 414 =>
  3372. ezcDocumentRstToken::__set_state(array(
  3373. 'type' => 2,
  3374. 'content' => '
  3375. ',
  3376. 'line' => 57,
  3377. 'position' => 62,
  3378. 'escaped' => false,
  3379. )),
  3380. 415 =>
  3381. ezcDocumentRstToken::__set_state(array(
  3382. 'type' => 1,
  3383. 'content' => ' ',
  3384. 'line' => 58,
  3385. 'position' => 1,
  3386. 'escaped' => false,
  3387. )),
  3388. 416 =>
  3389. ezcDocumentRstToken::__set_state(array(
  3390. 'type' => 5,
  3391. 'content' => 'Access Services',
  3392. 'line' => 58,
  3393. 'position' => 4,
  3394. 'escaped' => false,
  3395. )),
  3396. 417 =>
  3397. ezcDocumentRstToken::__set_state(array(
  3398. 'type' => 2,
  3399. 'content' => '
  3400. ',
  3401. 'line' => 58,
  3402. 'position' => 19,
  3403. 'escaped' => false,
  3404. )),
  3405. 418 =>
  3406. ezcDocumentRstToken::__set_state(array(
  3407. 'type' => 4,
  3408. 'content' => '__',
  3409. 'line' => 59,
  3410. 'position' => 1,
  3411. 'escaped' => false,
  3412. )),
  3413. 419 =>
  3414. ezcDocumentRstToken::__set_state(array(
  3415. 'type' => 1,
  3416. 'content' => ' ',
  3417. 'line' => 59,
  3418. 'position' => 3,
  3419. 'escaped' => false,
  3420. )),
  3421. 420 =>
  3422. ezcDocumentRstToken::__set_state(array(
  3423. 'type' => 5,
  3424. 'content' => 'http',
  3425. 'line' => 59,
  3426. 'position' => 4,
  3427. 'escaped' => false,
  3428. )),
  3429. 421 =>
  3430. ezcDocumentRstToken::__set_state(array(
  3431. 'type' => 4,
  3432. 'content' => ':',
  3433. 'line' => 59,
  3434. 'position' => 8,
  3435. 'escaped' => false,
  3436. )),
  3437. 422 =>
  3438. ezcDocumentRstToken::__set_state(array(
  3439. 'type' => 4,
  3440. 'content' => '//',
  3441. 'line' => 59,
  3442. 'position' => 9,
  3443. 'escaped' => false,
  3444. )),
  3445. 423 =>
  3446. ezcDocumentRstToken::__set_state(array(
  3447. 'type' => 5,
  3448. 'content' => 'developer',
  3449. 'line' => 59,
  3450. 'position' => 11,
  3451. 'escaped' => false,
  3452. )),
  3453. 424 =>
  3454. ezcDocumentRstToken::__set_state(array(
  3455. 'type' => 4,
  3456. 'content' => '.',
  3457. 'line' => 59,
  3458. 'position' => 20,
  3459. 'escaped' => false,
  3460. )),
  3461. 425 =>
  3462. ezcDocumentRstToken::__set_state(array(
  3463. 'type' => 5,
  3464. 'content' => 'java',
  3465. 'line' => 59,
  3466. 'position' => 21,
  3467. 'escaped' => false,
  3468. )),
  3469. 426 =>
  3470. ezcDocumentRstToken::__set_state(array(
  3471. 'type' => 4,
  3472. 'content' => '.',
  3473. 'line' => 59,
  3474. 'position' => 25,
  3475. 'escaped' => false,
  3476. )),
  3477. 427 =>
  3478. ezcDocumentRstToken::__set_state(array(
  3479. 'type' => 5,
  3480. 'content' => 'sun',
  3481. 'line' => 59,
  3482. 'position' => 26,
  3483. 'escaped' => false,
  3484. )),
  3485. 428 =>
  3486. ezcDocumentRstToken::__set_state(array(
  3487. 'type' => 4,
  3488. 'content' => '.',
  3489. 'line' => 59,
  3490. 'position' => 29,
  3491. 'escaped' => false,
  3492. )),
  3493. 429 =>
  3494. ezcDocumentRstToken::__set_state(array(
  3495. 'type' => 5,
  3496. 'content' => 'com/developer/earlyAccess/',
  3497. 'line' => 59,
  3498. 'position' => 30,
  3499. 'escaped' => false,
  3500. )),
  3501. 430 =>
  3502. ezcDocumentRstToken::__set_state(array(
  3503. 'type' => 2,
  3504. 'content' => '
  3505. ',
  3506. 'line' => 59,
  3507. 'position' => 56,
  3508. 'escaped' => false,
  3509. )),
  3510. 431 =>
  3511. ezcDocumentRstToken::__set_state(array(
  3512. 'type' => 1,
  3513. 'content' => ' ',
  3514. 'line' => 60,
  3515. 'position' => 1,
  3516. 'escaped' => false,
  3517. )),
  3518. 432 =>
  3519. ezcDocumentRstToken::__set_state(array(
  3520. 'type' => 5,
  3521. 'content' => 'j2eecas/',
  3522. 'line' => 60,
  3523. 'position' => 4,
  3524. 'escaped' => false,
  3525. )),
  3526. 433 =>
  3527. ezcDocumentRstToken::__set_state(array(
  3528. 'type' => 2,
  3529. 'content' => '
  3530. ',
  3531. 'line' => 60,
  3532. 'position' => 12,
  3533. 'escaped' => false,
  3534. )),
  3535. 434 =>
  3536. ezcDocumentRstToken::__set_state(array(
  3537. 'type' => 2,
  3538. 'content' => '
  3539. ',
  3540. 'line' => 61,
  3541. 'position' => 1,
  3542. 'escaped' => false,
  3543. )),
  3544. 435 =>
  3545. ezcDocumentRstToken::__set_state(array(
  3546. 'type' => 2,
  3547. 'content' => '
  3548. ',
  3549. 'line' => 61,
  3550. 'position' => 1,
  3551. 'escaped' => false,
  3552. )),
  3553. 436 =>
  3554. ezcDocumentRstToken::__set_state(array(
  3555. 'type' => 6,
  3556. 'content' => NULL,
  3557. 'line' => 61,
  3558. 'position' => 1,
  3559. 'escaped' => false,
  3560. )),
  3561. );