Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

199
LINES

< > BotCompany Repo | #405 // Magic Wand + Hashes for Internet menu

Lua code - Image recognition

get("#349") -- table functions
get("#380") -- hashImage
get("#121") -- compareTables
get("#348") -- bright and rgb

maxSize = {width=100, height=50}
minSize = {width=4, height=4}
threshold = 0.5
wandSize = 3 -- magic wand size

col = col or 218 -- default column - may be set by caller

local rectangles, _img

function cloneRectangle(r)
  return newRectangle(r.x, r.y, r.width, r.height)
end

function newRectangle(x, y, w, h)
  return {x=x, y=y, width=w, height=h}
end

function contains(r, x, y)
  return x >= r.x and y >= r.y and x < r.x+r.width and y < r.y+r.width
end

function nextX(x, y)
  for r, _ in pairs(rectangles) do
    pTests = pTests+1
    if contains(r, x, y) then
      return r.x+r.width
    end
  end
  return nil
end

pDuplicate, pNew, pSeen, pNotSeen, pTests = 0, 0, 0, 0, 0

-- returns rectangle
function magicWand(image, x, y)
  if image ~= _img then
    _img, rectangles = image, {}
  end
  local nx = nextX(x, y)
  if nx ~= nil then
    pSeen = pSeen+1
    return nil, nx
  end
  pNotSeen = pNotSeen+1
  local r = newRectangle(x, y, 1, 1)
  
  while true do
    local last = cloneRectangle(r)
    expandLeft(image, r)
    if tooLarge(r) then return nil end
    expandTop(image, r)
    if tooLarge(r) then return nil end
    expandRight(image, r)
    if tooLarge(r) then return nil end
    expandBottom(image, r)
    if tooLarge(r) then return nil end    
    if compareTables(last, r) then
      if r.width >= minSize.width and r.height >= minSize.width then
        if rectangles[r] then
          pDuplicate = pDuplicate+1
        else
          pNew = pNew+1
          rectangles[r] = true
        end
        return r
      else
        return nil
      end
    end
  end
end

function tooLarge(r)
  return maxSize ~= nil and (r.width > maxSize.width or r.height > maxSize.height)
end

function expandLeft(image, r)
  local newX = math.max(r.x - wandSize, 0)
  if newX == r.x then return end
  newX = searchFromLeft(image, newRectangle(newX, r.y, r.x-newX, r.height))
  r.width = r.width+r.x-newX
  r.x = newX
end

function searchFromLeft(image, r)
  for x = r.x, r.x+r.width-1 do
    if regionNotEmpty(image, newRectangle(x, r.y, 1, r.height)) then
      return x
    end
  end
  return r.x+r.width
end

function expandRight(image, r)
  local newX = math.min(r.x + r.width + wandSize, image.width)
  if newX == r.x+r.width then return end
  newX = searchFromRight(image, newRectangle(r.x+r.width, r.y, newX-(r.x+r.width), r.height))
  r.width = newX-r.x
end

function searchFromRight(image, r)
  for x = r.x+r.width-1, r.x, -1 do
    if regionNotEmpty(image, newRectangle(x, r.y, 1, r.height)) then
      return x+1
    end
  end
  return r.x
end

function expandTop(image, r)
  local newY = math.max(r.y - wandSize, 0)
  if newY == r.y then return end
  newY = searchFromTop(image, newRectangle(r.x, newY, r.width, r.y-newY))
  r.height = r.height+r.y-newY
  r.y = newY
end

function searchFromTop(image, r)
  for y = r.y, r.y+r.height-1 do
    if regionNotEmpty(image, newRectangle(r.x, y, r.width, 1)) then
      return y
    end
  end
  return r.y+r.height
end

function expandBottom(image, r)
  local newY = math.min(r.y + r.height + wandSize, image.height)
  if newY == r.y+r.height then return end
  newY = searchFromBottom(image, newRectangle(r.x, r.y + r.height, r.width, newY-(r.y+r.height)))
  r.height = newY-r.y
end

function searchFromBottom(image, r)
  for y = r.y+r.height-1, r.y, -1 do
    if regionNotEmpty(image, newRectangle(r.x, y, r.width, 1)) then
      return y+1
    end
  end
  return r.y
end

-- we're looking for dark pixels this time
function regionNotEmpty(image, r)
  --return image.clip(rectangle).anyPixelBrighterThan(threshold)
  for y=r.y, r.y+r.height-1 do
    for x=r.x, r.x+r.width-1 do
      if bright(rgb(image.getInt(x, y))) < threshold then
        return true
      end
    end
  end
  return false
end


function recttostring(r)
  return r.x..", "..r.y..", "..r.x+r.width..", "..r.y+r.height
end

function magicWandOneColumn(image, col)
  local allrects = {}

  local x = col
  for y = 0, image.height-1, 2 do
    local r = magicWand(image, x, y)
    if r then
      allrects[recttostring(r)] = true
    end
  end
  
  return allrects
end

allrects = magicWandOneColumn(img, col)

function stringtorect(s)
  local _, _, x1, y1, x2, y2 = string.find(s, "(%d+),%s*(%d+),%s*(%d+),%s*(%d+)")
  x1, y1, x2, y2 = tonumber(x1), tonumber(y1), tonumber(x2), tonumber(y2)
  return newRectangle(x1, y1, x2-x1, y2-y1)
