-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathiqiyi_vf_ibt.php
3020 lines (2557 loc) · 81.9 KB
/
iqiyi_vf_ibt.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?
/*
IQIYI QIYI DOWNLOADER SCRIPT PHP VF IBT HASH DENOBIS CMD5X
from http://static.iqiyi.com/js/player_v1/pcweb.wonder.js where the cmd5x algorithm is stored as packed eval
this class computes the vf value in the call
http://cache.video.qiyi.com/vms?key=fvip&src=01010031010010000000&tvId=496130600&vid=12078ce069daab217b2632248272d722&vinfo=1&tm=506&qyid=&puid=&authKey=a6e3cd72befb37d067d2d684d74855b9&um=0&pf=b6c13e26323c537d&thdk=&thdt=&rs=1&k_tag=1&qdv=2&vf=7fff3565c6d525f625776630d571134f
where the relevant part is
/vms?key=fvip&src=01010031010010000000&tvId=496130600&vid=12078ce069daab217b2632248272d722&vinfo=1&tm=506&qyid=&puid=&authKey=a6e3cd72befb37d067d2d684d74855b9&um=0&pf=b6c13e26323c537d&thdk=&thdt=&rs=1&k_tag=1&qdv=2
the same for ibt
This makes md5($str."3sj8xof48xof4tk9f4tk9ypgk9ypg5ul")
********************************************************************************************************************
for PC and src 1702633101b340d8917a69cf8a4b8c7c salt is "u6fnp3eok0dpftcq9qbr4n9svk8tqh7u"
md5("/vms?key=fvip&src=1702633101b340d8917a69cf8a4b8c7c&tvId=214230107&vid=cce29b4a05363a5bdce1e824deeff474&vinfo=1&tm=1159&qyid=cf66272a29d2bd6bafca991c1af76911&puid=&authKey=0aaf6ce41642f43873ba9ee67c6aa7d1&um=0&pf=b6c13e26323c537d&thdk=&thdt=&rs=1&k_tag=1&qdx=n&qdv=3"."u6fnp3eok0dpftcq9qbr4n9svk8tqh7u");
//21d2ae1b3999acb91d75157ce98b435d
for ibt salt is "t6hrq6k0n6n6k6qdh6tje6wpb62v7654" (xcalc method)
ibt for vip:
1- you have a vip link
2- make api post call
$qdsc=extrae($link,'&qd','_sc=','&');
$qd_ip=extrae($link,'&qd_ip','=','&');
$qd_scc=extrae($link,'&qd_scc','=','&');
$qd_tm=extrae($link,'&qd_tm','=','&');
$qd_k=extrae($link,'&qd_k','=','&');
$qd_index=extrae($link,'&qd_index','=','&');
$qd_stert=extrae($link,'&qd_stert','=','&');
$call="http://api.vip.iqiyi.com/services/cknsp.action";
$post="qd%5Findex=$qd_index&platform=01010021010010000000&deviceId=&qd%5Fuid=1405568913&version=3%2E0&tvid=$tvid&qd%5Fsc=$qdsc&filename=$rid&qd%5Fip=$qd_ip&qd%5Fvip=1&shareFlag=0&qd%5Fstert=$qd_stert&playType=main&qd%5Fvipdyn=2&qd%5Fvipres=2&qd%5Fscc=$qd_scc&uid=&qd%5Fsrc=1702633101b340d8917a69cf8a4b8c7c&qd%5Faid=$tvid&qd%5Ftm=$qd_tm&qd%5Fk=$qd_k&aid=$tvid&qd%5Ftvid=$tvid";
$vipdata=json_decode(curl_proxy($call,"","",0,0,$url,$headers,$post));
3- get t
$t=$vipdata->data->t;
$ptime=$vipdata->data->ptime;
$ibt=md5($t.$rid."t6hrq6k0n6n6k6qdh6tje6wpb62v7654");
$last="&t=$t&cid=afbe8fd3d73448c9&ib=3&ptime=$ptime&ibt=$ibt";
$cookie="QY00001=".$vipdata->data->u;
$last.="&$cookie";
4- final link is $link.$last
*/
<?
class iqiyi
{
function W(&$Sz,$s=""){$Sz=ceil($Sz/16)*16;return $Sz;}
function Zarr(&$R,$typedarr,$n,$m="")
{
switch ($typedarr)
{
case "int8": $np=1;$pack="i";break;
case "uint8": $np=1;$pack="I";break;
case "int16": $np=2;$pack="s";break;
case "uint16": $np=2;$pack="S";break;
case "int32": $np=4;$pack="l";break;
case "uint32": $np=4;$pack="L";break;
case "f32": $np=4;$pack="f";break;
case "f64": $np=8;$pack="d";
}
$n*=$np;
if (!is_numeric($m))
{
$c=$np;$m="";while (--$c>=0) $m.=sprintf("%02X",$R[$n+$c]);
if ($np==1)
{
$exp=$np*8;
$m=hexdec($m);
if ($m>pow(2,$exp)-1) $m-=pow(2,$exp);
return $m;
}
return @array_shift(unpack($pack,strrev(pack("H*",$m))));
}
$type=array_values(unpack("C*",pack($pack,$m)));
foreach ($type as $byte) $R[$n++]=$byte;
}
function Tarr(&$R,$n,$m="")
{// Int8Array 8192 8-bit two's complement signed integer
return $this->Zarr($R,"int8",$n,$m);
}
function Uarr(&$R,$n,$m="")
{//int32 longitud 2048 32-bit two's complement signed integer
return $this->Zarr($R,"int32",$n,$m);
}
function Varr(&$R,$n,$m="")
{// uint8 8192 8-bit unsigned integer
return $this->Zarr($R,"uint8",$n,$m);
}
function aarr(&$R,$nn,$n,$m="")
{// Int8Array 8192 8-bit two's complement signed integer
return $this->Zarr($R,"int8",$n,$m);
}
function barr(&$R,$n,$m="")
{//Int16Array longitud 4096 16-bit two's complement signed integer
return $this->Zarr($R,"int16",$n,$m);
}
function carr(&$R,$v="",$n,$m="")
{//Int32Array longitud 2048 32-bit two's complement signed integer
return $this->Zarr($R,"int32",$n,$m);
}
function darr(&$R,$n,$m="")
{// Uint8Array 8-bit unsigned integer
return $this->Zarr($R,"uint8",$n,$m);
}
function earr(&$R,$n,$m="")
{//Uint16Array longitud 4096 16-bit unsigned integer
return $this->Zarr($R,"uint16",$n,$m);
}
function farr(&$R,$n,$m="")
{//Uint32Array longitud 2048 32-bit unsigned integer
return $this->Zarr($R,"uint32",$n,$m);
}
function garr(&$R,$n,$m="")
{//Float32Array longitud 2048 32-bit
return $this->Zarr($R,"f32",$n,$m);
}
function harr(&$R,$n,$m="")
{//Float64Array longitud 1024 64-bit
return $this->Zarr($R,"f64",$n,$m);
}
function Da($Sz,&$O){$ret=$O;$O+=$Sz|0+15&-16;return $ret;}
function Db($Sz,&$M){$ret=$M;$M+=$Sz|0+15&-16;return $ret;}
function Dc($Sz,&$N){$ret=$N;$N+=$Sz|0+15&-16;return $ret;}
function la($bytes,&$O)
{
if($O%4096>0){$O+=4096-$O%4096;}
return $this->Sx($bytes,$O);
}
function Sx($bytes,$O)
{
$ret=$O;
if($bytes!=0){$Su=$this->Da($bytes,$O);
if(!$Su)return-1>>0;}
return $ret;
}
function X(&$R,&$O,$Sl,$Tl="i8",$Al=0,$p="") // sl es unpack
{
$sz=sizeof($Sl);
$ret=$this->Ua($sz,$R,$O);
for ($k=$ret;$k<($sz+$ret);$k++)
$this->Varr($R,$k,$Sl[$k-$ret]);
return $ret;
}
function Sc($str,&$sx,$sz,$sy)
{
if(!($sy>0))return 0;
$startIdx=$sz=0;
$se=$sz+$sy-1;
for($i=0;$i<strlen($str);++$i)
{
$u=ord($str[$i]);
if($u>=55296&&$u<=57343)
$u=65536+(($u&1023)<<10)|ord($str[++$i])&1023;
if($u<=127)
{
if($sz>=$se)break;
$sx[$sz++]=$u;
}
else if($u<=2047)
{
if($sz+1>=$se)break;
$sx[$sz++]=192|$u>>6;
$sx[$sz++]=128|$u&63;
}
else if($u<=65535)
{
if($sz+2>=$se)break;
$sx[$sz++]=224|$u>>12;
$sx[$sz++]=128|$u>>6&63;
$sx[$sz++]=128|$u&63;
}
else if($u<=2097151)
{
if($sz+3>=$se)break;
$sx[$sz++]=240|$u>>18;
$sx[$sz++]=128|$u>>12&63;
$sx[$sz++]=128|$u>>6&63;
$sx[$sz++]=128|$u&63;
}
else if($u<=67108863)
{
if($sz+4>=$se)break;
$sx[$sz++]=248|$u>>24;
$sx[$sz++]=128|$u>>18&63;
$sx[$sz++]=128|$u>>12&63;
$sx[$sz++]=128|$u>>6&63;
$sx[$sz++]=128|$u&63;
}
else
{
if($sz+5>=$se)break;
$sx[$sz++]=252|$u>>30;
$sx[$sz++]=128|$u>>24&63;
$sx[$sz++]=128|$u>>18&63;
$sx[$sz++]=128|$u>>12&63;
$sx[$sz++]=128|$u>>6&63;
$sx[$sz++]=128|$u&63;
}
}
$sx[$sz]=0;
return $sz-$startIdx;
}
function Y($str)
{
$len=0;
for($i=0;$i<strlen($str);++$i)
{
$u=ord($str[$i]);
if($u>=55296&&$u<=57343)
{$u=65536+(($u&1023)<<10)|ord($str[++$i])&1023;}
if($u<=127){++$len;}
else if($u<=2047){$len+=2;}
else if($u<=65535){$len+=3;}
else if($u<=2097151){$len+=4;}
else if($u<=67108863){$len+=5;}
else{$len+=6;}
}
return $len;
}
function Id($stringy)
{
$len=$this->Y($stringy)+1;
$u8array=array($len);
$numBytesWritten=$this->Sc($stringy,$u8array,0,$len);
$u8array=array_slice($u8array,0,$numBytesWritten);
return $u8array;
}
function llf( $val , $shft )
{
if ($shft==0) return $val;
else return $val << $shft;
}
function _rshift($integer, $n)
{
if ($n==0) return $integer;
if (0xffffffff < $integer || -0xffffffff > $integer)
$integer = fmod($integer, 0xffffffff + 1);
if (0x7fffffff < $integer)
$integer -= 0xffffffff + 1.0;
elseif (-0x80000000 > $integer)
$integer += 0xffffffff + 1.0;
if (0 > $integer)
{
$integer &= 0x7fffffff;
$integer >>= $n;
$integer |= 1 << (31 - $n);
}
else $integer >>= $n;
return $integer;
}
function Z($p,&$R) {$ret=time()|0;if($p){$ret=$this->Uarr($R,$p>>2,"");}return $ret;}
function ma($p,&$R){return $this->Z($p,$R);}
function Ia($b,&$RR,&$OO)
{
$i=1856;
$d=$e=$f=$g=$j=$k=$l=$m=$n=$o=$p=$q=$r=$s=$t=$u=$v=$w=$x=$y=$z=0;
$A=$B=$C=$D=$E=$F=$G=$H=$I=$J=$K=$L=$M=$N=$O=$P=$R=$S=$T=$U=$V=$W=$X=$Y=$Z=0;
$_=$dol=0;
$aa=$ba=$ca=$da=$ea=$fa=$ga=$ha=$ia=$ja=$ka=$la=$ma=$na=$oa=$pa=$qa=$ra=$sa=$ta=$ua=$va=$wa=$xa=$ya=$za=0;
$Aa=$Ba=$Ca=$Da=$Ea=$Fa=$Ga=$Ha=$Ia=$Ja=$Ka=$La=$Ma=$Na=$Oa=$Pa=$Qa=$Ra=$Sa=$Ta=$Va=$Wa=$Ya=$Za=0;
$_a=$__a=0;
$ab=$bb=$cb=$db=$eb=$fb=$gb=$hb=$ib=$jb=$kb=$lb=$mb=$nb=$ob=$pb=$qb=$rb=$sb=$tb=$ub=$vb=$wb=$xb=$yb=$zb=0;
$Ab=$Bb=$Cb=$Db=$Eb=$Fb=$Gb=$Hb=$Ib=0;
$qb=$i;
$Ga=$qb+512;
$J=$qb+768;$d=$qb+776;$e=$qb+784;
$r=$qb+792;$va=$qb+800;$za=$qb+808;$s=$qb+816;$H=$qb+824;$I=$qb+832;$U=$qb+840;$ib=$qb+848;
$Wa=$qb+856;$wa=$qb+864;$D=$qb+872;$E=$qb+880;$F=$qb+888;$xa=$qb+896;$G=$qb+904;$ya=$qb+912;$q=$qb+920;
$pb=$qb+928;$hb=$qb+932;$C=$qb+936;
$t=$qb+940;$Da=$qb+944;$Aa=$qb+948;$Ba=$qb+952;
$Ta=$qb+956;$u=$qb+960;$fb=$qb+964;$v=$qb+968;
$w=$qb+972;$cb=$qb+976;$gb=$qb+980;$l=$qb+984;
$x=$qb+988;$y=$qb+992;$z=$qb+996;$A=$qb+1000;
$ab=$qb+1004;$db=$qb+1008;$m=$qb+1012;$Ca=$qb+1016;
$Va=$qb+1020;$_a=$qb+1024;$K=$qb+1028;$B=$qb+1032;
$L=$qb+1036;$M=$qb+1040;$N=$qb+1044;$O=$qb+1048;
$eb=$qb+1052;$bb=$qb+1056;$__a=$qb+1060;$P=$qb+1064;
$R=$qb+1068;$S=$qb+1072;$T=$qb+1076;$o=$qb+1080;
$Sa=$qb+1084;$Qa=$qb+1088;$Oa=$qb+1092;$Ma=$qb+1096;
$lb=$qb+1100;$Za=$qb+1104;$nb=$qb+1108;$sa=$qb+1112;
$qa=$qb+1116;$oa=$qb+1120;$ma=$qb+1124;$ua=$qb+1128;
$Ka=$qb+1132;$Ia=$qb+1136;$Fa=$qb+1140;$V=$qb+1144;
$ha=$qb+1148;$ka=$qb+1152;$Y=$qb+1156;$aa=$qb+1160;
$fa=$qb+1164;$i=$i+1168;
$f=$qb+1145;$da=$qb+1146;$g=$qb+1147;
$ia=$qb+1149;$j=$qb+1150;$ja=$qb+1151;
$k=$qb+1153;$W=$qb+1154;$X=$qb+1155;
$Z=$qb+1157;$_=$qb+1158;$dol=$qb+1159;
$ba=$qb+1161;$ca=$qb+1162;$ea=$qb+1163;
$ga=$qb+1165;
$ob=$qb;
$this->carr($RR,$n,$J>>2,$this->Ua(33,$RR,$OO));
$this->carr($RR,$n,$d>>2,$Ga);
$n=$p=$la=$na=$pa=$ra=$ta=$Ea=$Ha=$Ja=$La=$Na=$Pa=$Ra=$Ya=$kb=$mb=0;
$jb=936652527;
while(1)
{
switch ($jb)
{
case-1649803199:
return $this->carr($RR,$n,$J>>2,"");
case 936652527:
case 1969546970:
$this->Xa($RR,$this->carr($RR,$n,$d>>2,"")|0,0,256);
$this->carr($RR,$n,$e>>2,$ob);
$this->Xa($RR,$this->carr($RR,$n,$e>>2,""),0,512);
$n=62;$p=$la=$na=$pa=$ra=$ta=$Ea=$Ha=$Ja=$La=$Na=$Pa=$Ra=$Ya=$kb=$mb=0;
$jb=-188097831;continue;
case-188097831:
$this->carr($RR,$n,$o>>2,$n);$this->carr($RR,$n,$Sa>>2,$Ra);
$this->carr($RR,$n,$Qa>>2,$Pa);$this->carr($RR,$n,$Oa>>2,$Na);
$this->carr($RR,$n,$Ma>>2,$La);$this->carr($RR,$n,$lb>>2,$kb);
$this->carr($RR,$n,$Za>>2,$Ya);$this->carr($RR,$n,$nb>>2,$mb);
$this->carr($RR,$n,$sa>>2,$ra);$this->carr($RR,$n,$qa>>2,$pa);
$this->carr($RR,$n,$oa>>2,$na);$this->carr($RR,$n,$ma>>2,$la);
$this->carr($RR,$n,$ua>>2,$ta);$this->harr($RR,$q>>3,$p);
$this->carr($RR,$n,$Ka>>2,$Ja);$this->carr($RR,$n,$Ia>>2,$Ha);
$this->carr($RR,$n,$Fa>>2,$Ea);
$jb=-255123066;continue;
case-1137547745: /**/$jb=$n==0?-327886970:916103055;continue;
case-524762773: /**/$jb=$n<1?-1137547745:-107249853;continue;
case 608838580: /**/$jb=$n==1?-1290934332:916103055;continue;
case 304010989: /**/$jb=$n==3?-1995522865:916103055;continue;
case-107249853: /**/$jb=$n<3?608838580:304010989;continue;
case-2109032559: /**/$jb=$n<5?-524762773:2088360821;continue;
case 1775530198: /**/$jb=$n==5?439769685:916103055;continue;
case 2088360821: /**/$jb=$n<7?1775530198:1217939919;continue;
case-1951072297: /**/$jb=$n==7?1942162936:916103055;continue;
case-411922879: /**/$jb=$n==9?545100308:916103055;continue;
case 1217939919: /**/$jb=$n<9?-1951072297:-411922879;continue;
case-499972263: /**/$jb=$n==11?809617043:916103055;continue;
case 2040419279: /**/$jb=$n<11?-2109032559:-331915256;continue;
case-1396656085: /**/$jb=$n==13?1153477833:916103055;continue;
case 1670387339: /**/$jb=$n<13?-499972263:-22207083;continue;
case-22207083: /**/$jb=$n<15?-1396656085:343102405;continue;
case 343102405: /**/$jb=$n==15?1514554794:916103055;continue;
case 1183072760: /**/$jb=$n==17?-1971280264:916103055;continue;
case-331915256: /**/$jb=$n<17?1670387339:-909244188;continue;
case-1157656715: /**/$jb=$n<19?1183072760:1826842851;continue;
case 1826842851: /**/$jb=$n==19?-545058508:916103055;continue;
case-909244188: /**/$jb=$n<21?-1157656715:-1266323623;continue;
case-1266323623: /**/$jb=$n<22?153691705:151603818;continue;
case-1530939976: /**/$jb=$n<23?2040419279:-2017858759;continue;
case-823999218: /**/$jb=$n<24?-1892665105:635155771;continue;
case 635155771: /**/$jb=$n<25?-1967845546:-80539691;continue;
case 775542450: /**/$jb=$n<26?-823999218:1867803797;continue;
case-1367008151: /**/$jb=$n==27?1203488890:916103055;continue;
case 1867803797: /**/$jb=$n<27?1247969426:-1943746193;continue;
case-1966247896: /**/$jb=$n==29?620960943:916103055;continue;
case-1943746193: /**/$jb=$n<29?-1367008151:-1966247896;continue;
case-2017858759: /**/$jb=$n<31?775542450:-1629615901;continue;
case 1370835909: /**/$jb=$n==31?637834779:916103055;continue;
case-494102117: /**/$jb=$n<33?1370835909:1115527364;continue;
case-204104119: /**/$jb=$n==33?368050796:916103055;continue;
case 1115527364: /**/$jb=$n<35?-204104119:-1579204746;continue;
case 13290759: /**/$jb=$n==36?195832850:916103055;continue;
case-1629615901: /**/$jb=$n<36?-494102117:-968403108;continue;
case 1058751639: /**/$jb=$n<38?13290759:-526301530;continue;
case-526301530: /**/$jb=$n==38?-1341729830:916103055;continue;
case-968403108: /**/$jb=$n<40?1058751639:-1936945228;continue;
case-1183676751: /**/$jb=$n==41?-934444625:916103055;continue;
case-1936945228: /**/$jb=$n<41?-1797419395:-1183676751;continue;
case 1093527402: /**/$jb=$n==43?-1098566066:916103055;continue;
case-255123066: /**/$jb=$n<43?-1530939976:1466680073;continue;
case-1031373064: /**/$jb=$n<45?1093527402:-147891877;continue;
case-147891877: /**/$jb=$n<46?1657487624:1541240532;continue;
case 852236017: /**/$jb=$n<47?-1031373064:-86792897;continue;
case-86792897: /**/$jb=$n<48?1102465302:-303896161;continue;
case 1315897097: /**/$jb=$n==49?-25886128:916103055;continue;
case-303896161: /**/$jb=$n<49?-568636039:1315897097;continue;
case-708759048: /**/$jb=$n<51?852236017:1290413867;continue;
case 1982907982: /**/$jb=$n==52?887924077:916103055;continue;
case-1202295682: /**/$jb=$n<52?-1385908106:2055800044;continue;
case 2055800044: /**/$jb=$n<54?1982907982:-2014779455;continue;
case 1290413867: /**/$jb=$n<55?-1202295682:2120616980;continue;
case-1156946543: /**/$jb=$n<56?-1173436005:549762434;continue;
case 2120616980: /**/$jb=$n<57?-1156946543:1287975406;continue;
case 709849698: /**/$jb=$n==58?-671207445:916103055;continue;
case 1287975406: /**/$jb=$n<58?-1841591203:709849698;continue;
case 1117037785: /**/$jb=$n==60?-602596021:916103055;continue;
case 1466680073: /**/$jb=$n<60?-708759048:1256704313;continue;
case-1361726950: /**/$jb=$n<62?1117037785:1010850097;continue;
case 1010850097: /**/$jb=$n<63?-856036625:-1649803199;continue;
case 801681189: /**/$jb=$n<64?-1361726950:1012403908;continue;
case 1012403908: /**/$jb=$n<65?-902588506:1717331240;continue;
case-1712406553: /**/$jb=$n==65?-1153545492:916103055;continue;
case 591681232: /**/$jb=$n==67?-1355478599:916103055;continue;
case 1717331240: /**/$jb=$n<67?-1712406553:591681232;continue;
case-771214760: /**/$jb=$n==69?651068526:916103055;continue;
case 1256704313: /**/$jb=$n<69?801681189:-1060336117;continue;
case 212826519: /**/$jb=$n==71?1008856235:916103055;continue;
case-1266383858: /**/$jb=$n<71?-771214760:1815387249;continue;
case 1815387249: /**/$jb=$n<73?212826519:-252274077;continue;
case-252274077: /**/$jb=$n==73?1347562810:916103055;continue;
case 263250548: /**/$jb=$n==75?-1572948785:916103055;continue;
case-1060336117: /**/$jb=$n<75?-1266383858:-743013407;continue;
case 920364886: /**/$jb=$n<77?263250548:-1212483299;continue;
case-1212483299: /**/$jb=$n==77?-412272376:916103055;continue;
case-743013407: /**/$jb=$n<79?920364886:-1414489443;continue;
case-1814214169: /**/$jb=$n==79?-1129217909:916103055;continue;
case-1414489443: /**/$jb=$n<81?-1814214169:1771209720;continue;
case 1771209720: /**/$jb=$n==81?-2074579782:916103055;continue;
case-44538672: $jb=$this->aarr($RR,$n,$X,"")&1?2070699595:-1785460248;continue;
case-152754021: $jb=$this->aarr($RR,$n,$ka,"")&1?-1360885125:2059037329;continue;
case 1804404662: $jb=$this->aarr($RR,$n,$aa,"")&1?-2136717671:-828878942;continue;
case-1552799363: $jb=$this->aarr($RR,$n,$Z,"")&1?139799944:690197071;continue;
case-1361473685: $jb=$this->aarr($RR,$n,$ba,"")&1?-1924281938:128106704;continue;
case-1610186071: $jb=$this->aarr($RR,$n,$fa,"")&1?-2141197378:-630729423;continue;
case-999614033: $jb=$this->aarr($RR,$n,$Y,"")&1?331129789:1618283724;continue;
case-763186054: $jb=$this->aarr($RR,$n,$ga,"")&1?-2051875059:2146552338;continue;
case-668795440: $jb=$this->aarr($RR,$n,$ca,"")&1?-983205733:-1662327480;continue;
case 1667927966: $jb=$this->aarr($RR,$n,$ia,"")&1?-777225753:1388594392;continue;
case 1410777152: $jb=$this->aarr($RR,$n,$dol,"")&1?2045376102:-489741395;continue;
case 1951978675: $jb=$this->aarr($RR,$n,$da,"")&1?-2014580748:481757527;continue;
case 1980027799: $jb=$this->aarr($RR,$n,$ha,"")&1?1297236730:-920516874;continue;
case-424000715: $jb=$this->aarr($RR,$n,$W,"")&1?270009349:1137039176;continue;
case-412361919: $jb=$this->aarr($RR,$n,$_,"")&1?1775324253:1774369769;continue;
case 60376344: $jb=$this->aarr($RR,$n,$V,"")&1?1468918320:2014978051;continue;
case 780107150: $jb=$this->aarr($RR,$n,$ja,"")&1?-1781069297:-722374409;continue;
case 618822415: $jb=$this->aarr($RR,$n,$ea,"")&1?1432877594:2028659015;continue;
case 809617043:
$this->aarr($RR,$n,$ea,$Ea<32&1);
$jb=618822415;continue;
case 887924077:
$this->carr($RR,$n,$Aa>>2,$this->carr($RR,$n,$ua>>2,"")+1);
$jb=-256536033;continue;
case 1008856235:
$this->aarr($RR,$n,$ha,$this->carr($RR,$n,$Fa>>2,"")<24&1);
$jb=1980027799;continue;
case 620960943:
$this->aarr($RR,$n,$dol,$this->carr($RR,$n,$Fa>>2,"")<8&1);
$jb=1410777152;continue;
case 1102465302:
$this->carr($RR,$n,$v>>2,$this->carr($RR,$n,$Ka>>2,"")+16);
$jb=2131809869;continue;
case 633810001:
$this->carr($RR,$n,$G>>2,$Ga+$this->llf($this->carr($RR,$n,$xa>>2,""),2));
$jb=-164314163;continue;
case 717745890:
$this->carr($RR,$n,$u>>2,$this->carr($RR,$n,$Ta>>2,"")+14);
$this->carr($RR,$n,$fb>>2,$this->carr($RR,$n,$Ia>>2,"")+32>>2);
$jb=-1878597151;continue;
case 195832850:
$tb=$this->carr($RR,$n,$ua>>2,"");
$this->carr($RR,$n,$cb>>2,$this->llf($this->aarr($RR,$n,$b+$tb,""),$this->llf($this->carr($RR,$n,$ua>>2,"")%4,3)));
$this->carr($RR,$n,$gb>>2,$this->carr($RR,$n,$ua>>2,"")>>2);
$jb=788846146;continue;
case 651068526:
$tb=$this->llf($this->carr($RR,$n,$Fa>>2,""),2);$tb=($tb^~28)&$tb;
$this->carr($RR,$n,$hb>>2,$this->carr($RR,$n,$qa>>2,"")>>(4&~$tb|$tb&~4));
$jb=1288598934;continue;
case 73587007:
$this->carr($RR,$n,$y>>2,$this->carr($RR,$n,$x>>2,"")+34);
$jb=167383782;continue;
case 788846146:
$tb=$this->carr($RR,$n,$gb>>2,"");$this->carr($RR,$n,$D>>2,$ob+$this->llf($tb,2));
$this->carr($RR,$n,$l>>2,$this->carr($RR,$n,$this->carr($RR,$n,$D>>2,"")>>2,""));
$jb=108332815;continue;
case 151603818:
$this->carr($RR,$n,$Ca>>2,$this->carr($RR,$n,$ua>>2,"")+1);
$jb=1720235387;continue;
case 153691705:
$this->carr($RR,$n,$Va>>2,$this->llf($this->carr($RR,$n,$Za>>2,"")%4,3));
$jb=-86385898;continue;
case 368050796:
$this->aarr($RR,$n,$_,$this->carr($RR,$n,$ua>>2,"")<4&1);
$jb=-412361919;continue;
case 545100308:
$this->carr($RR,$n,$B>>2,~(~$this->carr($RR,$n,$oa>>2,"")|~$this->carr($RR,$n,$sa>>2,""))&-1);
$jb=494739317;continue;
case 549762434:
$this->harr($RR,$ib>>3,-$this->harr($RR,$q>>3,""));
$jb=416259719;continue;
case 1111318124:
$this->harr($RR,$U>>3,sin($this->carr($RR,$n,$t>>2,"")));
$jb=-1380451239;continue;
case 1129515855:
$this->aarr($RR,$n,$W,($this->aarr($RR,$n,$k,""))!=0&1);
$jb=-424000715;continue;
case 1203488890:
$this->carr($RR,$n,$x>>2,$this->carr($RR,$n,$Fa>>2,"")*23+$this->carr($RR,$n,$ua>>2,"")*37);
$jb=73587007;continue;
case 1247969426:
$this->aarr($RR,$n,$aa,$this->carr($RR,$n,$lb>>2,"")<10&1);
$jb=1804404662;continue;
case 1347562810:
$tb=$this->carr($RR,$n,$Fa>>2,"");$tb=($tb^~7)&$tb;
$this->carr($RR,$n,$pb>>2,1&~$tb|$tb&~1);
$jb=-991315587;continue;
case 1288598934:
$tb=$this->carr($RR,$n,$hb>>2,"");
$this->carr($RR,$n,$s>>2,217+(($tb^-16)&$tb));
$jb=-423412824;continue;
case 1514554794:
$this->aarr($RR,$n,$ca,$this->carr($RR,$n,$Fa>>2,"")<16&1);
$jb=-668795440;continue;
case 1541240532:
$this->carr($RR,$n,$w>>2,$this->carr($RR,$n,$Ka>>2,"")+16);
$jb=1410343841;continue;
case 1688333518:
$this->carr($RR,$n,$ob+$this->llf($this->carr($RR,$n,$wa>>2,""),2)>>2,0);
$jb=-895015477;continue;
case 1942162936:
$this->aarr($RR,$n,$fa,$this->carr($RR,$n,$Fa>>2,"")<48&1);
$jb=-1610186071;continue;
case-1967845546:
$this->carr($RR,$n,$A>>2,$this->carr($RR,$n,$lb>>2,"")+90);
$jb=-180306226;continue;
case 2131809869:
$this->aarr($RR,$n,$X,$this->carr($RR,$n,$v>>2,"")>=$this->carr($RR,$n,$Za>>2,"")&1);
$jb=-44538672;continue;
case-1995522865:
$this->aarr($RR,$n,$ga,$this->carr($RR,$n,$Fa>>2,"")<64&1);
$jb=-763186054;continue;
case-1841591203:
$this->aarr($RR,$n,$ka,$this->harr($RR,$q>>3,"")<0&1);
$jb=-152754021;continue;
case-1892665105:
$this->carr($RR,$n,$ab>>2,$this->carr($RR,$n,$Za>>2,"")%4);
$jb=463554092;continue;
case-1572948785:
$this->aarr($RR,$n,$da,$this->carr($RR,$n,$Fa>>2,"")<16&1);
$jb=1951978675;continue;
case-1385908106:
$tb=$this->carr($RR,$n,$nb>>2,"");
$this->aarr($RR,$n,$k,$this->aarr($RR,$n,$b+$tb,""));
$jb=1129515855;continue;
case-1355478599:
$this->aarr($RR,$n,$ia,$this->carr($RR,$n,$Fa>>2,"")<32&1);
$jb=1667927966;continue;
case-1341729830:
$this->aarr($RR,$n,$Z,$this->carr($RR,$n,$ua>>2,"")<$this->carr($RR,$n,$Ia>>2,"")&1);
$jb=-1552799363;continue;
case-1173436005:
$this->harr($RR,$Wa>>3,$this->harr($RR,$q>>3,"")*4294967296);
$jb=800362374;continue;
case-1153545492:
$tb=$this->carr($RR,$n,$Fa>>2,"");
$this->carr($RR,$n,$C>>2,($tb^~7)&$tb);
$jb=-521081237;continue;
case-1129217909:
$this->aarr($RR,$n,$V,$this->carr($RR,$n,$Fa>>2,"")<8&1);
$jb=60376344;continue;
case-1098566066:
$this->aarr($RR,$n,$Y,$this->carr($RR,$n,$ua>>2,"")<$this->carr($RR,$n,$Za>>2,"")&1);
$jb=-999614033;continue;
case-902588506:
$this->carr($RR,$n,$I>>2,$this->carr($RR,$n,$J>>2,"")+32);
$jb=-747420302;continue;
case-747420302:
$this->aarr($RR,$n,$this->carr($RR,$n,$I>>2,""),0);
$jb=601583830;continue;
case-671207445:
$this->carr($RR,$n,$t>>2,$this->carr($RR,$n,$Fa>>2,"")+1);
$jb=1111318124;continue;
case-602596021:
$this->aarr($RR,$n,$ja,$this->carr($RR,$n,$Fa>>2,"")<64&1);
$jb=780107150;continue;
case-568636039:
$this->carr($RR,$n,$Ta>>2,$this->llf($this->carr($RR,$n,$Ia>>2,"")+40>>6,4));
$jb=717745890;continue;
case-545058508:
$this->aarr($RR,$n,$ba,$this->carr($RR,$n,$ua>>2,"")<$this->carr($RR,$n,$Ka>>2,"")&1);
$jb=-1361473685;continue;
case-80539691:
$this->carr($RR,$n,$z>>2,$this->carr($RR,$n,$lb>>2,"")+49);
$jb=484876086;continue;
case-25886128:
$this->carr($RR,$n,$Ba>>2,$this->carr($RR,$n,$Ia>>2,"")+1);
$jb=-843646639;continue;
case-390950602:
$this->aarr($RR,$n,$f,$this->aarr($RR,$n,$this->carr($RR,$n,$r>>2,""),""));
$ub=$this->carr($RR,$n,$Fa>>2,"");
$tb=$va;
$this->carr($RR,$n,$tb>>2,$ub);
$this->carr($RR,$n,$tb+4>>2,$this->llf($ub<0,31)>>31);
$jb=-275270623;continue;
case-327886970:
$xb=$this->carr($RR,$n,$Ma>>2,"");
$tb=$this->carr($RR,$n,$ma>>2,"");
$yb=~(~((~(~$xb|~-2)&-1)+$tb)|~-2)&-1;
$xb=~(~$xb|~1)&-1;
$wb=~$yb;
$vb=~$xb;
$ub=~1572610025;
$this->carr($RR,$n,$R>>2,(($wb&1572610025|$yb&$ub)^($vb&1572610025|$xb&$ub)|~($wb|$vb)&(1572610025|$ub))+(~(~$tb|~1)&-1));
$jb=2008811188;continue;
case-86385898:
$wb=$this->llf(128,$this->carr($RR,$n,$Va>>2,""));
$xb=$this->carr($RR,$n,$Za>>2,"")>>2;
$this->carr($RR,$n,$F>>2,$ob+$this->llf($xb,2));
$xb=$this->carr($RR,$n,$this->carr($RR,$n,$F>>2,"")>>2,"");
$vb=~$xb;
$ub=~$wb;
$tb=~924717824;
$this->carr($RR,$n,$_a>>2,($vb&924717824|$xb&$tb)^($ub&924717824|$wb&$tb)|~($vb|$ub)&(924717824|$tb));
$jb=1264018475;continue;
case-665924408:
$tb=$this->carr($RR,$n,$__a>>2,"");
$ub=$this->carr($RR,$n,$oa>>2,"");
$vb=~(~((($ub^~-2)&$ub)+$tb)|~-2)&-1;
$ub=~(~$ub|~1)&-1;
$this->carr($RR,$n,$P>>2,($vb&$ub|$vb^$ub)+(($tb^~1)&$tb));
$jb=-401948426;continue;
case-521081237:
$ub=$this->llf($this->carr($RR,$n,$C>>2,""),2);
$tb=~852477429;
$tb=$this->carr($RR,$n,$sa>>2,"")>>((852477429&~$ub|$ub&$tb)^(~4&852477429|4&$tb));
$this->aarr($RR,$n,$j,$this->aarr($RR,$n,217+(($tb^-16)&$tb),""));
$tb=$this->carr($RR,$n,$Fa>>2,"");
$this->carr($RR,$n,$H>>2,$this->carr($RR,$n,$J>>2,"")+$tb);
$jb=1510822949;continue;
case-412272376:
$tb=~(~$this->llf($this->carr($RR,$n,$Fa>>2,""),2)|~28)&-1;
$this->carr($RR,$n,$r>>2,217+~(~($this->carr($RR,$n,$ma>>2,"")>>(4&~$tb|$tb&~4))|-16));
$jb=-390950602;continue;
case-934444625:
$ub=$this->carr($RR,$n,$ua>>2,"");
$tb=$wa;
$this->carr($RR,$n,$tb>>2,$ub);
$this->carr($RR,$n,$tb+4>>2,$this->llf($ub<0,31)>>31);
$jb=1688333518;continue;
case-991315587:
$ub=$this->carr($RR,$n,$oa>>2,"")>>$this->llf($this->carr($RR,$n,$pb>>2,""),2);
$this->aarr($RR,$n,$g,$this->aarr($RR,$n,217+(($ub^-16)&$ub),""));
$ub=$this->carr($RR,$n,$Fa>>2,"");
$tb=$za;
$this->carr($RR,$n,$tb>>2,$ub);
$this->carr($RR,$n,$tb+4>>2,$this->llf((($ub)<0),31)>>31);
$jb=-58343100;continue;
case-1290934332:
$Db=$this->carr($RR,$n,$sa>>2,"");
$Db=~$Db|$Db&~-1;
$ub=$this->carr($RR,$n,$oa>>2,"");
$tb=~$ub;
$vb=~$Db;
$wb=~2127574409;
$wb=($tb&2127574409|$ub&$wb)^($vb&2127574409|$Db&$wb)|~($tb|$vb)&(2127574409|$wb);
$vb=$this->carr($RR,$n,$qa>>2,"");
$tb=~-1932706895;
$tb=(~$vb&-1932706895|$vb&$tb)^(~$wb&-1932706895|$wb&$tb);
$wb=$this->carr($RR,$n,$ma>>2,"");
$vb=(~(~$wb|~-2)&-1)+$tb;
$vb=($vb^~-2)&$vb;
$Db=~(~$wb|~1)&-1;
$Db=($vb&$Db|$vb^$Db)+(~(~$tb|~1)&-1);
$vb=$this->carr($RR,$n,$Fa>>2,"");
$vb=$this->carr($RR,$n,$Ga+$this->llf($vb,2)>>2,"");
$ub=($this->carr($RR,$n,$Fa>>2,"")*7)%16+$this->carr($RR,$n,$ua>>2,"");
$ub=$this->carr($RR,$n,$ob+$this->llf($ub,2)>>2,"");
$Bb=$ub+(($vb^~-2)&$vb);
$Bb=($Bb^~-2)&$Bb;
$Ab=($vb^~1)&$vb;
$zb=~$Bb;
$yb=~$Ab;
$xb=~193036646;
$Cb=~(~$ub|~1)&-1;
$Db=($Db^~-2)&$Db;
$xb=($Db&$Cb|$Db^$Cb)-(-(($zb&193036646|$Bb&$xb)^($yb&193036646|$Ab&$xb)|~($zb|$yb)&(193036646|$xb)));
$xb=($xb^~-2)&$xb;
$wb+=$tb;
$wb=($wb^~1)&$wb;
$vb+=$ub;
$vb=($xb&$wb|$xb^$wb)+(($vb^~1)&$vb);
$wb=$this->carr($RR,$n,$Fa>>2,"")%4+12;
$wb=$this->carr($RR,$n,16+$this->llf($wb,2)>>2,"");
$xb=$this->llf($vb,$wb);
$wb=$this->_rshift($vb,32-$wb);
$vb=~$xb;
$ub=~$wb;
$tb=~850713340;
$this->carr($RR,$n,$__a>>2,($vb&850713340|$xb&$tb)^($ub&850713340|$wb&$tb)|~($vb|$ub)&(850713340|$tb));
$jb=-665924408;continue;
case 1153477833:
$ub=$this->carr($RR,$n,$oa>>2,"");
$ub=$ub^~$this->carr($RR,$n,$qa>>2,"")&$ub;
$yb=$this->carr($RR,$n,$oa>>2,"");
$xb=~1180867059;
$xb=~(~$this->carr($RR,$n,$sa>>2,"")|~((1180867059&~$yb|$yb&$xb)^(~-1&1180867059|-1&$xb)))&-1;
$ub=$xb&$ub|$xb^$ub;
$xb=$this->carr($RR,$n,$ma>>2,"");
$yb=~(~((($xb^~-2)&$xb)+$ub)|~-2)&-1;
$xb=($xb^~1)&$xb;
$wb=~$yb;
$vb=~$xb;
$tb=~1812756882;
$this->carr($RR,$n,$K>>2,(($wb&1812756882|$yb&$tb)^($vb&1812756882|$xb&$tb)|~($wb|$vb)&(1812756882|$tb))+(($ub^~1)&$ub));
$ub=$this->carr($RR,$n,$Fa>>2,"");
$tb=$xa;
$this->carr($RR,$n,$tb>>2,$ub);
$this->carr($RR,$n,$tb+4>>2,$this->llf($ub<0,31)>>31);
$jb=633810001;continue;
case 494739317:
$Hb=$this->carr($RR,$n,$sa>>2,"");
$Fb=~137942632;
$Gb=$this->carr($RR,$n,$qa>>2,"");
$Gb=($Gb^~((137942632&~$Hb|$Hb&$Fb)^(~-1&137942632|-1&$Fb)))&$Gb;
$Fb=$this->carr($RR,$n,$B>>2,"");
$Hb=~$Fb;
$vb=~$Gb;
$xb=~-5458134;
$xb=($Hb&-5458134|$Fb&$xb)^($vb&-5458134|$Gb&$xb)|~($Hb|$vb)&(-5458134|$xb);
$vb=$this->carr($RR,$n,$ma>>2,"");
$Hb=~(~((~(~$vb|~-2)&-1)+$xb)|~-2)&-1;
$Gb=~(~$vb|~1)&-1;
$Fb=~$Hb;
$Eb=~$Gb;
$Db=~-118764121;
$ub=$this->carr($RR,$n,$Fa>>2,"");
$ub=$this->carr($RR,$n,$Ga+$this->llf($ub,2)>>2,"");
$tb=($this->carr($RR,$n,$Fa>>2,"")*5+1)%16+$this->carr($RR,$n,$ua>>2,"");
$tb=$this->carr($RR,$n,$ob+$this->llf($tb,2)>>2,"");
$Bb=~(~($tb+(~(~$ub|~-2)&-1))|~-2)&-1;
$Ab=~(~$ub|~1)&-1;
$zb=~$Bb;
$yb=~$Ab;
$wb=~35866813;
$Cb=($tb^~1)&$tb;
$Db=~(~((($Fb&-118764121|$Hb&$Db)^($Eb&-118764121|$Gb&$Db)|~($Fb|$Eb)&(-118764121|$Db))+(~(~$xb|~1)&-1))|~-2)&-1;
$wb=($Db&$Cb|$Db^$Cb)+(($zb&35866813|$Bb&$wb)^($yb&35866813|$Ab&$wb)|~($zb|$yb)&(35866813|$wb));
$wb=($wb^~-2)&$wb;
$vb=$xb+$vb;
$vb=($vb^~1)&$vb;
$this->carr($RR,$n,$L>>2,($wb&$vb|$wb^$vb)+(~(~($tb+$ub)|~1)&-1));
$ub=$this->carr($RR,$n,$Fa>>2,"")%4+4;
$tb=$ya;
$this->carr($RR,$n,$tb>>2,$ub);
$this->carr($RR,$n,$tb+4>>2,$this->llf($ub<0,31)>>31);
$jb=276665542;continue;
case 999695174:
$xb=$this->carr($RR,$n,$M>>2,"");
$tb=$this->carr($RR,$n,$N>>2,"");
$yb=~(~((~(~$xb|~-2)&-1)-(-$tb))|~-2)&-1;
$xb=($xb^~1)&$xb;
$wb=~$yb;
$vb=~$xb;
$ub=~-2039534323;
$this->carr($RR,$n,$O>>2,(($wb&-2039534323|$yb&$ub)^($vb&-2039534323|$xb&$ub)|~($wb|$vb)&(-2039534323|$ub))-(-(~(~$tb|~1)&(843895025|~843895025))));
$tb=$this->carr($RR,$n,$Fa>>2,"")%4+8;
$tb=$this->carr($RR,$n,16+$this->llf($tb,2)>>2,"");
$this->carr($RR,$n,$eb>>2,$this->llf($this->carr($RR,$n,$O>>2,""),$tb));
$this->carr($RR,$n,$bb>>2,32-$tb);
$jb=-738461164;continue;
case 800362374:
$tb=$this->carr($RR,$n,$Fa>>2,"");
$this->carr($RR,$n,$Ga+$this->llf($tb,2)>>2,~~+$this->harr($RR,$Wa>>3,""));
$this->carr($RR,$n,$Da>>2,$this->carr($RR,$n,$Fa>>2,"")+1);
$jb=228161238;continue;
case 439769685:
$yb=$this->carr($RR,$n,$qa>>2,"");
$tb=$this->carr($RR,$n,$oa>>2,"");
$yb=$yb&~$tb|$tb&~$yb;
$tb=$this->carr($RR,$n,$sa>>2,"");
$xb=~1841611462;
$xb=(1841611462&~$yb|$yb&$xb)^(~$tb&1841611462|$tb&$xb);
$tb=$this->carr($RR,$n,$ma>>2,"");
$yb=~(~((~(~$tb|~-2)&-1)-(-$xb))|~-2)&-1;
$tb=($tb^~1)&$tb;
$this->carr($RR,$n,$M>>2,($yb&$tb|$yb^$tb)+(($xb^~1)&$xb));
$xb=$this->carr($RR,$n,$Fa>>2,"");
$xb=$this->carr($RR,$n,$Ga+$this->llf($xb,2)>>2,"");
$tb=($this->carr($RR,$n,$Fa>>2,"")*3+5)%16+$this->carr($RR,$n,$ua>>2,"");
$tb=$this->carr($RR,$n,$ob+$this->llf($tb,2)>>2,"");
$yb=~(~($tb+(~(~$xb|~-2)&-1))|~-2)&-1;
$xb=($xb^~1)&$xb;
$wb=~$yb;
$vb=~$xb;
$ub=~-942245303;
$this->carr($RR,$n,$N>>2,(($wb&-942245303|$yb&$ub)^($vb&-942245303|$xb&$ub)|~($wb|$vb)&(-942245303|$ub))-(-(($tb^~1)&$tb)));
$jb=999695174;continue;
case 463554092:
$this->carr($RR,$n,$db>>2,$this->llf($this->carr($RR,$n,$lb>>2,""),$this->llf($this->carr($RR,$n,$ab>>2,""),3)));
$tb=$this->carr($RR,$n,$Za>>2,"")>>2;
$this->carr($RR,$n,$E>>2,$ob+$this->llf($tb,2));
$this->carr($RR,$n,$m>>2,$this->carr($RR,$n,$this->carr($RR,$n,$E>>2,"")>>2,""));
$jb=791025390;continue;
case 2008811188:
$xb=$this->carr($RR,$n,$Oa>>2,"");
$ub=$this->carr($RR,$n,$oa>>2,"");
$yb=(($xb^~-2)&$xb)+$ub;
$yb=($yb^~-2)&$yb;
$xb=($xb^~1)&$xb;
$wb=~$yb;
$vb=~$xb;
$tb=~-315119066;
$this->carr($RR,$n,$S>>2,(($wb&-315119066|$yb&$tb)^($vb&-315119066|$xb&$tb)|~($wb|$vb)&(-315119066|$tb))+(($ub^~1)&$ub));
$ub=$this->carr($RR,$n,$Qa>>2,"");
$tb=$this->carr($RR,$n,$qa>>2,"");
$vb=(($ub^~-2)&$ub)+$tb;
$vb=($vb^~-2)&$vb;
$ub=~(~$ub|~1)&-1;
$this->carr($RR,$n,$T>>2,($vb&$ub|$vb^$ub)+(($tb^~1)&$tb));
$jb=-1101163512;continue;
case 2146552338:case -2051875059:case -630729423:case-2141197378:case 2028659015:
case 1432877594:case -1662327480:case -983205733:case -1924281938:case 1774369769:
case -489741395:case -828878942:case -2136717671:case 2045376102:case 916103055:
case 1775324253:case 690197071:case 139799944:case 1618283724:case 331129789:
case -1785460248:case 2070699595:case 1137039176:case 270009349:
case -722374409:case 2059037329:case -1360885125:case -1781069297:case 601583830:
case 1388594392:case -777225753:case -920516874:case 1297236730:case 481757527:
case -2014580748:case 2014978051:case 1468918320:case 128106704:case-401948426:
case-1971280264:case-180306226:case 484876086:case 167383782:case 637834779:
case 1720235387:case-1579204746:case-1797419395:case 1657487624:case-895015477:
case 1410343841:case-1878597151:case-2014779455:case-843646639:case-256536033:
case 416259719:case-1380451239:case 228161238:case-856036625:case-2074579782:
$p=$this->harr($RR,$q>>3,"");$la=$this->carr($RR,$n,$ma>>2,"");$na=$this->carr($RR,$n,$oa>>2,"");
$pa=$this->carr($RR,$n,$qa>>2,"");$ra=$this->carr($RR,$n,$sa>>2,"");$ta=$this->carr($RR,$n,$ua>>2,"");
$Ea=$this->carr($RR,$n,$Fa>>2,"");$Ha=$this->carr($RR,$n,$Ia>>2,"");$Ja=$this->carr($RR,$n,$Ka>>2,"");
$La=$this->carr($RR,$n,$Ma>>2,"");$Na=$this->carr($RR,$n,$Oa>>2,"");$Pa=$this->carr($RR,$n,$Qa>>2,"");
$Ra=$this->carr($RR,$n,$Sa>>2,"");$Ya=$this->carr($RR,$n,$Za>>2,"");
$kb=$this->carr($RR,$n,$lb>>2,"");$mb=$this->carr($RR,$n,$nb>>2,"");
if ($jb==2146552338) $n=0;
elseif ($jb==-2051875059) $n=1; elseif ($jb==-630729423) $n=3;
elseif ($jb==-2141197378) $n=5; elseif ($jb==2028659015) $n=7;
elseif ($jb==1432877594) $n=9; elseif ($jb==-1662327480) $n=11;
elseif ($jb==-983205733) $n=13; elseif ($jb==-1924281938) $n=17;
elseif ($jb==1774369769) $n=21; elseif ($jb==-489741395) $n=22;
elseif ($jb==-828878942) $n=24; elseif ($jb==-2136717671) $n=25;
elseif ($jb==2045376102) $n=27; elseif ($jb==916103055) $n=$this->carr($RR,$n,$o>>2,"");
elseif ($jb==1775324253) $n=31; elseif ($jb==690197071) $n=35;
elseif ($jb==139799944) $n=36; elseif ($jb==1618283724) $n=40;
elseif ($jb==331129789) $n=41; elseif ($jb==-1785460248) $n=45;
elseif ($jb==2070699595) $n=46; elseif ($jb==1137039176) $n=48;
elseif ($jb==270009349) $n=49;
elseif ($jb==-722374409) $n=54; elseif ($jb==2059037329) $n=55;
elseif ($jb==-1360885125) $n=56; elseif ($jb==-1781069297) $n=58;
elseif ($jb==601583830) $n=63; elseif ($jb==1388594392) $n=64;
elseif ($jb==-777225753) $n=65; elseif ($jb==-920516874) $n=67;
elseif ($jb==1297236730) $n=69;
elseif ($jb==481757527) $n=71; elseif ($jb==-2014580748) $n=73;
elseif ($jb==2014978051) $n=75; elseif ($jb==1468918320) $n=77;
elseif ($jb==128106704) $n=81;
elseif ($jb==-401948426)
{$n=3;
$Ea++;
$na=$this->carr($RR,$n,$P>>2,"");
$la=$this->carr($RR,$n,$sa>>2,"");
$ra=$this->carr($RR,$n,$qa>>2,"");
$pa=$this->carr($RR,$n,$oa>>2,"");}
elseif ($jb==-1971280264)
{$n=15;
$Ea=0;