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

76
LINES

< > BotCompany Repo | #423 // Grid + Floodfill with hashes (hacked for galculator)

Lua code - Image recognition

get("#348") -- rgb functions
get("#388") -- rect functions
get("#410") -- shrinkRectangle
get("#380") -- hashImage

w, h = img.width, img.height
g = 4 -- grid size
gw, gh = math.floor(w/g), math.floor(h/g) -- width & height of grid

grid = {}
for gy = 0, h-g, g do
  for gx = 0, w-g, g do
    local min, max = 1, 0
    for y = gy, gy+g-1 do
      for x = gx, gx+g-1 do
        local b = bright(rgb(img.getInt(x, y)))
        min, max = math.min(min, b), math.max(max, b)
        if min < 0.5 and max > 0.5 then
          grid[(gy/g)*gw+(gx/g)+1] = true
          goto next
        end
      end
    end
    ::next::
  end
end

-- stack layout: {{x, y}, ...}
local r
function fill(stack)
  while #stack > 0 do
    local x, y = unpack(stack[#stack])
    stack[#stack] = nil
    
    if not (x < 0 or y < 0 or x >= gw or y >= gh) then
      local idx = y*gw+x+1
      
      if grid[idx] then
        grid[idx] = nil
        local me = newRectangle(x, y, 1, 1)
        if r == nil then
          r = me
        else
          r = mergeRectangles(r, me)
        end
        
        stack[#stack+1] = {x-1, y}
        stack[#stack+1] = {x+1, y}
        stack[#stack+1] = {x, y-1}
        stack[#stack+1] = {x, y+1}
      end
    end
  end
end

result = {}
for y = 0, gh-1 do
  for x = 0, gw-1 do
    r = nil
    fill {{x, y, 1}}
    if r then
      --table.insert(result, (x*g).."/"..(y*g).."-"..c)
      r = scaleRectangle(r, g)
      r = shrinkRectangle(r, img)
      
      if r.width < 200 then
        local cropped = {width=r.width, height=r.height,
          getInt = function(x, y) return img.getInt(x+r.x, y+r.y) end}
        local hash = hashImage(cropped)
        table.insert(result, recttostring(r).." -> "..hash)
      end
    end
  end
end

return "Floodfill: "..table.concat(result, "|")

Author comment

Began life as a copy of #422

Excludes those super-large rectangles covering whole windows. they obstruct the rest and they're not really useful.

Observe the line that says "width < 200".

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
971 #1000604 (pitcher) 2015-08-20 15:28:24
970 #1000610 Edit suggestion:
!636
!629

main {
static Object androidContext;
static String programID;

public static void main(String[] args) throws Exception {
get("#348") -- rgb functions
get("#388") -- rect functions
get("#410") -- shrinkRectangle
get("#380") -- hashImage

w, h = img.width, img.height
g = 4 -- grid size
gw, gh = math.floor(w/g), math.floor(h/g) -- width & height of grid

grid = {}
for gy = 0, h-g, g do
for gx = 0, w-g, g do
local min, max = 1, 0
for y = gy, gy+g-1 do
for x = gx, gx+g-1 do
local b = bright(rgb(img.getInt(x, y)))
min, max = math.min(min, b), math.max(max, b)
if min < 0.5 and max > 0.5 then
grid[(gy/g)*gw+(gx/g)+1] = true
goto next
end
end
end
::next::
end
end

-- stack layout: {{x, y}, ...}
local r
function fill(stack)
while #stack > 0 do
local x, y = unpack(stack[#stack])
stack[#stack] = nil

if not (x < 0 or y < 0 or x >= gw or y >= gh) then
local idx = y*gw+x+1

if grid[idx] then
grid[idx] = nil
local me = newRectangle(x, y, 1, 1)
if r == nil then
r = me
else
r = mergeRectangles(r, me)
end

stack[#stack+1] = {x-1, y}
stack[#stack+1] = {x+1, y}
stack[#stack+1] = {x, y-1}
stack[#stack+1] = {x, y+1}
end
end
end
end

result = {}
for y = 0, gh-1 do
for x = 0, gw-1 do
r = nil
fill {{x, y, 1}}
if r then
--table.insert(result, (x*g).."/"..(y*g).."-"..c)
r = scaleRectangle(r, g)
r = shrinkRectangle(r, img)

if r.width < 200 then
local cropped = {width=r.width, height=r.height,
getInt = function(x, y) return img.getInt(x+r.x, y+r.y) end}
local hash = hashImage(cropped)
table.insert(result, recttostring(r).." -> "..hash)
end
end
end
end

return "Floodfill: "..table.concat(result, "|")
}}
2015-08-20 09:08:57  delete 

add comment

Image recognition results

show nils
Image Result Result calculated
#1004153 Floodfill: 10, 8, 51, 17 -> 00ed1c04 2016-08-08 16:40:03
Lua instructions: 120k

[raw result]
[visualize]
#1000219 Floodfill: 932, 36, 1068, 40 -> 00700c91|888, 40, 921, 44 -> 00032706|1079, 40, 1112, 44 -> 002375dc... 2016-08-08 07:48:12
Lua instructions: 243047k

[raw result]
[visualize]
#1004135 Floodfill: 502, 0, 504, 1 -> 00006d3d|38, 11, 43, 22 -> 000dc296|49, 10, 99, 22 -> 00eb3473|106, 10,... 2016-08-08 00:11:49
Lua instructions: 14271k

[raw result]
[visualize]
#1000151 Floodfill: 40, 3, 83, 14 -> 00cadd33|89, 2, 132, 13 -> 000e3163|136, 3, 216, 13 -> 00ec5fe2|456, 2, ... 2016-08-07 18:06:42
Lua instructions: 5601k (717 ms)

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

[raw result]
[visualize]
#1000121 Floodfill: 166, 2, 167, 3 -> 000031a2|228, 0, 244, 5 -> 00367d89|250, 0, 268, 2 -> 00038cfb|215, 7, ... 2016-08-07 02:38:46
Lua instructions: 7431k (829 ms)

[raw result]
[visualize]
#1000329 Floodfill: 92, 0, 220, 112 -> 0ef4db99|0, 5, 92, 104 -> 0864eb53|92, 8, 104, 20 -> 0019dfce|72, 16, ... 2016-08-06 17:54:32
Lua instructions: 2941k (327 ms)

[raw result]
[visualize]
#1004088 Floodfill: 248, 3, 249, 4 -> 0000336c|248, 8, 249, 9 -> 0000334a|290, 10, 323, 20 -> 003bc6a1|330, 9... 2016-08-06 13:24:28
Lua instructions: 3109k

[raw result]
[visualize]
#1000225 Floodfill: 64, 0, 80, 16 -> 005f9f27|80, 4, 84, 8 -> 0005477c|84, 9, 87, 12 -> 0003b487|88, 14, 96, ... 2016-08-06 08:32:00
Lua instructions: 991k (240 ms)

[raw result]
[visualize]
#1004070 java.lang.OutOfMemoryError: Java heap space 2016-08-05 15:08:31

[raw result]
[visualize]
#1004061 Floodfill: 7, 5, 35, 15 -> 00085f77|40, 7, 63, 15 -> 001c6c72|69, 5, 71, 15 -> 00044d30|77, 4, 256, ... 2016-08-05 13:30:59
Lua instructions: 12306k

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

[raw result]
[visualize]
#1000072 Floodfill: 52, 26, 63, 32 -> 000e27c9|48, 28, 60, 48 -> 00738414|44, 32, 72, 56 -> 0060dd6f|40, 52, ... 2016-08-04 01:19:19
Lua instructions: 836k (101 ms)

[raw result]
[visualize]
#1000199 Floodfill: 2016-08-03 22:24:40
Lua instructions: 216902k (22724 ms)

[raw result]
[visualize]
#178 Floodfill: 8, 0, 10, 8 -> 00000010|20, 0, 28, 6 -> 00084db0|34, 0, 94, 30 -> 03c05808|104, 0, 108, 4... 2016-08-03 22:19:01
Lua instructions: 2856k (325 ms)

[raw result]
[visualize]
#1004009 Floodfill: 80, 12, 97, 33 -> 00fdca55|33, 19, 46, 33 -> 004af56b|130, 16, 182, 28 -> 007fb569|187, 1... 2016-08-03 17:18:03
Lua instructions: 12761k

[raw result]
[visualize]
#1000015 Floodfill: 6, 4, 46, 16 -> 00b47203|55, 4, 82, 14 -> 003fdbf6|90, 4, 164, 16 -> 002b286c|174, 4, 179... 2016-08-03 11:07:58
Lua instructions: 254k (54 ms)

[raw result]
[visualize]
#1000113 Floodfill: 13, 17, 18, 22 -> 000ddb01|670, 17, 675, 22 -> 000367b5|21, 22, 37, 40 -> 00645074|280, 2... 2016-08-02 17:42:44
Lua instructions: 26505k (3001 ms)

[raw result]
[visualize]
#1000064 Floodfill: 31, 21, 60, 65 -> 021664f9|56, 24, 64, 44 -> 0050af83 2016-08-02 17:19:23
Lua instructions: 567k (76 ms)

[raw result]
[visualize]
#1000613 Floodfill: 28, 0, 32, 4 -> 00021608|48, 3, 56, 8 -> 0003d9c1|68, 0, 72, 4 -> 0001bd91|420, 4, 436, 1... 2016-08-01 20:27:30
Lua instructions: 87551k (9209 ms)

[raw result]
[visualize]
#1000614 Floodfill: 0, 36, 4, 40 -> 0001a541|4, 40, 8, 44 -> 0001245a|0, 44, 4, 48 -> 0003d8bb|476, 44, 480, ... 2016-08-01 20:25:01
Lua instructions: 80737k (8718 ms)

[raw result]
[visualize]
#1000611 Floodfill: 12, 4, 24, 20 -> 0007eb3c|84, 4, 88, 8 -> 000169e7|108, 4, 120, 20 -> 001de2a5|136, 4, 14... 2016-08-01 20:10:35
Lua instructions: 12371k (1374 ms)

[raw result]
[visualize]
#1000600 Floodfill: 332, 51, 364, 64 -> 00534368|364, 51, 375, 56 -> 000cf359|385, 51, 400, 56 -> 00094f80|40... 2016-08-01 20:05:34
Lua instructions: 10678k (1161 ms)

[raw result]
[visualize]
#1000576 Floodfill: 84, 4, 96, 20 -> 001de2a5|132, 4, 136, 8 -> 000169e7|152, 4, 168, 20 -> 002a93ab|180, 4, ... 2016-08-01 19:59:26
Lua instructions: 12372k (1338 ms)

[raw result]
[visualize]
#1000558 Floodfill: 36, 12, 84, 52 -> 01ac8d21|180, 16, 200, 48 -> 00fdf047|268, 16, 332, 68 -> 0769df41|176,... 2016-08-01 19:55:34
Lua instructions: 20318k (2363 ms)

[raw result]
[visualize]
#1000556 Floodfill: 259, 14, 268, 23 -> 000937b0|228, 14, 427, 56 -> 09f6b1af|0, 22, 12, 38 -> 000ec0c4|30, 2... 2016-08-01 19:46:11
Lua instructions: 25864k (2762 ms)

[raw result]
[visualize]
#1000555 Floodfill: 243, 1, 244, 2 -> 000028fe|252, 3, 256, 8 -> 000613ff|256, 8, 276, 28 -> 002b5318|336, 24... 2016-08-01 19:38:29
Lua instructions: 29574k (3162 ms)

[raw result]
[visualize]
#1000554 Floodfill: 17, 0, 88, 8 -> 00406ef5|92, 0, 104, 4 -> 0007dd78|120, 0, 124, 4 -> 0001e0fe|88, 4, 92, ... 2016-08-01 19:34:47
Lua instructions: 13728k (1800 ms)

[raw result]
[visualize]
#1000553 Floodfill: 154, 0, 199, 1 -> 00012729|205, 0, 224, 1 -> 000550e4|228, 0, 232, 1 -> 0000194f|236, 0, ... 2016-08-01 19:28:52
Lua instructions: 14502k (1581 ms)

[raw result]
[visualize]
#1000549 Floodfill: 34, 11, 43, 20 -> 000937b0|46, 11, 84, 23 -> 0032489c|89, 11, 129, 20 -> 00314b84|6, 19, ... 2016-08-01 19:24:25
Lua instructions: 3597k (400 ms)

[raw result]
[visualize]
#1000547 Floodfill: 718, 107, 720, 108 -> 000071e9|727, 106, 728, 107 -> 00002c6f|733, 105, 734, 106 -> 00003... 2016-08-01 19:15:35
Lua instructions: 38950k (4147 ms)

[raw result]
[visualize]
#1000546 Floodfill: 4, 0, 28, 20 -> 00c82d82|200, 0, 220, 4 -> 0017d419|241, 0, 244, 4 -> 0001ea99|180, 4, 19... 2016-08-01 19:12:28
Lua instructions: 5781k (627 ms)

[raw result]
[visualize]
#1000545 Floodfill: 56, 44, 212, 104 -> 070373cc|0, 60, 52, 92 -> 01353267|28, 64, 52, 76 -> 0025820d|24, 68,... 2016-08-01 19:09:17
Lua instructions: 14344k (1533 ms)

[raw result]
[visualize]
#1000543 Floodfill: 560, 0, 572, 56 -> 00ad3bcb|440, 4, 456, 20 -> 001cfca8|464, 4, 500, 20 -> 00805213|504, ... 2016-08-01 18:45:05
Lua instructions: 27661k (2979 ms)

[raw result]
[visualize]
#1000542 Floodfill: 228, 0, 340, 284 -> 28bb0530|472, 4, 492, 20 -> 002ebf05|496, 4, 504, 12 -> 000a4542|500,... 2016-08-01 18:42:30
Lua instructions: 29614k (3398 ms)

[raw result]
[visualize]
#1000444 Floodfill: 76, 0, 80, 4 -> 00032f6c|116, 0, 121, 56 -> 000ee215|824, 0, 940, 608 -> 33c137c5|932, 0,... 2016-08-01 18:30:32
Lua instructions: 86478k (9192 ms)

[raw result]
[visualize]
#1000428 Floodfill: 8, 4, 28, 20 -> 00196a22|60, 4, 72, 20 -> 001de2a5|132, 4, 144, 20 -> 001de2a5|256, 4, 26... 2016-08-01 18:24:37
Lua instructions: 12828k (1591 ms)

[raw result]
[visualize]
#1000425 Floodfill: 8, 4, 28, 20 -> 00639a02|60, 4, 72, 20 -> 001de2a5|84, 4, 96, 20 -> 001de2a5|256, 4, 268,... 2016-08-01 18:22:43
Lua instructions: 11590k (1306 ms)

[raw result]
[visualize]
#1000422 Floodfill: 12, 4, 24, 20 -> 001de2a5|40, 4, 44, 12 -> 00031717|108, 4, 120, 20 -> 002067ae|132, 4, 1... 2016-08-01 18:20:45
Lua instructions: 11542k (1287 ms)

[raw result]
[visualize]
#1000421 Floodfill: 16, 4, 24, 16 -> 000f2a72|40, 4, 48, 16 -> 0002888f|68, 4, 76, 16 -> 000f2a72|92, 4, 100,... 2016-08-01 18:20:37
Lua instructions: 62193k (7074 ms)

[raw result]
[visualize]
#1000418 Floodfill: 8, 4, 28, 20 -> 00639a02|60, 4, 72, 20 -> 001de2a5|88, 4, 92, 12 -> 00015bfc|132, 4, 144,... 2016-08-01 18:08:21
Lua instructions: 12356k (1425 ms)

[raw result]
[visualize]
#1000359 Floodfill: 564, 0, 568, 8 -> 00070420|100, 12, 101, 13 -> 0000366e|111, 12, 119, 13 -> 0000ca23|124,... 2016-08-01 18:00:58
Lua instructions: 22884k (2594 ms)

[raw result]
[visualize]
#1000338 Floodfill: 12, 4, 24, 20 -> 003b3bc0|36, 4, 48, 20 -> 00040269|56, 4, 76, 20 -> 00639a02|156, 4, 168... 2016-08-01 17:54:18
Lua instructions: 9511k (1045 ms)

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

[raw result]
[visualize]
#1000335 Floodfill: 250, 170, 280, 172 -> 000bc20a|212, 172, 248, 200 -> 019c2d9e|284, 173, 291, 176 -> 0006a... 2016-08-01 17:45:31
Lua instructions: 16421k (1745 ms)

[raw result]
[visualize]
#1000333 Floodfill: 8, 7, 28, 22 -> 0072304c|76, 11, 171, 23 -> 01f652a3|0, 22, 2, 31 -> 0003cb3e|65, 33, 87,... 2016-08-01 17:43:20
Lua instructions: 2490k (269 ms)

[raw result]
[visualize]
#1000332 Floodfill: 35, 48, 220, 228 -> 1ae0d843|258, 49, 446, 238 -> 31d0d226|105, 67, 106, 68 -> 000031a2|1... 2016-08-01 17:42:12
Lua instructions: 11872k (1276 ms)

[raw result]
[visualize]
#1000331 Floodfill: 261, 49, 262, 50 -> 000017b2|269, 56, 275, 62 -> 00097f83|278, 66, 280, 68 -> 0000ee97|25... 2016-08-01 17:39:07
Lua instructions: 7290k (766 ms)

[raw result]
[visualize]
#1000328 Floodfill: 12, 11, 32, 26 -> 0072304c|180, 15, 275, 27 -> 01f652a3|25, 44, 28, 48 -> 0001c65a|13, 48... 2016-08-01 17:07:22
Lua instructions: 4622k (491 ms)

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

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

[raw result]
[visualize]
#1000325 Floodfill: 0, 8, 176, 92 -> 0a9e59d5|169, 12, 180, 32 -> 003a58ff|168, 36, 180, 52 -> 00089dc3|168, ... 2016-08-01 16:37:43
Lua instructions: 3746k (422 ms)

[raw result]
[visualize]
#1000321 Floodfill: 5, 4, 12, 292 -> 004b13ff|508, 4, 515, 8 -> 0007375e|516, 10, 517, 292 -> 003c4b0a|308, 8... 2016-08-01 15:58:04
Lua instructions: 11607k (1226 ms)

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

[raw result]
[visualize]
#1000316 Floodfill: 13, 10, 77, 24 -> 0119033d|84, 9, 152, 21 -> 010ead6d|159, 9, 188, 21 -> 0046283e|195, 9,... 2016-08-01 14:57:29
Lua instructions: 20792k (2197 ms)

[raw result]
[visualize]
#1000315 Floodfill: 192, 0, 204, 12 -> 000d9c3a|208, 0, 216, 4 -> 0006fec1|224, 0, 232, 12 -> 001044be|240, 0... 2016-08-01 14:52:58
Lua instructions: 23134k (2607 ms)

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

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

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

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

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

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

[raw result]
[visualize]
#1000289 Floodfill: 4, 4, 24, 40 -> 0042ba14|44, 4, 52, 8 -> 00008145|25, 8, 28, 12 -> 00026192|28, 8, 43, 32... 2016-08-01 14:19:36
Lua instructions: 1728k (374 ms)

[raw result]
[visualize]
#1000284 Floodfill: 364, 28, 384, 40 -> 0028eb18|392, 32, 400, 36 -> 0004070c|356, 36, 360, 48 -> 00079747|40... 2016-08-01 14:09:31
Lua instructions: 42033k (4641 ms)

[raw result]
[visualize]
#1000285 Floodfill: 338, 0, 344, 28 -> 001ec0e3|136, 23, 328, 200 -> 24f37b96|344, 32, 356, 76 -> 005b9dde|23... 2016-08-01 14:09:17
Lua instructions: 10730k (1310 ms)

[raw result]
[visualize]
#1000283 Floodfill: 324, 13, 325, 14 -> 00003503|314, 19, 315, 20 -> 00003a73|320, 22, 321, 23 -> 00003983|30... 2016-08-01 13:50:28
Lua instructions: 3695k (539 ms)

[raw result]
[visualize]
#1000282 Floodfill: 0, 0, 20, 28 -> 007b4b69|24, 0, 188, 184 -> 0c749815|76, 4, 88, 8 -> 00034a9e|20, 28, 24,... 2016-08-01 13:48:22
Lua instructions: 7105k (809 ms)

[raw result]
[visualize]
#1000279 Floodfill: 2016-08-01 13:45:26
Lua instructions: 9007k (916 ms)

[raw result]
[visualize]
#1000276 Floodfill: 188, 12, 213, 16 -> 00004bce|229, 12, 252, 15 -> 0007c4d1|176, 16, 186, 19 -> 00050b43|25... 2016-08-01 13:37:55
Lua instructions: 14878k (1747 ms)

[raw result]
[visualize]
#1000275 Floodfill: 66, 0, 69, 2 -> 000049a9|88, 0, 91, 1 -> 0000f26c|185, 0, 230, 12 -> 007f455f|234, 0, 244... 2016-08-01 13:25:52
Lua instructions: 24819k (2919 ms)

[raw result]
[visualize]
#1000269 Floodfill: 59, 0, 112, 52 -> 0203e56f|108, 0, 160, 16 -> 0000b37f|132, 0, 176, 20 -> 01c955da|176, 0... 2016-08-01 13:11:46
Lua instructions: 12027k (1441 ms)

[raw result]
[visualize]
#1000267 Floodfill: 2016-08-01 12:45:39
Lua instructions: 1098k (133 ms)

[raw result]
[visualize]
#1000262 Floodfill: 40, 0, 48, 4 -> 00059fda|12, 0, 192, 164 -> 12395db6|200, 0, 300, 164 -> 1a9a9ed3|348, 0,... 2016-08-01 12:25:16
Lua instructions: 25559k (2929 ms)

[raw result]
[visualize]
#1000259 Floodfill: 0, 0, 40, 12 -> 00ca8b70|47, 0, 48, 6 -> 0001da8d|660, 6, 665, 11 -> 000367b5|11, 11, 27,... 2016-08-01 12:15:02
Lua instructions: 22270k (2591 ms)

[raw result]
[visualize]
#1000261 Floodfill: 216, 108, 280, 112 -> 00296974|200, 112, 212, 119 -> 0009492b|284, 112, 296, 115 -> 0003b... 2016-08-01 12:14:20
Lua instructions: 21391k (2299 ms)

[raw result]
[visualize]
#1000257 Floodfill: 348, 24, 381, 28 -> 00246eb0|388, 24, 476, 32 -> 008dd811|480, 28, 484, 32 -> 0000a501|32... 2016-08-01 11:45:05
Lua instructions: 19718k (2255 ms)

[raw result]
[visualize]
#1000253 Floodfill: 168, 0, 172, 3 -> 00016b71|188, 0, 224, 12 -> 0016a219|228, 0, 232, 4 -> 0001cb97|424, 0,... 2016-08-01 11:38:48
Lua instructions: 21114k (2336 ms)

[raw result]
[visualize]
#1000250 Floodfill: 4, 4, 6, 6 -> 0000f130|11, 9, 12, 11 -> 00005492|11, 8, 27, 26 -> 00645074|269, 12, 342, ... 2016-08-01 11:28:00
Lua instructions: 20066k (2086 ms)

[raw result]
[visualize]
#1000248 Floodfill: 7, 21, 24, 23 -> 0006d359|10, 32, 33, 46 -> 003142e5|48, 33, 74, 46 -> 00238092|89, 33, 1... 2016-08-01 11:17:34
Lua instructions: 65805k (7539 ms)

[raw result]
[visualize]
#1000247 Floodfill: 4, 9, 12, 24 -> 0008d16f|16, 11, 18, 24 -> 0000f739|24, 11, 31, 24 -> 002b2e01|33, 11, 44... 2016-08-01 11:06:22
Lua instructions: 7182k (812 ms)

[raw result]
[visualize]
#1000246 Floodfill: 3, 2, 17, 18 -> 0078fad9|6, 26, 24, 37 -> 0050d302|37, 26, 58, 37 -> 003b5b89|71, 26, 97,... 2016-08-01 10:37:48
Lua instructions: 65206k (7054 ms)

[raw result]
[visualize]
#1000243 Floodfill: 0, 0, 4, 8 -> 00013818|168, 0, 176, 8 -> 00022d55|196, 0, 209, 4 -> 000974d0|224, 0, 324,... 2016-08-01 09:35:52
Lua instructions: 22293k (2320 ms)

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

[raw result]
[visualize]
#1000240 Floodfill: 36, 36, 44, 40 -> 0003d51b|24, 36, 96, 68 -> 009a157a|96, 36, 99, 38 -> 00036bc1|96, 36, ... 2016-08-01 09:34:14
Lua instructions: 3492k (528 ms)

[raw result]
[visualize]
#1000239 Floodfill: 280, 0, 312, 4 -> 0020a5e8|324, 0, 334, 4 -> 0009a56b|343, 0, 354, 4 -> 000e8805|264, 4, ... 2016-08-01 09:28:02
Lua instructions: 23637k (2676 ms)

[raw result]
[visualize]
#1000236 Floodfill: 16, 0, 40, 16 -> 0064bc36|52, 0, 80, 16 -> 006cdc19|128, 0, 144, 16 -> 0000e019|168, 0, 1... 2016-08-01 09:16:48
Lua instructions: 57913k (6164 ms)

[raw result]
[visualize]
#1000235 Floodfill: 2, 5, 18, 23 -> 00645074|579, 9, 659, 20 -> 011b68d2|662, 9, 688, 18 -> 007c7870|691, 9, ... 2016-08-01 08:57:11
Lua instructions: 67624k (6998 ms)

[raw result]
[visualize]
#1000233 Floodfill: 2, 5, 18, 23 -> 00645074|579, 9, 659, 20 -> 011b68d2|662, 9, 688, 18 -> 007c7870|691, 9, ... 2016-08-01 08:50:41
Lua instructions: 67029k (7027 ms)

[raw result]
[visualize]
#1000232 Floodfill: 132, 0, 144, 24 -> 003f46bd|158, 0, 160, 3 -> 00026263|164, 0, 168, 4 -> 0002e6bc|180, 0,... 2016-08-01 08:37:55
Lua instructions: 21047k (2517 ms)

[raw result]
[visualize]
#1000229 Floodfill: 479, 13, 480, 14 -> 000038a1|335, 28, 338, 32 -> 00015d84|60, 57, 83, 64 -> 0009102f|76, ... 2016-08-01 08:36:10
Lua instructions: 22729k (2441 ms)

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

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

[raw result]
[visualize]
#1000227 Floodfill: 2016-08-01 08:34:11
Lua instructions: 231k (47 ms)

[raw result]
[visualize]
#1000226 Floodfill: 135, 28, 171, 134 -> 00634b16 2016-08-01 08:34:11
Lua instructions: 2636k (423 ms)

[raw result]
[visualize]
#1000224 Floodfill: 1, 1, 12, 12 -> 00183d90 2016-08-01 08:23:12
Lua instructions: 16k (7 ms)

[raw result]
[visualize]
#1000205 Floodfill: 228, 208, 252, 212 -> 000c4ce4|300, 208, 324, 212 -> 000d2925|364, 208, 380, 212 -> 00027... 2016-08-01 07:33:07
Lua instructions: 245442k

[raw result]
[visualize]
#1000206 Floodfill: 264, 600, 276, 604 -> 0000e6f3|468, 600, 480, 604 -> 0000da7f|257, 604, 264, 608 -> 00045... 2016-08-01 07:32:02
Lua instructions: 156451k (18141 ms)

[raw result]
[visualize]
#1000207 Floodfill: 30, 30, 174, 174 -> 00d3884a 2016-08-01 07:31:45
Lua instructions: 3786k (578 ms)

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

[raw result]
[visualize]
#1000215 Floodfill: 104, 16, 116, 20 -> 000d59ff|80, 20, 96, 24 -> 000cd7a1|124, 20, 140, 24 -> 000a3fe6|72, ... 2016-08-01 07:24:52
Lua instructions: 3050k (344 ms)

[raw result]
[visualize]
#1000209 Floodfill: 2016-08-01 07:14:06
Lua instructions: 25250k (2801 ms)

[raw result]
[visualize]
#1000217 Floodfill: 168, 19, 196, 20 -> 000085c5|142, 20, 160, 24 -> 000f0dbf|208, 21, 224, 24 -> 000ce839|12... 2016-08-01 07:10:58
Lua instructions: 8675k (1074 ms)

[raw result]
[visualize]
#1000221 Floodfill: 2016-08-01 07:10:03
Lua instructions: 49466k (7092 ms)

[raw result]
[visualize]
#1000220 Floodfill: 100, 11, 124, 12 -> 000268fa|82, 12, 96, 16 -> 00029898|128, 12, 142, 16 -> 00141eaa|57, ... 2016-08-01 07:03:13
Lua instructions: 3257k (502 ms)

[raw result]
[visualize]
#1000210 Floodfill: 392, 133, 396, 140 -> 00016f71|1108, 137, 1112, 144 -> 00076683|385, 140, 392, 152 -> 000... 2016-08-01 06:57:04
Lua instructions: 137291k (14170 ms)

[raw result]
[visualize]
#1000198 Floodfill: 296, 112, 304, 120 -> 000643ae|304, 118, 308, 124 -> 00009ec6|289, 120, 296, 132 -> 00058... 2016-08-01 05:10:07
Lua instructions: 22094k (2640 ms)

[raw result]
[visualize]
#1000197 Floodfill: 632, 1, 644, 12 -> 0000aa57|644, 6, 652, 16 -> 000446da|629, 12, 632, 16 -> 0003d93e|616,... 2016-08-01 05:10:03
Lua instructions: 64175k (6716 ms)

[raw result]
[visualize]
#1000204 Floodfill: 2016-08-01 05:09:48
Lua instructions: 21676k (2426 ms)

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

[raw result]
[visualize]
#1000203 Floodfill: 86, 65, 92, 68 -> 00015f7b|324, 64, 339, 72 -> 00298d33|80, 69, 84, 72 -> 00005f74|76, 72... 2016-08-01 05:09:44
Lua instructions: 11221k (1318 ms)

[raw result]
[visualize]
#1000202 Floodfill: 2016-08-01 05:09:41
Lua instructions: 21986k (2305 ms)

[raw result]
[visualize]
#1000201 Floodfill: 2016-08-01 05:09:37
Lua instructions: 5452k (582 ms)

[raw result]
[visualize]
#1000208 Floodfill: 2016-08-01 05:09:36
Lua instructions: 8849k (938 ms)

[raw result]
[visualize]
#1000211 Floodfill: 72, 4, 87, 8 -> 001bda87|133, 4, 144, 7 -> 000237d4|64, 8, 72, 12 -> 00032952|147, 8, 156... 2016-08-01 05:09:33
Lua instructions: 2980k (325 ms)

[raw result]
[visualize]
#1000213 Floodfill: 2016-08-01 05:09:32
Lua instructions: 8832k (1120 ms)

[raw result]
[visualize]
#1000214 Floodfill: 288, 0, 316, 16 -> 0099d817|493, 0, 507, 4 -> 001b52ed|692, 0, 706, 4 -> 0018e4ec|472, 5,... 2016-08-01 05:09:31
Lua instructions: 61830k (6599 ms)

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

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

[raw result]
[visualize]
#1000200 Floodfill: 2016-08-01 04:30:48
Lua instructions: 19055k (2002 ms)

[raw result]
[visualize]
#1000195 Floodfill: 168, 0, 176, 8 -> 000bb243|245, 0, 252, 12 -> 00034d29|452, 0, 464, 4 -> 0000ebab|476, 0,... 2016-08-01 04:15:04
Lua instructions: 18245k (1901 ms)

[raw result]
[visualize]
#1000194 Floodfill: 984, 80, 992, 84 -> 000ea5bb|1044, 96, 1052, 100 -> 000fcc8e|352, 100, 356, 104 -> 00018f... 2016-08-01 04:06:52
Lua instructions: 63498k (6907 ms)

[raw result]
[visualize]
#1000189 Floodfill: 0, 0, 16, 7 -> 0014cb7c|16, 3, 17, 4 -> 00003c57|23, 0, 37, 15 -> 00050ff5|317, 4, 334, 1... 2016-08-01 03:34:55
Lua instructions: 8774k (1090 ms)

[raw result]
[visualize]
#1000187 Floodfill: 0, 3, 20, 23 -> 006efb5e|523, 9, 559, 18 -> 00533653|566, 9, 632, 21 -> 00db3666|638, 9, ... 2016-08-01 03:23:38
Lua instructions: 67831k (7344 ms)

[raw result]
[visualize]
#1000186 Floodfill: 0, 1, 50, 12 -> 00d98cc5|56, 1, 108, 12 -> 00437461 2016-08-01 03:04:16
Lua instructions: 128k (119 ms)

[raw result]
[visualize]
#1000185 Floodfill: 0, 0, 48, 8 -> 00ea72b2 2016-08-01 03:04:14
Lua instructions: 42k (16 ms)

[raw result]
[visualize]
#1000184 Floodfill: 0, 0, 48, 12 -> 00edf5bd 2016-08-01 02:54:47
Lua instructions: 59k (14 ms)

[raw result]
[visualize]
#1000183 Floodfill: 0, 0, 44, 12 -> 002ccbb0 2016-08-01 02:54:46
Lua instructions: 56k (13 ms)

[raw result]
[visualize]
#1000182 Floodfill: 0, 0, 60, 12 -> 019fa69b 2016-08-01 02:54:43
Lua instructions: 72k (104 ms)

[raw result]
[visualize]
#1000181 Floodfill: 0, 0, 48, 8 -> 007ffc1d 2016-08-01 02:54:26
Lua instructions: 43k (84 ms)

[raw result]
[visualize]
#1000180 Floodfill: 0, 18, 112, 44 -> 0191078a|108, 18, 172, 36 -> 01efbeba|181, 18, 186, 28 -> 001d5ae6|184,... 2016-08-01 02:53:05
Lua instructions: 2957k (595 ms)

[raw result]
[visualize]
#1000179 Floodfill: 384, 328, 396, 384 -> 00af50b6|416, 328, 428, 352 -> 0066a2df|452, 328, 484, 380 -> 03a3d... 2016-08-01 02:38:36
Lua instructions: 48605k (5152 ms)

[raw result]
[visualize]
#1000178 Floodfill: 5, 3, 25, 23 -> 006efb5e|24, 4, 25, 5 -> 00003086|343, 9, 379, 18 -> 00533653|386, 9, 452... 2016-08-01 02:22:19
Lua instructions: 67092k (7039 ms)

[raw result]
[visualize]
#1000177 Floodfill: 203, 0, 204, 140 -> 001c1118|54, 95, 183, 120 -> 05c79e8e|0, 96, 38, 120 -> 00881ed0|2, 1... 2016-08-01 02:17:56
Lua instructions: 3579k (382 ms)

[raw result]
[visualize]
#1000176 Floodfill: 0, 3, 20, 23 -> 006efb5e|523, 9, 559, 18 -> 00533653|566, 9, 632, 21 -> 00db3666|638, 9, ... 2016-08-01 02:03:46
Lua instructions: 66488k (7005 ms)

[raw result]
[visualize]
#1000175 Floodfill: 67, 3, 68, 4 -> 000031c1|568, 0, 571, 4 -> 000084fc|31, 4, 59, 6 -> 0019d964|68, 11, 73, ... 2016-08-01 02:00:09
Lua instructions: 10007k (1228 ms)

[raw result]
[visualize]
#1000172 Floodfill: 92, 45, 116, 79 -> 01aebf8a|283, 96, 290, 100 -> 000ba033|84, 106, 99, 120 -> 0036cc92|21... 2016-08-01 01:56:01
Lua instructions: 2351k (261 ms)

[raw result]
[visualize]
#1000173 Floodfill: 91, 44, 112, 57 -> 0026db9c|91, 48, 115, 78 -> 00a9fa61|283, 96, 290, 100 -> 000ba033|84,... 2016-08-01 01:55:37
Lua instructions: 2378k (266 ms)

[raw result]
[visualize]
#1000171 Floodfill: 1, 1, 8, 16 -> 003e6fee|8, 1, 36, 34 -> 008c484d|32, 1, 60, 34 -> 009a0bd8|101, 1, 124, 3... 2016-08-01 01:48:22
Lua instructions: 2826k (459 ms)

[raw result]
[visualize]
#1000170 Floodfill: 20, 10, 36, 24 -> 0021bf48|8, 10, 56, 51 -> 02f92ebb|64, 10, 100, 51 -> 025272c9|104, 10,... 2016-08-01 01:38:44
Lua instructions: 48373k (5291 ms)

[raw result]
[visualize]
#1000169 Floodfill: 1, 7, 19, 22 -> 0039f853|288, 9, 371, 21 -> 00301990|386, 9, 502, 21 -> 004c63c3|508, 9, ... 2016-08-01 01:25:23
Lua instructions: 4178k (591 ms)

[raw result]
[visualize]
#1000168 Floodfill: 95, 0, 100, 5 -> 000367b5 2016-08-01 01:15:59
Lua instructions: 245k (39 ms)

[raw result]
[visualize]
#1000167 Floodfill: 72, 35, 73, 38 -> 000002b1|12, 53, 27, 71 -> 0053f11d|142, 55, 158, 69 -> 005ece1f|168, 5... 2016-08-01 01:12:16
Lua instructions: 1593k (312 ms)

[raw result]
[visualize]
#1000166 Floodfill: 12, 53, 26, 71 -> 001e7eea|142, 55, 158, 69 -> 005ece1f|168, 55, 183, 69 -> 000bb92c|232,... 2016-08-01 01:12:16
Lua instructions: 1595k (316 ms)

[raw result]
[visualize]
#1000164 Floodfill: 0, 4, 28, 20 -> 00bc3e3d|32, 4, 56, 20 -> 003aa40c 2016-08-01 01:05:21
Lua instructions: 105k (116 ms)

[raw result]
[visualize]
#1003828 Floodfill: 359, 0, 360, 7 -> 0000640e|160, 5, 162, 7 -> 00003b21|393, 4, 395, 13 -> 00005310|167, 10... 2016-08-01 00:54:17
Lua instructions: 10636k

[raw result]
[visualize]
#1000163 java.lang.OutOfMemoryError: Java heap space 2016-08-01 00:53: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: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 23:18:57

[raw result]
[visualize]
#1000160 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 23:16:00

[raw result]
[visualize]
#1000159 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 23:12:18

[raw result]
[visualize]
#1000158 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 23:11:59

[raw result]
[visualize]
#1000157 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:55:26

[raw result]
[visualize]
#1000156 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:37:21

[raw result]
[visualize]
#1000155 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:30:23

[raw result]
[visualize]
#1000154 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:30:23

[raw result]
[visualize]
#1000153 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:25:21

[raw result]
[visualize]
#1000152 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:25:21

[raw result]
[visualize]
#1000150 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:25:21

[raw result]
[visualize]
#1000149 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:25:21

[raw result]
[visualize]
#1000148 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:16:08

[raw result]
[visualize]
#1000147 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:11:51

[raw result]
[visualize]
#1000146 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 21:50:34

[raw result]
[visualize]
#1000144 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 21:46:15

[raw result]
[visualize]
#1000145 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 21:42:26

[raw result]
[visualize]
#1000143 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 21:31:35

[raw result]
[visualize]
#1000142 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 21:20:56

[raw result]
[visualize]
#1000138 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:55:07

[raw result]
[visualize]
#1000137 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:55:07

[raw result]
[visualize]
#1000139 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:55:07

[raw result]
[visualize]
#1000136 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:48:17

[raw result]
[visualize]
#1000132 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:41:54

[raw result]
[visualize]
#1000131 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:32:58

[raw result]
[visualize]
#1000130 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:25:30

[raw result]
[visualize]
#1000129 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:21:26

[raw result]
[visualize]
#1000128 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:21:26

[raw result]
[visualize]
#1000127 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:19:05

[raw result]
[visualize]
#1000126 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:12:57

[raw result]
[visualize]
#1000022 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:51

[raw result]
[visualize]
#1000035 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:51

[raw result]
[visualize]
#1000027 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:50

[raw result]
[visualize]
#1000034 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:50

[raw result]
[visualize]
#1000024 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:50

[raw result]
[visualize]
#1000013 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:50

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

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

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

[raw result]
[visualize]
#1000041 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:50

[raw result]
[visualize]
#1000087 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:49

[raw result]
[visualize]
#1000091 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:49

[raw result]
[visualize]
#1000088 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:49

[raw result]
[visualize]
#1000073 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:49

[raw result]
[visualize]
#1000047 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:48

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

[raw result]
[visualize]
#1000029 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:48

[raw result]
[visualize]
#1000042 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:48

[raw result]
[visualize]
#1000028 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:48

[raw result]
[visualize]
#1000031 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:48

[raw result]
[visualize]
#1000030 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:48

[raw result]
[visualize]
#1000043 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:48

[raw result]
[visualize]
#1000109 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:48

[raw result]
[visualize]
#1000014 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:48

[raw result]
[visualize]
#1000012 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:47

[raw result]
[visualize]
#1000025 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:47

[raw result]
[visualize]
#1000017 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:09

[raw result]
[visualize]
#1000038 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:07

[raw result]
[visualize]
#1000039 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:07

[raw result]
[visualize]
#1000020 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:05

[raw result]
[visualize]
#1000089 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:04

[raw result]
[visualize]
#1000100 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:04

[raw result]
[visualize]
#1000111 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:04

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

[raw result]
[visualize]
#1000101 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:04

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

[raw result]
[visualize]
#1000103 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:04

[raw result]
[visualize]
#1000092 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:04

[raw result]
[visualize]
#1000093 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:04

[raw result]
[visualize]
#1000010 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:04

[raw result]
[visualize]
#1000078 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:04

[raw result]
[visualize]
#1000063 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:04

[raw result]
[visualize]
#1000077 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:04

[raw result]
[visualize]
#1000074 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:04

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

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

[raw result]
[visualize]
#1000076 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:04

[raw result]
[visualize]
#1000106 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000062 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000045 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000055 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000086 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000104 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000061 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000018 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000046 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000054 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000105 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000052 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000040 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

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

[raw result]
[visualize]
#1000056 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000021 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000036 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:10:03

[raw result]
[visualize]
#1000117 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:09:20

[raw result]
[visualize]
#1000026 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:09:20

[raw result]
[visualize]
#1000044 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:09:20

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

[raw result]
[visualize]
#1000032 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:09:20

[raw result]
[visualize]
#1000033 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:09:20

[raw result]
[visualize]
#1000110 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:09:18

[raw result]
[visualize]
#1000114 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:37

[raw result]
[visualize]
#1000051 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:37

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

[raw result]
[visualize]
#1000125 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000108 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000123 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000124 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000096 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000107 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000080 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000112 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000097 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000085 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000122 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

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

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

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

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

[raw result]
[visualize]
#1000082 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000084 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000118 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000075 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000119 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000099 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000120 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000083 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000095 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000102 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000079 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

[raw result]
[visualize]
#1000081 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

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

[raw result]
[visualize]
#1000116 LuaError: #423:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 20:08:36

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

[raw result]
[visualize]
#1000212 Floodfill: 1188, 0, 1220, 16 -> 00acb93a|1160, 4, 1192, 24 -> 009a1939|1216, 12, 1228, 20 -> 001079b... 2016-07-31 19:24:29
Lua instructions: 390385k

[raw result]
[visualize]
#1000222 Floodfill: 104, 99, 116, 108 -> 000638b1|116, 105, 128, 120 -> 005d8846|100, 108, 104, 112 -> 0002e2... 2016-07-31 18:52:04
Lua instructions: 2623k (402 ms)

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

[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 Floodfill: 2, 3, 18, 22 -> 0053d610|556, 9, 609, 18 -> 00ab6b06|617, 9, 622, 18 -> 000331f5|637, 9, ... 2016-07-31 18:43:31
Lua instructions: 65275k (6985 ms)

[raw result]
[visualize]
#1003958 Floodfill: 0, 0, 68, 24 -> 00d3d540|158, 8, 178, 18 -> 00412759|216, 8, 236, 18 -> 00412759|274, 8, ... 2016-07-31 18:32:32
Lua instructions: 65714k

[raw result]
[visualize]
#1000544 Floodfill: 170, 0, 207, 12 -> 0032f128|285, 0, 296, 32 -> 000a17f6|316, 0, 320, 3 -> 0001c60e|329, 0... 2015-08-11 14:23:51
Lua instructions: 95872k (10146 ms)

[raw result]
[visualize]
#1000519 Floodfill: 3, 6, 17, 13 -> 0004e5c4|477, 9, 527, 21 -> 0081bad7|542, 9, 652, 18 -> 008e3805|658, 9, ... 2015-08-10 08:54:39
Lua instructions: 67229k (7010 ms)

[raw result]
[visualize]
#1000339 Floodfill: 12, 4, 24, 20 -> 003b3bc0|36, 4, 48, 20 -> 00040269|56, 4, 76, 20 -> 00639a02|180, 4, 192... 2015-08-03 21:18:47
Lua instructions: 9364k (995 ms)

[raw result]
[visualize]
#98 Floodfill: 0, 0, 176, 96 -> 0580a8da|44, 3, 48, 4 -> 000003fa|72, 0, 92, 16 -> 0074f5ef|96, 0, 100, ... 2015-07-25 03:49:37
Lua instructions: 2344k (270 ms)

[raw result]
[visualize]
#1000313 Floodfill: 80, 0, 136, 164 -> 016b95dd|128, 0, 212, 32 -> 03d4dc18|228, 0, 236, 3 -> 000715d7|236, 0... 2015-07-22 15:15:20
Lua instructions: 40390k (4458 ms)

[raw result]
[visualize]
#1000019 Floodfill: 13, 12, 32, 32 -> 00c51ef4|47, 17, 102, 26 -> 00264cee|149, 17, 201, 29 -> 00c97b25|223, ... 2015-07-18 06:03:02
Lua instructions: 3861k (456 ms)

[raw result]
[visualize]
#183 Floodfill: 8, 0, 10, 8 -> 00000010|20, 0, 28, 6 -> 00084db0|34, 0, 94, 30 -> 03c05808|104, 0, 108, 4... 2015-07-18 02:09:09
Lua instructions: 2856k (328 ms)

[raw result]
[visualize]
#1000334 Floodfill: 105, 104, 111, 112 -> 00037453 2015-07-16 16:42:27
Lua instructions: 2807k (315 ms)

[raw result]
[visualize]
#1000330 Floodfill: 8, 8, 28, 23 -> 0072304c|76, 12, 171, 24 -> 01f652a3|52, 29, 156, 36 -> 000576db|44, 32, ... 2015-07-15 01:23:26
Lua instructions: 3531k (373 ms)

[raw result]
[visualize]
#1000090 Floodfill: 159, 68, 189, 77 -> 003667c5 2015-07-10 01:53:59
Lua instructions: 1413k (162 ms)

[raw result]
[visualize]
#1000294 Floodfill: 159, 0, 160, 1 -> 0000213a|168, 0, 169, 1 -> 0000213a|3, 25, 48, 37 -> 0050c635|55, 26, 1... 2015-06-22 01:10:44
Lua instructions: 657k (79 ms)

[raw result]
[visualize]
#1000230 Floodfill: 132, 0, 148, 28 -> 003e0491|160, 0, 168, 20 -> 000b598b|181, 0, 184, 32 -> 001fd28d|188, ... 2015-06-09 21:25:27
Lua instructions: 20945k (2445 ms)

[raw result]
[visualize]
#509 Floodfill: 2015-06-08 08:15:46
Lua instructions: 613k (111 ms)

[raw result]
[visualize]
#1000268 Floodfill: 24, 32, 28, 52 -> 001e8b38|32, 32, 176, 52 -> 04856000|180, 32, 240, 52 -> 00770ae1|240, ... 2015-06-07 22:21:20
Lua instructions: 36920k (4075 ms)

[raw result]
[visualize]
#1000245 Floodfill: 3, 2, 17, 18 -> 0078fad9|6, 26, 24, 37 -> 0050d302|37, 26, 58, 37 -> 003b5b89|71, 26, 97,... 2015-06-07 16:55:25
Lua instructions: 65675k (7047 ms)

[raw result]
[visualize]
#1000223 Floodfill: 1, 1, 12, 12 -> 0021ba0b 2015-06-07 04:06:45
Lua instructions: 18k (53 ms)

[raw result]
[visualize]
#1000140 Floodfill: 3, 2, 17, 18 -> 0078fad9|1303, 6, 1310, 12 -> 0019cbfe|1352, 6, 1359, 12 -> 000a2b85|32, ... 2015-06-06 16:20:10
Lua instructions: 65342k (7078 ms)

[raw result]
[visualize]
#1000238 Floodfill: 1, 5, 18, 23 -> 0069dfa9|25, 35, 193, 47 -> 019dbca5|445, 35, 612, 50 -> 0278f619|1016, 3... 2015-05-20 20:18:54
Lua instructions: 67551k (7291 ms)

[raw result]
[visualize]
#1000244 Floodfill: 132, 0, 137, 2 -> 0001d4dd|84, 0, 172, 36 -> 07cef194|204, 0, 217, 4 -> 0007f85f|292, 1, ... 2015-04-14 17:09:53
Lua instructions: 23720k (2589 ms)

[raw result]
[visualize]

Snippet ID: #423
Snippet name: Grid + Floodfill with hashes (hacked for galculator)
Eternal ID of this version: #423/1
Text MD5: 24efd73a96bc0f38e638c3b63e994d37
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-09 23:57:44
Source code size: 1874 bytes / 76 lines
Pitched / IR pitched: No / Yes
Views / Downloads: 3016 / 177
Referenced in: #3000190 - Answer for stefanreich(>> t 20 questions)
#3000382 - Answer for ferdie (>> t = 1, f = 0)
#3000383 - Answer for funkoverflow (>> t=1, f=0 okay)