end

result = {}
for s, _ in pairs(allrects) do
  r = stringtorect(s)
  cropped = {width=r.width, height=r.height,
    getInt = function(x, y) return img.getInt(x+r.x, y+r.y) end}
  hash = hashImage(cropped)
  table.insert(result, s.." -> "..hash)
end
result = table.concat(result, "|")
if result ~= '' then
  return "Magic Wand + hashes (wand size="..wandSize..", column="..col.."): "..result
end

Author comment

Began life as a copy of #403

Special case recognizer

download  show line numbers   

Travelled to 12 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

Comments [hide]

ID Author/Program Comment Date
312 #1000604 (pitcher) 2015-08-18 00:55:21
271 #1000610 (pitcher) Edit suggestion:
!636
!629

main {
static Object androidContext;
static String programID;

public static void main(String[] args) throws Exception {
get("#349") -- table functions
get("#380") -- hashImage
get("#121") -- compareTables
get("#348") -- bright and rgb

maxSize = {width=100, height=50}
minSize = {width=4, height=4}
threshold = 0.5
wandSize = 3 -- magic wand size

col = col or 218 -- default column - may be set by caller

local rectangles, _img

function cloneRectangle(r)
return newRectangle(r.x, r.y, r.width, r.height)
end

function newRectangle(x, y, w, h)
return {x=x, y=y, width=w, height=h}
end

function contains(r, x, y)
return x >= r.x and y >= r.y and x < r.x+r.width and y < r.y+r.width
end

function nextX(x, y)
for r, _ in pairs(rectangles) do
pTests = pTests+1
if contains(r, x, y) then
return r.x+r.width
end
end
return nil
end

pDuplicate, pNew, pSeen, pNotSeen, pTests = 0, 0, 0, 0, 0

-- returns rectangle
function magicWand(image, x, y)
if image ~= _img then
_img, rectangles = image, {}
end
local nx = nextX(x, y)
if nx ~= nil then
pSeen = pSeen+1
return nil, nx
end
pNotSeen = pNotSeen+1
local r = newRectangle(x, y, 1, 1)

while true do
local last = cloneRectangle(r)
expandLeft(image, r)
if tooLarge(r) then return nil end
expandTop(image, r)
if tooLarge(r) then return nil end
expandRight(image, r)
if tooLarge(r) then return nil end
expandBottom(image, r)
if tooLarge(r) then return nil end
if compareTables(last, r) then
if r.width >= minSize.width and r.height >= minSize.width then
if rectangles[r] then
pDuplicate = pDuplicate+1
else
pNew = pNew+1
rectangles[r] = true
end
return r
else
return nil
end
end
end
end

function tooLarge(r)
return maxSize ~= nil and (r.width > maxSize.width or r.height > maxSize.height)
end

function expandLeft(image, r)
local newX = math.max(r.x - wandSize, 0)
if newX == r.x then return end
newX = searchFromLeft(image, newRectangle(newX, r.y, r.x-newX, r.height))
r.width = r.width+r.x-newX
r.x = newX
end

function searchFromLeft(image, r)
for x = r.x, r.x+r.width-1 do
if regionNotEmpty(image, newRectangle(x, r.y, 1, r.height)) then
return x
end
end
return r.x+r.width
end

function expandRight(image, r)
local newX = math.min(r.x + r.width + wandSize, image.width)
if newX == r.x+r.width then return end
newX = searchFromRight(image, newRectangle(r.x+r.width, r.y, newX-(r.x+r.width), r.height))
r.width = newX-r.x
end

function searchFromRight(image, r)
for x = r.x+r.width-1, r.x, -1 do
if regionNotEmpty(image, newRectangle(x, r.y, 1, r.height)) then
return x+1
end
end
return r.x
end

function expandTop(image, r)
local newY = math.max(r.y - wandSize, 0)
if newY == r.y then return end
newY = searchFromTop(image, newRectangle(r.x, newY, r.width, r.y-newY))
r.height = r.height+r.y-newY
r.y = newY
end

function searchFromTop(image, r)
for y = r.y, r.y+r.height-1 do
if regionNotEmpty(image, newRectangle(r.x, y, r.width, 1)) then
return y
end
end
return r.y+r.height
end

function expandBottom(image, r)
local newY = math.min(r.y + r.height + wandSize, image.height)
if newY == r.y+r.height then return end
newY = searchFromBottom(image, newRectangle(r.x, r.y + r.height, r.width, newY-(r.y+r.height)))
r.height = newY-r.y
end

function searchFromBottom(image, r)
for y = r.y+r.height-1, r.y, -1 do
if regionNotEmpty(image, newRectangle(r.x, y, r.width, 1)) then
return y+1
end
end
return r.y
end

-- we're looking for dark pixels this time
function regionNotEmpty(image, r)
--return image.clip(rectangle).anyPixelBrighterThan(threshold)
for y=r.y, r.y+r.height-1 do
for x=r.x, r.x+r.width-1 do
if bright(rgb(image.getInt(x, y))) < threshold then
return true
end
end
end
return false
end


function recttostring(r)
return r.x..", "..r.y..", "..r.x+r.width..", "..r.y+r.height
end

function magicWandOneColumn(image, col)
local allrects = {}

local x = col
for y = 0, image.height-1, 2 do
local r = magicWand(image, x, y)
if r then
allrects[recttostring(r)] = true
end
end

return allrects
end

allrects = magicWandOneColumn(img, col)

function stringtorect(s)
local _, _, x1, y1, x2, y2 = string.find(s, "(%d+),%s*(%d+),%s*(%d+),%s*(%d+)")
x1, y1, x2, y2 = tonumber(x1), tonumber(y1), tonumber(x2), tonumber(y2)
return newRectangle(x1, y1, x2-x1, y2-y1)
end

result = {}
for s, _ in pairs(allrects) do
r = stringtorect(s)
cropped = {width=r.width, height=r.height,
getInt = function(x, y) return img.getInt(x+r.x, y+r.y) end}
hash = hashImage(cropped)
table.insert(result, s.." -> "..hash)
end
result = table.concat(result, "|")
if result ~= '' then
return "Magic Wand + hashes (wand size="..wandSize..", column="..col.."): "..result
end

}}
2015-08-18 00:53:44

add comment

Image recognition results

show nils
Image Result Result calculated
#1004153 Magic Wand + hashes (wand size=3, column=218): 190, 5, 219, 14 -> 0072ce70 2016-08-08 16:40:02
Lua instructions: 88k

[raw result]
[visualize]
#1000119 Magic Wand + hashes (wand size=3, column=218): 215, 18, 255, 31 -> 00688f0f|212, 367, 228, 381 -> 00... 2016-08-07 21:09:58
Lua instructions: 444k (50 ms)

[raw result]
[visualize]
#1004090 java.lang.OutOfMemoryError: Java heap space 2016-08-07 13:34:11

[raw result]
[visualize]
#1000153 Magic Wand + hashes (wand size=3, column=218): 215, 6, 219, 12 -> 00043a80 2016-08-06 04:21:45
Lua instructions: 108k (99 ms)

[raw result]
[visualize]
#1000121 Magic Wand + hashes (wand size=3, column=218): 212, 346, 239, 359 -> 0038b148|215, 37, 255, 50 -> 00... 2016-08-05 18:59:24
Lua instructions: 564k (63 ms)

[raw result]
[visualize]
#1004070 Magic Wand + hashes (wand size=3, column=218): 217, 262, 222, 275 -> 0019b574|217, 260, 222, 272 -> ... 2016-08-05 15:05:12
Lua instructions: 3961k

[raw result]
[visualize]
#1004061 Magic Wand + hashes (wand size=3, column=218): 200, 153, 232, 164 -> 000f8350|202, 114, 230, 125 -> ... 2016-08-05 13:30:41
Lua instructions: 701k

[raw result]
[visualize]
#1004060 java.lang.OutOfMemoryError: Java heap space 2016-08-05 13:07:20

[raw result]
[visualize]
#1000225 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 14824 2016-08-05 05:24:27

[raw result]
[visualize]
#1000224 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 215 2016-08-05 02:25:36

[raw result]
[visualize]
#1000015 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 3300 2016-08-04 20:28:25

[raw result]
[visualize]
#1000072 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 13088 2016-08-03 22:35:40

[raw result]
[visualize]
#1000063 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 8408 2016-08-03 19:09:03

[raw result]
[visualize]
#1004009 Magic Wand + hashes (wand size=3, column=218): 218, 81, 222, 88 -> 0009aa63|200, 227, 243, 236 -> 00... 2016-08-03 17:17:37
Lua instructions: 670k

[raw result]
[visualize]
#1000113 Magic Wand + hashes (wand size=3, column=218): 153, 78, 227, 90 -> 011e4d38 2016-08-03 16:31:04
Lua instructions: 2352k (346 ms)

[raw result]
[visualize]
#1000309 javax.imageio.IIOException: Can't get input stream from URL! 2016-08-03 14:22:42

[raw result]
[visualize]
#1000027 Magic Wand + hashes (wand size=3, column=218): 215, 6, 292, 19 -> 01748f00 2016-08-03 10:12:13
Lua instructions: 2534k (274 ms)

[raw result]
[visualize]
#1000259 Magic Wand + hashes (wand size=3, column=218): 143, 67, 219, 79 -> 00af30a7 2016-08-03 09:58:08
Lua instructions: 2315k (346 ms)

[raw result]
[visualize]
#1000146 Magic Wand + hashes (wand size=3, column=218): 200, 99, 233, 108 -> 003fa4ff|207, 26, 235, 37 -> 006... 2016-08-02 22:13:40
Lua instructions: 8273k (1038 ms)

[raw result]
[visualize]
#1000556 Magic Wand + hashes (wand size=3, column=218): 206, 396, 222, 403 -> 00312fef|214, 408, 222, 413 -> ... 2016-08-01 19:49:45
Lua instructions: 6824k (680 ms)

[raw result]
[visualize]
#1000555 Magic Wand + hashes (wand size=3, column=218): 218, 148, 222, 152 -> 000022d6 2016-08-01 19:41:53
Lua instructions: 4263k (418 ms)

[raw result]
[visualize]
#1000554 Magic Wand + hashes (wand size=3, column=218): 212, 410, 244, 432 -> 00b58280|192, 17, 223, 26 -> 00... 2016-08-01 19:36:12
Lua instructions: 1725k (173 ms)

[raw result]
[visualize]
#1000553 Magic Wand + hashes (wand size=3, column=218): 212, 233, 219, 237 -> 00046ee5|212, 249, 219, 253 -> ... 2016-08-01 19:31:29
Lua instructions: 4014k (409 ms)

[raw result]
[visualize]
#1000549 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 53108 2016-08-01 19:25:20

[raw result]
[visualize]
#1000547 Magic Wand + hashes (wand size=3, column=218): 212, 235, 234, 263 -> 00596f02|211, 151, 223, 160 -> ... 2016-08-01 19:20:32
Lua instructions: 9909k (949 ms)

[raw result]
[visualize]
#1000544 Magic Wand + hashes (wand size=3, column=218): 213, 702, 289, 710 -> 00f79c26|189, 559, 220, 564 -> ... 2016-08-01 19:06:01
Lua instructions: 7196k (729 ms)

[raw result]
[visualize]
#1000519 Magic Wand + hashes (wand size=3, column=218): 216, 750, 230, 765 -> 000ce893|216, 748, 230, 763 -> ... 2016-08-01 18:37:37
Lua instructions: 3286k (441 ms)

[raw result]
[visualize]
#1000418 Magic Wand + hashes (wand size=3, column=218): 207, 135, 242, 147 -> 002c2ff2|147, 195, 222, 205 -> ... 2016-08-01 18:36:09
Lua instructions: 2373k (262 ms)

[raw result]
[visualize]
#1000444 Magic Wand + hashes (wand size=3, column=218): 213, 280, 221, 330 -> 006d9ccf 2016-08-01 18:36:08
Lua instructions: 7640k (824 ms)

[raw result]
[visualize]
#1000338 Magic Wand + hashes (wand size=3, column=218): 200, 99, 219, 111 -> 003b3a4a 2016-08-01 18:04:39
Lua instructions: 1420k (164 ms)

[raw result]
[visualize]
#1000336 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 17:48:38

[raw result]
[visualize]
#1000334 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 46658 2016-08-01 17:43:34

[raw result]
[visualize]
#1000333 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 35806 2016-08-01 17:42:22

[raw result]
[visualize]
#1000331 Magic Wand + hashes (wand size=3, column=218): 217, 262, 226, 266 -> 0002c119|212, 271, 227, 276 -> ... 2016-08-01 17:37:51
Lua instructions: 3009k (303 ms)

[raw result]
[visualize]
#1000330 java.lang.OutOfMemoryError: Java heap space 2016-08-01 17:36:28

[raw result]
[visualize]
#1000328 Magic Wand + hashes (wand size=3, column=218): 192, 14, 230, 27 -> 0087fc97 2016-08-01 16:54:57
Lua instructions: 276k (36 ms)

[raw result]
[visualize]
#1000327 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 16:53:42

[raw result]
[visualize]
#1000326 java.lang.OutOfMemoryError: Java heap space 2016-08-01 16:53:05

[raw result]
[visualize]
#1000315 Magic Wand + hashes (wand size=3, column=218): 210, 230, 221, 237 -> 0016ec40|211, 564, 220, 574 -> ... 2016-08-01 16:37:17
Lua instructions: 7441k (723 ms)

[raw result]
[visualize]
#1000316 Magic Wand + hashes (wand size=3, column=218): 195, 8, 220, 21 -> 0002573a 2016-08-01 15:46:43
Lua instructions: 1504k (204 ms)

[raw result]
[visualize]
#1000321 Magic Wand + hashes (wand size=3, column=218): 201, 298, 220, 312 -> 007e51a2 2016-08-01 15:36:31
Lua instructions: 2642k (386 ms)

[raw result]
[visualize]
#1000313 java.lang.OutOfMemoryError: Java heap space 2016-08-01 15:26:30

[raw result]
[visualize]
#1000314 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 15:26:30

[raw result]
[visualize]
#1000320 java.lang.OutOfMemoryError: Java heap space 2016-08-01 15:26:29

[raw result]
[visualize]
#1000312 java.lang.OutOfMemoryError: Java heap space 2016-08-01 14:21:42

[raw result]
[visualize]
#1000310 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 14:21:22

[raw result]
[visualize]
#1000311 java.lang.OutOfMemoryError: Java heap space 2016-08-01 14:21:17

[raw result]
[visualize]
#1000301 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 14:20:50

[raw result]
[visualize]
#1000294 Magic Wand + hashes (wand size=3, column=218): 179, 22, 219, 36 -> 00a46ca7 2016-08-01 14:20:43
Lua instructions: 158k (124 ms)

[raw result]
[visualize]
#1000284 Magic Wand + hashes (wand size=3, column=218): 218, 436, 222, 440 -> 0000834d 2016-08-01 14:09:35
Lua instructions: 7406k (762 ms)

[raw result]
[visualize]
#1000285 Magic Wand + hashes (wand size=3, column=218): 159, 283, 233, 303 -> 00479165 2016-08-01 14:09:32
Lua instructions: 3061k (413 ms)

[raw result]
[visualize]
#1000275 Magic Wand + hashes (wand size=3, column=218): 185, 0, 230, 12 -> 007f455f 2016-08-01 13:19:39
Lua instructions: 4502k (574 ms)

[raw result]
[visualize]
#1000269 Magic Wand + hashes (wand size=3, column=218): 209, 66, 225, 74 -> 00122108 2016-08-01 13:11:35
Lua instructions: 1501k (272 ms)

[raw result]
[visualize]
#1000262 Magic Wand + hashes (wand size=3, column=218): 212, 373, 219, 380 -> 00000957 2016-08-01 12:24:22
Lua instructions: 3290k (434 ms)

[raw result]
[visualize]
#1000253 Magic Wand + hashes (wand size=3, column=218): 211, 554, 233, 559 -> 0013ea26|195, 566, 239, 604 -> ... 2016-08-01 11:31:36
Lua instructions: 7677k (908 ms)

[raw result]
[visualize]
#1000248 Magic Wand + hashes (wand size=3, column=218): 191, 126, 233, 130 -> 002b773f|211, 750, 225, 762 -> ... 2016-08-01 11:10:23
Lua instructions: 5272k (629 ms)

[raw result]
[visualize]
#1000247 Magic Wand + hashes (wand size=3, column=218): 218, 11, 230, 24 -> 0027e42e|211, 40, 222, 54 -> 000c... 2016-08-01 11:05:05
Lua instructions: 3498k (472 ms)

[raw result]
[visualize]
#1000245 Magic Wand + hashes (wand size=3, column=218): 200, 99, 233, 108 -> 003fa4ff|207, 26, 235, 37 -> 006... 2016-08-01 10:40:18
Lua instructions: 8749k (849 ms)

[raw result]
[visualize]
#1000246 Magic Wand + hashes (wand size=3, column=218): 200, 99, 233, 108 -> 003fa4ff|207, 26, 235, 37 -> 006... 2016-08-01 10:36:09
Lua instructions: 8749k (854 ms)

[raw result]
[visualize]
#1000243 Magic Wand + hashes (wand size=3, column=218): 216, 174, 222, 194 -> 0026e7e7|216, 177, 222, 194 -> ... 2016-08-01 09:41:02
Lua instructions: 12309k (1363 ms)

[raw result]
[visualize]
#1000182 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 894 2016-08-01 09:35:22

[raw result]
[visualize]
#1000241 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 09:35:20

[raw result]
[visualize]
#1000175 Magic Wand + hashes (wand size=3, column=218): 218, 8, 222, 12 -> 00066be2|201, 206, 231, 216 -> 006... 2016-08-01 09:35:16
Lua instructions: 952k (297 ms)

[raw result]
[visualize]
#1000186 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 1503 2016-08-01 09:34:57

[raw result]
[visualize]
#1000185 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 501 2016-08-01 09:34:57

[raw result]
[visualize]
#1000222 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 40018 2016-08-01 09:34:42

[raw result]
[visualize]
#1000205 java.lang.OutOfMemoryError: Java heap space 2016-08-01 09:34:41

[raw result]
[visualize]
#1000187 Magic Wand + hashes (wand size=3, column=218): 211, 32, 241, 47 -> 00819753 2016-08-01 09:34:34
Lua instructions: 3122k (318 ms)

[raw result]
[visualize]
#488 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 09:33:31

[raw result]
[visualize]
#1000212 java.lang.OutOfMemoryError: Java heap space 2016-08-01 09:33:28

[raw result]
[visualize]
#1000176 Magic Wand + hashes (wand size=3, column=218): 211, 32, 241, 47 -> 00819753 2016-08-01 09:33:20
Lua instructions: 3043k (398 ms)

[raw result]
[visualize]
#1000181 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 514 2016-08-01 09:33:19

[raw result]
[visualize]
#1000184 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 732 2016-08-01 09:32:54

[raw result]
[visualize]
#1000183 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 576 2016-08-01 09:32:54

[raw result]
[visualize]
#499 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 09:32:54

[raw result]
[visualize]
#1000207 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 41630 2016-08-01 09:32:54

[raw result]
[visualize]
#509 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 09:32:53

[raw result]
[visualize]
#1000229 Magic Wand + hashes (wand size=3, column=218): 209, 568, 232, 579 -> 0057d3db 2016-08-01 09:32:53
Lua instructions: 3372k (364 ms)

[raw result]
[visualize]
#500 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 09:32:53

[raw result]
[visualize]
#1000227 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 3866 2016-08-01 09:32:53

[raw result]
[visualize]
#1000239 Magic Wand + hashes (wand size=3, column=218): 201, 216, 229, 243 -> 00c4e0ff 2016-08-01 09:32:50
Lua instructions: 12362k (1184 ms)

[raw result]
[visualize]
#1000238 Magic Wand + hashes (wand size=3, column=218): 171, 107, 228, 122 -> 000ce024|170, 197, 247, 215 -> ... 2016-08-01 09:32:48
Lua instructions: 23573k (2380 ms)

[raw result]
[visualize]
#1000235 Magic Wand + hashes (wand size=3, column=218): 139, 63, 225, 75 -> 00e61493 2016-08-01 09:32:44
Lua instructions: 2903k (304 ms)

[raw result]
[visualize]
#1000178 Magic Wand + hashes (wand size=3, column=218): 210, 710, 219, 721 -> 002edd48|175, 730, 249, 743 -> ... 2016-08-01 09:32:42
Lua instructions: 4023k (399 ms)

[raw result]
[visualize]
#1000226 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 40018 2016-08-01 09:32:42

[raw result]
[visualize]
#1000223 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 215 2016-08-01 09:32:42

[raw result]
[visualize]
#1000196 java.lang.OutOfMemoryError: Java heap space 2016-08-01 09:32:41

[raw result]
[visualize]
#1000233 Magic Wand + hashes (wand size=3, column=218): 139, 63, 225, 75 -> 00e61493 2016-08-01 09:32:40
Lua instructions: 2919k (375 ms)

[raw result]
[visualize]
#1000216 java.lang.OutOfMemoryError: Java heap space 2016-08-01 09:32:38

[raw result]
[visualize]
#1000218 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 09:32:37

[raw result]
[visualize]
#1000172 Magic Wand + hashes (wand size=3, column=218): 214, 104, 250, 125 -> 00d66868 2016-08-01 01:56:05
Lua instructions: 221k (35 ms)

[raw result]
[visualize]
#1000173 Magic Wand + hashes (wand size=3, column=218): 214, 104, 250, 125 -> 0033468d 2016-08-01 01:55:41
Lua instructions: 221k (29 ms)

[raw result]
[visualize]
#1000171 Magic Wand + hashes (wand size=3, column=218): 212, 0, 247, 34 -> 016c104d|212, 1, 247, 37 -> 037a7d... 2016-08-01 01:48:37
Lua instructions: 340k (129 ms)

[raw result]
[visualize]
#1000170 Magic Wand + hashes (wand size=3, column=218): 197, 366, 234, 379 -> 0068631d|200, 564, 219, 574 -> ... 2016-08-01 01:47:47
Lua instructions: 2448k (351 ms)

[raw result]
[visualize]
#1000168 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 4118 2016-08-01 01:16:01

[raw result]
[visualize]
#1000164 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 1377 2016-08-01 01:05:21

[raw result]
[visualize]
#1003828 Magic Wand + hashes (wand size=3, column=218): 215, 151, 219, 155 -> 0000d631|218, 49, 222, 53 -> 00... 2016-08-01 01:00:49
Lua instructions: 2012k

[raw result]
[visualize]
#1000163 java.lang.OutOfMemoryError: Java heap space 2016-08-01 00:52:17

[raw result]
[visualize]
#1000162 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 23:21:09

[raw result]
[visualize]
#1000161 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 62251 2016-07-31 23:19:00

[raw result]
[visualize]
#1000160 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 62251 2016-07-31 23:16:02

[raw result]
[visualize]
#1000159 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 9743 2016-07-31 23:12:19

[raw result]
[visualize]
#1000158 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 3239 2016-07-31 23:11:59

[raw result]
[visualize]
#1000157 Magic Wand + hashes (wand size=3, column=218): 215, 441, 221, 456 -> 001ca4b2|207, 709, 256, 718 -> ... 2016-07-31 22:55:49
Lua instructions: 1258k (160 ms)

[raw result]
[visualize]
#1000156 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 61391 2016-07-31 22:37:23

[raw result]
[visualize]
#1000155 Magic Wand + hashes (wand size=3, column=218): 215, 5, 240, 13 -> 005c4b04 2016-07-31 22:29:55
Lua instructions: 146k (110 ms)

[raw result]
[visualize]
#1000154 Magic Wand + hashes (wand size=3, column=218): 155, 25, 229, 38 -> 00835821 2016-07-31 22:29:55
Lua instructions: 474k (150 ms)

[raw result]
[visualize]
#1000152 Magic Wand + hashes (wand size=3, column=218): 152, 28, 226, 41 -> 011683da 2016-07-31 22:24:39
Lua instructions: 483k (148 ms)

[raw result]
[visualize]
#1000151 Magic Wand + hashes (wand size=3, column=218): 215, 6, 219, 12 -> 000c8800 2016-07-31 22:24:39
Lua instructions: 108k (97 ms)

[raw result]
[visualize]
#1000150 Magic Wand + hashes (wand size=3, column=218): 152, 28, 226, 41 -> 011683da 2016-07-31 22:24:39
Lua instructions: 483k (61 ms)

[raw result]
[visualize]
#1000149 Magic Wand + hashes (wand size=3, column=218): 150, 26, 224, 39 -> 011683da 2016-07-31 22:24:39
Lua instructions: 437k (58 ms)

[raw result]
[visualize]
#1000147 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 41362 2016-07-31 22:11:27

[raw result]
[visualize]
#1000144 Magic Wand + hashes (wand size=3, column=218): 198, 648, 236, 656 -> 00615fce 2016-07-31 21:42:43
Lua instructions: 565k (88 ms)

[raw result]
[visualize]
#1000145 Magic Wand + hashes (wand size=3, column=218): 198, 648, 236, 656 -> 00615fce 2016-07-31 21:38:29
Lua instructions: 2738k (380 ms)

[raw result]
[visualize]
#1000143 Magic Wand + hashes (wand size=3, column=218): 204, 33, 237, 46 -> 00cf9da5|213, 752, 243, 764 -> 00... 2016-07-31 21:27:35
Lua instructions: 890k (209 ms)

[raw result]
[visualize]
#1000142 Magic Wand + hashes (wand size=3, column=218): 204, 33, 237, 46 -> 00cf9da5|213, 752, 243, 764 -> 00... 2016-07-31 21:23:10
Lua instructions: 989k (115 ms)

[raw result]
[visualize]
#1000140 Magic Wand + hashes (wand size=3, column=218): 200, 99, 233, 108 -> 003fa4ff|207, 26, 235, 37 -> 006... 2016-07-31 21:08:32
Lua instructions: 8292k (832 ms)

[raw result]
[visualize]
#1000139 Magic Wand + hashes (wand size=3, column=218): 218, 0, 233, 4 -> 00098a3e 2016-07-31 21:08:32
Lua instructions: 382k (159 ms)

[raw result]
[visualize]
#1000137 Magic Wand + hashes (wand size=3, column=218): 218, 0, 233, 4 -> 00098a3e 2016-07-31 21:08:31
Lua instructions: 382k (143 ms)

[raw result]
[visualize]
#1000138 Magic Wand + hashes (wand size=3, column=218): 218, 0, 233, 4 -> 00098a3e 2016-07-31 21:08:31
Lua instructions: 382k (64 ms)

[raw result]
[visualize]
#1000132 Magic Wand + hashes (wand size=3, column=218): 194, 17, 239, 29 -> 0020d9af|190, 324, 234, 336 -> 00... 2016-07-31 20:46:18
Lua instructions: 8600k (865 ms)

[raw result]
[visualize]
#1000131 Magic Wand + hashes (wand size=3, column=218): 212, 615, 224, 622 -> 00062033|181, 272, 225, 284 -> ... 2016-07-31 20:38:43
Lua instructions: 7788k (858 ms)

[raw result]
[visualize]
#1000130 Magic Wand + hashes (wand size=3, column=218): 218, 583, 245, 592 -> 0065211f|181, 272, 225, 284 -> ... 2016-07-31 20:27:59
Lua instructions: 5985k (647 ms)

[raw result]
[visualize]
#1000129 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 215 2016-07-31 20:21:26

[raw result]
[visualize]
#1000128 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 215 2016-07-31 20:21:26

[raw result]
[visualize]
#1000125 Magic Wand + hashes (wand size=3, column=218): 204, 43, 233, 58 -> 005f9eca|210, 149, 219, 159 -> 00... 2016-07-31 20:10:05
Lua instructions: 2054k (218 ms)

[raw result]
[visualize]
#1000124 Magic Wand + hashes (wand size=3, column=218): 210, 417, 282, 431 -> 003e3a0f|171, 107, 228, 122 -> ... 2016-07-31 20:06:04
Lua instructions: 12664k (1402 ms)

[raw result]
[visualize]
#1000123 Magic Wand + hashes (wand size=3, column=218): 208, 69, 272, 80 -> 010d1881|208, 153, 281, 164 -> 01... 2016-07-31 20:03:49
Lua instructions: 1648k (273 ms)

[raw result]
[visualize]
#1000122 Magic Wand + hashes (wand size=3, column=218): 187, 0, 268, 18 -> 02d58986 2016-07-31 20:02:33
Lua instructions: 540k (171 ms)

[raw result]
[visualize]
#419 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 20:02:18

[raw result]
[visualize]
#1000120 LuaError: #405:153 vm error: java.lang.ArrayIndexOutOfBoundsException: 943 2016-07-31 20:01:22

[raw result]
[visualize]
#1000118 Magic Wand + hashes (wand size=3, column=218): 216, 33, 248, 43 -> 006b2516|212, 367, 226, 383 -> 00... 2016-07-31 20:00:47
Lua instructions: 578k (162 ms)

[raw result]
[visualize]
#1000114 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:54:16

[raw result]
[visualize]
#1000117 java.lang.OutOfMemoryError: Java heap space 2016-07-31 19:54:09

[raw result]
[visualize]
#1000116 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:54:03

[raw result]
[visualize]
#1000038 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:51

[raw result]
[visualize]
#1000020 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:51

[raw result]
[visualize]
#1000035 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:51

[raw result]
[visualize]
#1000022 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:50

[raw result]
[visualize]
#1000018 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:50

[raw result]
[visualize]
#1000039 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:49

[raw result]
[visualize]
#1000041 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:46

[raw result]
[visualize]
#1000040 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:46

[raw result]
[visualize]
#1000013 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:45

[raw result]
[visualize]
#309 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:45

[raw result]
[visualize]
#112 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:45

[raw result]
[visualize]
#1000003 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:45

[raw result]
[visualize]
#1000021 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:45

[raw result]
[visualize]
#1000034 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:44

[raw result]
[visualize]
#1000024 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:44

[raw result]
[visualize]
#100 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:44

[raw result]
[visualize]
#1000054 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:43

[raw result]
[visualize]
#1000010 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:43

[raw result]
[visualize]
#1000083 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:37

[raw result]
[visualize]
#1000086 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:37

[raw result]
[visualize]
#1000097 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:37

[raw result]
[visualize]
#1000036 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:36

[raw result]
[visualize]
#1000055 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:36

[raw result]
[visualize]
#1000073 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:36

[raw result]
[visualize]
#1000076 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:36

[raw result]
[visualize]
#84 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:36

[raw result]
[visualize]
#1000084 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:36

[raw result]
[visualize]
#1000079 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:36

[raw result]
[visualize]
#1000106 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:29

[raw result]
[visualize]
#1000087 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:29

[raw result]
[visualize]
#1000091 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:29

[raw result]
[visualize]
#1000088 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:29

[raw result]
[visualize]
#1000074 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:29

[raw result]
[visualize]
#1000081 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:29

[raw result]
[visualize]
#1000078 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:29

[raw result]
[visualize]
#1000105 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:29

[raw result]
[visualize]
#1000104 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:29

[raw result]
[visualize]
#183 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:29

[raw result]
[visualize]
#1000031 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:28

[raw result]
[visualize]
#145 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:28

[raw result]
[visualize]
#1000030 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:28

[raw result]
[visualize]
#85 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:28

[raw result]
[visualize]
#1000080 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:28

[raw result]
[visualize]
#1000043 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:28

[raw result]
[visualize]
#1000109 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:28

[raw result]
[visualize]
#1000014 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:28

[raw result]
[visualize]
#1000056 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:28

[raw result]
[visualize]
#1000082 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:28

[raw result]
[visualize]
#1000062 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:28

[raw result]
[visualize]
#1000092 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:28

[raw result]
[visualize]
#1000093 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:28

[raw result]
[visualize]
#1000029 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:27

[raw result]
[visualize]
#1000042 java.lang.OutOfMemoryError: Java heap space 2016-07-31 19:50:27

[raw result]
[visualize]
#1000064 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:27

[raw result]
[visualize]
#1000028 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:27

[raw result]
[visualize]
#1000075 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:27

[raw result]
[visualize]
#1000045 java.lang.OutOfMemoryError: Java heap space 2016-07-31 19:50:26

[raw result]
[visualize]
#1000085 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:26

[raw result]
[visualize]
#1000102 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:26

[raw result]
[visualize]
#98 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:26

[raw result]
[visualize]
#1000061 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:26

[raw result]
[visualize]
#1000107 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:26

[raw result]
[visualize]
#1000090 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:26

[raw result]
[visualize]
#1000026 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:26

[raw result]
[visualize]
#1000047 java.lang.OutOfMemoryError: Java heap space 2016-07-31 19:50:25

[raw result]
[visualize]
#182 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:25

[raw result]
[visualize]
#1000032 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:25

[raw result]
[visualize]
#113 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:25

[raw result]
[visualize]
#178 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:25

[raw result]
[visualize]
#1000052 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:25

[raw result]
[visualize]
#1000096 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:25

[raw result]
[visualize]
#1000100 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:25

[raw result]
[visualize]
#115 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:25

[raw result]
[visualize]
#1000077 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:25

[raw result]
[visualize]
#1000099 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:25

[raw result]
[visualize]
#92 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:25

[raw result]
[visualize]
#93 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:25

[raw result]
[visualize]
#87 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:25

[raw result]
[visualize]
#1000103 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:25

[raw result]
[visualize]
#1000046 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:25

[raw result]
[visualize]
#1000101 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:25

[raw result]
[visualize]
#1000017 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:24

[raw result]
[visualize]
#1000108 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:24

[raw result]
[visualize]
#1000051 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:24

[raw result]
[visualize]
#1000089 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:24

[raw result]
[visualize]
#1000044 java.lang.OutOfMemoryError: Java heap space 2016-07-31 19:50:24

[raw result]
[visualize]
#1000053 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:24

[raw result]
[visualize]
#1000025 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:24

[raw result]
[visualize]
#1000112 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:23

[raw result]
[visualize]
#48 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 19:50:23

[raw result]
[visualize]
#1000111 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:23

[raw result]
[visualize]
#1000110 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:23

[raw result]
[visualize]
#1000012 java.lang.OutOfMemoryError: Java heap space 2016-07-31 19:50:23

[raw result]
[visualize]
#1000095 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:23

[raw result]
[visualize]
#1000019 LuaError: #405:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 19:50:23

[raw result]
[visualize]
#1000219 java.lang.OutOfMemoryError: Java heap space 2016-07-31 18:51:37

[raw result]
[visualize]
#1003745 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 18:51:23

[raw result]
[visualize]
#489 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-07-31 18:51:22

[raw result]
[visualize]
#1000141 Magic Wand + hashes (wand size=3, column=218): 194, 752, 221, 764 -> 000defb1|217, 731, 222, 741 -> ... 2016-07-31 18:48:43
Lua instructions: 1132k (149 ms)

[raw result]
[visualize]
#1003958 Magic Wand + hashes (wand size=3, column=218): 216, 6, 236, 18 -> 0023e217|178, 750, 219, 760 -> 008... 2016-07-31 18:37:42
Lua instructions: 886k

[raw result]
[visualize]

Snippet ID: #405
Snippet name: Magic Wand + Hashes for Internet menu
Eternal ID of this version: #405/1
Text MD5: 4b69a36aa963193e878fbf80c2e39bdc
Author: stefan
Category: image recognition
Type: Lua code - Image recognition
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2015-02-05 19:44:45
Source code size: 5079 bytes / 199 lines
Pitched / IR pitched: No / Yes
Views / Downloads: 2958 / 157
Referenced in: [show references]