Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- .____ ________ ___. _____ __
- | | __ _______ \_____ \\_ |___/ ____\_ __ ______ ____ _____ _/ |_ ___________
- | | | | \__ \ / | \| __ \ __\ | \/ ___// ___\\__ \\ __\/ _ \_ __ \
- | |___| | // __ \_/ | \ \_\ \ | | | /\___ \\ \___ / __ \| | ( <_> ) | \/
- |_______ \____/(____ /\_______ /___ /__| |____//____ >\___ >____ /__| \____/|__|
- \/ \/ \/ \/ \/ \/ \/
- \_Welcome to LuaObfuscator.com (Alpha 0.9.16) ~ Much Love, Ferib
- ]]--
- local StrToNumber = tonumber;
- local Byte = string.byte;
- local Char = string.char;
- local Sub = string.sub;
- local Subg = string.gsub;
- local Rep = string.rep;
- local Concat = table.concat;
- local Insert = table.insert;
- local LDExp = math.ldexp;
- local GetFEnv = getfenv or function()
- return _ENV;
- end;
- local Setmetatable = setmetatable;
- local PCall = pcall;
- local Select = select;
- local Unpack = unpack or table.unpack;
- local ToNumber = tonumber;
- local function VMCall(ByteString, vmenv, ...)
- local DIP = 1;
- local repeatNext;
- ByteString = Subg(Sub(ByteString, 5), "..", function(byte)
- if (Byte(byte, 2) == 79) then
- repeatNext = StrToNumber(Sub(byte, 1, 1));
- return "";
- else
- local a = Char(StrToNumber(byte, 16));
- if repeatNext then
- local b = Rep(a, repeatNext);
- repeatNext = nil;
- return b;
- else
- return a;
- end
- end
- end);
- local function gBit(Bit, Start, End)
- if End then
- local Res = (Bit / (2 ^ (Start - 1))) % (2 ^ (((End - 1) - (Start - 1)) + 1));
- return Res - (Res % 1);
- else
- local Plc = 2 ^ (Start - 1);
- return (((Bit % (Plc + Plc)) >= Plc) and 1) or 0;
- end
- end
- local function gBits8()
- local a = Byte(ByteString, DIP, DIP);
- DIP = DIP + 1;
- return a;
- end
- local function gBits16()
- local a, b = Byte(ByteString, DIP, DIP + 2);
- DIP = DIP + 2;
- return (b * 256) + a;
- end
- local function gBits32()
- local a, b, c, d = Byte(ByteString, DIP, DIP + 3);
- DIP = DIP + 4;
- return (d * 16777216) + (c * 65536) + (b * 256) + a;
- end
- local function gFloat()
- local Left = gBits32();
- local Right = gBits32();
- local IsNormal = 1;
- local Mantissa = (gBit(Right, 1, 20) * (2 ^ 32)) + Left;
- local Exponent = gBit(Right, 21, 31);
- local Sign = ((gBit(Right, 32) == 1) and -1) or 1;
- if (Exponent == 0) then
- if (Mantissa == 0) then
- return Sign * 0;
- else
- Exponent = 1;
- IsNormal = 0;
- end
- elseif (Exponent == 2047) then
- return ((Mantissa == 0) and (Sign * (1 / 0))) or (Sign * NaN);
- end
- return LDExp(Sign, Exponent - 1023) * (IsNormal + (Mantissa / (2 ^ 52)));
- end
- local function gString(Len)
- local Str;
- if not Len then
- Len = gBits32();
- if (Len == 0) then
- return "";
- end
- end
- Str = Sub(ByteString, DIP, (DIP + Len) - 1);
- DIP = DIP + Len;
- local FStr = {};
- for Idx = 1, #Str do
- FStr[Idx] = Char(Byte(Sub(Str, Idx, Idx)));
- end
- return Concat(FStr);
- end
- local gInt = gBits32;
- local function _R(...)
- return {...}, Select("#", ...);
- end
- local function Deserialize()
- local Instrs = {};
- local Functions = {};
- local Lines = {};
- local Chunk = {Instrs,Functions,nil,Lines};
- local ConstCount = gBits32();
- local Consts = {};
- for Idx = 1, ConstCount do
- local Type = gBits8();
- local Cons;
- if (Type == 1) then
- Cons = gBits8() ~= 0;
- elseif (Type == 2) then
- Cons = gFloat();
- elseif (Type == 3) then
- Cons = gString();
- end
- Consts[Idx] = Cons;
- end
- Chunk[3] = gBits8();
- for Idx = 1, gBits32() do
- local Descriptor = gBits8();
- if (gBit(Descriptor, 1, 1) == 0) then
- local Type = gBit(Descriptor, 2, 3);
- local Mask = gBit(Descriptor, 4, 6);
- local Inst = {gBits16(),gBits16(),nil,nil};
- if (Type == 0) then
- Inst[3] = gBits16();
- Inst[4] = gBits16();
- elseif (Type == 1) then
- Inst[3] = gBits32();
- elseif (Type == 2) then
- Inst[3] = gBits32() - (2 ^ 16);
- elseif (Type == 3) then
- Inst[3] = gBits32() - (2 ^ 16);
- Inst[4] = gBits16();
- end
- if (gBit(Mask, 1, 1) == 1) then
- Inst[2] = Consts[Inst[2]];
- end
- if (gBit(Mask, 2, 2) == 1) then
- Inst[3] = Consts[Inst[3]];
- end
- if (gBit(Mask, 3, 3) == 1) then
- Inst[4] = Consts[Inst[4]];
- end
- Instrs[Idx] = Inst;
- end
- end
- for Idx = 1, gBits32() do
- Functions[Idx - 1] = Deserialize();
- end
- return Chunk;
- end
- local function Wrap(Chunk, Upvalues, Env)
- local Instr = Chunk[1];
- local Proto = Chunk[2];
- local Params = Chunk[3];
- return function(...)
- local Instr = Instr;
- local Proto = Proto;
- local Params = Params;
- local _R = _R;
- local VIP = 1;
- local Top = -1;
- local Vararg = {};
- local Args = {...};
- local PCount = Select("#", ...) - 1;
- local Lupvals = {};
- local Stk = {};
- for Idx = 0, PCount do
- if (Idx >= Params) then
- Vararg[Idx - Params] = Args[Idx + 1];
- else
- Stk[Idx] = Args[Idx + 1];
- end
- end
- local Varargsz = (PCount - Params) + 1;
- local Inst;
- local Enum;
- while true do
- Inst = Instr[VIP];
- Enum = Inst[1];
- if (Enum <= 25) then
- if (Enum <= 12) then
- if (Enum <= 5) then
- if (Enum <= 2) then
- if (Enum <= 0) then
- Env[Inst[3]] = Stk[Inst[2]];
- elseif (Enum > 1) then
- local A = Inst[2];
- Stk[A](Stk[A + 1]);
- else
- Stk[Inst[2]] = Stk[Inst[3]][Inst[4]];
- end
- elseif (Enum <= 3) then
- Stk[Inst[2]] = not Stk[Inst[3]];
- elseif (Enum > 4) then
- do
- return;
- end
- else
- do
- return;
- end
- end
- elseif (Enum <= 8) then
- if (Enum <= 6) then
- Stk[Inst[2]] = Upvalues[Inst[3]];
- elseif (Enum > 7) then
- Stk[Inst[2]] = Wrap(Proto[Inst[3]], nil, Env);
- else
- local A = Inst[2];
- Stk[A](Unpack(Stk, A + 1, Inst[3]));
- end
- elseif (Enum <= 10) then
- if (Enum > 9) then
- Stk[Inst[2]] = Wrap(Proto[Inst[3]], nil, Env);
- else
- Stk[Inst[2]][Inst[3]] = Stk[Inst[4]];
- end
- elseif (Enum > 11) then
- Stk[Inst[2]] = Inst[3] ~= 0;
- elseif Stk[Inst[2]] then
- VIP = VIP + 1;
- else
- VIP = Inst[3];
- end
- elseif (Enum <= 18) then
- if (Enum <= 15) then
- if (Enum <= 13) then
- Stk[Inst[2]] = Stk[Inst[3]];
- elseif (Enum == 14) then
- Stk[Inst[2]][Inst[3]] = Inst[4];
- else
- local A = Inst[2];
- local Results, Limit = _R(Stk[A](Stk[A + 1]));
- Top = (Limit + A) - 1;
- local Edx = 0;
- for Idx = A, Top do
- Edx = Edx + 1;
- Stk[Idx] = Results[Edx];
- end
- end
- elseif (Enum <= 16) then
- Stk[Inst[2]] = Stk[Inst[3]];
- elseif (Enum == 17) then
- Stk[Inst[2]] = Inst[3] ~= 0;
- else
- local NewProto = Proto[Inst[3]];
- local NewUvals;
- local Indexes = {};
- NewUvals = Setmetatable({}, {__index=function(_, Key)
- local Val = Indexes[Key];
- return Val[1][Val[2]];
- end,__newindex=function(_, Key, Value)
- local Val = Indexes[Key];
- Val[1][Val[2]] = Value;
- end});
- for Idx = 1, Inst[4] do
- VIP = VIP + 1;
- local Mvm = Instr[VIP];
- if (Mvm[1] == 16) then
- Indexes[Idx - 1] = {Stk,Mvm[3]};
- else
- Indexes[Idx - 1] = {Upvalues,Mvm[3]};
- end
- Lupvals[#Lupvals + 1] = Indexes;
- end
- Stk[Inst[2]] = Wrap(NewProto, NewUvals, Env);
- end
- elseif (Enum <= 21) then
- if (Enum <= 19) then
- local NewProto = Proto[Inst[3]];
- local NewUvals;
- local Indexes = {};
- NewUvals = Setmetatable({}, {__index=function(_, Key)
- local Val = Indexes[Key];
- return Val[1][Val[2]];
- end,__newindex=function(_, Key, Value)
- local Val = Indexes[Key];
- Val[1][Val[2]] = Value;
- end});
- for Idx = 1, Inst[4] do
- VIP = VIP + 1;
- local Mvm = Instr[VIP];
- if (Mvm[1] == 16) then
- Indexes[Idx - 1] = {Stk,Mvm[3]};
- else
- Indexes[Idx - 1] = {Upvalues,Mvm[3]};
- end
- Lupvals[#Lupvals + 1] = Indexes;
- end
- Stk[Inst[2]] = Wrap(NewProto, NewUvals, Env);
- elseif (Enum == 20) then
- Upvalues[Inst[3]] = Stk[Inst[2]];
- else
- Stk[Inst[2]] = {};
- end
- elseif (Enum <= 23) then
- if (Enum > 22) then
- local A = Inst[2];
- local B = Stk[Inst[3]];
- Stk[A + 1] = B;
- Stk[A] = B[Inst[4]];
- else
- local A = Inst[2];
- Stk[A](Unpack(Stk, A + 1, Inst[3]));
- end
- elseif (Enum == 24) then
- local A = Inst[2];
- local Cls = {};
- for Idx = 1, #Lupvals do
- local List = Lupvals[Idx];
- for Idz = 0, #List do
- local Upv = List[Idz];
- local NStk = Upv[1];
- local DIP = Upv[2];
- if ((NStk == Stk) and (DIP >= A)) then
- Cls[DIP] = NStk[DIP];
- Upv[1] = Cls;
- end
- end
- end
- elseif (Stk[Inst[2]] == Inst[4]) then
- VIP = VIP + 1;
- else
- VIP = Inst[3];
- end
- elseif (Enum <= 38) then
- if (Enum <= 31) then
- if (Enum <= 28) then
- if (Enum <= 26) then
- local A = Inst[2];
- Stk[A] = Stk[A](Unpack(Stk, A + 1, Inst[3]));
- elseif (Enum > 27) then
- local A = Inst[2];
- local B = Stk[Inst[3]];
- Stk[A + 1] = B;
- Stk[A] = B[Inst[4]];
- else
- Stk[Inst[2]] = Stk[Inst[3]][Inst[4]];
- end
- elseif (Enum <= 29) then
- VIP = Inst[3];
- elseif (Enum == 30) then
- Stk[Inst[2]] = Inst[3];
- else
- local A = Inst[2];
- local Cls = {};
- for Idx = 1, #Lupvals do
- local List = Lupvals[Idx];
- for Idz = 0, #List do
- local Upv = List[Idz];
- local NStk = Upv[1];
- local DIP = Upv[2];
- if ((NStk == Stk) and (DIP >= A)) then
- Cls[DIP] = NStk[DIP];
- Upv[1] = Cls;
- end
- end
- end
- end
- elseif (Enum <= 34) then
- if (Enum <= 32) then
- local A = Inst[2];
- Stk[A] = Stk[A](Stk[A + 1]);
- elseif (Enum == 33) then
- local A = Inst[2];
- Stk[A] = Stk[A](Unpack(Stk, A + 1, Inst[3]));
- else
- local A = Inst[2];
- Stk[A](Unpack(Stk, A + 1, Top));
- end
- elseif (Enum <= 36) then
- if (Enum > 35) then
- Upvalues[Inst[3]] = Stk[Inst[2]];
- else
- Stk[Inst[2]] = Env[Inst[3]];
- end
- elseif (Enum > 37) then
- local A = Inst[2];
- Stk[A](Stk[A + 1]);
- else
- Env[Inst[3]] = Stk[Inst[2]];
- end
- elseif (Enum <= 44) then
- if (Enum <= 41) then
- if (Enum <= 39) then
- VIP = Inst[3];
- elseif (Enum > 40) then
- if (Stk[Inst[2]] == Inst[4]) then
- VIP = VIP + 1;
- else
- VIP = Inst[3];
- end
- else
- Stk[Inst[2]] = not Stk[Inst[3]];
- end
- elseif (Enum <= 42) then
- if Stk[Inst[2]] then
- VIP = VIP + 1;
- else
- VIP = Inst[3];
- end
- elseif (Enum > 43) then
- local A = Inst[2];
- local Results, Limit = _R(Stk[A](Stk[A + 1]));
- Top = (Limit + A) - 1;
- local Edx = 0;
- for Idx = A, Top do
- Edx = Edx + 1;
- Stk[Idx] = Results[Edx];
- end
- else
- Stk[Inst[2]] = Env[Inst[3]];
- end
- elseif (Enum <= 47) then
- if (Enum <= 45) then
- Stk[Inst[2]] = Upvalues[Inst[3]];
- elseif (Enum > 46) then
- local A = Inst[2];
- Stk[A] = Stk[A](Stk[A + 1]);
- else
- Stk[Inst[2]] = Inst[3];
- end
- elseif (Enum <= 49) then
- if (Enum > 48) then
- Stk[Inst[2]][Inst[3]] = Stk[Inst[4]];
- else
- Stk[Inst[2]][Inst[3]] = Inst[4];
- end
- elseif (Enum > 50) then
- local A = Inst[2];
- Stk[A](Unpack(Stk, A + 1, Top));
- else
- Stk[Inst[2]] = {};
- end
- VIP = VIP + 1;
- end
- end;
- end
- return Wrap(Deserialize(), {}, vmenv)(...);
- end
- VMCall("LOL!5A3O0003083O00496E7374616E63652O033O006E657703093O005363722O656E47756903043O004E616D65030E3O004F2O627942757442696B6547756903063O00506172656E7403043O0067616D6503073O00506C6179657273030B3O004C6F63616C506C6179657203093O00506C61796572477569030C3O0052657365744F6E537061776E010003053O004672616D6503083O00506F736974696F6E03053O005544696D3202C1CAA145B6F3CD3F028O0002B6F3FDD478E9C63F03043O0053697A65025O00C88240025O00F0744003103O004261636B67726F756E64436F6C6F723303063O00436F6C6F723303073O0066726F6D524742026O004D4003093O004472612O6761626C652O01030A3O0053656C65637461626C6503063O0041637469766503083O005549436F726E6572030A3O005465787442752O746F6E030B3O004769766542696B6562746E029CC420B07268913F02448B6CE7FBA9C13F025O00206440026O004640030A3O00546578745363616C656403043O00466F6E7403043O00456E756D03053O00417269616C03083O00466F6E744661636503043O00426F6C6403043O005465787403093O005069636B2062696B65026O003940030A3O0054657874436F6C6F7233025O00E06F4003073O0054657874426F7803083O00476976655465787402DBF97E6ABC74D33F026O004A40025O00A06740025O00406540025O00C06540034O00030F3O00506C616365686F6C6465725465787403043O00312D3230027D3F355EBA49D43F032B3O00574F524C4420322054656C65706F727420746F20656E6420425950412O53455320414E544920434845415402643BDF4F8D97DE3F032B3O00574F524C4420312054656C65706F727420746F20656E6420425950412O53455320414E544920434845415402FA7E6ABC7493E43F032B3O00574F524C4420332054656C65706F727420746F20656E6420425950412O53455320414E544920434845415402EE7C3F355EBAE93F032B3O00574F524C4420342054656C65706F727420746F20656E6420425950412O53455320414E5449204348454154027F6ABC749318DC3F032B3O00574F524C4420352054656C65706F727420746F20656E6420425950412O53455320414E544920434845415403083O0054656C6554696D6503113O0054696D6520466F722054656C65706F727402DD2406819543E73F030D3O004C2O6F7054656C65706F727435031A3O004C2O6F702054656C65706F727420574F524C442035204F4E4C5903093O00546578744C6162656C025O00804540030A3O004C2O6F7035436F6C6F72025O00406F4003113O004D6F75736542752O746F6E31436C69636B03073O00436F2O6E65637403093O006C6F636174696F6E3103073O00566563746F7233023O00E003C05A40025O00C07240023O00E07CCCD5C0030A3O0047657453657276696365030C3O0054772O656E5365727669636503093O0054772O656E496E666F026O000840030B3O00456173696E675374796C6503063O004C696E656172030F3O00627970612O735F74656C65706F7274009D023O00117O001223000100013O00201B00010001000200121E000200034O002F000100020002002O30000100040005001223000200073O00201B00020002000800201B00020002000900201B00020002000A001009000100060002002O300001000B000C001223000200013O00201B00020002000200121E0003000D4O002F0002000200020010090002000600010012230003000F3O00201B00030003000200121E000400103O00121E000500113O00121E000600123O00121E000700114O001A0003000700020010090002000E00030012230003000F3O00201B00030003000200121E000400113O00121E000500143O00121E000600113O00121E000700154O001A000300070002001009000200130003001223000300173O00201B00030003001800121E000400193O00121E000500193O00121E000600194O001A000300060002001009000200160003002O300002001A001B002O300002001C001B002O300002001D001B001223000300013O00201B00030003000200121E0004001E4O002F000300020002001009000300060002001223000400013O00201B00040004000200121E0005001F4O000D000600024O001A000400060002002O300004000400200012230005000F3O00201B00050005000200121E000600213O00121E000700113O00121E000800223O00121E000900114O001A0005000900020010090004000E00050012230005000F3O00201B00050005000200121E000600113O00121E000700233O00121E000800113O00121E000900244O001A000500090002001009000400130005002O3000040025001B001223000500273O00201B00050005002600201B00050005002800100900040026000500201B000500040029002O300005002A001B002O300004002B002C001223000500173O00201B00050005001800121E0006002D3O00121E0007002D3O00121E0008002D4O001A000500080002001009000400160005001223000500173O00201B00050005001800121E0006002F3O00121E0007002F3O00121E0008002F4O001A0005000800020010090004002E0005001223000500013O00201B00050005000200121E000600304O000D000700024O001A000500070002002O300005000400310012230006000F3O00201B00060006000200121E000700323O00121E000800113O00121E000900223O00121E000A00114O001A0006000A00020010090005000E00060012230006000F3O00201B00060006000200121E000700113O00121E000800333O00121E000900113O00121E000A00244O001A0006000A0002001009000500130006002O3000050025001B001223000600173O00201B00060006001800121E000700343O00121E000800353O00121E000900364O001A0006000900020010090005002E0006002O300005002B0037002O3000050038003900201B000600050029002O300006002A001B001223000600273O00201B00060006002600201B000600060028001009000500260006001223000600013O00201B00060006000200121E0007001F4O000D000800024O001A0006000800020012230007000F3O00201B00070007000200121E000800213O00121E000900113O00121E000A003A3O00121E000B00114O001A0007000B00020010090006000E00070012230007000F3O00201B00070007000200121E000800113O00121E000900233O00121E000A00113O00121E000B00244O001A0007000B0002001009000600130007002O3000060025001B001223000700273O00201B00070007002600201B00070007002800100900060026000700201B000700060029002O300007002A001B002O300006002B003B001223000700173O00201B00070007001800121E0008002D3O00121E0009002D3O00121E000A002D4O001A0007000A0002001009000600160007001223000700173O00201B00070007001800121E0008002F3O00121E0009002F3O00121E000A002F4O001A0007000A00020010090006002E0007001223000700013O00201B00070007000200121E0008001F4O000D000900024O001A0007000900020012230008000F3O00201B00080008000200121E000900213O00121E000A00113O00121E000B003C3O00121E000C00114O001A0008000C00020010090007000E00080012230008000F3O00201B00080008000200121E000900113O00121E000A00233O00121E000B00113O00121E000C00244O001A0008000C0002001009000700130008002O3000070025001B001223000800273O00201B00080008002600201B00080008002800100900070026000800201B000800070029002O300008002A001B002O300007002B003D001223000800173O00201B00080008001800121E0009002D3O00121E000A002D3O00121E000B002D4O001A0008000B0002001009000700160008001223000800173O00201B00080008001800121E0009002F3O00121E000A002F3O00121E000B002F4O001A0008000B00020010090007002E0008001223000800013O00201B00080008000200121E0009001F4O000D000A00024O001A0008000A00020012230009000F3O00201B00090009000200121E000A00213O00121E000B00113O00121E000C003E3O00121E000D00114O001A0009000D00020010090008000E00090012230009000F3O00201B00090009000200121E000A00113O00121E000B00233O00121E000C00113O00121E000D00244O001A0009000D0002001009000800130009002O3000080025001B001223000900273O00201B00090009002600201B00090009002800100900080026000900201B000900080029002O300009002A001B002O300008002B003F001223000900173O00201B00090009001800121E000A002D3O00121E000B002D3O00121E000C002D4O001A0009000C0002001009000800160009001223000900173O00201B00090009001800121E000A002F3O00121E000B002F3O00121E000C002F4O001A0009000C00020010090008002E0009001223000900013O00201B00090009000200121E000A001F4O000D000B00024O001A0009000B0002001223000A000F3O00201B000A000A000200121E000B00213O00121E000C00113O00121E000D00403O00121E000E00114O001A000A000E00020010090009000E000A001223000A000F3O00201B000A000A000200121E000B00113O00121E000C00233O00121E000D00113O00121E000E00244O001A000A000E000200100900090013000A002O3000090025001B001223000A00273O00201B000A000A002600201B000A000A002800100900090026000A00201B000A00090029002O30000A002A001B002O300009002B0041001223000A00173O00201B000A000A001800121E000B002D3O00121E000C002D3O00121E000D002D4O001A000A000D000200100900090016000A001223000A00173O00201B000A000A001800121E000B002F3O00121E000C002F3O00121E000D002F4O001A000A000D00020010090009002E000A001223000A00013O00201B000A000A000200121E000B001F4O000D000C00024O001A000A000C0002001223000B000F3O00201B000B000B000200121E000C00423O00121E000D00113O00121E000E00223O00121E000F00114O001A000B000F0002001009000A000E000B001223000B000F3O00201B000B000B000200121E000C00113O00121E000D00233O00121E000E00113O00121E000F00244O001A000B000F0002001009000A0013000B002O30000A0025001B001223000B00273O00201B000B000B002600201B000B000B0028001009000A0026000B00201B000B000A0029002O30000B002A001B002O30000A002B0043001223000B00173O00201B000B000B001800121E000C002D3O00121E000D002D3O00121E000E002D4O001A000B000E0002001009000A0016000B001223000B00173O00201B000B000B001800121E000C002F3O00121E000D002F3O00121E000E002F4O001A000B000E0002001009000A002E000B001223000B00013O00201B000B000B000200121E000C00304O000D000D00024O001A000B000D0002002O30000B00040044001223000C000F3O00201B000C000C000200121E000D00323O00121E000E00113O00121E000F003A3O00121E001000114O001A000C00100002001009000B000E000C001223000C000F3O00201B000C000C000200121E000D00113O00121E000E00333O00121E000F00113O00121E001000244O001A000C00100002001009000B0013000C002O30000B0025001B001223000C00173O00201B000C000C001800121E000D00343O00121E000E00353O00121E000F00364O001A000C000F0002001009000B002E000C002O30000B002B0037002O30000B0038004500201B000C000B0029002O30000C002A001B001223000C00273O00201B000C000C002600201B000C000C0028001009000B0026000C001223000C00013O00201B000C000C000200121E000D00304O000D000E00024O001A000C000E0002002O30000C00040044001223000D000F3O00201B000D000D000200121E000E00323O00121E000F00113O00121E0010003C3O00121E001100114O001A000D00110002001009000C000E000D001223000D000F3O00201B000D000D000200121E000E00113O00121E000F00333O00121E001000113O00121E001100244O001A000D00110002001009000C0013000D002O30000C0025001B001223000D00173O00201B000D000D001800121E000E00343O00121E000F00353O00121E001000364O001A000D00100002001009000C002E000D002O30000C002B0037002O30000C0038004500201B000D000C0029002O30000D002A001B001223000D00273O00201B000D000D002600201B000D000D0028001009000C0026000D001223000D00013O00201B000D000D000200121E000E00304O000D000F00024O001A000D000F0002002O30000D00040044001223000E000F3O00201B000E000E000200121E000F00323O00121E001000113O00121E0011003E3O00121E001200114O001A000E00120002001009000D000E000E001223000E000F3O00201B000E000E000200121E000F00113O00121E001000333O00121E001100113O00121E001200244O001A000E00120002001009000D0013000E002O30000D0025001B001223000E00173O00201B000E000E001800121E000F00343O00121E001000353O00121E001100364O001A000E00110002001009000D002E000E002O30000D002B0037002O30000D0038004500201B000E000D0029002O30000E002A001B001223000E00273O00201B000E000E002600201B000E000E0028001009000D0026000E001223000E00013O00201B000E000E000200121E000F00304O000D001000024O001A000E00100002002O30000E00040044001223000F000F3O00201B000F000F000200121E001000323O00121E001100113O00121E001200403O00121E001300114O001A000F00130002001009000E000E000F001223000F000F3O00201B000F000F000200121E001000113O00121E001100333O00121E001200113O00121E001300244O001A000F00130002001009000E0013000F002O30000E0025001B001223000F00173O00201B000F000F001800121E001000343O00121E001100353O00121E001200364O001A000F00120002001009000E002E000F002O30000E002B0037002O30000E0038004500201B000F000E0029002O30000F002A001B001223000F00273O00201B000F000F002600201B000F000F0028001009000E0026000F001223000F00013O00201B000F000F000200121E001000304O000D001100024O001A000F00110002002O30000F000400440012230010000F3O00201B00100010000200121E001100463O00121E001200113O00121E001300223O00121E001400114O001A001000140002001009000F000E00100012230010000F3O00201B00100010000200121E001100113O00121E001200333O00121E001300113O00121E001400244O001A001000140002001009000F00130010002O30000F0025001B001223001000173O00201B00100010001800121E001100343O00121E001200353O00121E001300364O001A001000130002001009000F002E0010002O30000F002B0037002O30000F0038004500201B0010000F0029002O300010002A001B001223001000273O00201B00100010002600201B001000100028001009000F00260010001223001000013O00201B00100010000200121E0011001F4O000D001200024O001A001000120002002O300010000400470012230011000F3O00201B00110011000200121E001200423O00121E001300113O00121E0014003A3O00121E001500114O001A0011001500020010090010000E00110012230011000F3O00201B00110011000200121E001200113O00121E001300333O00121E001400113O00121E001500244O001A001100150002001009001000130011002O3000100025001B001223001100173O00201B00110011001800121E001200343O00121E001300353O00121E001400364O001A0011001400020010090010002E0011002O300010002B004800201B001100100029002O300011002A001B001223001100273O00201B00110011002600201B001100110028001009001000260011001223001100013O00201B00110011000200121E001200494O000D001300024O001A0011001300020012230012000F3O00201B00120012000200121E001300463O00121E001400113O00121E0015003A3O00121E001600114O001A0012001600020010090011000E00120012230012000F3O00201B00120012000200121E001300113O00121E001400333O00121E001500113O00121E0016004A4O001A001200160002001009001100130012002O3000110004004B001223001200173O00201B00120012001800121E0013004C3O00121E001400113O00121E001500114O001A00120015000200100900110016001200201B00120004004D00201C00120012004E00061200143O000100012O00103O00054O001600120014000100201B00120006004D00201C00120012004E00061200140001000100012O00103O000B4O001600120014000100201B00120007004D00201C00120012004E00061200140002000100012O00103O000C4O001600120014000100201B00120008004D00201C00120012004E00061200140003000100012O00103O000D4O001600120014000100201B00120009004D00201C00120012004E00061200140004000100012O00103O000E4O001600120014000100201B0012000A004D00201C00120012004E00061200140005000100012O00103O000F4O00160012001400012O001100126O001500133O0001001223001400503O00201B00140014000200121E001500513O00121E001600523O00121E001700534O001A0014001700020010090013004F0014001223001400073O00201C00140014005400121E001600554O001A001400160002001223001500563O00201B00150015000200121E001600573O001223001700273O00201B00170017005800201B0017001700592O001A001500170002001223001600073O00201B00160016000800201B00160016000900061200170006000100032O00103O00164O00103O00144O00103O00153O00122O0017005A4O001100175O00201B00180010004D00201C00180018004E000612001A0007000100042O00103O00124O00103O00114O00103O00174O00103O00134O00160018001A00012O00053O00013O00083O00103O0003043O005465787403083O00746F6E756D62657203053O007072696E74026O00F03F03083O0042696B6554797065027O004003043O0067616D65030A3O004765745365727669636503113O005265706C69636174656453746F72616765030C3O0057616974466F724368696C64030C3O0052656D6F74654576656E7473030B3O005075626C69736842696B65030A3O004669726553657276657203063O00756E7061636B030B3O005265706F72744465617468031B3O00496E76616C696420696E7075742C206E6F742061206E756D626572002D4O00067O00201B5O0001001223000100024O000D00026O002F00010002000200062A0001002900013O0004273O00290001001223000200034O000D000300014O00260002000200012O001500023O0002002O30000200040005001009000200060001001223000300073O00201C00030003000800121E000500094O001A00030005000200201C00030003000A00121E0005000B4O001A00030005000200201C00030003000A00121E0005000C4O001A00030005000200201C00030003000D0012230005000E4O000D000600024O002C000500064O003300033O0001001223000300073O00201C00030003000800121E000500094O001A00030005000200201C00030003000A00121E0005000B4O001A00030005000200201C00030003000A00121E0005000F4O001A00030005000200201C00030003000D2O00260003000200010004273O002C0001001223000200033O00121E000300104O00260002000200012O00053O00017O00143O0003043O005465787403083O00746F6E756D62657203053O007072696E7403093O006C6F636174696F6E3103073O00566563746F72332O033O006E6577023O00A034805A40025O00307F4002E5EFFFDFF59FCAC003043O0067616D65030A3O0047657453657276696365030C3O0054772O656E5365727669636503093O0054772O656E496E666F03043O00456E756D030B3O00456173696E675374796C6503063O004C696E65617203073O00506C6179657273030B3O004C6F63616C506C61796572030F3O00627970612O735F74656C65706F727403073O00696E7661696C65002E4O00067O00201B5O0001001223000100024O000D00026O002F00010002000200062A0001002A00013O0004273O002A0001001223000200034O000D000300014O00260002000200012O001500023O0001001223000300053O00201B00030003000600121E000400073O00121E000500083O00121E000600094O001A0003000600020010090002000400030012230003000A3O00201C00030003000B00121E0005000C4O001A0003000500020012230004000D3O00201B0004000400062O000D000500013O0012230006000E3O00201B00060006000F00201B0006000600102O001A0004000600020012230005000A3O00201B00050005001100201B00050005001200061200063O000100032O00103O00054O00103O00034O00103O00043O00122O000600133O001223000600133O00201B0007000200042O00260006000200012O001800025O0004273O002D0001001223000200033O00121E000300144O00260002000200012O00053O00013O00013O00073O0003093O00436861726163746572030E3O0046696E6446697273744368696C6403103O0048756D616E6F6964522O6F745061727403063O00434672616D652O033O006E657703063O0043726561746503043O00506C6179011B4O000600015O00201B00010001000100062A0001001A00013O0004273O001A00012O000600015O00201B00010001000100201C00010001000200121E000300034O001A00010003000200062A0001001A00013O0004273O001A0001001223000100043O00201B0001000100052O000D00026O002F0001000200022O0006000200013O00201C0002000200062O000600045O00201B00040004000100201B0004000400032O0006000500024O001500063O00010010090006000400012O001A00020006000200201C0003000200072O00260003000200012O00053O00017O00143O0003043O005465787403083O00746F6E756D62657203053O007072696E7403093O006C6F636174696F6E3103073O00566563746F72332O033O006E6577023O00E003C05A40025O00307F40024O004079D4C003043O0067616D65030A3O0047657453657276696365030C3O0054772O656E5365727669636503093O0054772O656E496E666F03043O00456E756D030B3O00456173696E675374796C6503063O004C696E65617203073O00506C6179657273030B3O004C6F63616C506C61796572030F3O00627970612O735F74656C65706F727403073O00696E7661696C65002E4O00067O00201B5O0001001223000100024O000D00026O002F00010002000200062A0001002A00013O0004273O002A0001001223000200034O000D000300014O00260002000200012O001500023O0001001223000300053O00201B00030003000600121E000400073O00121E000500083O00121E000600094O001A0003000600020010090002000400030012230003000A3O00201C00030003000B00121E0005000C4O001A0003000500020012230004000D3O00201B0004000400062O000D000500013O0012230006000E3O00201B00060006000F00201B0006000600102O001A0004000600020012230005000A3O00201B00050005001100201B00050005001200061200063O000100032O00103O00054O00103O00034O00103O00043O00122O000600133O001223000600133O00201B0007000200042O00260006000200012O001800025O0004273O002D0001001223000200033O00121E000300144O00260002000200012O00053O00013O00013O00073O0003093O00436861726163746572030E3O0046696E6446697273744368696C6403103O0048756D616E6F6964522O6F745061727403063O00434672616D652O033O006E657703063O0043726561746503043O00506C6179011B4O000600015O00201B00010001000100062A0001001A00013O0004273O001A00012O000600015O00201B00010001000100201C00010001000200121E000300034O001A00010003000200062A0001001A00013O0004273O001A0001001223000100043O00201B0001000100052O000D00026O002F0001000200022O0006000200013O00201C0002000200062O000600045O00201B00040004000100201B0004000400032O0006000500024O001500063O00010010090006000400012O001A00020006000200201C0003000200072O00260003000200012O00053O00017O00143O0003043O005465787403083O00746F6E756D62657203053O007072696E7403093O006C6F636174696F6E3103073O00566563746F72332O033O006E6577023O00208B245B40025O00307F40023O00E086E7D1C003043O0067616D65030A3O0047657453657276696365030C3O0054772O656E5365727669636503093O0054772O656E496E666F03043O00456E756D030B3O00456173696E675374796C6503063O004C696E65617203073O00506C6179657273030B3O004C6F63616C506C61796572030F3O00627970612O735F74656C65706F727403073O00696E7661696C65002E4O00067O00201B5O0001001223000100024O000D00026O002F00010002000200062A0001002A00013O0004273O002A0001001223000200034O000D000300014O00260002000200012O001500023O0001001223000300053O00201B00030003000600121E000400073O00121E000500083O00121E000600094O001A0003000600020010090002000400030012230003000A3O00201C00030003000B00121E0005000C4O001A0003000500020012230004000D3O00201B0004000400062O000D000500013O0012230006000E3O00201B00060006000F00201B0006000600102O001A0004000600020012230005000A3O00201B00050005001100201B00050005001200061200063O000100032O00103O00054O00103O00034O00103O00043O00122O000600133O001223000600133O00201B0007000200042O00260006000200012O001800025O0004273O002D0001001223000200033O00121E000300144O00260002000200012O00053O00013O00013O00073O0003093O00436861726163746572030E3O0046696E6446697273744368696C6403103O0048756D616E6F6964522O6F745061727403063O00434672616D652O033O006E657703063O0043726561746503043O00506C6179011B4O000600015O00201B00010001000100062A0001001A00013O0004273O001A00012O000600015O00201B00010001000100201C00010001000200121E000300034O001A00010003000200062A0001001A00013O0004273O001A0001001223000100043O00201B0001000100052O000D00026O002F0001000200022O0006000200013O00201C0002000200062O000600045O00201B00040004000100201B0004000400032O0006000500024O001500063O00010010090006000400012O001A00020006000200201C0003000200072O00260003000200012O00053O00017O00143O0003043O005465787403083O00746F6E756D62657203053O007072696E7403093O006C6F636174696F6E3103073O00566563746F72332O033O006E6577023O00E0E8785A40025O00208C40023O00C08E49CDC003043O0067616D65030A3O0047657453657276696365030C3O0054772O656E5365727669636503093O0054772O656E496E666F03043O00456E756D030B3O00456173696E675374796C6503063O004C696E65617203073O00506C6179657273030B3O004C6F63616C506C61796572030F3O00627970612O735F74656C65706F727403073O00696E7661696C65002E4O00067O00201B5O0001001223000100024O000D00026O002F00010002000200062A0001002A00013O0004273O002A0001001223000200034O000D000300014O00260002000200012O001500023O0001001223000300053O00201B00030003000600121E000400073O00121E000500083O00121E000600094O001A0003000600020010090002000400030012230003000A3O00201C00030003000B00121E0005000C4O001A0003000500020012230004000D3O00201B0004000400062O000D000500013O0012230006000E3O00201B00060006000F00201B0006000600102O001A0004000600020012230005000A3O00201B00050005001100201B00050005001200061200063O000100032O00103O00054O00103O00034O00103O00043O00122O000600133O001223000600133O00201B0007000200042O00260006000200012O001800025O0004273O002D0001001223000200033O00121E000300144O00260002000200012O00053O00013O00013O00073O0003093O00436861726163746572030E3O0046696E6446697273744368696C6403103O0048756D616E6F6964522O6F745061727403063O00434672616D652O033O006E657703063O0043726561746503043O00506C6179011B4O000600015O00201B00010001000100062A0001001A00013O0004273O001A00012O000600015O00201B00010001000100201C00010001000200121E000300034O001A00010003000200062A0001001A00013O0004273O001A0001001223000100043O00201B0001000100052O000D00026O002F0001000200022O0006000200013O00201C0002000200062O000600045O00201B00040004000100201B0004000400032O0006000500024O001500063O00010010090006000400012O001A00020006000200201C0003000200072O00260003000200012O00053O00017O00143O0003043O005465787403083O00746F6E756D62657203053O007072696E7403093O006C6F636174696F6E3103073O00566563746F72332O033O006E6577023O00E003C05A40025O00C07240023O00E07CCCD5C003043O0067616D65030A3O0047657453657276696365030C3O0054772O656E5365727669636503093O0054772O656E496E666F03043O00456E756D030B3O00456173696E675374796C6503063O004C696E65617203073O00506C6179657273030B3O004C6F63616C506C61796572030F3O00627970612O735F74656C65706F727403073O00696E7661696C65002E4O00067O00201B5O0001001223000100024O000D00026O002F00010002000200062A0001002A00013O0004273O002A0001001223000200034O000D000300014O00260002000200012O001500023O0001001223000300053O00201B00030003000600121E000400073O00121E000500083O00121E000600094O001A0003000600020010090002000400030012230003000A3O00201C00030003000B00121E0005000C4O001A0003000500020012230004000D3O00201B0004000400062O000D000500013O0012230006000E3O00201B00060006000F00201B0006000600102O001A0004000600020012230005000A3O00201B00050005001100201B00050005001200061200063O000100032O00103O00054O00103O00034O00103O00043O00122O000600133O001223000600133O00201B0007000200042O00260006000200012O001800025O0004273O002D0001001223000200033O00121E000300144O00260002000200012O00053O00013O00013O00073O0003093O00436861726163746572030E3O0046696E6446697273744368696C6403103O0048756D616E6F6964522O6F745061727403063O00434672616D652O033O006E657703063O0043726561746503043O00506C6179011B4O000600015O00201B00010001000100062A0001001A00013O0004273O001A00012O000600015O00201B00010001000100201C00010001000200121E000300034O001A00010003000200062A0001001A00013O0004273O001A0001001223000100043O00201B0001000100052O000D00026O002F0001000200022O0006000200013O00201C0002000200062O000600045O00201B00040004000100201B0004000400032O0006000500024O001500063O00010010090006000400012O001A00020006000200201C0003000200072O00260003000200012O00053O00017O00073O0003093O00436861726163746572030E3O0046696E6446697273744368696C6403103O0048756D616E6F6964522O6F745061727403063O00434672616D652O033O006E657703063O0043726561746503043O00506C6179011B4O000600015O00201B00010001000100062A0001001A00013O0004273O001A00012O000600015O00201B00010001000100201C00010001000200121E000300034O001A00010003000200062A0001001A00013O0004273O001A0001001223000100043O00201B0001000100052O000D00026O002F0001000200022O0006000200013O00201C0002000200062O000600045O00201B00040004000100201B0004000400032O0006000500024O001500063O00010010090006000400012O001A00020006000200201C0003000200072O00260003000200012O00053O00017O00103O0003103O004261636B67726F756E64436F6C6F723303063O00436F6C6F723303073O0066726F6D524742028O00025O00E06F40030F3O00627970612O735F74656C65706F727403093O006C6F636174696F6E3103043O0067616D6503073O00506C6179657273030B3O004C6F63616C506C6179657203093O0043686172616374657203103O0048756D616E6F6964522O6F745061727403073O00546F756368656403073O00436F2O6E65637403043O0077616974026O003E4000314O00068O00038O00248O00067O00062A3O002600013O0004273O002600012O00063O00013O001223000100023O00201B00010001000300121E000200043O00121E000300053O00121E000400044O001A0001000400020010093O000100012O00113O00014O00243O00024O00063O00023O00062A3O003000013O0004273O003000010012233O00064O0006000100033O00201B0001000100072O00263O000200010002087O001223000100083O00201B00010001000900201B00010001000A00201B00020001000B00201B00020002000C00201B00020002000D00201C00020002000E2O000D00046O00160002000400010012230002000F3O00121E000300104O00260002000200010004273O001000010004273O003000012O00063O00013O001223000100023O00201B00010001000300121E000200053O00121E000300043O00121E000400044O001A0001000400020010093O000100012O00118O00243O00024O00053O00013O00013O000C3O0003063O00506172656E7403043O004E616D6503023O00373003043O007461736B03043O0077616974026O00F03F03043O0067616D65030A3O004765745365727669636503113O005265706C69636174656453746F72616765030C3O0052656D6F74654576656E7473030B3O005265706F72745265736574030A3O004669726553657276657201183O00201B00013O000100062A0001001700013O0004273O0017000100201B00013O000100201B00010001000200261900010017000100030004273O00170001001223000100043O00201B00010001000500121E000200064O0026000100020001001223000100073O00201C00010001000800121E000300094O001A00010003000200201B00010001000A00201B00010001000B00201C00010001000C2O0026000100020001001223000100043O00201B00010001000500121E000200064O00260001000200012O00053O00017O00", GetFEnv(), ...);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement