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

48
LINES

< > BotCompany Repo | #461 // Grid + Floodfill with hashes (size 2)

Lua code - Image recognition

1  
get("#348") -- rgb functions
2  
get("#388") -- rect functions
3  
get("#410") -- shrinkRectangle
4  
get("#380") -- hashImage
5  
get("#460") -- floodfill
6  
7  
w, h = img.width, img.height
8  
g = 2 -- grid size
9  
gw, gh = math.floor(w/g), math.floor(h/g) -- width & height of grid
10  
11  
grid = {}
12  
for gy = 0, h-g, g do
13  
  for gx = 0, w-g, g do
14  
    local min, max = 1, 0
15  
    for y = gy, gy+g-1 do
16  
      for x = gx, gx+g-1 do
17  
        local b = bright(rgb(img.getInt(x, y)))
18  
        min, max = math.min(min, b), math.max(max, b)
19  
        if min < 0.5 and max > 0.5 then
20  
          grid[(gy/g)*gw+(gx/g)+1] = true
21  
          goto next
22  
        end
23  
      end
24  
    end
25  
    ::next::
26  
  end
27  
end
28  
29  
result = {}
30  
for y = 0, gh-1 do
31  
  for x = 0, gw-1 do
32  
    r = nil
33  
    fill {{x, y, 1}}
34  
    if r then
35  
      --table.insert(result, (x*g).."/"..(y*g).."-"..c)
36  
      r = scaleRectangle(r, g)
37  
      r = shrinkRectangle(r, img)
38  
      
39  
      local cropped = {width=r.width, height=r.height,
40  
        getInt = function(x, y) return img.getInt(x+r.x, y+r.y) end}
41  
      local hash = hashImage(cropped)
42  
  
43  
      table.insert(result, recttostring(r).." -> "..hash)
44  
    end
45  
  end
46  
end
47  
48  
return "Floodfill: "..table.concat(result, "|")

Author comment

Began life as a copy of #442

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
384 #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
get("#460") -- floodfill

w, h = img.width, img.height
g = 2 -- 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

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)

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

return "Floodfill: "..table.concat(result, "|")
}}
2015-08-18 09:59:34  delete 
382 #1000604 (pitcher) 2015-08-18 00:07:22

add comment

Image recognition results

show nils
Image Result Result calculated
#1004153 Floodfill: 10, 8, 36, 17 -> 004a5197|36, 8, 51, 17 -> 00286cfe|10, 15, 16, 17 -> 00032e09 2016-08-08 16:40:05
Lua instructions: 158k

[raw result]
[visualize]
#1004135 java.lang.OutOfMemoryError: Java heap space 2016-08-08 00:16:07

[raw result]
[visualize]
#1000119 Floodfill: 166, 1, 168, 5 -> 000186d2|12, 2, 33, 11 -> 00496929|30, 2, 42, 11 -> 0034303b|201, 3, 20... 2016-08-07 22:40:04
Lua instructions: 8823k (1177 ms)

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

[raw result]
[visualize]
#1004088 Floodfill: 0, 0, 248, 95 -> 260b1ec5|292, 1, 294, 2 -> 00007a1d|294, 0, 404, 4 -> 00092ce1|260, 0, 5... 2016-08-06 13:23:27
Lua instructions: 7327k

[raw result]
[visualize]
#1004070 Floodfill: 0, 0, 402, 400 -> 07c3f4c4|180, 5, 186, 16 -> 001ff1a6|216, 5, 222, 16 -> 001c8185|232, 5... 2016-08-05 15:05:05
Lua instructions: 24871k

[raw result]
[visualize]
#1004061 Floodfill: 7, 5, 22, 15 -> 00094043|69, 5, 71, 15 -> 00044d30|77, 4, 100, 15 -> 0025a731|130, 4, 140... 2016-08-05 13:30:34
Lua instructions: 14871k

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

[raw result]
[visualize]
#1000121 Floodfill: 228, 0, 244, 5 -> 00367d89|250, 0, 264, 2 -> 000a206e|267, 0, 268, 2 -> 00003a86|166, 2, ... 2016-08-05 06:09:13
Lua instructions: 8903k (1155 ms)

[raw result]
[visualize]
#1000225 Floodfill: 75, 1, 76, 2 -> 00000001|78, 1, 79, 2 -> 00000001|72, 4, 74, 6 -> 00006036|80, 4, 82, 6 -... 2016-08-05 00:16:06
Lua instructions: 1136k (271 ms)

[raw result]
[visualize]
#1000063 Floodfill: 33, 21, 51, 24 -> 000c9c89|59, 21, 73, 26 -> 001f1238|38, 24, 40, 27 -> 0001d5b4|66, 24, ... 2016-08-04 07:02:26
Lua instructions: 668k (85 ms)

[raw result]
[visualize]
#1004009 Floodfill: 80, 12, 92, 33 -> 0055d851|130, 16, 162, 28 -> 0005abd4|165, 16, 172, 28 -> 001db120|175,... 2016-08-03 17:19:25
Lua instructions: 15642k

[raw result]
[visualize]
#1000199 Floodfill: 2016-08-02 23:15:56
Lua instructions: 257825k (27622 ms)

[raw result]
[visualize]
#1000113 Floodfill: 13, 17, 18, 22 -> 000ddb01|670, 17, 675, 22 -> 000367b5|21, 23, 22, 25 -> 00005492|36, 23... 2016-08-02 20:47:49
Lua instructions: 32816k (3852 ms)

[raw result]
[visualize]
#1000064 Floodfill: 31, 21, 54, 24 -> 0013d041|56, 22, 58, 24 -> 0000d2b1|37, 24, 38, 62 -> 00000027|42, 24, ... 2016-08-02 17:21:38
Lua instructions: 646k (124 ms)

[raw result]
[visualize]
#1000613 Floodfill: 28, 0, 32, 4 -> 00021608|68, 0, 70, 4 -> 00002ea4|48, 3, 49, 4 -> 00003851|55, 3, 56, 4 -... 2016-08-01 20:24:18
Lua instructions: 97268k (10330 ms)

[raw result]
[visualize]
#1000611 Floodfill: 154, 4, 170, 20 -> 00664b42|261, 4, 263, 5 -> 0000c6c3|12, 6, 18, 20 -> 0008e6b3|20, 6, 2... 2016-08-01 20:10:30
Lua instructions: 13300k (1485 ms)

[raw result]
[visualize]
#1000576 Floodfill: 160, 4, 164, 6 -> 00007d34|261, 4, 263, 5 -> 0000c6c3|88, 6, 92, 16 -> 0002c2fe|132, 6, 1... 2016-08-01 19:59:18
Lua instructions: 13238k (1430 ms)

[raw result]
[visualize]
#1000556 Floodfill: 264, 14, 265, 16 -> 00001bb8|272, 14, 309, 26 -> 004c4cd3|260, 16, 268, 23 -> 001ec0e7|31... 2016-08-01 19:45:55
Lua instructions: 28474k (3016 ms)

[raw result]
[visualize]
#1000555 Floodfill: 243, 1, 244, 2 -> 000028fe|282, 0, 324, 32 -> 00523fbd|252, 3, 256, 6 -> 0000741f|298, 2,... 2016-08-01 19:38:17
Lua instructions: 32900k (3547 ms)

[raw result]
[visualize]
#1000554 Floodfill: 17, 0, 26, 6 -> 0006813b|32, 0, 34, 6 -> 0002f377|45, 0, 46, 2 -> 00005361|46, 0, 52, 8 -... 2016-08-01 19:34:36
Lua instructions: 14051k (1511 ms)

[raw result]
[visualize]
#1000553 Floodfill: 154, 0, 155, 1 -> 000028db|158, 0, 159, 1 -> 00003642|162, 0, 168, 1 -> 00000e10|171, 0, ... 2016-08-01 19:28:43
Lua instructions: 15280k (1662 ms)

[raw result]
[visualize]
#1000547 Floodfill: 733, 105, 734, 106 -> 000031a2|740, 105, 741, 106 -> 00003296|718, 107, 720, 108 -> 00007... 2016-08-01 19:15:05
Lua instructions: 43382k (4565 ms)

[raw result]
[visualize]
#1000546 Floodfill: 12, 0, 13, 4 -> 0000578d|19, 0, 20, 2 -> 00000755|241, 0, 242, 2 -> 00007fa9|21, 2, 28, 6... 2016-08-01 19:12:24
Lua instructions: 5549k (614 ms)

[raw result]
[visualize]
#1000545 Floodfill: 106, 44, 107, 45 -> 00002219|110, 44, 112, 46 -> 000054b1|104, 46, 105, 47 -> 0000271b|11... 2016-08-01 19:09:04
Lua instructions: 16494k (1761 ms)

[raw result]
[visualize]
#1000543 Floodfill: 464, 4, 470, 12 -> 000886bf|466, 4, 482, 20 -> 0055bdc3|440, 6, 456, 20 -> 000f7a14|506, ... 2016-08-01 18:44:37
Lua instructions: 32369k (3757 ms)

[raw result]
[visualize]
#1000542 Floodfill: 498, 4, 504, 12 -> 00088296|502, 4, 516, 20 -> 004185fc|476, 6, 490, 20 -> 0003f614|540, ... 2016-08-01 18:42:02
Lua instructions: 32897k (3754 ms)

[raw result]
[visualize]
#1000519 Floodfill: 3, 7, 4, 9 -> 00004a67|6, 6, 17, 10 -> 001bd613|477, 9, 484, 18 -> 0009c321|486, 9, 488, ... 2016-08-01 18:39:57
Lua instructions: 111149k (11968 ms)

[raw result]
[visualize]
#1000444 Floodfill: 78, 0, 80, 2 -> 0000272b|116, 0, 119, 4 -> 0003ae14|893, 0, 904, 6 -> 000d6941|912, 0, 91... 2016-08-01 18:31:28
Lua instructions: 101781k (11052 ms)

[raw result]
[visualize]
#1000428 Floodfill: 10, 4, 26, 20 -> 00628232|261, 4, 263, 5 -> 0000c6c3|64, 6, 68, 16 -> 0002c2fe|136, 6, 14... 2016-08-01 18:27:42
Lua instructions: 13385k (1467 ms)

[raw result]
[visualize]
#1000422 Floodfill: 261, 4, 263, 5 -> 0000c6c3|16, 6, 20, 16 -> 0002c2fe|40, 6, 44, 10 -> 00012f99|108, 6, 12... 2016-08-01 18:21:37
Lua instructions: 12858k (1353 ms)

[raw result]
[visualize]
#1000421 Floodfill: 18, 4, 20, 5 -> 00001d3c|44, 4, 46, 5 -> 00001d3c|70, 4, 72, 5 -> 00001d3c|96, 4, 98, 5 -... 2016-08-01 18:20:11
Lua instructions: 76190k (8284 ms)

[raw result]
[visualize]
#1000418 Floodfill: 10, 4, 26, 20 -> 00664b42|261, 4, 263, 5 -> 0000c6c3|64, 6, 68, 16 -> 0002c2fe|88, 6, 92,... 2016-08-01 18:08:16
Lua instructions: 14166k (1573 ms)

[raw result]
[visualize]
#1000359 Floodfill: 564, 0, 566, 4 -> 00010e89|566, 5, 567, 6 -> 000031a2|568, 6, 570, 8 -> 000018b1|100, 12,... 2016-08-01 18:04:43
Lua instructions: 19327k (2199 ms)

[raw result]
[visualize]
#1000339 Floodfill: 58, 4, 74, 20 -> 00664b42|12, 6, 24, 18 -> 001bddfd|20, 6, 22, 8 -> 00001090|38, 6, 46, 1... 2016-08-01 17:55:23
Lua instructions: 11336k (1212 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]
#1000335 Floodfill: 250, 171, 254, 172 -> 00000ffb|276, 171, 280, 172 -> 000073b2|243, 173, 246, 174 -> 00003... 2016-08-01 17:45:19
Lua instructions: 19468k (2028 ms)

[raw result]
[visualize]
#1000334 Floodfill: 105, 104, 111, 112 -> 00037453 2016-08-01 17:43:37
Lua instructions: 3345k (355 ms)

[raw result]
[visualize]
#1000333 Floodfill: 17, 7, 20, 10 -> 0001890d|18, 8, 22, 14 -> 000c474c|79, 11, 82, 14 -> 0000add9|90, 11, 92... 2016-08-01 17:42:41
Lua instructions: 2787k (305 ms)

[raw result]
[visualize]
#1000332 Floodfill: 102, 48, 120, 56 -> 003ce8ea|136, 48, 148, 56 -> 0021dc39|334, 49, 364, 66 -> 006929d4|12... 2016-08-01 17:40:28
Lua instructions: 12739k (1375 ms)

[raw result]
[visualize]
#1000331 Floodfill: 162, 29, 196, 31 -> 0001a41b|150, 30, 158, 34 -> 00013bdf|200, 30, 208, 34 -> 00046350|14... 2016-08-01 17:37:53
Lua instructions: 8100k (872 ms)

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

[raw result]
[visualize]
#1000329 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 17:09:31

[raw result]
[visualize]
#1000328 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 17:09:12

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

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

[raw result]
[visualize]
#1000325 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 16:37:35

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

[raw result]
[visualize]
#1000316 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 14:59:55

[raw result]
[visualize]
#1000315 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 14:55:04

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

[raw result]
[visualize]
#1000313 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 14:33:03

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

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

[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 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 14:20:41

[raw result]
[visualize]
#1000289 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 14:19:41

[raw result]
[visualize]
#1000285 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 13:51:54

[raw result]
[visualize]
#1000284 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 13:51:35

[raw result]
[visualize]
#1000283 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 13:50:49

[raw result]
[visualize]
#1000282 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 13:47:37

[raw result]
[visualize]
#1000279 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 13:42:12

[raw result]
[visualize]
#1000276 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 13:37:48

[raw result]
[visualize]
#1000275 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 13:25:36

[raw result]
[visualize]
#1000267 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 13:12:16

[raw result]
[visualize]
#1000268 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 13:12:09

[raw result]
[visualize]
#1000269 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 13:11:59

[raw result]
[visualize]
#1000262 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 12:24:21

[raw result]
[visualize]
#1000261 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 12:14:24

[raw result]
[visualize]
#1000259 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 11:51:22

[raw result]
[visualize]
#1000257 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 11:41:44

[raw result]
[visualize]
#1000253 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 11:34:49

[raw result]
[visualize]
#1000250 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 11:27:54

[raw result]
[visualize]
#1000248 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 11:14:07

[raw result]
[visualize]
#1000247 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 11:05:05

[raw result]
[visualize]
#1000245 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 10:46:42

[raw result]
[visualize]
#1000246 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 10:37:23

[raw result]
[visualize]
#1000244 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 09:48:18

[raw result]
[visualize]
#1000243 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 09:38:30

[raw result]
[visualize]
#1000240 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 09:33:56

[raw result]
[visualize]
#1000239 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 09:25:34

[raw result]
[visualize]
#1000236 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 09:08:01

[raw result]
[visualize]
#1000235 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 08:59:42

[raw result]
[visualize]
#1000233 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 08:51:04

[raw result]
[visualize]
#1000230 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 08:43:26

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

[raw result]
[visualize]
#1000229 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 08:36:13

[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 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 08:34:12

[raw result]
[visualize]
#1000205 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 07:35:08

[raw result]
[visualize]
#1000206 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 07:35:07

[raw result]
[visualize]
#1000207 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 07:35:06

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

[raw result]
[visualize]
#1000209 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 07:14:03

[raw result]
[visualize]
#1000217 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 07:10:57

[raw result]
[visualize]
#1000221 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 07:09:57

[raw result]
[visualize]
#1000220 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 07:03:13

[raw result]
[visualize]
#1000210 LuaError: #461:7 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-08-01 06:56:50

[raw result]
[visualize]
#1000198 Floodfill: 298, 112, 302, 116 -> 00007d6f|302, 115, 303, 116 -> 00000628|297, 117, 298, 118 -> 00000... 2016-08-01 05:09:14
Lua instructions: 26116k (2971 ms)

[raw result]
[visualize]
#1000197 Floodfill: 0, 0, 1280, 820 -> 652df409|640, 1, 641, 2 -> 0000006a|638, 2, 640, 4 -> 0000689d|642, 3,... 2016-08-01 05:09:09
Lua instructions: 142408k (15327 ms)

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

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

[raw result]
[visualize]
#1000204 Floodfill: 8, 8, 592, 602 -> 6f143ee2 2016-08-01 04:49:48
Lua instructions: 48133k (5359 ms)

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

[raw result]
[visualize]
#1000213 Floodfill: 194, 33, 290, 42 -> 01aa7b1b|101, 36, 103, 38 -> 000036a5|94, 38, 102, 50 -> 001306e3|289... 2016-08-01 04:49:38
Lua instructions: 11023k (1368 ms)

[raw result]
[visualize]
#1000214 Floodfill: 298, 1, 300, 2 -> 00001a43|302, 0, 305, 2 -> 00011ba6|497, 0, 500, 2 -> 000035b6|502, 1, ... 2016-08-01 04:49:36
Lua instructions: 69442k (7191 ms)

[raw result]
[visualize]
#1000203 Floodfill: 104, 61, 315, 62 -> 003c9e28|95, 63, 98, 64 -> 0000206f|320, 62, 324, 64 -> 000108d0|90, ... 2016-08-01 04:44:56
Lua instructions: 12909k (1420 ms)

[raw result]
[visualize]
#1000202 Floodfill: 2016-08-01 04:44:54
Lua instructions: 26106k (2731 ms)

[raw result]
[visualize]
#1000201 Floodfill: 50, 47, 51, 48 -> 000032fd|252, 47, 253, 48 -> 000032fd|49, 48, 254, 253 -> 2b17eaa7 2016-08-01 04:44:49
Lua instructions: 9171k (1123 ms)

[raw result]
[visualize]
#1000208 Floodfill: 256, 65, 322, 68 -> 00032a37|63, 66, 172, 90 -> 02fe65a4|321, 130, 324, 304 -> 002be243|6... 2016-08-01 04:44:47
Lua instructions: 12727k (1463 ms)

[raw result]
[visualize]
#1000200 Floodfill: 2016-08-01 04:30:45
Lua instructions: 22626k (2574 ms)

[raw result]
[visualize]
#1000195 Floodfill: 170, 0, 171, 2 -> 00007452|250, 0, 252, 2 -> 000029d8|454, 0, 462, 4 -> 00071e02|478, 0, ... 2016-08-01 04:14:56
Lua instructions: 18721k (2167 ms)

[raw result]
[visualize]
#1000194 Floodfill: 986, 82, 987, 84 -> 000067a4|1046, 96, 1050, 100 -> 0006ab46|352, 100, 354, 104 -> 000171... 2016-08-01 03:49:57
Lua instructions: 75381k (8013 ms)

[raw result]
[visualize]
#1000034 Floodfill: 0, 0, 1920, 1 -> 0090f400|11, 5, 14, 8 -> 0001e994|1896, 4, 1897, 5 -> 000033af|276, 7, 2... 2016-08-01 03:41:55
Lua instructions: 168469k (18153 ms)

[raw result]
[visualize]
#1000189 Floodfill: 0, 0, 16, 7 -> 0014cb7c|10, 1, 11, 2 -> 00003db5|23, 0, 28, 8 -> 000a65a1|16, 3, 17, 4 ->... 2016-08-01 03:34:49
Lua instructions: 10007k (1139 ms)

[raw result]
[visualize]
#1000187 Floodfill: 7, 3, 10, 4 -> 0000f0b2|12, 3, 15, 6 -> 00025f11|18, 3, 20, 5 -> 00007272|0, 6, 8, 16 -> ... 2016-08-01 03:22:55
Lua instructions: 122429k (13309 ms)

[raw result]
[visualize]
#1000186 Floodfill: 24, 1, 34, 11 -> 0001a11d|56, 1, 70, 12 -> 002b59e5|105, 1, 108, 12 -> 0001fde1|0, 2, 22,... 2016-08-01 03:04:15
Lua instructions: 172k (127 ms)

[raw result]
[visualize]
#1000185 Floodfill: 0, 1, 38, 10 -> 0060167d|40, 0, 48, 10 -> 0039404a|33, 4, 34, 6 -> 00001d8e 2016-08-01 03:04:14
Lua instructions: 73k (109 ms)

[raw result]
[visualize]
#1000184 Floodfill: 0, 1, 6, 10 -> 00056a4f|8, 0, 37, 12 -> 003d82e9|36, 0, 48, 10 -> 00280d2c 2016-08-01 02:54:47
Lua instructions: 87k (103 ms)

[raw result]
[visualize]
#1000183 Floodfill: 2, 0, 6, 5 -> 00074123|16, 2, 26, 12 -> 000e8d20|28, 3, 36, 12 -> 000c33ed|0, 4, 6, 12 ->... 2016-08-01 02:54:46
Lua instructions: 73k (25 ms)

[raw result]
[visualize]
#1000182 Floodfill: 0, 0, 6, 9 -> 00056a4f|44, 0, 62, 9 -> 00689d34|8, 2, 42, 12 -> 0031723c 2016-08-01 02:54:43
Lua instructions: 102k (111 ms)

[raw result]
[visualize]
#1000181 Floodfill: 0, 1, 28, 10 -> 004c7455|44, 0, 50, 10 -> 00029f19|30, 3, 42, 10 -> 000c53bd|38, 8, 42, 1... 2016-08-01 02:54:26
Lua instructions: 74k (106 ms)

[raw result]
[visualize]
#1000180 Floodfill: 0, 19, 4, 21 -> 0002bd3f|38, 18, 46, 28 -> 001636fa|48, 19, 60, 28 -> 003f08c8|90, 19, 10... 2016-08-01 02:53:01
Lua instructions: 3470k (390 ms)

[raw result]
[visualize]
#1000179 Floodfill: 469, 328, 470, 330 -> 00004003|386, 330, 394, 358 -> 0056457f|416, 330, 428, 350 -> 006fe... 2016-08-01 02:37:42
Lua instructions: 57475k (6313 ms)

[raw result]
[visualize]
#1000178 Floodfill: 12, 3, 20, 6 -> 00076123|23, 3, 24, 4 -> 0000301d|24, 4, 25, 5 -> 00003086|9, 6, 13, 11 -... 2016-08-01 02:21:06
Lua instructions: 89874k (9956 ms)

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

[raw result]
[visualize]
#1000176 Floodfill: 7, 3, 10, 4 -> 0000f0b2|12, 3, 15, 6 -> 00025f11|18, 3, 20, 5 -> 00007272|0, 6, 8, 16 -> ... 2016-08-01 02:17:47
Lua instructions: 131717k (14365 ms)

[raw result]
[visualize]
#1000175 Floodfill: 570, 0, 571, 4 -> 00008200|67, 3, 68, 4 -> 000031c1|31, 4, 59, 6 -> 0019d964|68, 11, 73, ... 2016-08-01 02:02:44
Lua instructions: 11707k (1431 ms)

[raw result]
[visualize]
#183 java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... 2016-08-01 01:56:12

[raw result]
[visualize]
#1000172 Floodfill: 92, 45, 113, 58 -> 0060fba8|92, 50, 116, 79 -> 00ddcdd7|283, 96, 284, 97 -> 000011a4|288,... 2016-08-01 01:55:59
Lua instructions: 2848k (325 ms)

[raw result]
[visualize]
#1000173 Floodfill: 91, 44, 112, 52 -> 0002d074|113, 49, 114, 50 -> 000020d1|112, 50, 115, 78 -> 000ccb16|92,... 2016-08-01 01:55:35
Lua instructions: 2805k (442 ms)

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

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

[raw result]
[visualize]
#1000010 Floodfill: 0, 0, 1920, 376 -> 69d9a5ed|12, 5, 14, 6 -> 000078a1|14, 6, 15, 8 -> 00001fb3|34, 7, 37, ... 2016-08-01 01:53:43
Lua instructions: 222797k (26485 ms)

[raw result]
[visualize]
#1000052 Floodfill: 66, 14, 68, 15 -> 00003d2b|73, 14, 76, 16 -> 0000d9d6|82, 14, 84, 15 -> 00003d2b|89, 14, ... 2016-08-01 01:50:28
Lua instructions: 6988k (865 ms)

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

[raw result]
[visualize]
#1000029 Floodfill: 2, 3, 533, 321 -> 08f8181f|6, 8, 24, 24 -> 0008f660|14, 31, 30, 41 -> 00172858|9, 32, 12,... 2016-08-01 01:49:48
Lua instructions: 24244k (2649 ms)

[raw result]
[visualize]
#1000030 Floodfill: 2, 3, 533, 321 -> 08fd5e9f|6, 8, 24, 24 -> 0008f660|197, 10, 198, 12 -> 000027ce|206, 10,... 2016-08-01 01:49:35
Lua instructions: 24755k (2836 ms)

[raw result]
[visualize]
#1000024 Floodfill: 3, 2, 434, 244 -> 4f8e2227|15, 7, 18, 10 -> 0001e994|18, 10, 19, 12 -> 00005725|12, 12, 1... 2016-08-01 01:48:51
Lua instructions: 14824k (1815 ms)

[raw result]
[visualize]
#1000171 Floodfill: 1, 1, 6, 6 -> 00005f1e|16, 1, 23, 2 -> 0003a370|33, 1, 38, 4 -> 0002cb60|42, 1, 47, 2 -> ... 2016-08-01 01:48:29
Lua instructions: 2796k (308 ms)

[raw result]
[visualize]
#1000170 Floodfill: 21, 10, 22, 12 -> 00000df1|32, 11, 33, 14 -> 00002420|50, 10, 52, 12 -> 0000708d|76, 10, ... 2016-08-01 01:44:00
Lua instructions: 54547k (5887 ms)

[raw result]
[visualize]
#1000015 Floodfill: 26, 4, 28, 5 -> 00006483|62, 4, 80, 14 -> 003f1c63|118, 5, 130, 14 -> 0036ab45|155, 4, 15... 2016-08-01 01:35:42
Lua instructions: 342k (63 ms)

[raw result]
[visualize]
#1000012 Floodfill: 0, 0, 1366, 1 -> 009f61f9|4, 4, 14, 20 -> 003f2850|17, 4, 18, 5 -> 000036f4|4, 6, 5, 7 ->... 2016-08-01 01:35:31
Lua instructions: 100105k (11003 ms)

[raw result]
[visualize]
#1000025 Floodfill: 1876, 2, 1879, 4 -> 000029e4|1870, 4, 1874, 6 -> 0000317b|1880, 5, 1881, 6 -> 00002785|46... 2016-08-01 01:29:54
Lua instructions: 168606k (19515 ms)

[raw result]
[visualize]
#1000020 Floodfill: 34, 0, 44, 16 -> 00257020|112, 0, 120, 16 -> 00120fc0|198, 0, 204, 4 -> 00027a0c|386, 0, ... 2016-08-01 01:27:38
Lua instructions: 9243k (1176 ms)

[raw result]
[visualize]
#1000169 Floodfill: 1, 7, 12, 22 -> 00156240|18, 8, 19, 20 -> 0000e9ec|288, 9, 298, 14 -> 000cd18c|317, 9, 32... 2016-08-01 01:25:28
Lua instructions: 5209k (707 ms)

[raw result]
[visualize]
#1000168 Floodfill: 95, 0, 98, 2 -> 0001dc4a|98, 2, 100, 5 -> 00019999 2016-08-01 01:15:59
Lua instructions: 290k (45 ms)

[raw result]
[visualize]
#1000167 Floodfill: 0, 26, 306, 27 -> 00000133|23, 31, 30, 41 -> 000de9ac|31, 31, 38, 41 -> 00155e36|46, 31, ... 2016-08-01 01:08:22
Lua instructions: 2024k (401 ms)

[raw result]
[visualize]
#1000166 Floodfill: 0, 26, 306, 27 -> 00000133|23, 31, 30, 41 -> 000de9ac|31, 31, 38, 41 -> 00155e36|40, 31, ... 2016-08-01 01:06:46
Lua instructions: 2026k (371 ms)

[raw result]
[visualize]
#1000164 Floodfill: 0, 6, 14, 18 -> 00094efc|16, 6, 18, 8 -> 00019859|20, 6, 28, 14 -> 000c10c7|32, 6, 44, 14... 2016-08-01 01:03:59
Lua instructions: 130k (138 ms)

[raw result]
[visualize]
#1003828 Floodfill: 258, 0, 330, 60 -> 003ab4d4|324, 0, 342, 6 -> 0011e768|359, 0, 360, 7 -> 0000640e|432, 0,... 2016-08-01 00:55:47
Lua instructions: 13355k

[raw result]
[visualize]
#1000163 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 23:27:02

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

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

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

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

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

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

[raw result]
[visualize]
#1000014 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 23:21:01

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

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

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

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

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

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

[raw result]
[visualize]
#1000031 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 23:19:55

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

[raw result]
[visualize]
#1000161 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 23:17:49

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

[raw result]
[visualize]
#1000039 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 23:13:33

[raw result]
[visualize]
#1000038 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 23:13:33

[raw result]
[visualize]
#1000040 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 23:13:32

[raw result]
[visualize]
#1000044 java.lang.OutOfMemoryError: Java heap space 2016-07-31 23:13:32

[raw result]
[visualize]
#1000042 java.lang.OutOfMemoryError: Java heap space 2016-07-31 23:13:32

[raw result]
[visualize]
#1000041 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 23:13:32

[raw result]
[visualize]
#1000047 java.lang.OutOfMemoryError: Java heap space 2016-07-31 23:13:31

[raw result]
[visualize]
#1000046 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 23:13:31

[raw result]
[visualize]
#1000045 java.lang.OutOfMemoryError: Java heap space 2016-07-31 23:13:31

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

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

[raw result]
[visualize]
#1000033 java.lang.OutOfMemoryError: Java heap space 2016-07-31 23:12:38

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

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

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

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

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

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

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

[raw result]
[visualize]
#1000090 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:20

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

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

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

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

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

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

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

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

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

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

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

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

[raw result]
[visualize]
#1000072 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:20

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

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

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

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

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

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

[raw result]
[visualize]
#1000120 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000118 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000117 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000116 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000114 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000112 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000111 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000110 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000109 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000108 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000107 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000106 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000105 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000103 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000102 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000101 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000100 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000096 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000095 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000093 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000092 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000091 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:19

[raw result]
[visualize]
#1000131 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:18

[raw result]
[visualize]
#1000130 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:18

[raw result]
[visualize]
#1000129 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:18

[raw result]
[visualize]
#1000128 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:18

[raw result]
[visualize]
#1000126 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:18

[raw result]
[visualize]
#1000125 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:18

[raw result]
[visualize]
#1000124 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:18

[raw result]
[visualize]
#1000123 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:18

[raw result]
[visualize]
#1000122 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:18

[raw result]
[visualize]
#1000140 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:17

[raw result]
[visualize]
#1000138 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:17

[raw result]
[visualize]
#1000137 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:17

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

[raw result]
[visualize]
#1000132 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:17

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

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

[raw result]
[visualize]
#1000146 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:15

[raw result]
[visualize]
#1000145 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:15

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

[raw result]
[visualize]
#1000099 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:14

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

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

[raw result]
[visualize]
#1000077 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:13

[raw result]
[visualize]
#1000104 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:13

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

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

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

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

[raw result]
[visualize]
#1000127 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:03

[raw result]
[visualize]
#1000151 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:02

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

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

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

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

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

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

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

[raw result]
[visualize]
#1000032 LuaError: #461:4 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... 2016-07-31 22:40:01

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

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

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

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

[raw result]
[visualize]
#1000212 Floodfill: 1194, 1, 1196, 2 -> 00006ec7|1198, 0, 1201, 2 -> 0001056e|1190, 3, 1192, 4 -> 00006ec7|12... 2016-07-31 19:29:47
Lua instructions: 460245k

[raw result]
[visualize]
#1000222 Floodfill: 110, 99, 112, 100 -> 000002e2|108, 100, 110, 102 -> 00007dc1|112, 100, 114, 102 -> 0000c1... 2016-07-31 18:52:00
Lua instructions: 2986k (498 ms)

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

[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, 9, 4 -> 000011ca|13, 3, 18, 8 -> 000330d4|556, 9, 558, 10 -> 00001e53|562, 9, 564, ... 2016-07-31 18:42:10
Lua instructions: 77738k (8330 ms)

[raw result]
[visualize]
#1003958 Floodfill: 16, 0, 68, 4 -> 0006d13d|74, 0, 126, 4 -> 001177f9|134, 0, 184, 2 -> 00035648|192, 0, 242... 2016-07-31 18:30:53
Lua instructions: 79004k

[raw result]
[visualize]
#1000614 Floodfill: 0, 38, 4, 40 -> 000016a7|4, 40, 6, 42 -> 0000298a|2, 44, 4, 46 -> 000045b7|550, 44, 554, ... 2015-08-17 21:01:56
Lua instructions: 93228k (9713 ms)

[raw result]
[visualize]
#1000600 Floodfill: 348, 51, 349, 52 -> 00002b82|355, 51, 358, 54 -> 00006427|364, 51, 374, 54 -> 00019e3b|39... 2015-08-15 19:48:53
Lua instructions: 17481k (2016 ms)

[raw result]
[visualize]
#1000558 Floodfill: 40, 12, 78, 17 -> 002aa45f|79, 16, 80, 17 -> 000022d6|38, 18, 40, 52 -> 000b4392|80, 18, ... 2015-08-14 13:56:11
Lua instructions: 22820k (2487 ms)

[raw result]
[visualize]
#1000549 Floodfill: 37, 11, 40, 14 -> 0000add9|48, 11, 50, 12 -> 00001e53|76, 11, 83, 16 -> 0003f48e|89, 11, ... 2015-08-12 05:14:37
Lua instructions: 4111k (480 ms)

[raw result]
[visualize]
#1000544 Floodfill: 170, 0, 182, 4 -> 000a8023|285, 0, 286, 23 -> 0002e69c|318, 0, 320, 2 -> 000005ce|332, 1,... 2015-08-11 14:22:11
Lua instructions: 96680k (10444 ms)

[raw result]
[visualize]
#1000158 Floodfill: 1, 7, 12, 22 -> 00156240|18, 8, 19, 20 -> 0000e9ec|12, 11, 16, 18 -> 000909bb|10, 16, 12,... 2015-08-09 10:23:50
Lua instructions: 289k (52 ms)

[raw result]
[visualize]
#84 Floodfill: 82, 2, 83, 102 -> 0004333b|97, 2, 98, 83 -> 00057053|16, 22, 17, 24 -> 00006104|14, 24, 1... 2015-08-09 01:17:41
Lua instructions: 2980k (423 ms)

[raw result]
[visualize]
#1000425 Floodfill: 10, 4, 26, 20 -> 00664b42|261, 4, 263, 5 -> 0000c6c3|64, 6, 68, 16 -> 0002c2fe|88, 6, 92,... 2015-08-05 18:05:06
Lua instructions: 13133k (1429 ms)

[raw result]
[visualize]
#1000338 Floodfill: 58, 4, 74, 20 -> 00664b42|12, 6, 24, 18 -> 001bddfd|20, 6, 22, 8 -> 00001090|38, 6, 46, 1... 2015-08-03 21:18:36
Lua instructions: 11373k (1246 ms)

[raw result]
[visualize]
#1000035 Floodfill: 0, 0, 1920, 1 -> 0090f400|11, 5, 14, 8 -> 0001e994|1896, 4, 1897, 5 -> 000033af|276, 7, 2... 2015-07-23 23:47:21
Lua instructions: 169620k (18030 ms)

[raw result]
[visualize]
#1000087 Floodfill: 351, 55, 358, 58 -> 00076312|354, 58, 355, 59 -> 000017cb|133, 65, 142, 70 -> 001d0a41|20... 2015-07-23 21:08:02
Lua instructions: 2334k (268 ms)

[raw result]
[visualize]
#1000022 Floodfill: 396, 0, 844, 204 -> 51f6ffb8|2, 2, 386, 271 -> 0ede57fe|14, 7, 16, 8 -> 000078a1|400, 6, ... 2015-07-23 18:36:27
Lua instructions: 30913k (3453 ms)

[raw result]
[visualize]
#1000312 Floodfill: 103, 0, 109, 1 -> 0001c9e4|399, 0, 405, 5 -> 00050a3a|408, 0, 409, 1 -> 00003f5c|413, 0, ... 2015-07-17 00:17:52
Lua instructions: 94887k (10015 ms)

[raw result]
[visualize]
#1000321 Floodfill: 9, 4, 12, 6 -> 0000c5a3|510, 4, 513, 6 -> 00001ce3|7, 6, 8, 8 -> 000006e0|514, 6, 515, 8 ... 2015-07-07 06:16:05
Lua instructions: 12951k (1526 ms)

[raw result]
[visualize]
#141 Floodfill: 2015-07-05 08:48:32
Lua instructions: 4755k (499 ms)

[raw result]
[visualize]
#1000310 javax.imageio.IIOException: Can't get input stream from URL! 2015-07-02 09:13:33

[raw result]
[visualize]
#1000224 Floodfill: 2, 1, 6, 2 -> 0000209f|8, 1, 14, 8 -> 000fcb28|1, 2, 2, 8 -> 00006ee0|2, 8, 8, 13 -> 000d... 2015-06-08 19:27:44
Lua instructions: 26k (16 ms)

[raw result]
[visualize]
#1000232 Floodfill: 134, 0, 142, 4 -> 00003a52|158, 0, 160, 3 -> 00026263|166, 0, 167, 2 -> 00000003|195, 0, ... 2015-06-04 19:31:51
Lua instructions: 23237k (2423 ms)

[raw result]
[visualize]
#1000226 Floodfill: 135, 28, 136, 134 -> 00009627|170, 28, 171, 134 -> 00031f5d 2015-06-04 09:39:41
Lua instructions: 2899k (642 ms)

[raw result]
[visualize]
#419 Floodfill: 0, 1, 7, 2 -> 0001418b|26, 0, 47, 10 -> 00213131|51, 1, 54, 4 -> 00039a73|52, 1, 64, 10 -... 2015-06-04 07:45:42
Lua instructions: 108k (31 ms)

[raw result]
[visualize]
#1000139 Floodfill: 222, 1, 226, 2 -> 00002800|232, 0, 233, 1 -> 000031a0|256, 0, 258, 2 -> 000173e3|289, 0, ... 2015-06-03 22:43:01
Lua instructions: 31642k (3447 ms)

[raw result]
[visualize]
#1000215 Floodfill: 104, 18, 116, 20 -> 00014677|90, 20, 96, 21 -> 0001a140|124, 20, 130, 21 -> 00005b0d|82, ... 2015-05-22 17:22:27
Lua instructions: 3601k (421 ms)

[raw result]
[visualize]
#1000241 java.lang.IllegalArgumentException: image == null! 2015-04-27 08:57:17

[raw result]
[visualize]
#1000211 Floodfill: 108, 0, 112, 2 -> 0003de86|92, 2, 101, 3 -> 00000001|112, 2, 113, 4 -> 00000c87|119, 2, 1... 2015-04-15 03:21:36
Lua instructions: 3940k (524 ms)

[raw result]
[visualize]
#1000223 Floodfill: 8, 1, 14, 13 -> 00187092|1, 5, 8, 13 -> 0004d68c 2015-04-08 22:37:02
Lua instructions: 30k (78 ms)

[raw result]
[visualize]
#1000238 Floodfill: 12, 5, 14, 6 -> 000049b5|3, 7, 7, 10 -> 0001a37e|12, 6, 17, 16 -> 0003824f|6, 12, 7, 16 -... 2015-03-29 14:31:45
Lua instructions: 110403k (12073 ms)

[raw result]
[visualize]

Snippet ID: #461
Snippet name: Grid + Floodfill with hashes (size 2)
Eternal ID of this version: #461/1
Text MD5: e7df65ed8d39f9e18ddae6576f548620
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-13 18:26:42
Source code size: 1215 bytes / 48 lines
Pitched / IR pitched: No / Yes
Views / Downloads: 2446 / 165
Referenced in: [show references]