fork download
  1. <?php
  2.  
  3. define('SUBWAY', 'sub');
  4. define('FOOT', 'foot');
  5. define('BUS', 'bus');
  6.  
  7. $transportName = array(
  8. SUBWAY => 'едешь на метро',
  9. FOOT => 'идешь пешком',
  10. BUS => 'едешь на автобусе'
  11. );
  12.  
  13. $startPoint = 'pet'; // Петроградская
  14. $endPoint = 'nov'; // Новая Голландия
  15.  
  16. $pointNames = array(
  17. 'pet' => 'ст. м. Петроградская',
  18. 'chk' => 'ст. м. Чкаловская',
  19. 'gor' => 'ст. м. Горьковская',
  20. 'spo' => 'ст. м. Спортивная',
  21. 'vas' => 'ст. м. Василеостровская',
  22. 'kre' => 'Петропавловская крепость',
  23. 'let' => 'Летний сад',
  24. 'dvo' => 'Дворцовая площадь',
  25. 'isa' => 'Исакиевский собор',
  26. 'nov' => 'Новая Голландия',
  27. 'ras' => 'Дом Раскольникова',
  28. 'gos' => 'Гостиный Двор',
  29. 'sen' => 'Сенная Площадь',
  30. 'vla' => 'ст. м. Владимирская',
  31. 'vit' => 'Витебский вокзал',
  32. 'teh' => 'Технологический Институт'
  33. );
  34.  
  35. $paths = array(
  36. 'pet' => array(
  37. 'chk' => canGet(10, BUS),
  38. 'gor' => canGet(3, SUBWAY)
  39. ),
  40.  
  41. 'chk' => array(
  42. 'pet' => canGet(10, BUS),
  43. 'spo' => canGet(3, SUBWAY)
  44. ),
  45.  
  46. 'gor' => array(
  47. 'pet' => canGet(3, BUS),
  48. 'kre' => canGet(5, FOOT),
  49. 'gos' => canGet(6, SUBWAY)
  50. ),
  51.  
  52. 'spo' => array(
  53. 'chk' => canGet(3, SUBWAY),
  54. 'vas' => canGet(10, BUS),
  55. 'sen' => canGet(7, SUBWAY)
  56. ),
  57.  
  58. 'vas' => array(
  59. 'spo' => canGet(10, BUS),
  60. 'gos' => canGet(7, SUBWAY),
  61. 'nov' => canGet(11, FOOT)
  62. ),
  63.  
  64. 'kre' => array(
  65. 'gor' => canGet(5, FOOT)
  66. ),
  67.  
  68. 'let' => array(
  69. 'dvo' => canGet(6, FOOT),
  70. 'gos' => canGet(7, FOOT)
  71. ),
  72.  
  73. 'dvo' => array(
  74. 'isa' => canGet(6, FOOT),
  75. 'gos' => canGet(6, FOOT),
  76. 'let' => canGet(6, FOOT)
  77. ),
  78.  
  79. 'isa' => array(
  80. 'dvo' => canGet(6, FOOT),
  81. 'nov' => canGet(5, FOOT)
  82. ),
  83.  
  84. 'nov' => array(
  85. 'vas' => canGet(11, FOOT),
  86. 'isa' => canGet(5, FOOT),
  87. 'ras' => canGet(7, BUS)
  88. ),
  89.  
  90. 'ras' => array(
  91. 'nov' => canGet(7, BUS),
  92. 'sen' => canGet(3, FOOT)
  93. ),
  94.  
  95. 'gos' => array(
  96. 'vas' => canGet(7, SUBWAY),
  97. 'sen' => canGet(3, SUBWAY),
  98. 'dvo' => canGet(6, FOOT),
  99. 'gor' => canGet(6, SUBWAY),
  100. 'let' => canGet(7, FOOT),
  101. 'vla' => canGet(7, FOOT)
  102. ),
  103.  
  104. 'sen' => array(
  105. 'ras' => canGet(3, FOOT),
  106. 'spo' => canGet(7, SUBWAY),
  107. 'gos' => canGet(3, SUBWAY),
  108. 'vla' => canGet(4, SUBWAY),
  109. 'vit' => canGet(2, SUBWAY),
  110. 'teh' => canGet(3, SUBWAY)
  111. ),
  112.  
  113. 'vla' => array(
  114. 'sen' => canGet(4, SUBWAY),
  115. 'gos' => canGet(7, FOOT),
  116. 'vit' => canGet(3, SUBWAY)
  117. ),
  118.  
  119. 'vit' => array(
  120. 'sen' => canGet(2, SUBWAY),
  121. 'teh' => canGet(2, SUBWAY),
  122. 'vla' => canGet(3, SUBWAY)
  123. ),
  124.  
  125. 'teh' => array(
  126. 'sen' => canGet(3, SUBWAY),
  127. 'vit' => canGet(2, SUBWAY)
  128. )
  129. );
  130.  
  131. function canGet($time, $byWhat) {
  132. return array('time' => $time, 'by' => $byWhat);
  133. }
  134.  
  135. function make1step($paths, $pathDone, $time, $point, $target){
  136. $result=array();
  137. $result['path'] = $pathDone;
  138. $result['time'] += $time;
  139. if(isset($paths[$point][$target])){
  140. $result['time'] += $paths[$point][$target]['time'];
  141. $result['path'][] = $target;
  142. }
  143. else
  144. foreach($paths[$point] as $station => $values){
  145. if(isset($result['path'][$target])) break;
  146. make1step($paths, $result['path'], $result['time'], $station, $target);
  147. }
  148. var_dump($result);
  149. return $result;
  150. }
  151. $output="Начальная точка: ". $pointNames[$startPoint] . "\n";
  152. $pathDone = array();
  153. $pathDone[]=$startPoint;
  154. $time = 0;
  155. $onestep=make1step($paths, $pathDone, $time, 'pet', 'spo');
  156. for ($i=1; $i<count($onestep['path']); $i++){
  157. $output .="Из нее ".
  158. $transportName[$paths[$onestep['path'][$i-1]][$onestep['path'][$i]]['by']]
  159. ." до точки " . $pointNames[$onestep['path'][$i]] . " "
  160. .$paths[$onestep['path'][$i-1]][$onestep['path'][$i]]['time']
  161. . " мин \n";
  162. }
  163. echo $output;
Runtime error #stdin #stdout #stderr 0.04s 26148KB
stdin
Standard input is empty
stdout
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
array(2) {
  ["path"]=>
  array(2) {
    [0]=>
    string(3) "pet"
    [1]=>
    string(3) "spo"
  }
  ["time"]=>
  int(3)
}
stderr
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Undefined index: time in /home/H7D1gu/prog.php on line 139
PHP Notice:  Und