3v4l.org

run code in 300+ PHP versions simultaneously
<?php function gdr_encode($val) { $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!='; $base = strlen($chars); $str = ''; while ($val > 0) { $str .= $chars[$val % $base]; $val = (int)($val / $base); } return $str; } function gdr_decode($str) { $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!='; $base = strlen($chars); $map = array(); for ($i=0; i<$base; $i++) { $map[$chars[$i]] = $base; } $val = 0; for ($i=0; i<strlen($str); $i++) { $val *= $base; $val += (int)$map[$str[$i]]; } return $val; } $vals = array(0, 1, 99, 100, 255, 256, 999, 1000, 9999, 10000, 65535, 65536, 99999, 100000, 999999, 1000000, 4294967295, 4294967296); foreach ($vals as $val) { $enc = json_encode(gdr_encode($val)); $dec = json_encode(gdr_decode($enc)); $val = json_encode($val); if (strlen($enc) > strlen($val)) { echo "$enc $val WORSE\n"; } else if (strlen($enc) == strlen($val)) { echo "$enc $val EQUAL\n"; } else { echo "$enc $val\n"; } }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.7
Fatal error: Uncaught Error: Undefined constant "i" in /in/ODb44:18 Stack trace: #0 /in/ODb44(32): gdr_decode('""') #1 {main} thrown in /in/ODb44 on line 18
Process exited with code 255.
Output for 7.2.6 - 7.2.33, 7.3.16 - 7.3.31, 7.4.0 - 7.4.33
Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 64 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 65 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 66 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 67 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 68 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 69 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 70 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 71 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 72 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 73 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 74 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 75 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 76 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 77 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 78 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 79 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 80 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 81 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 82 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 83 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 84 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 85 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 86 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 87 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 88 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 89 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 90 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 91 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 92 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 93 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 94 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 95 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 96 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 97 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 98 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 99 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 100 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 101 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 102 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 103 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 104 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 105 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 106 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 107 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 108 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 109 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 110 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 111 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 112 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 113 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 114 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 115 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 116 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 117 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 118 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 119 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 120 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 121 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 122 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 123 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 124 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 125 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 126 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 127 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 128 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 129 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 130 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 131 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 132 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 133 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 134 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 135 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 136 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 137 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 138 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 139 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 140 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 141 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 142 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 143 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 144 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 145 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 146 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 147 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 148 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 149 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 150 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 151 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 152 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 153 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 154 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 155 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 156 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 157 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 158 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 159 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 160 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 161 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 162 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 163 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 164 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 165 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 166 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 167 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 168 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 169 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 170 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 171 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 172 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 173 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 174 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 175 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 176 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 177 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 178 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 179 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 180 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 181 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 182 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 183 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 184 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 185 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 186 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 187 in /in/ODb44 on line 19 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Notice: Uninitialized string offset: 188 in /in/O
Process exited with code 137.
Output for 7.3.32 - 7.3.33
Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/ODb44 on line 18 Warning
Process exited with code 137.
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.37, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20
Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 64 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 65 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 66 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 67 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 68 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 69 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 70 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 71 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 72 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 73 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 74 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 75 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 76 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 77 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 78 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 79 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 80 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 81 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 82 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 83 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 84 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 85 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 86 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 87 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 88 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 89 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 90 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 91 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 92 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 93 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 94 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 95 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 96 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 97 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 98 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 99 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 100 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 101 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 102 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 103 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 104 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 105 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 106 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 107 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 108 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 109 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 110 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 111 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 112 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 113 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 114 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 115 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 116 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 117 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 118 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 119 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 120 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 121 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 122 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 123 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 124 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 125 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 126 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 127 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 128 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 129 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 130 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 131 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 132 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 133 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 134 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 135 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 136 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 137 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 138 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 139 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 140 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 141 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 142 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 143 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 144 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 145 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 146 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 147 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 148 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 149 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 150 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 151 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 152 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 153 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 154 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 155 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 156 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 157 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 158 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 159 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 160 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 161 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 162 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 163 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 164 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 165 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 166 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 167 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 168 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 169 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 170 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 171 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 172 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 173 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 174 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 175 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 176 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 177 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 178 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 179 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 180 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 181 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 182 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 183 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 184 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 185 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 186 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 187 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 188 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 189 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 190 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 191 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 192 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 193 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 194 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 195 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 196 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 197 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 198 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 199 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 200 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 201 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 202 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 203 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 204 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 205 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 206 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 207 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 208 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 209 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 210 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 211 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 212 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 213 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 214 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 215 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 216 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 217 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 218 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 219 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 220 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 221 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 222 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 223 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 224 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 225 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 226 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 227 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 228 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 229 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 230 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 231 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 232 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 233 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 234 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 235 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 236 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 237 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 238 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 239 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 240 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 241 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 242 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 243 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 244 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 245 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 246 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 247 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 248 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 249 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 250 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 251 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 252 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 253 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 254 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 255 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 256 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 257 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 258 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 259 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 260 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Uninitialized string offset: 261 in /in/ODb44 on line 19 Notice: Use of undefined constant i - assumed 'i' in /in/ODb44 on line 18 Notice: Un
Process exited with code 137.

preferences:
365.08 ms | 438 KiB | 266 Q