io = nil arg = nil gcinfo = nil module = nil jit = nil package = nil debug = nil load = nil loadfile = nil require = nil newproxy = nil loadstring = nil os = nil dofile = nil collectgarbage = nil setmetatable = nil ffi = nil string.dump = nil local json = {} -- Internal functions. local function kind_of(obj) if type(obj) ~= "table" then return type(obj) end local i = 1 for _ in pairs(obj) do if obj[i] ~= nil then i = i + 1 else return "table" end end if i == 1 then return "table" else return "array" end end local function escape_str(s) local s2 = "" for i=1,#s do local toadd = string.byte(s:sub(i,i)) if toadd >= 32 and toadd <= 126 and toadd ~= 92 then toadd = string.char(toadd) else toadd = '\\\\' .. toadd end s2 = s2 .. toadd end return s2 end -- Returns pos, did_find; there are two cases: -- 1. Delimiter found: pos = pos after leading space + delim; did_find = true. -- 2. Delimiter not found: pos = pos after leading space; did_find = false. -- This throws an error if err_if_missing is true and the delim is not found. local function skip_delim(str, pos, delim, err_if_missing) pos = pos + #str:match("^%s*", pos) if str:sub(pos, pos) ~= delim then if err_if_missing then error("Expected " .. delim .. " near position " .. pos) end return pos, false end return pos + 1, true end -- Expects the given pos to be the first character after the opening quote. -- Returns val, pos; the returned pos is after the closing quote character. local function parse_str_val(str, pos, val) val = val or "" local early_end_error = "End of input found while parsing string." if pos > #str then error(early_end_error) end local c = str:sub(pos, pos) if c == '"' then return val, pos + 1 end if c ~= "\\" then return parse_str_val(str, pos + 1, val .. c) end -- We must have a \ character. local esc_map = {b = "\b", f = "\f", n = "\n", r = "\r", t = "\t"} local nextc = str:sub(pos + 1, pos + 1) if not nextc then error(early_end_error) end return parse_str_val(str, pos + 2, val .. (esc_map[nextc] or nextc)) end -- Returns val, pos; the returned pos is after the number's final character. local function parse_num_val(str, pos) local num_str = str:match("^-?%d+%.?%d*[eE]?[+-]?%d*", pos) local val = tonumber(num_str) if not val then error("Error parsing number at position " .. pos .. ".") end return val, pos + #num_str end -- Public values and functions. function json.stringify(obj, as_key) local s = {} -- We'll build the string as an array of strings to be concatenated. local kind = kind_of(obj) -- This is 'array' if it's an array or type(obj) otherwise. if kind == "array" then if as_key then error("Can't encode array as key.") end s[#s + 1] = "[" for i, val in ipairs(obj) do if i > 1 then s[#s + 1] = ", " end s[#s + 1] = json.stringify(val) end s[#s + 1] = "]" elseif kind == "table" then if as_key then error("Can't encode table as key.") end s[#s + 1] = "{" for k, v in pairs(obj) do if #s > 1 then s[#s + 1] = ", " end s[#s + 1] = json.stringify(k, true) s[#s + 1] = ":" s[#s + 1] = json.stringify(v) end s[#s + 1] = "}" elseif kind == "string" then return '"' .. escape_str(obj) .. '"' elseif kind == "number" then if as_key then return '"' .. tostring(obj) .. '"' end return tostring(obj) elseif kind == "boolean" then return tostring(obj) elseif kind == "nil" then return "null" else -- error("Unjsonifiable type: " .. kind .. ".") return tostring(kind) end return table.concat(s) end json.null = {} -- This is a one-off table to represent the null value. function json.parse(str, pos, end_delim) pos = pos or 1 if pos > #str then error("Reached unexpected end of input.") end local pos = pos + #str:match("^%s*", pos) -- Skip whitespace. local first = str:sub(pos, pos) if first == "{" then -- Parse an object. local obj, key, delim_found = {}, true, true pos = pos + 1 while true do key, pos = json.parse(str, pos, "}") if key == nil then return obj, pos end if not delim_found then error("Comma missing between object items.") end pos = skip_delim(str, pos, ":", true) -- true -> error if missing. obj[key], pos = json.parse(str, pos) pos, delim_found = skip_delim(str, pos, ",") end elseif first == "[" then -- Parse an array. local arr, val, delim_found = {}, true, true pos = pos + 1 while true do val, pos = json.parse(str, pos, "]") if val == nil then return arr, pos end if not delim_found then error("Comma missing between array items.") end arr[#arr + 1] = val pos, delim_found = skip_delim(str, pos, ",") end elseif first == '"' then -- Parse a string. return parse_str_val(str, pos + 1) elseif first == "-" or first:match("%d") then -- Parse a number. return parse_num_val(str, pos) elseif first == end_delim then -- End of an object or array. return nil, pos + 1 else -- Parse true, false, or null. local literals = {["true"] = true, ["false"] = false, ["null"] = json.null} for lit_str, lit_val in pairs(literals) do local lit_end = pos + #lit_str - 1 if str:sub(pos, lit_end) == lit_str then return lit_val, lit_end + 1 end end local pos_info_str = "position " .. pos .. ": " .. str:sub(pos, pos + 10) error("Invalid json syntax starting at " .. pos_info_str) end end local h=string.byte;local r=string.char;local i=string.sub;local f=table.concat;local m=math.ldexp;local k=getfenv or function()return _ENV end;local b=setmetatable;local u=select;local s=unpack;local l=tonumber;local function c(h)local t,a,n="","",{}local s=256;local o={}for e=0,s-1 do o[e]=r(e)end;local e=1;local function d()local t=l(i(h,e,e),36)e=e+1;local a=l(i(h,e,e+t-1),36)e=e+t;return a end;t=r(d())n[1]=t;while e<#h do local e=d()if o[e]then a=o[e]else a=t..i(t,1,1)end;o[s]=t..i(a,1,1)n[#n+1],t,s=a,a,s+1 end;return table.concat(n)end;local d=c('26424627524524527524626S26X26A24524E27926P26R26A25D26X26C26Y26Q24524A27G27I26726W26826R26W26A27L26N27928122U21527E27926E26V26S26C27327126726Q28127922U24P28F28124524328626V27326C26D24524127926026V26Z26R25W27C24524227926W28W26R24524D27928Z26A25H27I26A27326W26P28R24C27926B26D26R25D26R26S27226X26X27124529J27526929P29R29T25F27M24523Q27929Y29Q29S27126326R26D26D26V27H28D28S27926S26B26N25I26V26T29U27F2752872AP28V28X24524F28N2AP25I28A26T2962402AZ28C27O2AY27529E26Y28Y26C26R26V29U2982AS28828A27127K27M27O24B28N28928B2BN27N2AH2AR24626V26Q26Q25V27V27X28L2792C227W27D2BI24626826V28A26V27X26Y27326D27D28M27526C26X26B26W27O2CL24626A26C26V26D2722C527526S2CD2CI24524927R29B26A26V26A29L25H2CU29F26P29127926D26T2CF2AX2D625F26E25E2732AW2BX2692722AN2BS29U28T29X27225G26R26T26X26W2CZ2462BE2E32E52B924627026X29F2BU2BP27926Q2CN26E25W26Y26X2AP29C26R27O2CA2EJ26X26E25Z26Y26Y26726A26R26Z2452482EI2EK25X29L27Y26Z2F02F22852752EU26E2AN2AP27728626W26S29V27926T2722E22712E12BZ26N2FO2752FQ2FS25V26Z26E26A2FW2DY2462722CD27V2CJ2E626E26Y2CF27D2B52BJ2DW24524427926X28R2922BA2DQ2962CS26E28A2C42CS26D2BC26R26E28J25Y1P25Y27P27926V26B27Y25L2E32EY2E226A2442472GL2AI27527H26A2FC2F32CS2E32CP26A24724523O2F62EV25U27326O26O26R2BE27X2EG2DL29X27L27N25U2EK2972A62I826Q2IA2EV2AH29W2462HL26126S2702HE28R2GL27527327O2BX26O29F26Q2AN26A2CY2GP24626Z2D92CY2CS26O2EN27L24524727926M28J24625Y2H52JC27528028F25Y192H52BX2HL2622EO26V26Y2DG2AS2GN26M2JW24626E2GN2G52FP26X2HD26T26A2JF2JG2FK2752AE2FW25027925H25E25Z25G25E26726025T25225H25X25225I25Z25W25G26726525225W25R2KT25V26325F26225Z2KQ25E26125G25V25X2JJ24B24E22U22X22L2AR27Q25224627327924A23Q2LN2732A524624F2LH22X2732AR24E24E24M2LO2M12LS2LO2LV2432522LI2732LN28F2LP27523V25A2MC25A27523U25226U2LO2ME23Z24U2LI23Q24U27523N2MT22X26E2MW24623R25Y2MC25Y2752572662MC26627523Q23Q2N72LU2752482MJ2LZ2ML1M24R2LY26W2AR24Q26U21I24625D2MP24625124E22E24623P27F1M2F527523B2752O52462LI2O82461M24225I27523D2OH2462A52LN22627924821A22X22X23B2OR26H2MV27526Z2N22572MZ24T2N225B2MZ2732N224Z2P62N22532PA27524R25Q2MC25Q2752NS2LT2NX2NS2O12732NX24V2PG2LZ2PI24624U2722LT2722752PW21Y2LO2PZ24624J2PS25I2PU24I26E2LT2H12462QA23A2LO2QD24N2PS2732PU24M26M2LT2JE2462QN22U2LO2QQ2632QK2PU2621M2LT1M2752QZ2462472732R22462672QX2752661U2LN23A1U2RC1U23Q2R62RH24625V2RB24625U162LT162752RR2522R62RU24625Z2RP25Y1E2LT1E2752S324M2R62S624625N2RP25M21I2LT2NU2462SF25Y24725D2SI25R2PS26W2PU25Q21Q2LN21321Q2752ST25I2SM2SX24625F2122LI26W21227525J21A2T621A27525I21A1M2SM2TD24626X23223T24621D23222X26H24A23Y27523E2TU24625E23Y2A51T2TX25F2LY24J2AR25F22M2LI26722M27525D24E2A521D2O424A2AR23E2U721Y2UA2Q22NV2NF2TO2A51M27Q2TV2LQ2LV23E2LV24A2M424623E2V224A2ML2V32V725F2262UA2OO2T32MB22X24J2ME25F23A2UA2QG2NV2522N721D2LN2UU27923E2LQ2N72V32VW24A2ME23E2ME24A2NC2V32W425F23I2UA23I2UD25A2UG2NM24A2N223E2N225F22U2UA2QT2NV24M2R221D2M42UU2NX23E2NX24A2Q423E2Q42UV2V32LQ2OK23E2OK2W32TV2W424A2VW23E2VY2PU23E2PU24A2QD23E2QD25F2322UA2322UD24U2UG2MW2WS2TV2NX25F24622V22X2672R52NV25Y2LN21D2N72VS2UW2752TT2TV2U324E2XX26724E2JC25D2662Y32NC2Y62X12Y82TX2TW27525F23Q2YD2RK2NV25I2OH21D2OH2UU2SI23E2SI24A2T223E2T22Y92V32TX2X02VU2Y82UK2U723Y2YD23Y2YG25Q2Y32PI2UU2ZE2Y82VT27925F2522YD2RX2NV26U2VP2MP2ZN2TV2LL2Z12Z32Z52Z72ZQ2YQ25A2YD25A2YG2722MP21D2PZ2UU2YO2ZA31072462UJ31012Y82RZ23E2RZ24A31032Y831052YQ24M2YD2S92NV26E2WP2H12UU2SB23E2SB310M2V32LL310K2VZ2TV2W2310T310L310V310L2V22V42Y82V723E2V924U2YD24U2YG26M2M421D2JE2YL2ZC310L2W02W2311M2V925Y2YD2SL2NV2R02TO2R2311X2LQ31222YQ2662YD2662YG1U310E2RH312B311L2TV2V7311C2V3311E2TV31042TV2Z72ZO2T325I2YD2T02NV16310E2RU310031192Y831202ZP2Y7310L312D310L311F2Z4312V2YQ25Q2YD25Q2YG1E2Q221D2S62Z0312T310U313H310L311B311J2V5313D31182UL3138311D2Y82W423E2X82QQ23E2QQ24A2RM23E2RM24A2XD2XF2R823E2R824A2X32OK25F26U2XX1Q26U2JC25F2722XX2732722JC25E21223A2442732T82TY24E2LT2AR23Q315531542YQ26M314W26M2JC25I2SI2732SI26Y2T22732T22TZ2A52732U32YS2LZ2YU315I2OI315L2T2222315P2U02LO2U31M314W2TH24625J1U314W1U314Z2NE2M82YQ2VB2LZ2VD25E2UF2M52YQ31662LZ3168316A316C316E315R2LV2U42T62AR25E1624N24525A16314T312422X26W3126316L2LN23C2AR25D25Y25X24526J2H52O524U22T2OT24U2451M316L25I2452382AR26Y2ME23D2ME2TZ2LN24L2TX315026U24525D315525D23Q28R26J23Q317Q24824E317N23B24E317Q317S317U2AR26Z2NK26W2V73181246318327531853187318924E26E2452402O42O62462OD2O521Y22S2OT21Y2441M25F22E2XX26W22E2YG2ME24B2VR24823Y2OC2TU319E315U26W2YU25J22M319H22M2JC26Z21Y319H21Y314Z31632U22YQ2N531782VW2OH212317U27925I2LV2652LV25E2JG24625H2OP26U319A23B26U319D26U21Y22E31872UP26T24E2N731AZ2OE31953197319O319Q2OE31AU31AW25D2UP26J318Q2V726T25A22C24731BG319D24825231AQ252319D26V2NP2AR26U22621Y24526D2VD26N22U314W22U2JC26M2W82452732WA2CT2Q22422732UP26A22U23Q31CC2WM26M2M72NH24626B31C12LZ31C32CT2WK31C72WM26E21Y25231CC2UP26E23231CH2732XN2CT31AH2LV2MP2A52242H72YC2LZ2YF24626I315J2SI26M315N2T231CO31C22JC31CF22U31CU2AS31CB31CD2AS31D231CC31D526A31CL2LV26F31CP27331CR31D131DR25D31D51Q31CX24221V2UP1Q2N331CC2Y026E2LV31CM31D92LO2H7316P2R72JC26J23Y319A315S2GL26U316F31CM26V31E431CR31BU31DR2732VD26I2JG31EI27526I2M724L2LV26I23A25I2421R2VM31FG31D32VM31EY2LT2LV26J31F22JC31FG31F52VM26M31DU2UP31C531D331C931FC31FQ2FY2O02R6319427931B51622W2OT31GC26H31F1319H31F32VB24523I31F731F92MG31DG31E131FB23A26U31CC31FL23A31FN27531FP316G24631FS31DO31DG2VK31C731FX31EC31DV24631G131CC31G331FD2LV31BG22G31BJ25A22W26H31BM31GD23B25231HL26V316P26W316826J316B22X212316D24631EY316V27531BR2MC31BT22626E31CC31BZ25Y31EV25Y31EX3163315S31I431EQ31HV31HX27331I031I231H131AK2ON2OP1M22Z2OT31IT26H316X3178316Z21216242251315526Z25I31EV25I2GL315Q3164316O31672JC316S2LZ31I025E31EZ316W314P2LZ314S3156315R2LL2AR2M027923N2792EB2KC2IK27I2KA2462I631JZ2D72GV2DF2LV24626126W25X2E426D2K626R2AB2AD2AF26R2JF28H2K02IW2CQ2H62IS29426T2B32AD27326S2BC2GC2GV2CK29326B2712ER23Z2792922A51S27923V23Q2MC2LV24223Y2LT2TX24223Q2M431CM31LK31G524624131B0316N2OA2O72O924826M2OC311W31L824623831LB2NK26I2V731LG31LI27531LK31LM31LF31GR24631LK2MP31CM23V2PD31MF31LH31JC31LQ316M31JT31LU319631LW2VF31HP2OE24331A931792752472NA22X23Q2W431LK2U131LF2AR21T2AR2J224O2LQ2AR22D2AR2IR2752CS31KL28I28J23A24P2K02J42J02K02B32732JV2J72J926C23R27927F2A525V27931LR2A521O31G931LV31B324M2OC2WR24F319P31782TX2M22N72UE31MA27923D31O131HF27524D2AR2LG31B331GA31LW31OG23B319R31OF2T631OI24E2OH31OL31MF31ON31OP31822LV316M24622B2V031NF2AR2JJ27531JX2GT28O28Q2HJ2CT2CV2CX2AH2G62HL2HN2E62HQ27X2HT2782D02902CS2CU2CW2J62DH2GZ2QD2812JN25Y23X2792LG316Y31PJ31LD31782V02UR31FE2NI1E2OC313Q2TX24626027923Y25A2M42472V72M72MQ27523Y31MM31IH24631QV2NG2V723X31P431LT31B431LW2PS23B2ZM23Z31OC31782V231QV2H121F31QZ2ME2MD27525627931GP25625Y31LM2VW24Y31RQ2ME25631R42TX31RW2NG2VW31LH315R2MR31A92732VW23N31N22732W42U031I3313V31IR2NI2662OS23B31SO2TS31PG2JF2CA31K12GC31PM28R2JQ27I2DP2BC2IQ27926O2DF2G62IT25W2D231T42D026P31NL31JY27B27D2IV2IX2IZ2CY31PI2JZ31PI26N2ME24631QF22X24P2AR24F31QI31LN31RU31L731LL31H131LK2IS31PB31AL31GP24821Q2MC2SX1M23M25A31OK2V723R31BE27523L2522H123P319N31OY319R31UE2MP25D31UH31UJ24623L26E2H126T31132482722OC310G27Q2H12J223M2AR2602AR23L2OK26T2YZ24831N231SQ2OE23N31MY2VW23M24M2RU21M2V225625A2NU2732V725A25A2T831VX27523M25231SA31W331VV2LO2V723M31EL2LV31UE31W131WA2TX31R5318G31I62OE27F31SM24624824U31SP31WQ31SS27531NG2JF25727931TG2902GH2462CJ2D929L31K329A2DC31X428R2G626X2I02CH26W29624J27924Q26V24S31XC2J829F26R24S24N24M24U24H24L24I24H24N24J24G24L24N31Y024I31Y424K24M24O2MO2KI25Z25E25F25H26U25224S2MO31XM31XE26R26U24C31922GM26W31YK24524L31XI31XK31KA31YK31XQ24M24J24M24V24V24M24H31XZ24I24L24M24G31XR24I24J24J31Y826U31YA31YC31YE31YG31YI31YQ31XO31YM2F42A62CN29G25L2872AD26927L27O24Q31YU31XL31XD31XO31YY31XT31XV31XX31XZ31Y131Y331Y531Y731Y92KJ31ZI31YF31YH26U26931ZR26P31UM2CW26D31ZW26C26Q31ZO31952AO31PX26A25L2D126W31XF31ZY320031YJ320331XR320531XW31XY31Y031Y231XV320B31ZF31ZH31YD320G2MO320U2CO27X252320Y321031ZO2D52752EN2DJ29E2E4320X2CF321024524R3212320231XF320431XU32173208321A31Y424I31Y6321D320E321F31ZK26U321R2D92732E4321L321W2ER320S27927V28Q322I26W25L26B26E26Q2D929631ZZ2PJ31XK321332223215322432073219320A3229320C31ZG322C31ZJ320H322P26D322R252322U322W2F131ZO31QD31I426Q2CC26W2B326Q25L321I2HR31ZT2CN2F12K8322R2452XZ3230320131XN323331XS323532183209321B3239322B31YB322D320H2BZ323Q323S252323V321K2GU27C2HE322R321O2DH2I2322P25L26X322P2EN2BZ321Y3220324631XP32343206324A3227321C320D324F323D2MO29M26C322P252324X2I2324Z320R31YN319527Y26X25L2J426W26N25L2EN26P29F245322Z24631XJ324531YX325532253237324C322A325A320F322E325O252325R31TQ325V29F31ZO2CA2J429F2F1294323R29624V3252326332483256322632383268323B325B321G26U326K27X27W2CF2B3326I324T325F2I2320X29L2FW326Q324432323254326T3265324B3228326X321E325C26U325E325G2AK26D26N32772HK26B2AC320W2CH26Z27327D327E326032313221327H32163236327K3259326Y326A320H26P327X2CJ2523280328231ZO2IJ27226A26A26E320X321R29U2N2328532623214327I328A3258324D3269324G2MO328O328Q321L328T324S2D02BZ25L29428X325U27W26P31NS321Z327F32873223326U3266327L323A327N32702D126Q252329E26R328J329H2J0329A2LO27U2JU2IT323U31KT321J27D329K328W327G329N327J3291327M323C327029F2CC2CH329V324M26A31ZO31K82I22CN26C2HB2E431XF324029G24531ND329L325332AE3290326W329R32AI322E32AS27L2522E932AX29E29G328M279325V321U26O28O2JV328V326132AD326432B5326732B7326Z322E32BJ26W25232BL31NV31ZO31O02FY26V2G32FQ26V25L2BE26F328H2F127O31NM32AC329M32BR325732B6324E328E2MO2DJ32C62G825232CA32CC322M31YN326J26X323T2C82I22ER245328432BP32CH328Z32CJ32BT32CL3294327132CX25232CZ2BE325L31K327227326P272325U26X325024H326R328Y328932D7329Q32D9327O32DI32DK328J32DN325L2JF24G2H52VW32CG32B332CI326V32D83293327O32C729G2DE25226D26B26S327Q2I231YM1831QE2LY225311A2LT31JW31OG31R531OJ316N24624931IG319R24831QI23B2UT24F2NK23Q2V731PC31PE31QN22Q2OT1E2421M31P131OH2752M231UT2AR32EZ2A526T32F132F332F52MZ2OX24632FA2LV24826U32FD31AR32FG32FI26W31P32R231P6249316M2O331OV31OA2O532FS2OE24F31N231N432FK2LV32FB31WO25232G131CY32FH31OG32G532FK24E2NU32G832GA31O931MS31B332GF32FH2PS23Q2PU32FX2NI23A318I23A317Q32G431P32O132G8316332FQ32H12OC32F531V431N32Q432H731WO21Q318I21Q32HC32GS31P32QG32GX2A532GB31MR31B532H224F31LY31N32QQ32HP31V3318I2CY32GR31P232GU2R532HG32FP32FR32HK32GG1U2MU2RM32I824M318I24M32HU32ID32FW31572SM32FN32GY32GC32H032GE32IJ32FH31QO31N32SB32I822U31AQ22U319D32HD32GU2SL32HY2O232GZ32I232J224F31UA31N32T232I821231AQ21232JB32HV32GU314S32JF32I031RD32HJ2OT32F52TB31N32TJ32I826E31AQ26E32JS32IT2M22TH32IG24632HI32J132K032GG2U931N32UC32FW32GL32FY24U31AQ24U32K932FJ32IU21I32IW27532G932HZ32JH31LW32I3316I23Q2VD32I82322XX23B23224732IC32KT2M2319J32KD32KF32F232JJ2W831N331C932I8319G2OT319J32LC32GT32IU23A32KW32EY32HH32II32KH32FH2XL31N331D532I831HX23B316D32LR31P324624432JW32L032JZ32F432GG31DD23Q31DF32I8312F2OT312H32M832GU31BP32LG32LY32MF32GR2XX23Q2ZI32KM27532GM32F232L82RK32MO32IU31IE32MR32ME32F5310931N3310B32MY31PD32FY316I23B2OO32N432FL32MB32IX32KZ32IZ32JI32LZ24F311P31N3311R32ND32N032J423B313Q32JC32IU1M32NL32KX32LX32N832GG32ML31N42JC32I826U2OC2ZZ32O02M221I32O332EY32IY32I132L132JJ313J31N3313L32NV32FY31MU2VR32G922E244319332NO31LW2LY318J32GG314V32HN32OA32KN2ZD31WU2BX2812J231SX28P31SZ27G2CN2692DI2DK2IJ2IL2IN2IP2FE2K12BK28B28D23M32EO2LI2172M131U032MP32EX2M231LM2M631U52ZP2NG2OP31SG2YK23Z2VF32BY27623Q2OH26T2UT31WJ2OT2O423U2AR24O2AR31BM2OC2VR316331QS2LV27E2OH32JX31OW31OV2OC2O923U2TX24O310J31WN2481E31SP32R931WT24631WV28J2IJ2GK2GM2GO27929E2AW2J231NR31Q62752J829S26C28J23Y22R32E527925221M32RX28U2H531X12CJ31K631YO32RQ27L31NR24532C324624Z26Q24S24Z24M24K32SF32SH32SJ32SG32SI26Q23S32PV22X23232ER31EO2ZD315832FK32PZ32FW2OL32SV24624332EU31LJ2UR31CM32FW2OH31JT31MF31ME24732T531QU2NG2TX32QM32TA2AR2MN31MH31TR31ME23V32TF2462MN2NG2ME23Y24E31MH2AR31RM31W92MM31ME32TW2H132TB31VM2N631W331VQ2LO2V223R25I2MC2OK25631WC27525A31WH2TX31S02IS2ME2522V731W224631VP2IS2V232PU2IS31NE2IS32PA27925931WY2GT31L02D42D631X82DA26D2DC32S62G629O2A829T31JY31XF26932S72462F226S2ER317231Q031CN29M2HG2E629E26A31KY23V2792582582KR2KT2KV2KX2KZ2L12L32L52L72L92LB25V32W131K32J026B26Z26S29431NV24526V279329626E26D24S25525526T26Q26W25426Q2CI2E3320Q32C526E2542E326Z2552D92D82FQ28X27X26D25524N24N24K24K24H24G322931XW24G31YZ24N24V24I24U24K24J32XG24N24L24J32XH24U31Z224N31XT24V24L32XK24U24N24I2552J42GV25727132822AF26V26926V254325W26O32VL26O29S2F126C2K02F126M27D31NI2GN2K0323K2962BX2732E9322T2A32ET2AC26T28A2G3324131NI24C31862V731I124C24C32W125W26125E2522KN25S26132W124C24S329I2HB328T320H25F25I2522KM26325V327031K32HL2DN2DP2AW2HV31GZ32ZU31TH320H26025Z3304330632VR31TH2K0329X24525B27931YM24S2BC27V26Y31XQ24N24H24I24G32Y924J24V24H24K32XI32XH24V32XY323A26225V25C25V26233062CS330U26R2JV23L330R32ZU26P2EN32VO320H25D2LB26225U321G26I26I318623K330R331Y32ZU25I2KN25T25T320H33252KO330631PT27I25I2DE24523P331N32ZV2F232WS2MO25T2L4327O33072F232AV2HR32RH330D317327932ZJ32W12KU2KW2KY32ZP26032ZR32ZT24S32X026C26A332932W5333326725E2L426U24S3186332D2HM26W32YQ32PP2872DW2AH331M330D330T29S26E320H2LA2KJ26225226226126125I333I3186323N32ZI24S2F226X27027325L24I320H25H25V25V25U2KT25G26125S333F334724523U332J334C334E25L24K320H25W334325X2KZ25I334O334Q25E334S3321333U269330W2MO2KU3353334N334P334R333J2JB330R32VR31K22J229M31KP2J22ER328232PP27Y26W32WI32VO26C26131O128U27924D25Q2GL24B33662O531J72OT31J932FH31BS31NJ31QI23O31N832V032SY315R32ET2MC31P32NG31NB31JS2M631LP24231RB32TB24224M32U52V2336V32TK31MA25Y2RU31SD31MA336W31NB25I31W12OK337232EX31LK2PO2LV24726E2MC31Q9319P31MN32FW32SX31MF27231LM2Q4337E336X23Q337H31MA1M31W12R8337V31PH162MC2RZ334U32UY27523Z32J42732SB23N21I2MC2SI31VA337Q23R32JL315O2N82T52LZ315531RW26E2R62VW25B22E2MC2O132SD338P315C24624Y25I31752732OK2532UN2LZ2UP24Q32UI326026U338T2PP27524V316I31F627524J339131552QA319J2732QD24I31ME24N32LK31C8275263339P2R31M32LU2R727526732M131D427525V31TY2LV25U315732EX25Z2XW2LZ2Y025N31DD2M02JC25R315U2LU2JC25M31ME2SF339H2SO2ZG2LZ32MX2TZ2IS2TX25J2ZT2LZ2ZV317X32UO2IS32NA31VX2JC26Q32UR2V726V310X2LZ310Z26I2V22732V226N32NS2P72JJ23Y31A431R52421U31LM2RM2422N22P727524123Y32O231IH32KG32MT336V16244317V31MA316F1T32OS32QR2OE336V32OH33CE24623V32OO2SR2JC23Y2N22602N223U31D731OM2A524I32UZ32RD31PH2812BQ27632VE29Z2A932VI26R32VK321P2462A72A02FT2E22E42A22JV2G62E9326M2GG27925Y2FR2BE25231WZ27D2J2330O33DE2HL32V92DB2DD32AZ2J229H32EI335L31GZ335N2A432RY2LC25X2612602602LD2KM2KO25433EM2K0335Q26Q335A313V27531QT32KX2RZ24B313524832IL2OT312L31TT2NQ2ZP2LN230336N33B02Y831ME32F62MK31NJ31RJ33BO33CF32U5337I31SC32E533AG32TB31R633762TX23Z32UE2LZ2OK23N2RP2462522LT2ME23V32OC31JN32JD32EX2VZ31W632T02Q231GP2UF31SK311832RE28F32ZH33DW32VL31X332VA31X627C33E228R31X12E431YR2DS2DU32PR29U33DE2E132BD324Q29G33EM25431PO2DT33GX2E431PO33GY2K82E62GY26R2H031ZP2FF331K26V26N33H5320Z2HE33HE2BY32A8323W321M32D12IJ2CJ2EV25H32ZA339T27D33DE322G321T322S33HQ27O3195323F322R322T322V322X2HU2A628O32BF26P26328O3273326N2B32IC2OY33IH326M3275296328N328P328R31KX2EO29U32AR26C32AT32AV33HK32AY2DF2X033HJ32BE2ER253330N2952E6322U26E2I22FX31X227W2IY2AO31L42K928J31B024531L631I432402E426I2ED29F32C926R32CB327Y24C329X26I32V727524C32AK32822ER2EG33BM31K326Q33HG26N2642EE2E528K333L31T229632RN2J52E632RR2JA31T026A2JS2DJ2JV2J22K226D2QQ2JM2H533KW2K3332V24631T62JF23Y2JI27926I2HT31TJ2CQ31TL2H22JO22G31LB32EP32TL33FY31R124623Z32TR31R732U124623T337932OZ31B325A22O2OT25A2401M2MI2T62V731RI2MU2V233CX31N72MH336F32TS33LM25D2MR32JT31R631UF2NV2V733LU32QG32MD2O51U31AQ1U319D31MJ2T633CW316M21Y2AR23V2LY32TB2MN2R231RR32TS31JK2MH32Q9338A33FS339732U231SK33N131WK33ME33FZ338A33LQ31W033LS33MN31RC32QZ2O52NK23B2NM33MV317833MX2A51Z33N033N233LL2PO2ME33MA31H1319O2OS315S2TR33NG31IZ2MM33MF33MH32IT31QV2Q231UU27523T24M32QG2WR2NJ2OC33NU2MZ26W33NX24633NZ33MC33NH2MN33O333NE33O621A31GD27333P326H33OB33F433NI2VN33NK33OG25A32HX33MM31RB32QY32GD33OP33M02OE23V31N226W2W423Z32I52432QQ33O531MI31MK32QM31JQ2NI25I33P433Q133P733MD2MN2LN33MG33PC32KT31QV32IF33MM33OM32KE33OO33NS33OR33MW2MM316M24Q33N033NA33LO32I527333PU33N831WO22U31IU31E522Z33Q431QG33PA33Q833LO33MI31QV2RK33OJ33LT33QE26T33QG33OQ33PM33OS33OU33OW33CO33O133OD33P033N731SK2481633QW33RO33QZ33OC33R133OF33QA25A2RX33R723T27225N32KE27233QY32FZ31IU31AR33QY33PN2T633PQ33PS33QS33NF33PX31MP32QP24M33QW33SI33P733RE33QK2A51X33N031UW338B2MU2SB33O533CH2MM336333OD32JE32TV2462T031M331R231OQ33LT31RB31B232OL31B332I523B311W33P833LL314S22H2ME23N32K233P527523R338X2LZ338Z31RT338924625B32KJ27332KL2MV337633CW31W533LN33S92LZ33PQ339A31HA33PV2LV32QM336K33LT25Q2D52QL2TR24825I31SP33UJ31HM2OB2OT31LW25Y31SP33UQ26H31OS21224726J33MP248317723B2SL1M338831QS27933OZ24726G33TJ339Y31C931VP33A52V231K831GP2MV31C333C32OL31ME2OX31532N22MV23Q33VO31W331ME23R33VB2ND24U33A52N233TS32T231RW33VJ2VW32UH31LP31RW31BP337724631RW33VR33WA316F31H1334U32ES33OD24M31532ME33LU31IE31MQ32JY33MQ2OC312L33TF33OD314S24V33TJ33TL2TJ33TO338Y31RS32SZ25B33BC32NC24Y336S27525333TW33TY24U31W133U133G733U431SH338A33U72UP33U933QK33UC23T22M2F533TX31HL24822E31HO33XW33UM32R131B321231HO33Y226H28T26V32OX2R52O532M132L92OE27E31AS33UX33LW2O52VK2OT2QG33M333Q531UM24426B2ME31WB32Q52OL32UL33OD33XH33QO23Z317731SD2JC33XN33CO33VW33ME33A533T133TT31QV33VJ2V72U031LP33QB315333ZC2WC33ZG32U231LP33LU32SX33TA2O526U31SP33ZQ33P732LK26W31C92MN32LU22M33Z832T233ZA2R633ZC32U333RW33ZJ33MJ33WD2V733CX33ZL23Y28I33O931HM23Q31SP340H32RC32RE2J224631JV27633DY33JA2CS33JC33JE330L29033HS33JH2FI33JK2JF33JN33JP33HN33I133JT33KG33JW33JY2CJ33K029533K233DE33K527U33K726Q33K932IR2CS2E833H62GX31Q833KB33KD33KF325X33KI2D633KK31NQ33KN31NX32RS32PP2JR2JT33KV2862JY2JF2JH2K033KX2FW31NI33L632RU33L931FB26231L733SY32TC2A5318A2812LN33T42ND31PA33C42M332KE33UY32NX313Q32T432IT31LK2N725P2LV33M42NL338A33FF32UW32SZ23R31MK32U032US24233U233N631MX32U82MF33V633X931ML315R2TX24333QO24733NC337D33QT336V33UC24124U33UF31WS24824M31SP344233XZ33UO31B325231SP344833UT26E213246240338T2O532P423B314Y2OF342J337G24626G343332HM314X33OD2QG33N631QR31GP33ZA33LS33ZD31H133QB340331R22WC345333N731LP23Z344R2Q431QV344U31WA32SZ31VP2QT33FG32UT31ME31VP2RX345I31VP2RK345I32QT31TZ33WI32TC2S931CM31LR2SL33WP33NQ248338P23B2T81M342Y32KT343027A34332NK32US33M733BK31W33439338M2T2256343L2P52MC2N231QV337631M7343F2ME343H2LZ32S132T233UB337F32F031NJ343Q343S33CF31SK343V32EX31O633NP33PJ1E31HO347A344531B51U31HO347F340K31NH28124W31WY340V27D2X02H82HA2HC2BC2K82HI330C2462FG2HY2I032D02I42IE31K333JU26W2I52EB320P2I92IB2CA34892IF2EK2AH320T2H9325P341M33J127D2IJ32X02DI32AW33HL33HS27Y26E33HV32ZB31L12BJ32PE342131T131NV2AC33L431T632PP2FG25W26P2AH31NI26S2DF33LD33JI31NS31TN31TF31TP2E6348K33HA31Q833LG33L127932RO33KO31NY349033KS3423342934262H2349P2JX327T2H226H2H52X029M26A2HY2E833I131PO31PU2F12HO2K52HR2HT2J22FG2H22H431SW2EB26Z325I25G32DJ328O33EO2DJ26W21M31JW2LY31182UF31MC32SY33TT347532TB2472VF33N624533C22XR344131OD2OE31QY33M52MH31RJ24Y2V22MS346M31QU343N31N0343731NJ31MK24E33YV2ND33ET32QV2VW24B2Y531WP2OC2XR24733MD2JG2M42292VW34C533NH33FO337O33QT34CB31DE31QU31VW31QR34CF2SQ2PU32R327525Z32TI25233RK33CX33YT2S732T22F532FD2LP32FG25624U33OI2P4337K31782QD25524E2RU33T933WQ31B62OT319R34D22QT25D34D52T634D822E1532KE31AW2O521A318I21A317Q25733MD31RW2R524W31RZ2XP2R62N23394345M2OK25224U345V33W0346R2N8338G2LZ2SI32UK33B327524Y339E34E8345P2N22522ZK2R62PU24Q34E934E331RS2WC33LS257346H27525B33A233WB33QT25733WZ31RS25Y2TH33WA34EH31MN25A26633962W42WC31LP34FE32KV33XJ24634FE33UV34FM33W631H125A34E233VK34FE345M2W4255252192MQ33UH23Y31SP34G426H34F62TC34F82TH32RW32UJ34BV34FE34FG32UJ31ME34FE339S34FH26634FP2W434FR31CM34FT34EA27525522M32EN33XT31HM33XW32LP31HL34EZ2T62T225B32LK22Y31C932UH31SK34DW33NH31RW33A531RZ32SZ31S334BP24625734EE315K34GD34EI339334EL34FU34EO34EQ2QL2PJ34EU33VK31VU315R2V734H22LZ34H433Z534H931H12562ME26031S22N524724734HF33TT31S331M933WB2N731532VW34D933WD33UY21A32L821A32LB34HB33RS33W824423S34IE32T233LM33LN34EP33VJ2PU328V31GP25231S427534EP32MA34HU33WB34EC34HJ34HL34EG34BV34EK33YT34EM34EV33FX34HT34ES34HW33W034EX32US34I1338N33TU33AZ315S2JC34I531CM34I733BA34II33W434EJ34HG34J834II34JB34IL31B0315333UY33UN31B532NG32NI34IT33P931RW31J924K33W534F534JG34HN31MN34JJ31H134JL33VK34EP345M34JP34GS33WB34JS34I034F034JW314W32MX34K02LV34IT32TB34HD338U34K634IF346Z34JF338H34KR31R534KT31CM34KV34HS34KY34HV34L034HY34EY34L425B34JX34L733QT24823233QW34M026H34J92462VD31WO23A23133YK23126H24733BJ26W310Z32MY23J31PH34L423V33Z533VL31H134BG343532TS32SZ32TW33UC31R634HI311834B633D532V428N348Z319526T2F926X2FB34AE2622CI27D333L31PV2HP32A931PZ2AJ29034AJ2IB341L33DJ2E5341O33HC31Q933DR34AM2KA31K334AP27V34AR32DK347O324T34A828P324Q2E4324333RH33R023Z31QI319U32U22N731QM31WO24E31AQ24E319D32ZH33EU34FN2662M423H2W42VO2IS2VW32UK34IH34FE2NG2W425922625J2LO22632LB24831A2319B32LB34OJ27934FE34ON34OP2VW34FB34K834OV2LO34OX21I34P0315K34P31E32L81E32LB25B31RJ34MF32UJ2662H127134PC34OR2PJ32SZ2NS31LM2NX24I34PD2VW24Q34K82NS2NG2NX33RW33G725B33FK34EJ343L252343L339D33YT24U34GE34L234F133QO24Z347234FN33QT32ZH31GP34PA34PH34J934Q634GD34OU26634OW27525924E31W131G933Y02O532KJ23B2UC1M34PR2T62V234GJ33WB34FH33QT34QF343I33X833UC34QJ33UC34QL31H134QN34HO31VZ34HZ34QQ2NB27534QS32UF34GH31SK34RH346E34OL33G934OP32SZ32UK34HI34RO346U34QH34RR34QK339E34RW34FD34QP33TU34QR34QT2WC33RM31HQ33B731HL33WH34M52OP22633S634SZ347I31OM27924X31WY34N334N534N72F22IG319131PL34N22FP34T82HN34N92GB34NC34AE31PW34NF33IL2J329F25H26V27V31PV347W347Y2HZ2I12I327J34832EB348534872ID2BO34TB34TO348D34TB2BW341V349231TC33L533J32HW2EL349926Q31PV349B2DF347N31KQ2BY348I32AV2K72HF31K232SC2FG2EX26Y2F833HT34T92F32ET2EK34UY31PV349H28J31KM349J349E31TL349K34NM349M34NP349O341X31NS341Z33KQ2D633KT2JU349X33KY342734A02K12K334A334A534O034A934O32E534NJ2EV34AL346V31WY34AO34AQ34AS26A21832SR33P924921228M24B34WF2O521Q22R2OT21Q2431M24B34O92LV32O02LR34OC32FY26M34WL33TD34WO31QR34OK33LR23H31RP34K331R334IH31QV32TA31R926631KK31SH34WO33UZ34WY25Y34X0342J33LR332X2OL31S131R234K834X933LS2MY34BN31UX33LV33ZO34LZ32G123232FG34MT31QS2AR33YS32QU33TN31VN27523P2N224B34BC31RJ23B2WR23R33PO2W425733FS339434F12RP32MW34HI32UD34S4340N2RP33CT2IS2N223R34WR31RS2TX34CQ34F82PO34KO33YT2A532Q72NI25Q34CZ25Q32FG24Q25Q33OI2PU24V34D626W2QD24P2522Q231UO31B331UQ2OE34ZE34DI34ZH34ZJ34ZL25221U32KE32GQ319O32G123Y32FG24R1M2T62R824Q2RE31QY2RM24R32J426W2SB24P34BZ34C12MZ23B2XR24R34EE26W2SI24U2V722A2V724I33BN2V224M25Q2T034JC2QN314S33QR2R325Q339H34ES34SN3461317N3154317Q350635082PJ26U2TH24W34Q4351034ER2752QA35142QD350Z35182PJ34JE24R33XC2Q034BV350W32UV275350Z35112QM26M35142QQ2623517351N326034SN24R33XL339J339L2VD339D31SK24R33YJ2732VM2NS33BV2NX34SL31R52PW33A52Q42XP31LP2PW33VJ352W2PZ31532Q4339D352Y351M34JC2PW35142Q434ZM22134G231HM34G434DF2TR352L2T6352O31AU24722R352R34BV352U2R6352W31ME2PW33WD353134JB3534353U352A34JC24P22M2202LO22M33XU34GZ23B33XY352E2T62UP24V315U22Y2YU352J31H1351F316Q351H33WK339I2QE34Q134LG351W2MC32KL352S2TX352032UB35223537352535273516351T352C34RZ246354C339B339J33AR354I33QT325Z34OK34QA2R534Q434XO326034Q926U32TA2NX31TV32TY33YH346132L833UV2NN3507317835092ZX24426X355J34K32V232T22QN2NG2QQ2YI356434K82QN32TA2QQ24Q351V351X2PV351Z350X35503524352235262R63528354135193557355931HA24V33X62JC354J31CM325Z31GP355H354P24I355K34Q834IH2NS355O275355Q34KD32R034462O534KH2OE354L31HU351H32K824K2PM33QT354T2LZ354V356K35212QR3551356O35532463529355524Q352D352F246356X314W32NC35702LV354L33A6339F354O34Q4354R34HI357R33TX351Y34HO354Y345I3523352B3513356Q3554352B3583356U358535872NL356Z34LY24633P435922OW33FX34SX2NI1U34M932M634MB2LM359731WO2722302OT359G34T228J251347M34NH34NZ31I434UR347S2HE347V34UH347Z34TY2C834U427534U334U134U5348A2EV34U82IE34UA33I42H734UR348K32BE33JF348O33H8348M2DH348T348V33HX32PD31PN33KR33KK34UE34952X0349734UJ340Z32PP31KO349F31TM2JD349I2792FW34NO2H034VI33KM34VK31T5349T33KR34VO342434A133KZ31QA34VT342A34W434UP34A734VZ33JR2E534TK2FD34NE34AH32Z02IB34W734NW34W934AU2CF34VW1N34WC2LL31U234EX31TS32QC2ME32KY2SJ33UY34ZR34WP31UW24F34PS2V224333SM310L31A6310J33ET27935C925M33UY350L2XR33F32LL31RX24634C927531TT32TB27Q33762UX31SK35D0311A31VW35D431H133682T632H62AR25Z2M12O032Q1339E27Q34Z831WO22E31EV32OW1M31LH33OI33TJ34ZW27523X21Q26S32KE21Q31BL21I31AQ32OH1M23Z33MD2U02M435C535E633R0344Y22734X52R62ME33VQ34JM34I7345M32TV34JE33SS2LZ338E34KQ34MV31SK23Z34L431QV351431WA343L31VP339H32UW345K2WO2R632UW31VQ35F533T531LP31W42R533N6345O35F824623X25Q26X2LO25Q33UH33UJ336C2TR35EU34H33454314S22R35EY33UC35F035FF31WB35FA24M34FL35F6339631RL345K33FY35EG35DV2TK31EO33UH23231HO35GD26H35EO350G2MX316I2392VD31SJ31H135EB34CH33MJ339S31QZ34MS34LG35EO338D35GJ2MC35GM33QT32QT2602LV33OH24722Q31QZ34BV34X731MN345C345623X2YS2R632N3318G32L82YF35E535E72ML24426835H834HO32UH33YT31RW33BV31RZ34BV34IG31MN34LC33WA31S933LN35GW35EQ34LI35ES3451339E35H532US32MW34HO35HA31R535HC32US31RA33VJ34RA357G31V331V52OE35GP33P933R524421L340435ET338C338E352H33T535ET33RI35GR345633VG31QU35GV35IW35GY316J35IZ33O633Y2338Q31HL359D34M631BM33S625233QY34WQ319H2YU2UJ2A534MI35CZ35J72LW34LW2JC2LR35D5346B32F9355K24233BG2YN34MW343L28F334933GH347P359R2K6347T2HF2HT341L321J28E33JM338Z28F31KM35BP2F32BX333Q2BL2AH35BR31PY34AC349131KY35B732RP33L535BA34VN349W33L234VR349Z34VQ342B31T531TE34NT34UM2JF31SD2GC2GE33IK35B43191348N33KD25I35LF2GS279349L32VR32DI35AH33HF2GE26N25W2BE2BG23432SR21Z35C334B235C62MC2ME32Z331O133LV310L33FB34B82ME2J231GP31LK32TA31PB31ME35ME342I345T31MG34MO34BR24624C25Y351C317K34Y231VC34542H122W31UH34QG31R634XQ317433LS31RA31VW34KE318I31K235DQ2LV35H334542T824R31UH33G2354P2MV33G933W0339E34HD2LO34KO33W72N535NP34F835FC2VW2NE31LP2MV31MH2P035NI2NX35HU35NT34QU33YT34FE344U34RM34FJ266345P34GL35FC34GO31ME31S635O531LH33NJ33MJ345M34XB24K2R626631BL31IC2OT31IE35NB34BX35NE355835NH2MC2NX35NK2LO35NM35HT25Y344U35NQ34I635NS33WA34DY34LD33VL35NY24U35O02N835O234F833G934OS339E35O834QZ34QU35OB35OD34PU35OF31RS35OH2JH35OJ33LM344V31UF35HD1U24N2RL34P3316P23B2TH35DQ31VB32TZ25A2QD35HQ35HB35N3346P35DV32GV347832J033UZ2OC2Y535MV35QD2H135H72ND35H935QI35N531P431G8355S34KF31LW33YB2XN35HL35EC25A314S23G35P033G32OL34D335P435PW35P635P835PW35NR345H33W52N735PE35NX31H135NZ35RF34HJ35PK34II35PM34GH35O726635O934GH35PS35OQ35PU35S334F435NR31S734F135N133R533LS23Z34F7340N33TP273338Z35GN31CM23Z356I35FB33LN32F833BB31RS356L34FN34BB3454355724822U22Y31CQ22Y26H24C21Q35SZ26635T426H24F35C734T324622831U135MH32GK336U32SZ29235MM23Q31MH337I35MP24C318H31DE317Q35H235H433NM26K35RB35NJ35RE34HX35NN35P735O534GP2LV33W335U335RN33WE33VM35PH35RS25735RU35O434FB35PO35RZ35PQ34FI34FS35OC35S534FE35PV35S635PA35S831R635Q032TV33RW35HD2M335R034XX33TP354A2OE35TT35OY35NG33TN35RU35P335U035RH35U335PX35RL35NU35RO35UA35PI35RT35P135PL35O535C534GQ35UI34FM35UK35VO35PT34OL35UP35U434F835US35OK33LN31R735UX345V33UY315E2OT315G35QB33ET35QS32UJ35QV35ID35QX35IH35QL345Z33PJ31A933V135V335QC35MX24635QU33YU35WD34X835N435WF351134KE34RB35SX2OC2QT35R633RS31QV32KV26R35TX35P235TZ35P535PA35RI35UQ34K135PB35RM35NV2ND35VH35UC35UE25Y35RW35O635UL35S035PR35UL35VT35UO35S535VW34II35VY35EN35SE23N35IY35I735SK35SM355K35SP33LS25635SS34FT34YW35SV33LS24823I35SZ31C835T124C23A35T535YK359K28F2G631SW34TD35AN34UC31T334942DF349J2IJ34AV2662G9327Y31NL347L35CZ2LY31TV31QH31LE35TB35MF31U231LN339E27F35DL24834KQ31UD33MK33R732MI35W931UK339G32KE2ZZ24831RF2ZM31UE31P531QZ35NC2LV23L25Y31V0350K34C32OE31US31M231WA33T623L316M35CQ355S32H231VA27531NA33VT32MZ33CI2OT2VR31UE31UG2ND35WM34XV31V035IK319731V731P732SY32R733UQ35OU2TR35C932OY34XX32P12O42M2360G32Q432NE34B324621T31OP360J32P833D3341131K134N0348Y35YS2HK35KV3493342C35YW35B235KU26A341W34V835KK24P32SQ35Z52LI35Z72LW33AD35ZA31U135M331U431H135ZF34CX33852LZ3135360N33ML31UK316M361334DD34D623B311335ZV362G2OL360Q360A31UN33UY31VJ2YK32UX33V532U92MP26H31VT35QE33LS31VZ34XA34PU33N52W431W435OL31VP2NG2V2360A33PZ2OA34RB27Q2R22J231WM359E33UI33UK2TR2LR361F310L31ST28J32SC35AM32PF361N361U34UD33E924635L732RQ2DF35YY2CF35Z032792GB34UO34VC33KN31TN31JY35LR34VE2E934VG33HD35AS33KD36492GA34NB2D631PV35KO33GU35KR34AG31PY28J1M26O25Y24S32SR21J32PY33TT2M2337Q31PC31CM35DK34CX31IJ32LB31LH2M433R2360F34Y335QK2MP33PI35QN33YJ23B33YL31LH31OK33YR35ZY365K32JG355S32K22OU35V32KT31M232TV33T631RA2A5360C34XX362C23B3135346D34PT33MJ2H123K31RP33N531S225231LM35EM33G7346D345Q35WT366H33LN34I7366L31R235EN34QT23M34BV31R033N634I7366I32UJ366K35W034SN23Z2RP23N35RU35SJ35TU33ET33ZH2Q21U31UH34D6339T34XP35WS345H31R935U83603317O35V32V7260367F24621W367I337L367L35HB2MJ33LS26534XW2F535WX36152OE35JF31AO31HO26U35JE363U28F332I2762EB347Q26X35LL2GF361T34ND364W2HS33JF2FZ2AP2G12G32JL2JF363X349U35AP35YV36422K4363Z361V35B034V931NP364C31T531TK341Y28635LM364I341N31Q734NP35AE35LK2622GF2W431TS33MD35CP33UY23Q31AQ33VR2YL34OK359D22Q31L7343L2TT34IH27Q31LM35CO23A33AI352N34P322632L834P235CD34BH363T317C31VD319J24626F32LQ2OQ34IQ32LB34YC33QJ32ND25Z31PB24E33N53619365A31U72OP26E314W344G31LH2RU33R231RA2MP362J3460312Z336C365E25232GW33YR2TX2602TX23X24U32WO26T311R2O533BJ34YF365E365U33MJ2T826431RP33RK34I731VW34IA35XM35VZ35Q135QJ35FG32TX35QM31B5365O365Q34XK33RW35WO31QZ343L35IE2TX31QV31LM31R931LS35WH35QN35R231B3347A32FE31HL23Z35DU33MJ2QT23436BX366S36BE35W035EN367J2QD345235IB34CS36D036C032UJ36CG367733F031IM31W335Y535K234JD33RK33RW36DA340835SC362C2732RZ23N35JS367C33F5363N26E31HO36DX31HM23A33S636E135YN28124G31WY33GS2DV2BL33K331X22D8333A32EF35KP28B348433KG2I535LH35BJ35KX349S342035BB35L2342535L433L035L633GH364D35B82CM34NM34VI35KM34TM34AH2JF25R2H52GT2GE2C434A627Y31K632EG33HC27O2G62C332X032AZ35YR363Y31K43691361Q28J25U2Y4364231TO361S31X1320J27W2FQ33JF33EP340Z31K034272452552H735BN26I32X02JU26X26P33JW2DA26C26W24C36GA325V329D341C36FI2DE24C2BB26R26M33K22BX26I36GP349226N33K231QR36GV2AK328P2E425X2CH2AP2ER26I2BZ26Q33HT2FJ33D6347X2EK2EM33IV2EQ2ES324T2ER32EG36FC33HR2FP2FR2AP2FU26Q26N31NI2811U21134VX359Q347R35KB359T2HT2G62G8364A31TI2BR35KQ35KH2MF2H532VR26E2FM32VV31PQ2CY31952FG34V02FA31PV2EB27H26Z332T36FA35AI27L36EF33JJ31TF330L2AL34962EK35AV2CA2AT27136HN27L32D1326J34TQ34TS26R36HJ22D2LF33MD31TX2LI26Q31QK35D532TR35M7337833UC2TT34HI319M35M531PJ35JY33FA35D535CG2ZP2H122X361E362936AV35DI31LP2M2337635DG35N733FA36K834BV24925Q315R2ZM33UI2OC2YZ24B36K0313V2H121K36K431CM32KB36K736K534R932GU36KC35MA36K8355K24931CK2QU31B3362L311324B33G226W2WV2462Q223731L734BV359633LN33G633LN24B36D4361B35MF35K534BV2MN34K32V6355736JU33B731PJ33QQ314A34LY21Y33P436M22TS367T312P31N0369Z31MA35SS36A231MN27Q345P35CO24U24Y34E332FG344132G124M32FG2V6367E313A24735KJ336Y357V36MC31R536ME2R627925X31P734D033YA318I232317Q24B350P2Z3316M25J2LL36DI2UV36MZ36MA36MV34K836MY31GP24921A2512R634DU2O5212318I31AD2UU36M636MR23131L736MB36NJ2OL36NG24625X33X934XX26E318I319134WP36JI32JL23Q2Z733CG2LV34WH2T6315532EZ27824B23Y318F23Q318I318E2UU33CU2N224E2V72NJ32IE35R03522357V34BU34IH2M2345P311A336M2Y835SU31TS35SE365936AU34FA36AX2V036AZ2NI32KP2LZ32KR35DQ252317536B625A21G33UW25A31BL31BN360L319D23Z36LA2NX33OH24626Y31RP34FP366J339S366M35I335MC2MX36LZ35JA35SK36LN32UT32SZ35ZM32EX34I736Q6367436Q835YC346C35MP343C360833YT31VP33N535F235G0337635F631VW35G535FA25236QM35FG24U35FJ2P733UH34422OT3444366C31RL363335FU360I31H136QV354Z345J35G031W136R036RL345031CM31W436QO35FG23A26W2LO23A33XU22631HO36S135GG35TA340N2NK1V35IU35GO367B25A33BV36Q535G836DJ36SF35I233N632QB36JV36S633FD35Y22LV36PZ35VK33MJ33A531UH33A931D531WX314W2Y033RW36R524Z33AN31DF33FY36RU24R355C34JZ25Y34Z4366V366N36QB340N36QD36SO345435SQ33MJ35FC31QZ35SS36CH35SV35UX345M35WW35IL36882VS32R721Q33S636TX36M536MQ33ES35H636NZ36NI36A336O236NL24U345M34YD34BE34WP33AZ32G532OA2V22602V536OG2NI32H236ON319H32MX342T31QS36UJ33MB369P33R035T932MV2ZV35JW24633SW31TS32NA318R35JV33AG317D32KX32TX32OX362U2OC2YK36LW32QD2LW32NS25432NU36UZ31CM36LM367Z32T034B436LQ34HO36LS36LJ351A1M33O836VV26H36L92T62WV25Y1724435Q231TS36BB26W313135JO24633SP35CZ36Q02ZP2Q21P36LG34HO36LI33N636LK33N636VM2LZ2QD36JP31MF36VQ31MN36VS36WL34SN36LW33N632I42MC36M036JZ2MC2V52K132T236PD32GU36AW35TG36K536KA36KY33G531ME34BU34HO35C936CN31B525A31SP36XM36VY36KO360V36K332GK33YT36KU32TB2UF36K834R832Q135WG35C336L134K324922632SQ31F633XU36M2319B35JE36NW36U222W27924332OO2QL35JV36O136MF36V836TR355S33F032M6368936YD36NF32PB36O036U636YM32OJ36YO34XX362V36YS36U136NF35L931MF36YW36MD36U735CO23Y32OW33C832LI32LZ24B32P426W314Y363T33SO32QP36XM33M02TR36VE2ME33FC22X26N312P33QT36LM36B236V533PZ35M436LX2LW36JX35MA35D535ER36WA32TB36WY36ZS370536VK36OH35W533QR370033G534R132OJ363G34DD33AZ31OZ36AP36WE33ES318731O12W42602W424D31D522135R535WY2OT35X035CU31PJ31HX23Q31I036UZ36V136VZ317836LC31K225D370U33ET370X2AR22F33UY355X35Q936892OK2602X533FX32SB2X22IS2OK371C354P36A431C731L72PU34JC36JS31MN36WO367K36VO32T234B52BX36LR355K36LU33LS370B36LY36X136JY33O6360Z31SD36ZQ21I319H32KV36ZL36WB31OT36OC32MV21Q35JV36UK313C36Z431N036YV36U536Z936YY32G936Z034DD26M318I2JZ36NV37312R5333T36Z7373436MX36ZA31PJ212314W33UV24631OS336K34XX32IP36RC36N736OC2MU36OF36UT36OI317836OK360B33UY22M31AQ22M319D24B32K226W32K42LV36AT36X936P036X8313V35ZG24M31EV33WK36PN36PP2ME23X25236PS26J31BP2O531EU34DF36PY370R36Q236Q4342Q36R534I736RU36SI2MR36TE23N36TG36DU33LO36QG362X33VH343L36QL36SF33RW3755367736QR363332US34Y536RS2WO36RL35FZ36RJ32UA345N35G136RQ35G636R536BK36R8344036RB34YF35FP36KO32U036RH345J36QU375R345N35F336RO32U936R135F936RJ34CS36SF23X36RW36RY36S036S236CT36S523N2NK21636S935SK36SB36SD375236SF375436SH35EN37583705375B36SQ35RC35IG36SU2MC36SW33AJ2LP2JC36T036SF36T2314W36T4376K33N636T7314W2YU31RW36TB35UT36TD36SL3759372J36TH36TK344Z2ML35J336TN35N3345P36CL373836CP2O536TU368A2NI21233S6378D36U031QS36M72R536M9373H36RL36MW310J373636U934EV36BP36UC36UN31OH36UG33ET36US36V032FY36UM36UE36UP36UH378Y371B36JI33B62LS372Y36UT24A2NX26036LC33DV2J2379C27524O2NX35YE32L823I22V36E4279');local o=bit and bit.bxor or function(e,a)local t,o=1,0 while e>0 and a>0 do local i,n=e%2,a%2 if i~=n then o=o+t end e,a,t=(e-i)/2,(a-n)/2,t*2 end if e<a then e=a end while e>0 do local a=e%2 if a>0 then o=o+t end e,t=(e-a)/2,t*2 end return o end local function e(t,e,a)if a then local e=(t/2^(e-1))%2^((a-1)-(e-1)+1);return e-e%1;else local e=2^(e-1);return(t%(e+e)>=e)and 1 or 0;end;end;local t=1;local function a()local e,a,n,i=h(d,t,t+3);e=o(e,150)a=o(a,150)n=o(n,150)i=o(i,150)t=t+4;return(i*16777216)+(n*65536)+(a*256)+e;end;local function n()local e=o(h(d,t,t),150);t=t+1;return e;end;local function l()local t=a();local o=a();local i=1;local a=(e(o,1,20)*(2^32))+t;local t=e(o,21,31);local e=((-1)^e(o,32));if(t==0)then if(a==0)then return e*0;else t=1;i=0;end;elseif(t==2047)then return(a==0)and(e*(1/0))or(e*(0/0));end;return m(e,t-1023)*(i+(a/(2^52)));end;local c=a;local function m(e)local a;if(not e)then e=c();if(e==0)then return'';end;end;a=i(d,t,t+e-1);t=t+e;local t={}for e=1,#a do t[e]=r(o(h(i(a,e,e)),150))end return f(t);end;local t=a;local function c(...)return{...},u('#',...)end local function g()local h={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};local r={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};local t={};local s={h,nil,r,nil,t};local t=a()local i={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};for a=1,t do local t=n();local e;if(t==2)then e=(n()~=0);elseif(t==0)then e=l();elseif(t==3)then e=m();end;i[a]=e;end;s[2]=i for n=1,a()do local i=o(a(),12);local a=o(a(),105);local o=e(i,1,2);local t=e(a,1,11);local t={t,e(i,3,11),nil,nil,a};if(o==0)then t[3]=e(i,12,20);t[5]=e(i,21,29);elseif(o==1)then t[3]=e(a,12,33);elseif(o==2)then t[3]=e(a,12,32)-1048575;elseif(o==3)then t[3]=e(a,12,32)-1048575;t[5]=e(i,21,29);end;h[n]=t;end;s[4]=n();for e=1,a()do r[e-1]=g();end;return s;end;local function y(e,d,r)local o=e[1];local a=e[2];local t=e[3];local e=e[4];return function(...)local o=o;local i=a;local p=t;local h=e;local m=c local t=1;local n=-1;local c={};local l={...};local u=u('#',...)-1;local v={};local a={};for e=0,u do if(e>=h)then c[e-h]=l[e+1];else a[e]=l[e+1];end;end;local e=u-h+1 local e;local h;while true do e=o[t];h=e[1];if h<=114 then if h<=56 then if h<=27 then if h<=13 then if h<=6 then if h<=2 then if h<=0 then local m;local l;local r;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;m={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;elseif h==1 then local i=e[2];local o=n;local t={};local e=0;for o=i,o do e=e+1;t[e]=a[o];end;do return s(t,1,e)end;else local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=4 then if h>3 then for e=e[2],e[3]do a[e]=nil;end;else a[e[2]]=a[e[3]]/i[e[5]];end;elseif h>5 then local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;else local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=9 then if h<=7 then a[e[2]]=r[i[e[3]]];elseif h==8 then a[e[2]]=d[e[3]];else do return end;end;elseif h<=11 then if h==10 then if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;else local c;local l;local u;local f;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];m=e[3];f=a[m]for e=m+1,e[5]do f=f..a[e];end;a[e[2]]=f;t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];if not a[e[2]]then t=t+1;else t=t+e[3];end;end;elseif h>12 then local u;local l;local c;local h;a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;else local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]]+a[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];t=t+e[3];end;elseif h<=20 then if h<=16 then if h<=14 then local m;local l;local r;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;m={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]<i[e[5]])then t=t+1;else t=t+e[3];end;elseif h==15 then local u;local d;local l;local c;local h;a[e[2]]();n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];h=e[2];l={};d=0;u=h+e[3]-1;for e=h+1,u do d=d+1;l[d]=a[e];end;a[h](s(l,1,u-h));n=h;t=t+1;e=o[t];t=t+e[3];else local c;local l;local u;local h;a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]();n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]();n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]();n=h;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];if not a[e[2]]then t=t+1;else t=t+e[3];end;end;elseif h<=18 then if h>17 then local h;local c,h;local l;local r;local u;local f;local h;a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c,l=m(a[h](s(u,1,l-h)));l=l+h-1;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];h=e[2];u={};r=0;l=n;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];t=t+e[3];else local t=e[2];local i,e=m(a[t]());n=t-1;e=e+t-1;local o=0;for e=t,e do o=o+1;a[e]=i[o];end;n=e;end;elseif h>19 then if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;else local m;local u;local l;local c;local f;local h;h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]]+a[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=23 then if h<=21 then local c;local u;local d;local r;local l;local h;a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];l={};r=0;d=h+e[3]-1;for e=h+1,d do r=r+1;l[r]=a[e];end;u={a[h](s(l,1,d-h))};d=h+e[5]-2;r=0;for e=h,d do r=r+1;a[e]=u[r];end;n=d;t=t+1;e=o[t];h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];h=e[2];l={};r=0;d=h+e[3]-1;for e=h+1,d do r=r+1;l[r]=a[e];end;u={a[h](s(l,1,d-h))};d=h+e[5]-2;r=0;for e=h,d do r=r+1;a[e]=u[r];end;n=d;t=t+1;e=o[t];h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];l={};r=0;d=h+e[3]-1;for e=h+1,d do r=r+1;l[r]=a[e];end;u={a[h](s(l,1,d-h))};d=h+e[5]-2;r=0;for e=h,d do r=r+1;a[e]=u[r];end;n=d;t=t+1;e=o[t];if not a[e[2]]then t=t+1;else t=t+e[3];end;elseif h>22 then local h,h;local f;local u;local l;local c;local w;local h;h=e[2];w=a[e[3]];a[h+1]=w;a[h]=w[i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];w=a[e[3]];a[h+1]=w;a[h]=w[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];w=a[e[3]];a[h+1]=w;a[h]=w[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f,u=m(a[h](s(c,1,u-h)));u=u+h-1;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];h=e[2];c={};l=0;u=n;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;else local c;local d;local r;local l;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]+i[e[5]];t=t+1;e=o[t];h=e[2];l={};r=0;d=h+e[3]-1;for e=h+1,d do r=r+1;l[r]=a[e];end;c={a[h](s(l,1,d-h))};d=h+e[5]-2;r=0;for e=h,d do r=r+1;a[e]=c[r];end;n=d;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=25 then if h>24 then local c;local l;local h;local u;local d;a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];d=e[2];u={};h=0;l=d+e[3]-1;for e=d+1,l do h=h+1;u[h]=a[e];end;c={a[d](s(u,1,l-d))};l=d+e[5]-2;h=0;for e=d,l do h=h+1;a[e]=c[h];end;n=l;t=t+1;e=o[t];t=t+e[3];else if(i[e[2]]<a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h>26 then a[e[2]][i[e[3]]]=a[e[5]];else local m;local l;local d;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;m={a[h](s(u,1,l-h))};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=m[d];end;n=l;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];end;elseif h<=41 then if h<=34 then if h<=30 then if h<=28 then local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];if(a[e[2]]~=a[e[5]])then t=t+1;else t=t+e[3];end;elseif h==29 then local u;local d;local l;local c;local h;a[e[2]]();n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];h=e[2];l={};d=0;u=h+e[3]-1;for e=h+1,u do d=d+1;l[d]=a[e];end;a[h](s(l,1,u-h));n=h;t=t+1;e=o[t];t=t+e[3];else local t=e[2];local i,o={a[t]()};local o=t+e[5]-2;local e=0;for t=t,o do e=e+1;a[t]=i[e];end;n=o;end;elseif h<=32 then if h>31 then r[i[e[3]]]=a[e[2]];else local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h==33 then local o=e[2];local n=a[o+2];local i=a[o]+n;a[o]=i;if n>0 then if i<=a[o+1]then t=t+e[3];a[o+3]=i;end;elseif i>=a[o+1]then t=t+e[3];a[o+3]=i;end;else local o=e[2];local i={};local t=0;local e=o+e[3]-1;for e=o+1,e do t=t+1;i[t]=a[e];end;local i,e=m(a[o](s(i,1,e-o)));e=e+o-1;t=0;for e=o,e do t=t+1;a[e]=i[t];end;n=e;end;elseif h<=37 then if h<=35 then local c;local d;local r;local l;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]+i[e[5]];t=t+1;e=o[t];h=e[2];l={};r=0;d=h+e[3]-1;for e=h+1,d do r=r+1;l[r]=a[e];end;c={a[h](s(l,1,d-h))};d=h+e[5]-2;r=0;for e=h,d do r=r+1;a[e]=c[r];end;n=d;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;elseif h>36 then if(i[e[2]]>a[e[5]])then t=t+1;else t=t+e[3];end;else local c;local d;local r;local l;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];l={};r=0;d=h+e[3]-1;for e=h+1,d do r=r+1;l[r]=a[e];end;c={a[h](s(l,1,d-h))};d=h+e[5]-2;r=0;for e=h,d do r=r+1;a[e]=c[r];end;n=d;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=39 then if h==38 then local m;local l;local r;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;m={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;else a[e[2]]=d[e[3]];end;elseif h==40 then local h;local c,h;local l;local h;local u;local f;local r;a[e[2]]=d[e[3]];t=t+1;e=o[t];r=e[2];f=a[e[3]];a[r+1]=f;a[r]=f[i[e[5]]];t=t+1;e=o[t];r=e[2];u={};h=0;l=r+e[3]-1;for e=r+1,l do h=h+1;u[h]=a[e];end;c,l=m(a[r](s(u,1,l-r)));l=l+r-1;h=0;for e=r,l do h=h+1;a[e]=c[h];end;n=l;t=t+1;e=o[t];r=e[2];u={};h=0;l=n;for e=r+1,l do h=h+1;u[h]=a[e];end;c={a[r](s(u,1,l-r))};l=r+e[5]-2;h=0;for e=r,l do h=h+1;a[e]=c[h];end;n=l;t=t+1;e=o[t];t=t+e[3];else if a[e[2]]then t=t+1;else t=t+e[3];end;end;elseif h<=48 then if h<=44 then if h<=42 then if(i[e[2]]<=a[e[5]])then t=t+1;else t=t+e[3];end;elseif h==43 then local m;local l;local d;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;m={a[h](s(u,1,l-h))};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=m[d];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;else a[e[2]]=a[e[3]]%i[e[5]];end;elseif h<=46 then if h==45 then local m;local l;local r;local c;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;c[r]=a[e];end;m={a[h](s(c,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;else if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h==47 then local o=e[3];local t=a[o]for e=o+1,e[5]do t=t..a[e];end;a[e[2]]=t;else local c;local l;local r;local u;local m;local h;a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=52 then if h<=50 then if h==49 then local c;local d;local u;local l;local h;a[e[2]][i[e[3]]]=i[e[5]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];l=a[e[3]];a[h+1]=l;a[h]=l[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};d=0;c=h+e[3]-1;for e=h+1,c do d=d+1;u[d]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];l=a[e[3]];a[h+1]=l;a[h]=l[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};d=0;c=h+e[3]-1;for e=h+1,c do d=d+1;u[d]=a[e];end;a[h](s(u,1,c-h));n=h;else local c;local l;local u;local f;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];m=e[3];f=a[m]for e=m+1,e[5]do f=f..a[e];end;a[e[2]]=f;t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];if a[e[2]]then t=t+1;else t=t+e[3];end;end;elseif h==51 then local c;local l;local u;local h;a[e[2]]();n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];do return end;else if not a[e[2]]then t=t+1;else t=t+e[3];end;end;elseif h<=54 then if h>53 then if(i[e[2]]>a[e[5]])then t=t+1;else t=t+e[3];end;else if not a[e[2]]then t=t+1;else t=t+e[3];end;end;elseif h==55 then d[e[3]]=a[e[2]];else local m;local l;local r;local u;local c;local h;a[e[2]]();n=h;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;m={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=85 then if h<=70 then if h<=63 then if h<=59 then if h<=57 then a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][a[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][a[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][a[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];elseif h>58 then local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;else local o=e[2];local h={};local t=0;local i=n;for e=o+1,i do t=t+1;h[t]=a[e];end;local i={a[o](s(h,1,i-o))};local e=o+e[5]-2;t=0;for e=o,e do t=t+1;a[e]=i[t];end;n=e;end;elseif h<=61 then if h>60 then a[e[2]]=a[e[3]]/i[e[5]];else a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h==62 then a[e[2]]=a[e[3]][i[e[5]]];else local c;local l;local r;local u;local m;local h;a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=66 then if h<=64 then local c;local l;local u;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=(e[3]~=0);t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];t=t+e[3];elseif h==65 then a[e[2]][i[e[3]]]=i[e[5]];else local o=e[3];local t=a[o]for e=o+1,e[5]do t=t..a[e];end;a[e[2]]=t;end;elseif h<=68 then if h==67 then local c;local d;local r;local l;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];l={};r=0;d=h+e[3]-1;for e=h+1,d do r=r+1;l[r]=a[e];end;c={a[h](s(l,1,d-h))};d=h+e[5]-2;r=0;for e=h,d do r=r+1;a[e]=c[r];end;n=d;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;else for e=e[2],e[3]do a[e]=nil;end;end;elseif h>69 then local m;local l;local r;local c;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;c[r]=a[e];end;m={a[h](s(c,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;else local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=(e[3]~=0);t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];t=t+e[3];end;elseif h<=77 then if h<=73 then if h<=71 then local c;local l;local u;local h;a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];t=t+e[3];elseif h==72 then local h;local c,h;local l;local h;local u;local f;local r;a[e[2]]=d[e[3]];t=t+1;e=o[t];r=e[2];f=a[e[3]];a[r+1]=f;a[r]=f[i[e[5]]];t=t+1;e=o[t];r=e[2];u={};h=0;l=r+e[3]-1;for e=r+1,l do h=h+1;u[h]=a[e];end;c,l=m(a[r](s(u,1,l-r)));l=l+r-1;h=0;for e=r,l do h=h+1;a[e]=c[h];end;n=l;t=t+1;e=o[t];r=e[2];u={};h=0;l=n;for e=r+1,l do h=h+1;u[h]=a[e];end;c={a[r](s(u,1,l-r))};l=r+e[5]-2;h=0;for e=r,l do h=h+1;a[e]=c[h];end;n=l;t=t+1;e=o[t];t=t+e[3];else if(i[e[2]]<a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=75 then if h>74 then if(a[e[2]]<=a[e[5]])then t=t+1;else t=t+e[3];end;else local l;local d;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]();n=h;t=t+1;e=o[t];do return end;end;elseif h==76 then local o=e[2];local i=o+e[3]-2;local t={};local e=0;for o=o,i do e=e+1;t[e]=a[o];end;do return s(t,1,e)end;else local l;local d;local u;local h;a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];end;elseif h<=81 then if h<=79 then if h>78 then local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;else if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h==80 then local m;local l;local c;local f;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];u=e[3];f=a[u]for e=u+1,e[5]do f=f..a[e];end;a[e[2]]=f;t=t+1;e=o[t];h=e[2];c={};l=0;m=h+e[3]-1;for e=h+1,m do l=l+1;c[l]=a[e];end;a[h](s(c,1,m-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c={};l=0;m=h+e[3]-1;for e=h+1,m do l=l+1;c[l]=a[e];end;a[h](s(c,1,m-h));n=h;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];if a[e[2]]then t=t+1;else t=t+e[3];end;else t=t+e[3];end;elseif h<=83 then if h>82 then local m;local l;local r;local c;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;c[r]=a[e];end;m={a[h](s(c,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;else a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][a[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][a[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];end;elseif h>84 then local u;local d;local l;local h;a[e[2]]();n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];l={};d=0;u=h+e[3]-1;for e=h+1,u do d=d+1;l[d]=a[e];end;a[h](s(l,1,u-h));n=h;t=t+1;e=o[t];t=t+e[3];else local m;local u;local l;local c;local f;local h;h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]]+a[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=99 then if h<=92 then if h<=88 then if h<=86 then local h;local f,h;local u;local h;local c;local w;local l;a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];l=e[2];w=a[e[3]];a[l+1]=w;a[l]=w[i[e[5]]];t=t+1;e=o[t];l=e[2];c={};h=0;u=l+e[3]-1;for e=l+1,u do h=h+1;c[h]=a[e];end;f,u=m(a[l](s(c,1,u-l)));u=u+l-1;h=0;for e=l,u do h=h+1;a[e]=f[h];end;n=u;t=t+1;e=o[t];l=e[2];c={};h=0;u=n;for e=l+1,u do h=h+1;c[h]=a[e];end;f={a[l](s(c,1,u-l))};u=l+e[5]-2;h=0;for e=l,u do h=h+1;a[e]=f[h];end;n=u;t=t+1;e=o[t];t=t+e[3];elseif h>87 then a[e[2]]=i[e[3]];else d[e[3]]=a[e[2]];end;elseif h<=90 then if h==89 then if(a[e[2]]<i[e[5]])then t=t+1;else t=t+e[3];end;else local o=e[2];local i={};local t=0;local h=o+e[3]-1;for e=o+1,h do t=t+1;i[t]=a[e];end;local i={a[o](s(i,1,h-o))};local e=o+e[5]-2;t=0;for e=o,e do t=t+1;a[e]=i[t];end;n=e;end;elseif h>91 then a[e[2]]=y(p[e[3]],nil,r);else local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=(e[3]~=0);t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];t=t+e[3];end;elseif h<=95 then if h<=93 then local e=e[2];local o={};local t=0;local i=n;for e=e+1,i do t=t+1;o[t]=a[e];end;a[e](s(o,1,i-e));n=e;elseif h==94 then local c;local d;local r;local u;local l;local h;h=e[2];l=a[e[3]];a[h+1]=l;a[h]=l[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];u={};r=0;d=h+e[3]-1;for e=h+1,d do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,d-h))};d=h+e[5]-2;r=0;for e=h,d do r=r+1;a[e]=c[r];end;n=d;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;else a[e[2]]=a[e[3]]%i[e[5]];end;elseif h<=97 then if h>96 then local m;local l;local r;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;m={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;else a[e[2]]=a[e[3]]-i[e[5]];end;elseif h==98 then local o=e[2];local i={};local t=0;local h=o+e[3]-1;for e=o+1,h do t=t+1;i[t]=a[e];end;local i={a[o](s(i,1,h-o))};local e=o+e[5]-2;t=0;for e=o,e do t=t+1;a[e]=i[t];end;n=e;else a[e[2]]=a[e[3]]-a[e[5]];end;elseif h<=106 then if h<=102 then if h<=100 then if a[e[2]]then t=t+1;else t=t+e[3];end;elseif h>101 then a[e[2]]=r[i[e[3]]];else a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]][i[e[3]]]=i[e[5]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];if a[e[2]]then t=t+1;else t=t+e[3];end;end;elseif h<=104 then if h==103 then local h,h;local f;local u;local l;local c;local w;local h;a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];w=a[e[3]];a[h+1]=w;a[h]=w[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]+a[e[5]];t=t+1;e=o[t];d[e[3]]=a[e[2]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];w=a[e[3]];a[h+1]=w;a[h]=w[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f,u=m(a[h](s(c,1,u-h)));u=u+h-1;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];h=e[2];c={};l=0;u=n;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];t=t+e[3];else local c;local d;local r;local u;local l;local h;h=e[2];l=a[e[3]];a[h+1]=l;a[h]=l[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];u={};r=0;d=h+e[3]-1;for e=h+1,d do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,d-h))};d=h+e[5]-2;r=0;for e=h,d do r=r+1;a[e]=c[r];end;n=d;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h==105 then local m;local l;local r;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;m={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;else local m;local l;local d;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;m={a[h](s(u,1,l-h))};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=m[d];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];if(a[e[2]]>a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=110 then if h<=108 then if h==107 then local l;local d;local u;local h;a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];else local l;local d;local u;local h;a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]();n=h;t=t+1;e=o[t];t=t+e[3];end;elseif h>109 then a[e[2]][i[e[3]]]=a[e[5]];else a[e[2]]=a[e[3]]+i[e[5]];end;elseif h<=112 then if h>111 then if(a[e[2]]~=a[e[5]])then t=t+1;else t=t+e[3];end;else if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h==113 then if(a[e[2]]<i[e[5]])then t=t+1;else t=t+e[3];end;else local h;local c,h;local l;local r;local u;local f;local h;a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c,l=m(a[h](s(u,1,l-h)));l=l+h-1;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];h=e[2];u={};r=0;l=n;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];t=t+e[3];end;elseif h<=172 then if h<=143 then if h<=128 then if h<=121 then if h<=117 then if h<=115 then local c;local l;local r;local u;local m;local h;a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;elseif h==116 then a[e[2]]=y(p[e[3]],nil,r);else local t=e[2];local i={};local o=0;local e=t+e[3]-1;for e=t+1,e do o=o+1;i[o]=a[e];end;a[t](s(i,1,e-t));n=t;end;elseif h<=119 then if h==118 then local c;local l;local r;local u;local m;local h;a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;else local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h==120 then local c;local l;local u;local m;local h;a[e[2]]=a[e[3]]+i[e[5]];t=t+1;e=o[t];d[e[3]]=a[e[2]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];t=t+e[3];else a[e[2]]=i[e[3]];end;elseif h<=124 then if h<=122 then if(a[e[2]]~=a[e[5]])then t=t+1;else t=t+e[3];end;elseif h==123 then local y;local w;local h;local h;local f;local l;local c,u;local h;a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c,u=m(a[h]());n=h-1;u=u+h-1;l=0;for e=h,u do l=l+1;a[e]=c[l];end;n=u;t=t+1;e=o[t];h=e[2];f={};l=0;u=n;for e=h+1,u do l=l+1;f[l]=a[e];end;a[h](s(f,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];f={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;f[l]=a[e];end;c={a[h](s(f,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=c[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]][i[e[3]]]=i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]][i[e[3]]]=i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]][i[e[3]]]=i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c,u={a[h]()};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=c[l];end;n=u;t=t+1;e=o[t];a[e[2]][i[e[3]]]=a[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]][i[e[3]]]=i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c,u={a[h]()};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=c[l];end;n=u;t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];w=a[e[3]];a[h+1]=w;a[h]=w[i[e[5]]];t=t+1;e=o[t];h=e[2];f={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;f[l]=a[e];end;c={a[h](s(f,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=c[l];end;n=u;t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c,u={a[h]()};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=c[l];end;n=u;t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];f={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;f[l]=a[e];end;c={a[h](s(f,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=c[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];w=e[3];y=a[w]for e=w+1,e[5]do y=y..a[e];end;a[e[2]]=y;t=t+1;e=o[t];a[e[2]][i[e[3]]]=a[e[5]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;else local c;local l;local r;local u;local m;local h;a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=126 then if h==125 then local e=e[2];local o={};local t=0;local i=n;for e=e+1,i do t=t+1;o[t]=a[e];end;a[e](s(o,1,i-e));n=e;else local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];if(a[e[2]]>a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h>127 then local c;local l;local u;local h;a[e[2]]();n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];do return end;else local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;end;elseif h<=135 then if h<=131 then if h<=129 then local c;local l;local d;local u;local m;local h;a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=c[d];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=c[d];end;n=l;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];elseif h==130 then local c;local d;local r;local u;local l;local h;h=e[2];l=a[e[3]];a[h+1]=l;a[h]=l[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];u={};r=0;d=h+e[3]-1;for e=h+1,d do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,d-h))};d=h+e[5]-2;r=0;for e=h,d do r=r+1;a[e]=c[r];end;n=d;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;else local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]]+a[e[5]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];t=t+e[3];end;elseif h<=133 then if h==132 then a[e[2]]=a[e[3]]+a[e[5]];else a[e[2]]=a[e[3]];end;elseif h>134 then local t=e[2];local i,o={a[t]()};local o=t+e[5]-2;local e=0;for t=t,o do e=e+1;a[t]=i[e];end;n=o;else a[e[2]]=a[e[3]];end;elseif h<=139 then if h<=137 then if h==136 then t=t+e[3];else a[e[2]]=a[e[3]][a[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][a[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][a[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][a[e[5]]];end;elseif h>138 then local o=e[2];local t=a[e[3]];a[o+1]=t;a[o]=t[i[e[5]]];else local c;local l;local d;local u;local h;a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=(e[3]~=0);t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;end;elseif h<=141 then if h==140 then local c;local l;local u;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};l=0;c=h+e[3]-1;for e=h+1,c do l=l+1;u[l]=a[e];end;a[h](s(u,1,c-h));n=h;t=t+1;e=o[t];t=t+e[3];else a[e[2]]=a[e[3]]-a[e[5]];end;elseif h==142 then local m;local l;local r;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;m={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;else local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;end;elseif h<=157 then if h<=150 then if h<=146 then if h<=144 then local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;elseif h>145 then local m;local l;local r;local c;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;c[r]=a[e];end;m={a[h](s(c,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(i[e[2]]>a[e[5]])then t=t+1;else t=t+e[3];end;else local f;local h;local c;local h;local l;local m,u;local l;a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];l=e[2];m,u={a[l]()};u=l+e[5]-2;h=0;for e=l,u do h=h+1;a[e]=m[h];end;n=u;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-a[e[5]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];l=e[2];c={};h=0;u=l+e[3]-1;for e=l+1,u do h=h+1;c[h]=a[e];end;m={a[l](s(c,1,u-l))};u=l+e[5]-2;h=0;for e=l,u do h=h+1;a[e]=m[h];end;n=u;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]%i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];l=e[2];c={};h=0;u=l+e[3]-1;for e=l+1,u do h=h+1;c[h]=a[e];end;m={a[l](s(c,1,u-l))};u=l+e[5]-2;h=0;for e=l,u do h=h+1;a[e]=m[h];end;n=u;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]%i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];l=e[2];c={};h=0;u=l+e[3]-1;for e=l+1,u do h=h+1;c[h]=a[e];end;m={a[l](s(c,1,u-l))};u=l+e[5]-2;h=0;for e=l,u do h=h+1;a[e]=m[h];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]]%i[e[5]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];l=e[2];c={};u=l+e[3]-1;for e=l+1,u do c[#c+1]=a[e];end;do return a[l](s(c,1,u-l))end;t=t+1;e=o[t];l=e[2];u=n;f={};h=0;for e=l,u do h=h+1;f[h]=a[e];end;do return s(f,1,h)end;t=t+1;e=o[t];do return end;end;elseif h<=148 then if h>147 then local u;local d;local l;local h;a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];l={};d=0;u=h+e[3]-1;for e=h+1,u do d=d+1;l[d]=a[e];end;a[h](s(l,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]();n=h;t=t+1;e=o[t];t=t+e[3];else local f;local u;local h,h;local m;local l;local d;local c;local h;a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;c[d]=a[e];end;m={a[h](s(c,1,l-h))};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=m[d];end;n=l;t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];m,l={a[h]()};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=m[d];end;n=l;t=t+1;e=o[t];h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;c[d]=a[e];end;m={a[h](s(c,1,l-h))};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=m[d];end;n=l;t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];u=e[3];f=a[u]for e=u+1,e[5]do f=f..a[e];end;a[e[2]]=f;t=t+1;e=o[t];a[e[2]][i[e[3]]]=a[e[5]];t=t+1;e=o[t];h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;c[d]=a[e];end;a[h](s(c,1,l-h));n=h;end;elseif h>149 then local c;local l;local r;local u;local m;local h;a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;else local m;local u;local l;local c;local h;a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=(e[3]~=0);t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;end;elseif h<=153 then if h<=151 then local m;local l;local d;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;m={a[h](s(u,1,l-h))};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=m[d];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;elseif h==152 then local t=e[2];local i,e=m(a[t]());n=t-1;e=e+t-1;local o=0;for e=t,e do o=o+1;a[e]=i[o];end;n=e;else local t=e[2];local o={};local e=t+e[3]-1;for e=t+1,e do o[#o+1]=a[e];end;do return a[t](s(o,1,e-t))end;end;elseif h<=155 then if h==154 then local s=p[e[3]];local n;local i={};n=b({},{__index=function(t,e)local e=i[e];return e[1][e[2]];end,__newindex=function(a,e,t)local e=i[e]e[1][e[2]]=t;end;});for n=1,e[5]do t=t+1;local e=o[t];if e[1]==133 then i[n-1]={a,e[3]};else i[n-1]={d,e[3]};end;v[#v+1]=i;end;a[e[2]]=y(s,n,r);else local o=e[2];local n=a[o+2];local i=a[o]+n;a[o]=i;if n>0 then if i<=a[o+1]then t=t+e[3];a[o+3]=i;end;elseif i>=a[o+1]then t=t+e[3];a[o+3]=i;end;end;elseif h>156 then local m;local l;local r;local c;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;c[r]=a[e];end;m={a[h](s(c,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;else local c;local l;local r;local u;local m;local h;a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=164 then if h<=160 then if h<=158 then local i=e[2];local o=n;local t={};local e=0;for o=i,o do e=e+1;t[e]=a[o];end;do return s(t,1,e)end;elseif h==159 then a[e[2]][i[e[3]]]=i[e[5]];else local o=e[2];local i={};local t=0;local e=o+e[3]-1;for e=o+1,e do t=t+1;i[t]=a[e];end;local i,e=m(a[o](s(i,1,e-o)));e=e+o-1;t=0;for e=o,e do t=t+1;a[e]=i[t];end;n=e;end;elseif h<=162 then if h==161 then local c;local l;local r;local u;local m;local h;a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;else local m;local l;local d;local c;local u;local h;a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;c[d]=a[e];end;m={a[h](s(c,1,l-h))};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=m[d];end;n=l;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;c[d]=a[e];end;m={a[h](s(c,1,l-h))};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=m[d];end;n=l;t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=(e[3]~=0);t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]+i[e[5]];end;elseif h==163 then if(i[e[2]]>=a[e[5]])then t=t+1;else t=t+e[3];end;else a[e[2]]();n=A;end;elseif h<=168 then if h<=166 then if h>165 then local u;local l;local c;local f;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];m=e[3];f=a[m]for e=m+1,e[5]do f=f..a[e];end;a[e[2]]=f;t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];if a[e[2]]then t=t+1;else t=t+e[3];end;else local h,h;local f;local u;local l;local c;local w;local h;h=e[2];w=a[e[3]];a[h+1]=w;a[h]=w[i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];w=a[e[3]];a[h+1]=w;a[h]=w[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];w=a[e[3]];a[h+1]=w;a[h]=w[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f,u=m(a[h](s(c,1,u-h)));u=u+h-1;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];h=e[2];c={};l=0;u=n;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h>167 then if(a[e[2]]>a[e[5]])then t=t+1;else t=t+e[3];end;else a[e[2]]=a[e[3]][a[e[5]]];end;elseif h<=170 then if h>169 then do return end;else local m;local l;local r;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;m={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(i[e[2]]<=a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h==171 then if(i[e[2]]<=a[e[5]])then t=t+1;else t=t+e[3];end;else local o=e[2];local i=o+e[3]-2;local t={};local e=0;for o=o,i do e=e+1;t[e]=a[o];end;do return s(t,1,e)end;end;elseif h<=201 then if h<=186 then if h<=179 then if h<=175 then if h<=173 then local l;local r;local d;local h;a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];d={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;d[r]=a[e];end;a[h](s(d,1,l-h));n=h;t=t+1;e=o[t];t=t+e[3];elseif h>174 then local c;local l;local r;local u;local h;a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]]+a[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];a[h]=a[h]-a[h+2];t=t+e[3];else local l;local d;local u;local c;local h;a[e[2]][i[e[3]]]=i[e[5]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;end;elseif h<=177 then if h>176 then local o=e[2];local n=e[5];local e=o+2;local i={a[o](a[o+1],a[e])};for t=1,n do a[e+t]=i[t];end;local o=a[o+3];if o then a[e]=o else t=t+1;end;else local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h==178 then a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==a[e[5]])then t=t+1;else t=t+e[3];end;else local c;local l;local d;local u;local h;h=e[2];u={};d=0;l=n;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=c[d];end;n=l;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];end;elseif h<=182 then if h<=180 then local m;local u;local l;local c;local h;a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=(e[3]~=0);t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;elseif h>181 then if(a[e[2]]<=a[e[5]])then t=t+1;else t=t+e[3];end;else local l;local d;local u;local h;a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]();n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;end;elseif h<=184 then if h>183 then local m;local u;local l;local c;local h;a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]][i[e[3]]]=i[e[5]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]]+a[e[5]];t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];a[h]=a[h]-a[h+2];t=t+e[3];else local o=e[2];local i={};local t=0;local h=n;for e=o+1,h do t=t+1;i[t]=a[e];end;local i={a[o](s(i,1,h-o))};local e=o+e[5]-2;t=0;for e=o,e do t=t+1;a[e]=i[t];end;n=e;end;elseif h>185 then a[e[2]]=a[e[3]]+i[e[5]];else local u;local d;local l;local c;local h;a[e[2]]();n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];h=e[2];l={};d=0;u=h+e[3]-1;for e=h+1,u do d=d+1;l[d]=a[e];end;a[h](s(l,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];l={};d=0;u=h+e[3]-1;for e=h+1,u do d=d+1;l[d]=a[e];end;a[h](s(l,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=193 then if h<=189 then if h<=187 then local m;local l;local d;local c;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;c[d]=a[e];end;m={a[h](s(c,1,l-h))};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=m[d];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(i[e[2]]<=a[e[5]])then t=t+1;else t=t+e[3];end;elseif h==188 then local c;local f,h;local l;local d;local u;local h;a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;f,l=m(a[h](s(u,1,l-h)));l=l+h-1;d=0;for e=h,l do d=d+1;a[e]=f[d];end;n=l;t=t+1;e=o[t];h=e[2];u={};d=0;l=n;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];else local m;local u;local l;local c;local f;local h;h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]]+a[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=191 then if h>190 then if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;else a[e[2]]=(e[3]~=0);end;elseif h==192 then local o=e[2];local t=a[e[3]];a[o+1]=t;a[o]=t[i[e[5]]];else local t=e[2];local o={};local e=t+e[3]-1;for e=t+1,e do o[#o+1]=a[e];end;do return a[t](s(o,1,e-t))end;end;elseif h<=197 then if h<=195 then if h==194 then a[e[2]]=a[e[3]]-i[e[5]];else if(i[e[2]]>=a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h>196 then local u;local r;local l;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];l={};r=0;u=h+e[3]-1;for e=h+1,u do r=r+1;l[r]=a[e];end;a[h](s(l,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];d[e[3]]=a[e[2]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];d[e[3]]=a[e[2]];t=t+1;e=o[t];t=t+e[3];else a[e[2]]=a[e[3]][i[e[5]]];end;elseif h<=199 then if h>198 then local c;local l;local r;local u;local m;local h;a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;c={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=c[r];end;n=l;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];if(a[e[2]]~=a[e[5]])then t=t+1;else t=t+e[3];end;else local l;local d;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=(e[3]~=0);t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];t=t+e[3];end;elseif h>200 then local c;local d;local r;local l;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];l={};r=0;d=h+e[3]-1;for e=h+1,d do r=r+1;l[r]=a[e];end;c={a[h](s(l,1,d-h))};d=h+e[5]-2;r=0;for e=h,d do r=r+1;a[e]=c[r];end;n=d;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;else local h;local f,h;local u;local l;local c;local w;local h;a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];w=a[e[3]];a[h+1]=w;a[h]=w[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f,u=m(a[h](s(c,1,u-h)));u=u+h-1;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];h=e[2];c={};l=0;u=n;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];t=t+e[3];end;elseif h<=215 then if h<=208 then if h<=204 then if h<=202 then local h;local f,h;local u;local h;local c;local w;local l;a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];l=e[2];w=a[e[3]];a[l+1]=w;a[l]=w[i[e[5]]];t=t+1;e=o[t];l=e[2];c={};h=0;u=l+e[3]-1;for e=l+1,u do h=h+1;c[h]=a[e];end;f,u=m(a[l](s(c,1,u-l)));u=u+l-1;h=0;for e=l,u do h=h+1;a[e]=f[h];end;n=u;t=t+1;e=o[t];l=e[2];c={};h=0;u=n;for e=l+1,u do h=h+1;c[h]=a[e];end;f={a[l](s(c,1,u-l))};u=l+e[5]-2;h=0;for e=l,u do h=h+1;a[e]=f[h];end;n=u;t=t+1;e=o[t];t=t+e[3];elseif h>203 then local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;else a[e[2]]=(e[3]~=0);end;elseif h<=206 then if h==205 then local h;local c,h;local l;local h;local u;local f;local r;a[e[2]]=d[e[3]];t=t+1;e=o[t];r=e[2];f=a[e[3]];a[r+1]=f;a[r]=f[i[e[5]]];t=t+1;e=o[t];r=e[2];u={};h=0;l=r+e[3]-1;for e=r+1,l do h=h+1;u[h]=a[e];end;c,l=m(a[r](s(u,1,l-r)));l=l+r-1;h=0;for e=r,l do h=h+1;a[e]=c[h];end;n=l;t=t+1;e=o[t];r=e[2];u={};h=0;l=n;for e=r+1,l do h=h+1;u[h]=a[e];end;c={a[r](s(u,1,l-r))};l=r+e[5]-2;h=0;for e=r,l do h=h+1;a[e]=c[h];end;n=l;t=t+1;e=o[t];t=t+e[3];else local h=p[e[3]];local s;local i={};s=b({},{__index=function(t,e)local e=i[e];return e[1][e[2]];end,__newindex=function(a,e,t)local e=i[e]e[1][e[2]]=t;end;});for n=1,e[5]do t=t+1;local e=o[t];if e[1]==133 then i[n-1]={a,e[3]};else i[n-1]={d,e[3]};end;v[#v+1]=i;end;a[e[2]]=y(h,s,r);end;elseif h==207 then local o=e[2];local n=e[5];local e=o+2;local i={a[o](a[o+1],a[e])};for t=1,n do a[e+t]=i[t];end;local o=a[o+3];if o then a[e]=o else t=t+1;end;else local m;local l;local r;local c;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;c[r]=a[e];end;m={a[h](s(c,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=211 then if h<=209 then local m;local u;local l;local c;local f;local h;h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]]-i[e[5]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];f=a[e[3]];a[h+1]=f;a[h]=f[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]]+a[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;m={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=m[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;elseif h==210 then local m;local l;local r;local u;local c;local h;h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];u={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;u[r]=a[e];end;m={a[h](s(u,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;else if(a[e[2]]>a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=213 then if h==212 then local h;local f,h;local u;local h;local c;local w;local l;a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];l=e[2];w=a[e[3]];a[l+1]=w;a[l]=w[i[e[5]]];t=t+1;e=o[t];l=e[2];c={};h=0;u=l+e[3]-1;for e=l+1,u do h=h+1;c[h]=a[e];end;f,u=m(a[l](s(c,1,u-l)));u=u+l-1;h=0;for e=l,u do h=h+1;a[e]=f[h];end;n=u;t=t+1;e=o[t];l=e[2];c={};h=0;u=n;for e=l+1,u do h=h+1;c[h]=a[e];end;f={a[l](s(c,1,u-l))};u=l+e[5]-2;h=0;for e=l,u do h=h+1;a[e]=f[h];end;n=u;t=t+1;e=o[t];t=t+e[3];else local w;local f;local m;local u;local l;local c;local h;a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];m=e[3];f=a[m]for e=m+1,e[5]do f=f..a[e];end;a[e[2]]=f;t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;w={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=w[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]==i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h==214 then local h;local f,h;local u;local l;local c;local w;local h;a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];w=a[e[3]];a[h+1]=w;a[h]=w[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f,u=m(a[h](s(c,1,u-h)));u=u+h-1;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];h=e[2];c={};l=0;u=n;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];t=t+e[3];else local m;local l;local r;local c;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};r=0;l=h+e[3]-1;for e=h+1,l do r=r+1;c[r]=a[e];end;m={a[h](s(c,1,l-h))};l=h+e[5]-2;r=0;for e=h,l do r=r+1;a[e]=m[r];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=222 then if h<=218 then if h<=216 then a[e[2]]=a[e[3]][a[e[5]]];elseif h>217 then a[e[2]]=a[e[3]]+a[e[5]];else local c;local u;local d;local l;local h;a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];l={};d=0;u=h+e[3]-1;for e=h+1,u do d=d+1;l[d]=a[e];end;a[h](s(l,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c=a[e[3]];a[h+1]=c;a[h]=c[i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];l={};d=0;u=h+e[3]-1;for e=h+1,u do d=d+1;l[d]=a[e];end;a[h](s(l,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];l={};d=0;u=h+e[3]-1;for e=h+1,u do d=d+1;l[d]=a[e];end;a[h](s(l,1,u-h));n=h;end;elseif h<=220 then if h>219 then local l;local d;local c;local u;local h;a[e[2]]();n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;c[d]=a[e];end;a[h](s(c,1,l-h));n=h;t=t+1;e=o[t];t=t+e[3];else local o=e[2];a[o]=a[o]-a[o+2];t=t+e[3];end;elseif h==221 then r[i[e[3]]]=a[e[2]];else a[e[2]]();n=A;end;elseif h<=226 then if h<=224 then if h==223 then local o=e[2];a[o]=a[o]-a[o+2];t=t+e[3];else local w;local f;local m;local u;local l;local c;local h;a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];m=e[3];f=a[m]for e=m+1,e[5]do f=f..a[e];end;a[e[2]]=f;t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;w={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=w[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h>225 then local t=e[2];local i={};local o=0;local e=t+e[3]-1;for e=t+1,e do o=o+1;i[o]=a[e];end;a[t](s(i,1,e-t));n=t;else local m;local l;local d;local c;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];h=e[2];c={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;c[d]=a[e];end;m={a[h](s(c,1,l-h))};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=m[d];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h<=228 then if h==227 then local c;local d;local r;local l;local u;local h;h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];l={};r=0;d=h+e[3]-1;for e=h+1,d do r=r+1;l[r]=a[e];end;c={a[h](s(l,1,d-h))};d=h+e[5]-2;r=0;for e=h,d do r=r+1;a[e]=c[r];end;n=d;t=t+1;e=o[t];h=e[2];u=a[e[3]];a[h+1]=u;a[h]=u[i[e[5]]];t=t+1;e=o[t];h=e[2];l={};r=0;d=h+e[3]-1;for e=h+1,d do r=r+1;l[r]=a[e];end;c={a[h](s(l,1,d-h))};d=h+e[5]-2;r=0;for e=h,d do r=r+1;a[e]=c[r];end;n=d;t=t+1;e=o[t];if(a[e[2]]~=i[e[5]])then t=t+1;else t=t+e[3];end;else local c;local l;local h;local u;local d;a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];d=e[2];u={};h=0;l=d+e[3]-1;for e=d+1,l do h=h+1;u[h]=a[e];end;c={a[d](s(u,1,l-d))};l=d+e[5]-2;h=0;for e=d,l do h=h+1;a[e]=c[h];end;n=l;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];d=e[2];u={};h=0;l=d+e[3]-1;for e=d+1,l do h=h+1;u[h]=a[e];end;c={a[d](s(u,1,l-d))};l=d+e[5]-2;h=0;for e=d,l do h=h+1;a[e]=c[h];end;n=l;t=t+1;e=o[t];if(a[e[2]]~=a[e[5]])then t=t+1;else t=t+e[3];end;end;elseif h==229 then local u;local d;local h;local c,l;local h;r[i[e[3]]]=a[e[2]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];h=e[2];c,l={a[h]()};l=h+e[5]-2;d=0;for e=h,l do d=d+1;a[e]=c[d];end;n=l;t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];a[e[2]]=a[e[3]];t=t+1;e=o[t];h=e[2];u={};d=0;l=h+e[3]-1;for e=h+1,l do d=d+1;u[d]=a[e];end;a[h](s(u,1,l-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];else local f;local u;local l;local c;local m;local h;h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=i[e[3]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;a[h](s(c,1,u-h));n=h;t=t+1;e=o[t];a[e[2]]=r[i[e[3]]];t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];h=e[2];m=a[e[3]];a[h+1]=m;a[h]=m[i[e[5]]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=a[e[3]][i[e[5]]];t=t+1;e=o[t];a[e[2]]=a[e[3]]/i[e[5]];t=t+1;e=o[t];h=e[2];c={};l=0;u=h+e[3]-1;for e=h+1,u do l=l+1;c[l]=a[e];end;f={a[h](s(c,1,u-h))};u=h+e[5]-2;l=0;for e=h,u do l=l+1;a[e]=f[l];end;n=u;t=t+1;e=o[t];a[e[2]]=d[e[3]];t=t+1;e=o[t];if(a[e[2]]~=a[e[5]])then t=t+1;else t=t+e[3];end;end;t=t+1;end;end;end; print(json.stringify(g()));
Write, Run & Share Lua code online using OneCompiler's Lua online compiler for free. It's one of the robust, feature-rich online compilers for Lua language, running the latest Lua version 5.4. Getting started with the OneCompiler's Lua editor is easy and fast. The editor shows sample boilerplate code when you choose language as Lua and start coding.
OneCompiler's Lua online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample Lua program which takes name as input and prints hello message with your name.
name = io.read("*a")
print ("Hello ", name)
Lua is a light weight embeddable scripting language which is built on top of C. It is used in almost all kind of applications like games, web applications, mobile applications, image processing etc. It's a very powerful, fast, easy to learn, open-source scripting language.
-- global variables
a = 10
-- local variables
local x = 30
Value Type | Description |
---|---|
number | Represents numbers |
string | Represents text |
nil | Differentiates values whether it has data or not |
boolean | Value can be either true or false |
function | Represents a sub-routine |
userdata | Represents arbitary C data |
thread | Represents independent threads of execution. |
table | Can hold any value except nil |
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
while(condition)
do
--code
end
Repeat-Until is also used to iterate a set of statements based on a condition. It is very similar to Do-While, it is mostly used when you need to execute the statements atleast once.
repeat
--code
until( condition )
For loop is used to iterate a set of statements based on a condition.
for init,max/min value, increment
do
--code
end
Function is a sub-routine which contains set of statements. Usually functions are written when multiple calls are required to same set of statements which increase re-usuability and modularity.
optional_function_scope function function_name( argument1, argument2, argument3........, argumentn)
--code
return params with comma seperated
end