Has anyone tried making a script at this request?calcyman wrote: ↑April 2nd, 2023, 8:37 amConsider the following list of eight OTTs, arranged in increasing order of estimated cost. They're all slmake-constructible in all orientations:dvgrn wrote: ↑March 31st, 2023, 5:48 pmHowever, it now seems unlikely that any synchronized perpendicular gliders will be needed at all, let alone clock-inserter recipes. The script will probably be able to build a spacefiller seed using a much smaller toolkit of turners and splitters. So now we're just working out exactly what needs to be in the script's toolkit.
I think that it's reasonable to do something like the following pseudocode:Code: Select all
# [[ ZOOM 2 THEME Book WIDTH 800 HEIGHT 480 ]]
x = 366, y = 35, rule = B3/S23
352bo$353b2o$351b2o$353bo4$359bo$359b3o$362bo$361b2o$204bo46bo99bo$
203bobo44bobo97bobo11b2o$107b2o95bobo44b2o96bobo12b2o$51b2o53bobo49b2o
45b2o48b2o92b2o$52bo52bobo50b2o50b2o42bobo$52bobo51bo102bo2bo41b2o103b
2o$6bo46b2o154bo2bo93bo40b2o10bobo$5bobo155b2o45b2o93bobo39bobo10bo$6b
2o155b2o141b2o40bobo$349bo3$313b2o$3o47b3o47b3o47b3o47b3o47b3o47b3o9bo
bo35b3o$2bo49bo49bo49bo49bo49bo49bo8bobo38bo$bo49bo49bo49bo49bo49bo49b
o10bo38bo5$308b2o$307bo2bo$308bo2bo$309b2o!
This is using the same 'backward' approach as slmake, constructing the gliders in the salvo in reverse order. It's guaranteed to be successful, because the last OTT is just a single-glider version of the clock inserter, and we know that there's always a glider at the front of the salvo that can be inserted in this manner. By greedily choosing the first OTT in the list that works at each stage, it should be very rare (maybe so rare as to never be needed in the spacefiller synthesis!) that it falls back on the last OTT, but even that isn't terribly expensive*.Code: Select all
for each salvo: while salvo is nonempty: for each of the eight OTTs: for each glider in the salvo: if this glider can be built by that OTT (in either orientation) without interfering with the rest of the salvo: subtract it from the salvo and jump to the 'while' statement.
* the adjustable splitter is 3sL, so if we use the clock inserter then the cost for that glider is 9sL, just over twice the 4sL cost for a glider that's built using the cheapest mechanism (or 3x the absolute minimum if we can use a 2sL non-adjustable splitter).
Golly scripts
-
- Posts: 1479
- Joined: January 28th, 2022, 7:18 pm
- Location: Planet Z
Re: Golly scripts
Re: Golly scripts
Why did you quote an entire post of mine from a different thread about something completely irrelevant to your script request?AlbertArmStain wrote: ↑April 7th, 2023, 2:23 pmI’ve requested a kind of script for golly similar to octohash, but completely independent. It was mentioned here, but I really don’t know where to start. As mentioned before, it will be able to take an unstable object/component and find a way to make a 1g seed for it without using splitters.
Has anyone tried making a script at this request?
Re: Golly scripts
No.
The link you gave above outlined exactly how to make the script -- most of the code already exists, though admittedly it's my code so it's fairly terrible -- but it also lists a series of objections to the idea of bothering to make such a script.
Here would probably be a good place to explain how you expect the script to accomplish the "not limited to 3 objects" part of the description, without taking months or years for each individual search. As far as I can tell, that's what your idea amounts to: basically "octohash without a database".
- SuperSupermario24
- Posts: 121
- Joined: July 22nd, 2014, 12:59 pm
- Location: Within the infinite expanses of the Life universe
Re: Golly scripts
Code: Select all
--[[
random-fill.lua
by SSM24, last updated 2020-11-16
This script fills the selection randomly, with density and states
determined by the user.
This script is partially based off of the random-fill.py script by
Andrew Trevorrow from the Golly Scripts Database, but contains the
following additional features:
- non-contiguous state ranges
- ability to save the default input for each rule individually
rather than one for every single rule
- non-integer density percentage values
- state multipliers, allowing certain states to be more likely than
others
Additionally, it is significantly faster than the Python version,
although Golly's native random fill is still faster.
Usage information:
- Inputs are of the form "density, <states and ranges>".
- Values are delimited by commas. Ranges are of the form min-max.
Multipliers are given with a colon (:) or lowercase x.
- If no states are provided, every live state in the rule will be
used.
- Spaces are optional. (They are immediately stripped from the input
if they are present.)
Example inputs:
50 - 50% density using every live state in the rule
20, 1 - 20% density using only state 1
100, 1-20 - 100% density using states 1 through 20
0.1, 1, 4-7, 10 - 0.1% density using states 1, 4 through 7, and 10
50, 1:20, 2 - 50% density with a 20x multiplier on state 1
100, 1-4x10, 5 - 100% density with a 10x multiplier on 1 through 4
]]
--------------------------------------------------------------------------------
local g = golly()
local gp = require "gplus"
-- if true, save default inputs
local saveinputs = true
-- set to true if you want to benchmark the random fill process
-- might only work properly on Windows?
local benchmark = false
--------------------------------------------------------------------------------
-- plain replace function because lua doesn't have one for some reason
function string.replace(s, orig, new)
-- escape magic characters
orig = orig:gsub("[%(%)%.%%%+%-%*%?%[%]%^%$]", "%%%0")
-- perform the subsitution
return s:gsub(orig, new)
end
--------------------------------------------------------------------------------
-- get the selection rectangle
local r = gp.rect(g.getselrect())
if r.empty then
g.exit("There is no selection.")
end
local maxlive = g.numstates() - 1
local rule = g.getrule()
local prompt = [[
Enter density, followed by the states that should be included.
Separate ranges or individual values with commas.
Use format min-max for ranges.
Leave states blank to use every state.]]
-- default is just "50" for 2-state rules
local default = "50"
-- if rule has more than 2 states, add a range
if g.numstates() > 2 then
default = default..",".."1-"..maxlive
end
local inipath = g.getdir("data").."random-fill-lua.ini"
local rulefound = false
-- get previous used values for rule if they exist
if saveinputs then
file = io.open(inipath, "r")
if file then
local line = ""
-- check every line until rule is found or end of file is reached
while line ~= nil do
-- if rule is found, grab input and break from loop
if line:find(rule) then
local _,result = gp.split(line, "=")
default = result
rulefound = true
break
end
line = file:read()
end
file:close()
end
end
--------------------------------------------------------------------------------
-- get user input and put it in a table
local input = g.getstring(prompt, default, "Randomly fill selection")
-- if blank, silently exit
if input == "" then g.exit() end
-- save input to ini file
if saveinputs then
-- if rule was found earlier, overwrite its entry
if rulefound then
-- function so that pcall() can be used to handle write failure
local function update()
-- copy file to string
file = io.open(inipath, "r")
local contents = file:read("a")
file:close()
-- replace old line with new line
contents = contents:replace(rule.."="..default, rule.."="..input)
-- overwrite file with new contents
file = io.open(inipath, "w+")
file:write(contents)
file:close()
end
-- show message if file could not be written to
if not pcall(update) then
g.warn("Could not save input to ini file.")
end
-- if rule was not found, add a new entry for it
-- this will create the file if it doesn't exist
else
local function update()
file = io.open(inipath, "a")
file:write(rule.."="..input.."\n")
file:close()
end
if not pcall(update) then
g.warn("Could not save input to ini file.")
end
end
end
-- strip all spaces from the result
input = input:gsub(" ", "")
-- take the input, split it, and put it in a table
local results = table.pack(gp.split(input, ","))
--------------------------------------------------------------------------------
-- get density and then remove it from table
local density = tonumber(results[1])
table.remove(results, 1)
-- check if density is valid
if density == nil then
g.exit("Density must be a number.")
elseif density < 0 or density > 100 then
g.exit("Density must be in the range 0-100.")
end
-- put density in range 0.0 - 1.0
-- math.random() is faster than math.random(100)
density = density / 100
--------------------------------------------------------------------------------
-- use a range containing all states if states were blank
if #results == 0 then
table.insert(results, "1-"..maxlive)
end
-- collect all states into a table
local states = {}
-- for every entry in the table
for i = 1, #results do
-- get result
local result = results[i]
-- replace any lowercase Xs with a colon for parsing
result = result:replace("x", ":")
-- get the state/range and the multiplier
local str, mult = gp.split(result, ":")
-- if weight not provided, default to 1
mult = mult or 1
-- add to states table the number of times given by multiplier
for _ = 1, mult do
-- if it's a range, add every state within it
if str:find("%d%-%d") ~= nil then
-- get min and max values
local minval, maxval = gp.split(str, "-")
minval = math.tointeger(minval)
maxval = math.tointeger(maxval)
-- make sure both are valid integers
if minval == nil or maxval == nil then
g.exit("\""..str.."\" is not a valid state or range.")
end
-- make sure both are within range
if minval < 0 or minval > maxlive
or maxval < 0 or maxval > maxlive then
g.exit("Values must be in range 0-"..maxlive..".")
end
-- reverse if min > max for some reason
local inc = 1
if minval > maxval then inc = -1 end
-- add states between min and max to table
for j = minval, maxval, inc do
table.insert(states, j)
end
-- if it's an individual value, add that value
elseif math.tointeger(str) ~= nil then
local num = math.tointeger(str)
-- make sure value is within range
if num < 0 or num > maxlive then
g.exit("Values must be in range 0-"..maxlive..".")
end
-- add to states table
table.insert(states, num)
-- if any value is invalid, exit
else
g.exit("\""..str.."\" is not a valid state or range.")
end
end
end
--------------------------------------------------------------------------------
--[[
-- debugging, lists all states in the states table
local str = ""
for i = 1, #states do
str = str..tostring(states[i]).." "
end
g.show(str)
]]
local numstates = #states
local currstate = 0
local oldsecs = os.time()
-- function to update the view if enough time has passed
function checktime()
local newsecs = os.time()
if newsecs - oldsecs >= 1 then
oldsecs = newsecs
g.update()
end
end
local starttime = os.clock()
-- the following is the generation of the random fill
--
-- it's done like this to minimize the amount of math.random() calls
-- in case of special conditions
-- if only one state, don't generate currstate every time
if numstates == 1 then
currstate = states[1]
-- if density is 100%, just fill the selection
if density == 1.0 then
for y = r.top, r.bottom do
for x = r.left, r.right do
g.setcell(x, y, currstate)
end
checktime()
end
-- otherwise, randomly fill it
else
for y = r.top, r.bottom do
for x = r.left, r.right do
if math.random() < density then
g.setcell(x, y, currstate)
else
g.setcell(x, y, 0)
end
end
checktime()
end
end
-- if more than one state, generate currstate every time
else
-- if density is 100%, completely fill it
if density == 1.0 then
for y = r.top, r.bottom do
for x = r.left, r.right do
currstate = states[math.random(numstates)]
g.setcell(x, y, currstate)
end
checktime()
end
-- otherwise, randomly fill it
else
for y = r.top, r.bottom do
for x = r.left, r.right do
if math.random() < density then
currstate = states[math.random(numstates)]
g.setcell(x, y, currstate)
else
g.setcell(x, y, 0)
end
end
checktime()
end
end
end
-- end of random fill generation
local endtime = os.clock()
if benchmark then
local timetaken = string.format("%.3f", endtime-starttime)
g.show("Took "..timetaken.." seconds.")
end
I don't plan on maintaining this or adding any additional features at this point, though of course anyone's free to add stuff on their own :p
Code: Select all
bobo2b3o2b2o2bo3bobo$obobobo3bo2bobo3bobo$obobob2o2bo2bobo3bobo$o3bobo3bo2bobobobo$o3bob3o2b2o3bobo2bo!
-
- Posts: 1479
- Joined: January 28th, 2022, 7:18 pm
- Location: Planet Z
Re: Golly scripts
I forgot that it pings you, they were intended to be separated from each other, but it look like I’m still talking about the top on. I’m supposed to be talking about making a script for both ideas
Re: Golly scripts
Code: Select all
import golly as g
if len(g.getselrect()) == 0: g.exit("No selection")
sr = g.getselrect()
generations = int(g.getstring("How many generations back?"))
cell_arr = []
for y in range(sr[1], sr[1]+sr[3]):
row = []
for x in range(sr[0], sr[0]+sr[2]):
row.append(g.getcell(x, y))
cell_arr.append(row)
search_file = ""
def writecells(l):
global search_file
for _ in range(sr[2]+2):
search_file += "0 "
search_file += "\n"
for i in cell_arr:
search_file += "0 "
for j in i:
search_file += l[j] + " "
search_file += "0\n"
for _ in range(sr[2]+2):
search_file += "0 "
search_file += "\n\n"
writecells("0**00")
for _ in range(generations-1):
writecells("0****")
writecells("01010")
g.setclipstr(search_file)
EvinZL wrote:September 21st, 2023, 6:59 pmCreate the search in LifeHistory, with 1 and 3=cells that are on in the final state, others=cells that must be off in the final state, 1 and 2=cells that can be on in the starting state and the intermediate states, and 3, 4=cells that can be on in the intermediate states but not the starting state. All other cells must be off in all states. Select the search, then run it, and it will paste the LLS input to clipboard.
EvinZL used this script to generate the diehard-related LLS files.EvinZL wrote:September 22nd, 2023, 12:16 pmState 0: must be off in all generations
State 1: must be on in final generation, can be on in starting and intermediate generations
State 2: must be off in final generation, can be on in starting and intermediate generations
State 3: must be on in final generation, can be on in intermediate but NOT starting generation
State 4: must be off in final generation, can be on in intermediate but NOT starting generation
- EvinZL
- Posts: 886
- Joined: November 8th, 2018, 4:15 pm
- Location: A tungsten pool travelling towards the sun
- Contact:
Re: Golly scripts
Code: Select all
import golly as g
import urllib.request
rulename = g.getstring("Rule name:", "StateInvestigator", "Get rule")
try:
req = urllib.request.urlopen(f"https://conwaylife.com/w/index.php?title=Rule:{rulename}&action=raw")
except:
g.exit("Rule not found")
rulefile = req.read()
path = g.getdir("rules") + rulename + ".rule"
with open(path, "wb") as f:
f.write(rulefile)
g.setrule(rulename)
g.exit(f"Saved rule {rulename}")
Re: Golly scripts
No urllib module in luaEvinZL wrote: ↑October 13th, 2023, 7:45 pmThis is a script to download rule files from LifeWiki to Golly's rules folderCode: Select all
import golly as g import urllib.request ...
- NimbleRogue
- Posts: 606
- Joined: January 11th, 2021, 11:48 pm
Re: Golly scripts
carsoncheng asked me to put my slight modification for ship searching here
All I did was add this if statement if g.getcells(g.getrect())!=testcells: to check if the thing is a ship, and it can be easily commented out when needed, and a simple symmetry Ship for only symmetries that support ships
Code: Select all
import golly as g
import math
import random
from timeit import default_timer as timer
from glife.text import make_text
from glife import getminbox, rect
autoRAB=True #automatically detect rule, algorithm and border
group_by_period=True
auto_exclude=50 #maximal number of oscillators of specific period (if group_by_period)
show_periods=True #print list of periods (if group_by_period)
auto_stop=True #stop if no more oscillators can be added (if group_by_period)
max_period=200
result_spacing=250
stab_step=8
x=15
main_fill=75
count_update=1000
if autoRAB:
rule=g.getrule()
algo=g.getalgo()
if ":" in rule:
rule,bound=rule.split(":")
bound=":"+bound
else: bound=""
else:
rule=g.getstring("Rule:","B3/S23")
algo=g.getstring("Algorithm:","QuickLife")
bound=g.getstring("Bound:","T32,32")
if not (bound=="" or bound.startswith(":")): bound=":"+bound
s=g.getstring("Symmetry","All")
symm=0
if s!="All":
symm=s
#symm can be either C1, C2_1, C2_2, C2_4, D2_x, D2_+1, D2_+2, C4_1, C4_4, D4_x1, D4_x4, D4_+1, D4_+2, D4_+4, D8_1, D8_4, All, Rot
max_period+=1
oc=[0]*max_period
if rule=="GlideLife":
exclude_periods=[1,2,4,6,12,16]
if rule=="olife":
exclude_periods=[1,2,3,4,5,6,9,10,12,15,18,20,26,30,35]
if rule=="B3/S23":
exclude_periods=[1,2,3,6,8,4,5,10,15,30,14]
if rule in ["tlife","B3/S2-i34q"]:
exclude_periods=[1,2,4,5,160]
if rule=="salad":
exclude_periods=[1,2,4]
if rule=="B2inkce_S12":
exclude_periods=[1,2,4]
if rule=="B3678/S235678":
exclude_periods=[1,2,3,4,6,12,8]
if rule=="MoveIt":
exclude_periods=[1,2,3,4,6,8,12,16,24,32,48]
if rule=="B35678/S357":
exclude_periods=[1,2,6,4,3,8,12,35,5,14,24,13,10,15]
if rule=="B2-aS12":
exclude_periods=[1,14,6,3,2,4,7,26,42,9,28,12,78,16,48,236,24,84,182,13,156,5,130,21,10,208,234,15,11,70,8,19]
if rule=="B2i35r_S023-a4i":
exclude_periods=[1,2,4]
if rule=="B2in3S02-in3-n":
exclude_periods=[1,4,5,8,7,6,20,12,28,2,9,16,36,10,42,72,14,56,3,40,63,30,140,45,35]
if rule=="B37/S2-i34q":
exclude_periods=[1,2,5,4,3,20]
if rule=="B3/S235e":
exclude_periods=[1,2,15,3,5,10,8,30,4,6,14,40]
if rule=="randomnn":
exclude_periods=[20,4,14,7,28,140,84]
if rule=="Rotator":
exclude_periods=[12,40,120,4,60,10,20,24,8]
if rule=="B2ein3/S13":
exclude_periods=[1,2,4,6,5,10]
if rule=="PuffLife":
exclude_periods=[1,2,4,8,3,6,16,12]
if rule=="B3-k/S2-i3-k4cen":
exclude_periods=[1,2,5,4,3]
if rule=="B34ek5ak/S2-c34iz5y":
exclude_periods=[1,2,4,6]
if rule=="B35/S2":
exclude_periods=[2,4,1,3]
if rule=="B3568/S256":
exclude_periods=[1,2,3,4,6,12,5,10,15,20,14,42]
if rule=="B356/S234i":
exclude_periods=[1,2,4,6,12]
if rule=="b2ce3aiys12aei3r":
exclude_periods=[1,2,4,6,7,8,10,12,14,15,24,26,28,29,30,58,42,62,94,126,138,170,186,202,234,266]
if rule=="B3-cnry4-acery5i/S23-a4-jknqr5y8":
exclude_periods=[1,2,36,92,4,28,12,18,8]
if rule=="B3/S23-a4eiktz":
exclude_periods=[1,2,4,5,10,78,7,14,9,36,3,6]
if rule=="B34e5e/S2-in3-y5jk":
exclude_periods=[1,2,4,10,13,26,6,3]
if rule=="B2e3-r5i8/S23-a4kz7c":
exclude_periods=[1,2,7,14,4]
if rule=="B3/S23-e4k":
exclude_periods=[1,2,4,5,6,10,98,294,14,22,12]
if rule=="B34aq5c/S135":
exclude_periods=[1,2,4,3,6,13,26,8,12,52,39]
if rule=="B2-a3/S1c23-ainr4cekn":
exclude_periods=[1,2,4,12,31,6,62,8,5,10,124,28,20]
if rule=="B2-a3-in/S23":
exclude_periods=[1,2,6,4,44,12,3,16,9,18,132,5,8,36,220,20,30,22,60]
if rule=="B2-a3-in/S235c":
exclude_periods=[1,2,4,3,6,44,12,10,20,132,16,60,5,58,8]
exclude_periods=[]
def all_periods(q):
if not show_periods: return ""
gmin = gmax = 0
text = "["
for i in q+[0]:
if i==0: text += str(gmin) + ("-"+str(gmax)+"]" if gmax>gmin else "]")
elif gmin==0: gmin = gmax = i
elif i-gmax==1: gmax = i
else:
text += str(gmin) + ("-"+str(gmax)+"," if gmax>gmin else ",")
gmin = gmax = i
return text
def osc_test():
global exclude_periods
if g.empty():
return False
testcells=g.getcells(g.getrect())
testpop=g.getpop() # String representation
testhash=g.hash(g.getrect())
for i in range(1,max_period):
g.run(1)
if g.empty():
return False
if g.getpop()==testpop and g.hash(g.getrect())==testhash:
if g.getcells(g.getrect())!=testcells:
if i not in exclude_periods:
if auto_exclude==1: exclude_periods+=[i]
return i
return 0
return 0
def put_symm(cell_list,x0=0,y0=0,axx=1,axy=0,ayx=0,ayy=1,mode="or"):
global symm
if s=="All":
symm=["C1", "C2_1", "C2_2", "C2_4", "D2_x", "D2_+1", "D2_+2", "C4_1", "C4_4", "D4_x1", "D4_x4", "D4_+1", "D4_+2", "D4_+4", "D8_1", "D8_4"][random.randrange(16)]
if s=="Ship":
symm=["C1", "D2_x","D2_+1", "D2_+2"][random.randrange(4)]
if s=="Rot":
symm=["C1", "C2_1", "C2_2", "C2_4", "C4_1", "C4_4"][random.randrange(6)]
# g.putcells(cell_list,x0,y0,axx,axy,ayx,ayy,mode)
if symm=="C2_1" or symm=="C4_1" or symm=="D4_+1" or symm=="D8_1" or symm=="D4_x1":
g.putcells(cell_list,-x0,-y0,-axx,-axy,-ayx,-ayy,mode)
if symm=="C4_1" or symm=="D8_1":
g.putcells(cell_list,y0,-x0,ayx,ayy,-axx,-axy,mode)
g.putcells(cell_list,-y0,x0,-ayx,-ayy,axx,axy,mode)
if symm=="C2_2" or symm=="D4_+2":
g.putcells(cell_list,-x0-1,-y0,-axx,-axy,-ayx,-ayy,mode)
if symm=="C2_4" or symm=="C4_4" or symm=="D4_+4" or symm=="D8_4" or symm=="D4_x4":
g.putcells(cell_list,-x0-1,-y0-1,-axx,-axy,-ayx,-ayy,mode)
if symm=="D2_+1" or symm=="D8_1" or symm=="D4_+1":
g.putcells(cell_list,-x0,y0,-axx,-axy,ayx,ayy,mode)
if symm=="D4_+1" or symm=="D8_1" or symm=="D4_+2":
g.putcells(cell_list,x0,-y0,axx,axy,-ayx,-ayy,mode)
if symm=="D2_+2" or symm=="D4_+2" or symm=="D4_+4" or symm=="D8_4":
g.putcells(cell_list,-x0-1,y0,-axx,-axy,ayx,ayy,mode)
if symm=="D4_+4" or symm=="D8_4":
g.putcells(cell_list,x0,-y0-1,axx,axy,-ayx,-ayy,mode)
if symm=="C4_4" or symm=="D8_4":
g.putcells(cell_list,y0,-x0-1,ayx,ayy,-axx,-axy,mode)
g.putcells(cell_list,-y0-1,x0,-ayx,-ayy,axx,axy,mode)
if symm=="D8_4":
g.putcells(cell_list,-y0-1,-x0-1,-ayx,-ayy,-axx,-axy,mode)
if symm=="D2_x" or symm=="D8_1" or symm=="D8_4" or symm=="D4_x1" or symm=="D4_x4":
g.putcells(cell_list,y0,x0,ayx,ayy,axx,axy,mode)
if symm=="D4_x1" or symm=="D8_1":
g.putcells(cell_list,-y0,-x0,-ayx,-ayy,-axx,-axy,mode)
if symm=="D4_x4" or symm=="D8_4":
g.putcells(cell_list,-y0-1,-x0-1,-ayx,-ayy,-axx,-axy,mode)
def clear_layer():
r = g.getrect()
if r:
g.select(r)
g.clear(0)
return
def main():
global oc
g.new("RandOsc")
g.setrule(rule+bound)
g.setalgo(algo)
g.setbase(2)
test_layer=g.getlayer()
if g.numlayers()<g.maxlayers():
results_layer=g.addlayer()
g.setname('OscResults')
g.setrule(rule)
for i in range(max_period-1):
t = make_text(str(i+1), "mono")
t.put((i+1)*result_spacing,0)
g.setlayer(test_layer)
else:
resultslayer=-1
results=0
count=0
prevcount=0
t_start=timer()
t_prev=t_start
while True:
clear_layer()
g.select([0,0,x,x])
g.randfill(main_fill)
cell_list=g.getcells([0,0,x,x])
# g.clear(0)
put_symm(cell_list)
g.setstep(stab_step)
g.step()
test=osc_test()
if test>0:
osc = g.getcells(g.getrect())
if group_by_period:
if oc[test]==0: results+=1
if oc[test]<auto_exclude:
if results_layer>=0:
oc[test]+=1
g.setlayer(results_layer)
g.putcells(osc, result_spacing*test, result_spacing*oc[test])
g.setname('OscResults (%d)' % results)
g.fit()
g.update()
g.setlayer(test_layer)
g.setname('RandOsc (%d)' % results)
else:
return True
else:
results+=1
if results_layer>=0:
g.setlayer(results_layer)
g.putcells(osc, result_spacing*results, 0)
g.setname('OscResults (%d)' % results)
g.fit()
g.update()
g.setlayer(test_layer)
g.setname('RandOsc (%d)' % results)
else:
return True
count+=1
if count%count_update==0:
t_end=timer()
g.show("%d results found after %d soups tested (%d/sec current, %d/sec overall)" % (results, count, (count-prevcount)/(t_end-t_prev), (count)/(t_end-t_start))+" "+all_periods([i for i in range(max_period) if oc[i]>0]))
g.select([])
g.update()
g.new("")
g.setbase(2)
t_prev=t_end
prevcount=count
if auto_stop and auto_exclude>0:
if sum(oc)==(max_period-1-len([i for i in exclude_periods if i<max_period]))*auto_exclude: break
main()
Code: Select all
x = 4, y = 3, rule = B3-cnqy4e5kr6n7c/S2-i3-ay4einrtyz5cejn6cin78
bo$3o$ob2o!
Code: Select all
#14c/85265o
x = 10, y = 4, rule = B2-an3-iqy4iknrtz5aijqy6aei78/S02ck3nqy4eiqrtwy5-ekq6-i78
2bo4bo$3b4o$ob6obo$2b6o!
Re: Golly scripts
Please bear with me
About this 2 old scripts :
The site python2to3.com works finedvgrn wrote: ↑February 11th, 2024, 10:15 amNo. I don't believe any of those scripts have been updated since Golly moved to Python 3.x. An 'xrange' error is unambiguous evidence of a Python 2.x script.Tawal wrote: ↑February 11th, 2024, 9:17 amAbout this 2 scripts :
save-bmp.py
save-image.py
Are they Python3 compatible ?
https://python2to3.com/ can probably fix most such errors for you very quickly, but no guarantees. If anyone is willing to run through all of those old scripts and upgrade them to Python 3, I can work to get the old versions replaced.
Otherwise it might be simplest just to remove that page from conwaylife.com -- a GitHub or GitLab repo would probably be a better way to serve up that kind of content these days.
So, I've managed a script that produces a number (requested from the user) of image files of the selected pattern according to a generation increment (requested from the user).
The user is also asked where to save the files.
The original idea was to create a GIF but I don't have the knowledge to do that ...
If anyone would like to correct me and help me create the GIF file, they are most welcome.
At least you have all the image files to create a GIF with the software of your choice
Code: Select all
# Uses PIL (Python Imaging Library) to save the current selection or pattern
# in a user-specified image file (.png/.bmp/.gif/.tif/.jpg).
# See http://www.pythonware.com/products/pil/ for more info about PIL.
# Author: Andrew Trevorrow (andrew@trevorrow.com), Oct 2009.
import golly as g
import os.path
import webbrowser
import urllib.request, urllib.parse, urllib.error
try:
from PIL import Image
except:
g.exit("You need to install PIL (Python Imaging Library).")
### Rapid exit if iznogood ...
if g.empty(): g.exit("There is no pattern.")
# prevent Image.new allocating a huge amount of memory
prect = g.getrect()
srect = g.getselrect()
if len(srect) > 0: prect = srect # save selection rather than pattern
wd = prect[2]
ht = prect[3]
if wd * ht >= 100000000:
g.exit("Image area is restricted to < 100 million cells.")
#set initial directory for the save dialog
initdir = ""
savename = g.getdir("data") + "save-image.ini"
try:
# try to get the directory saved by an earlier run
f = open(savename, 'r')
initdir = f.readline()
f.close()
except:
# this should only happen the very 1st time
initdir = g.getdir("data")
# remove any existing extension from layer name and append .png
initfile = g.getname().split('.')[0] + ".png"
# prompt user for the number of images
gens = int( g.getstring("Enter the number of images : ", "", "Make a GIF") )
# prompt user for the step (one image each n genearations)
step = int( g.getstring("Enter the step \n (one image each n genearations) :", "", "Make a GIF") )
# prompt user for output file (image type depends on extension)
outfile = g.savedialog("Make a GIF - Save image files",
"PNG (*.png)|*.png" ,
initdir, initfile)
# iteration 'step' by 'step' and get image
for nb_img in range(gens) :
prect = g.getrect()
srect = g.getselrect()
if len(srect) > 0: prect = srect # save selection rather than pattern
x = prect[0]
y = prect[1]
wd = prect[2]
ht = prect[3]
# create RGB image filled initially with state 0 color
multistate = g.numstates() > 2
colors = g.getcolors() # [0,r0,g0,b0, ... N,rN,gN,bN]
im = Image.new("RGB", (wd,ht), (colors[1],colors[2],colors[3]))
# get a row of cells at a time to minimize use of Python memory
cellcount = 0
for row in range(ht):
cells = g.getcells( [ x, y + row, wd, 1 ] )
clen = len(cells)
if clen > 0:
inc = 2
if multistate:
# cells is multi-state list (clen is odd)
inc = 3
if clen % 3 > 0: clen -= 1 # ignore last 0
for i in range(0, clen, inc):
if multistate:
n = cells[i+2] * 4 + 1
im.putpixel((cells[i]-x,row), (colors[n],colors[n+1],colors[n+2]))
else:
im.putpixel((cells[i]-x,row), (colors[5],colors[6],colors[7]))
cellcount += 1
if cellcount % 1000 == 0:
# allow user to abort huge pattern/selection
g.dokey( g.getkey() )
if cellcount == 0:
g.show("Pattern died toot early - Only get " + str(nb_img) + " images.")
break
g.show("Creating images...")
outfile = outfile.split('.')[0] + "." + str(nb_img) + ".png"
if len(outfile) > 0:
im.save(outfile)
g.run(step)
# remember file's directory for next time
try:
f = open(savename, 'w')
f.write(os.path.dirname(outfile))
f.close()
except:
g.warn("Unable to save directory to file:\n" + savename)
g.reset()
I used a hard coded version to make my avatar.
Avatar's pattern
Possible uses found by Dave Green
Jormungant's explanation and uses
Currently investigating signal collisions … (stand by)
Re: Golly scripts
Well, I've had a bit of a look at the Python language and I've realised what I was kindly asking for
Here's a script that creates an animated GIF file from a selected pattern. It's intended for small patterns rather than large ones.
It opens a window asking the user for 5 parameters:
- The duration of the GIF in tenths of a second.
- The number of captures to take from the selection.
- The incremental step of the generations.
- The number of the first capture to be inserted at the beginning of the GIF, creating a start delay.
- The number of the last capture to be added at the end of the GIF, creating an end delay.
On the Python side, the script uses Python 3, of course.
It also uses several libraries:
- PIL = Python Imaging Library
- tkinter
- ttk
- tkfont
I wrote the script on a Linux Debian 12 and it works very well for me.
There may be some modifications to make it work on Windows or MacOSX.
As this is really my very first script in Python, I'm quite happy with it.
Well, enough said, the script :
make-a-gif.py
Code: Select all
# Original Script : save-image..py
# Uses PIL (Python Imaging Library) to save the current selection or pattern
# in a user-specified image file (.png/.bmp/.gif/.tif/.jpg).
# See http://www.pythonware.com/products/pil/ for more info about PIL.
# Author: Andrew Trevorrow (andrew@trevorrow.com), Oct 2009.
# Modifications : make-a-gif.py
# Always use PIL (see above).
# Also use 'tkinter', 'ttk' and 'tkfont'.
# See https://docs.python.org/fr/3/library/tk.html for more about tkinter, ttk and tkfont.
# Now the script makes an animated GIF file from the selected pattern
#+ and its evolving according to a generation step.
# It has 5 user-provided parameters :
# - Duration : the duration of the GIF file in tenths of a second.
# - Number of images to capture from the selected pattern.
# - Step for the evolving pattern (must be an integer).
# - Starting Delay : Number of the first captured image
# to insert at the beginning of the GIF file.
# - Ending Delay : Number of the last captured image
# to append at the end of the GIF file.
# The script creates a new working layer which is destroyed at the end.
#+ So it doesn't touch the original pattern layer :)
# The script stops to capture if the pattern dies. The GIF file is created yet.
#+ This affects the start and end delays.
# Contributor : Tawal (https://conwaylife.com/forums - user : Tawal), Feb 2024.
import golly as g
import os.path
import urllib.request, urllib.parse, urllib.error
try:
from PIL import Image
except:
g.exit("You need to install 'PIL' (Python Imaging Library).")
try:
import tkinter as tk
from tkinter import ttk
from tkinter import font
except:
g.exit("You need to install 'tkinter' (Tkinter - Python Module.")
# Rapid exit if iznogood ...
srect = g.getselrect()
if len(srect) == 0:
g.exit("There is no selection.")
x = srect[0]
y = srect[1]
wd = srect[2]
ht = srect[3]
# prevent Image.new allocating a huge amount of memory
if wd * ht >= 100000000:
g.exit("Image area is restricted to < 100 million cells.")
# for all further normal exit
def clean_exit(msg):
g.dellayer()
g.exit(msg)
# get the rule's colors
multistate = g.numstates() > 2
colors = g.getcolors() # [0,r0,g0,b0, ... N,rN,gN,bN]
# new working layer (deleted at the end of script).
initfile = g.getname().split('.')[0] + ".gif" # remove any existing extension from layer name and append .gif
g.copy()
gif_layer = g.addlayer()
g.setname(initfile)
g.paste(x, y, "or")
g.update()
#set initial directory for the save dialog
initdir = ""
savename = g.getdir("data") + initfile
try:
# try to get the directory saved by an earlier run
f = open(savename, 'r')
initdir = f.readline()
f.close()
except:
# this should only happen the very 1st time
initdir = g.getdir("data")
# Multi-entry window
end_script= False
def button_exit_clicked():
global end_script
in_win.destroy()
end_script = True
def button_OK_clicked():
global duration, n_im, step, start_delay, end_delay
n_im = n_imSV.get()
duration = durationSV.get()
step = stepSV.get()
start_delay = start_delaySV.get()
end_delay = end_delaySV.get()
in_win.destroy()
def OnValidate(S):
if S.isdigit():
return True
return False
in_win = tk.Tk()
in_win.title("Make a GIF")
in_win.geometry('520x320')
in_win.eval('tk::PlaceWindow . center')
valid_inputs = (in_win.register(OnValidate), '%S')
intro_lbl = ttk.Label(in_win, underline=80, text="Make an animated GIF file from the selected pattern")
intro_f = font.Font(intro_lbl, intro_lbl.cget("font"))
intro_f.configure(underline=True, weight=font.BOLD)
intro_lbl.configure(font=intro_f)
duration_lbl = tk.Label(in_win, text="Duration of GIF (x0.1s) : ")
durationSV = tk.StringVar()
duration_ask = tk.Entry(in_win, textvariable=durationSV, width=6, justify=tk.RIGHT, validate="key", vcmd=valid_inputs)
n_im_lbl = tk.Label(in_win, text="Number of captures to take from pattern : ")
n_imSV = tk.StringVar()
n_im_ask = tk.Entry(in_win, textvariable=n_imSV, width=6, justify=tk.RIGHT, validate="key", vcmd=valid_inputs)
step_lbl = tk.Label(in_win, text="Generation Step (integer) : ")
stepSV = tk.StringVar()
step_ask = tk.Entry(in_win, textvariable=stepSV, width=6, justify=tk.RIGHT, validate="key", vcmd=valid_inputs)
step_ask.insert(0, "1")
start_delay_lbl = tk.Label(in_win, text="Number of first same frames (starting delay) : ")
start_delaySV = tk.StringVar()
start_delay_ask = tk.Entry(in_win, textvariable=start_delaySV, width=6, justify=tk.RIGHT, validate="key", vcmd=valid_inputs)
start_delay_ask.insert(0, "0")
end_delay_lbl = tk.Label(in_win, text="Number of last same frames (ending delay) : ")
end_delaySV = tk.StringVar()
end_delay_ask = tk.Entry(in_win, textvariable=end_delaySV, width=6, justify=tk.RIGHT, validate="key", vcmd=valid_inputs)
end_delay_ask.insert(0, "0")
button_exit = tk.Button(in_win, text="Exit", width=8, command=button_exit_clicked)
button_OK = tk.Button(in_win, text='Make GIF', width=8, command=button_OK_clicked)
in_win.columnconfigure(0, weight=1)
in_win.columnconfigure(1, weight=15)
in_win.columnconfigure(2, weight=15)
in_win.columnconfigure(3, weight=15)
in_win.columnconfigure(4, weight=1)
in_win.rowconfigure(0, weight=20)
in_win.rowconfigure(1, weight=2)
in_win.rowconfigure(2, weight=2)
in_win.rowconfigure(3, weight=2)
in_win.rowconfigure(4, weight=2)
in_win.rowconfigure(5, weight=2)
in_win.rowconfigure(6, weight=15)
intro_lbl.grid(column=0, row=0, columnspan=4)
duration_lbl.grid(column=1, row=1, columnspan=2, stick=tk.E)
duration_ask.grid(column=3, row=1, stick=tk.W)
n_im_lbl.grid(column=1, row=2, columnspan=2, stick=tk.E)
n_im_ask.grid(column=3, row=2, stick=tk.W)
step_lbl.grid(column=1, row=3, columnspan=2, stick=tk.E)
step_ask.grid(column=3, row=3, stick=tk.W)
start_delay_lbl.grid(column=1, row=4, columnspan=2, stick=tk.E)
start_delay_ask.grid(column=3, row=4, stick=tk.W)
end_delay_lbl.grid(column=1, row=5, columnspan=2, stick=tk.E)
end_delay_ask.grid(column=3, row=5, stick=tk.W)
button_OK.grid(column=3, row=6, sticky=tk.W)
button_exit.grid(column=1, row=6, sticky=tk.W, padx=50)
duration_ask.focus()
in_win.mainloop()
if end_script: # exit if exit_button is clicked
clean_exit('Exited')
# then prompt user for output GIF file.
outfile = g.savedialog("Make a GIF - Save image file",
"GIF (*.gif)|*.gif" ,
initdir, initfile)
if len(outfile) < 1 : # exit if empty string or cancel choice
clean_exit('Exited')
# create images list
g.show("Please wait while creating GIF file ...")
list_im = []
for k in range(int(n_im)):
# create RGB image filled initially with state 0 color
im = Image.new("RGB", (wd,ht), (colors[1],colors[2],colors[3]))
# get a row of cells at a time to minimize use of Python memory
cellcount = 0
for row in range(ht):
cells = g.getcells( [ x, y + row, wd, 1 ] )
clen = len(cells)
if clen > 0:
inc = 2
if multistate:
# cells is multi-state list (clen is odd)
inc = 3
if clen % 3 > 0: clen -= 1 # ignore last 0
for i in range(0, clen, inc):
if multistate:
n = cells[i+2] * 4 + 1
im.putpixel((cells[i]-x,row), (colors[n],colors[n+1],colors[n+2]))
else:
im.putpixel((cells[i]-x,row), (colors[5],colors[6],colors[7]))
cellcount += 1
if cellcount % 1000 == 0:
# allow user to abort huge pattern/selection
g.dokey( g.getkey() )
# stop to capture if pattern dies
if cellcount == 0:
g.show("Pattern died too early - Only get " + str(k) + " images.")
break
if k == 0: # insert the frames for starting delay
for j in range(int(start_delay)):
list_im.append(im)
else:
list_im.append(im)
g.run(int(step))
if int(end_delay) > 0: # append the frames for ending delay
for i in range(int(end_delay)):
list_im.append(im)
# convert the images list in a GIF file
list_im[0].save(outfile,
save_all=True, append_images=list_im[1:], optimize=True, duration=int(duration), loop=0)
# remember file's directory for next time
try:
f = open(savename, 'w')
f.write(os.path.dirname(outfile))
f.close()
except:
g.warn("Unable to remember save location and last used filename for next run !")
# clean and exit
clean_exit('Animated GIF created here : '+ outfile)
Edit:
Clean version of script (not a draft )
And smaller image.
Avatar's pattern
Possible uses found by Dave Green
Jormungant's explanation and uses
Currently investigating signal collisions … (stand by)
Re: Golly scripts
(also want to note that we have giffer.lua)
- autonomic writing
forFUN : http://gol.jct.onl
Art Gallery : http://cgol.art
Video WebSite : http://conway.life
Re: Golly scripts
Code: Select all
# collector.py
# Version 0.3
# Written by May13, December 2022 - February 2024
# This script contains modified part of script written by Nathaniel Johnston, June 2009.
# Source: https://conwaylife.com/forums/viewtopic.php?p=465#p465
import golly as g
from math import ceil
fontNumber = 0
space = 2
scale = 10
count = 100
exponential = False
mx = 30
my = 30
filename = g.getstring("Enter file name:","oscillators.txt")
# --------------------------------------------------------------------
def chunks(l, n):
for i in range(0, len(l), n):
yield l[i:i+n]
# --------------------------------------------------------------------
def giveRLE(rl_list):
rle_res = ""
rle_len = 1
rl_y = rl_list[0][1] - 1
rl_x = 0
for rl_i in rl_list:
if rl_i[1] == rl_y:
if rl_i[0] == rl_x + 1:
rle_len += 1
else:
if rle_len == 1: rle_strA = ""
else: rle_strA = str (rle_len)
if rl_i[0] - rl_x - 1 == 1: rle_strB = ""
else: rle_strB = str (rl_i[0] - rl_x - 1)
rle_res = rle_res + rle_strA + "o" + rle_strB + "b"
rle_len = 1
else:
if rle_len == 1: rle_strA = ""
else: rle_strA = str (rle_len)
if rl_i[1] - rl_y == 1: rle_strB = ""
else: rle_strB = str (rl_i[1] - rl_y)
if rl_i[0] == 1: rle_strC = "b"
elif rl_i[0] == 0: rle_strC = ""
else: rle_strC = str (rl_i[0]) + "b"
rle_res = rle_res + rle_strA + "o" + rle_strB + "$" + rle_strC
rle_len = 1
rl_x = rl_i[0]
rl_y = rl_i[1]
if rle_len == 1: rle_strA = ""
else: rle_strA = str (rle_len)
rle_res = rle_res[2:] + rle_strA + "o"
return rle_res
# --------------------------------------------------------------------
def get_RLE(rect):
clist = list(chunks(g.getcells(rect), 2))
mcc = [rect[0], rect[1]]
n = g.getselrect()[1]-rect[1]
clist = [[x[0]-mcc[0],x[1]-mcc[1]] for x in clist]
if n>1: return str(n)+'$'+giveRLE(clist)
if n==1: return '$'+giveRLE(clist)
return giveRLE(clist)
rule = g.getrule()
ruleHistory = rule + 'History'
font0 = {
'0': 'obobo2$o3bo2$o3bo2$o3bo2$obobo!',
'1': '2bo2$obo2$2bo2$2bo2$obobo!',
'2': 'obobo2$4bo2$obobo2$o2$obobo!',
'3': 'obobo2$4bo2$obobo2$4bo2$obobo!',
'4': 'o3bo2$o3bo2$obobo2$4bo2$4bo!',
'5': 'obobo2$o2$obobo2$4bo2$obobo!',
'6': 'obobo2$o2$obobo2$o3bo2$obobo!',
'7': 'obobo2$4bo2$4bo2$4bo2$4bo!',
'8': 'obobo2$o3bo2$obobo2$o3bo2$obobo!',
'9': 'obobo2$o3bo2$obobo2$4bo2$obobo!'
}
font = dict()
for i in font0.keys():
font[i] = g.parse(font0[i])
def scan_number(u, v):
cells = g.getcells([u, v, 5, 9])
if cells == []: return ''
for i in font.keys():
if len(font[i]) != len(cells): continue
p = font[i][0] - cells[0]
q = font[i][1] - cells[1]
for j in range(2, len(font[i]), 2):
if font[i][j] - cells[j] != p: break
if font[i][j+1] - cells[j+1] != q: break
else:
return i
return ''
rect = g.getrect()
upos = set()
text = []
if rect==[]: rect=[0,0,0,0]
for u in range(rect[0], rect[0]+rect[2], scale):
for v in range(rect[1], rect[1]+rect[3], scale):
cells = g.getcells([u, v, 5, 9])
n = []
U = u
while True:
c = scan_number(U, v)
if c == '': break
n.append(c)
U += 8
if len(n) > 0:
n = ''.join(n)
text.append((n, u, v))
upos.add(u)
upos = sorted(upos)
patterns = []
for i in range(len(text)):
T = text[i][0]
u1 = text[i][1]
v1 = text[i][2]
if upos.index(u1) == len(upos)-1: u2 = rect[0]+rect[2]+int(T)
else: u2 = upos[upos.index(u1)+1]
if i == len(text)-1 or text[i+1][1] > u1: v2 = rect[1]+rect[3]+int(T)
else: v2 = text[i+1][2]
u1 += len(T)*8-3
#u1 += len(T)*6+2
g.select([u1, v1, u2-u1, v2-v1])
g.update()
gen0 = g.getcells(g.getselrect())
g.setrule(ruleHistory)
g.run(int(T))
g.shrink(True)
rectT = g.getselrect()
g.reset()
g.setrule(rule)
g.run(int(T))
genT = g.getcells(rectT)
g.reset()
g.select(rectT)
g.update()
if gen0 != genT or rectT == []: g.warn('Invalid period-' + T + ' oscillator!')
else:
g.shrink()
rle = get_RLE(rectT)
rle = f'#{T} {rectT[2]} {rectT[3]}:\n' + rle + '!\n'
patterns.append((int(T),rle))
if patterns!=[]:
try:
with open(filename) as f: l = f.read().split('!\n')
if l != ['']:
if l[-1] == '': del l[-1]
while l[-1].endswith('!') or l[-1].endswith('\n'): l[-1] = l[-1][:-1]
for i in l: patterns.append((int(i[1:i.index(' ')]) , i+'!\n'))
except: pass
e0 = lambda e: e[0]
patterns.sort(key=e0)
duplicates = set()
for i in range(len(patterns)-1):
if patterns[i][0] == patterns[i+1][0]: duplicates.add(patterns[i][0])
if len(duplicates) > 0: g.warn("Duplicate entries: "+str(sorted(duplicates)))
with open(filename, 'w') as f:
for i in patterns: f.write(i[1])
g.setrule(rule)
fonts0 = [
[{
"0": "*.*.*$.....$*...*$.....$*...*$.....$*...*$.....$*.*.*!",
"1": "..*..$.....$*.*..$.....$..*..$.....$..*..$.....$*.*.*!",
"2": "*.*.*$.....$....*$.....$*.*.*$.....$*....$.....$*.*.*!",
"3": "*.*.*$.....$....*$.....$*.*.*$.....$....*$.....$*.*.*!",
"4": "*...*$.....$*...*$.....$*.*.*$.....$....*$.....$....*!",
"5": "*.*.*$.....$*....$.....$*.*.*$.....$....*$.....$*.*.*!",
"6": "*.*.*$.....$*....$.....$*.*.*$.....$*...*$.....$*.*.*!",
"7": "*.*.*$.....$....*$.....$....*$.....$....*$.....$....*!",
"8": "*.*.*$.....$*...*$.....$*.*.*$.....$*...*$.....$*.*.*!",
"9": "*.*.*$.....$*...*$.....$*.*.*$.....$....*$.....$*.*.*!",
"M": "*...*$.....$*.*.*$.....$*.*.*$.....$*...*$.....$*...*!",
"N": "*.*..$.....$*...*$.....$*...*$.....$*...*$.....$*...*!",
"c": ".....$.....$.....$.....$..*.*$.....$*....$.....$..*.*!",
"d": "....*$.....$....*$.....$..*.*$.....$*...*$.....$..*.*!",
"o": ".....$.....$.....$.....$..*..$.....$*...*$.....$..*..!",
"+": ".....$.....$..*..$.....$*.*.*$.....$..*..$.....$.....!",
"/": "....*$.....$....*$.....$..*..$.....$*....$.....$*....!",
"(": "....*$.....$..*..$.....$..*..$.....$..*..$.....$....*!",
")": "*....$.....$..*..$.....$..*..$.....$..*..$.....$*....!",
",": ".....$.....$.....$.....$.....$.....$..*..$.....$..*..!",
},5,8,9],
[{
"0": "*..*..*$.......$.......$*.....*$.......$.......$*.....*$.......$.......$*..*..*",
"1": "...*...$.......$*......$...*...$.......$.......$...*...$.......$.......$*..*..*",
"2": "*..*..*$.......$.......$......*$...*...$.......$*......$.......$.......$*..*..*",
"3": "*..*..*$.......$.......$......*$...*...$.......$......*$.......$.......$*..*..*",
"4": "......*$.......$.......$...*..*$.......$.......$*..*..*$.......$.......$......*",
"5": "*..*..*$.......$.......$*......$...*...$.......$......*$.......$.......$*..*..*",
"6": "*..*..*$.......$.......$*......$...*...$.......$*.....*$.......$.......$*..*..*",
"7": "*..*..*$.......$.......$.....*.$.......$.......$....*..$.......$.......$...*...",
"8": "*..*..*$.......$.......$*.....*$...*...$.......$*.....*$.......$.......$*..*..*",
"9": "*..*..*$.......$.......$*.....*$...*...$.......$......*$.......$.......$*..*..*",
"M": "*..*..*$.......$...*...$*.....*$.......$.......$*.....*$.......$.......$*.....*",
"N": "*..*...$.......$.......$*.....*$.......$.......$*.....*$.......$.......$*.....*",
"c": ".......$.......$.......$...*..*$.......$.......$*......$.......$.......$...*..*",
"d": "......*$.......$.......$...*..*$.......$.......$*.....*$.......$.......$...*..*",
"o": ".......$.......$.......$...*...$.......$.......$*.....*$.......$.......$...*...",
"+": ".......$...*...$.......$.......$*..*..*$.......$.......$...*...$.......$.......",
"/": "......*$.......$.......$....*..$.......$.......$..*....$.......$.......$*......",
"(": "....*..$.......$.......$..*....$.......$.......$..*....$.......$.......$....*..",
")": "..*....$.......$.......$....*..$.......$.......$....*..$.......$.......$..*....",
",": ".......$.......$.......$.......$.......$.......$...*...$.......$.......$..*....",
},7,10,10],
]
fonts = fonts0.copy()
for i in range(len(fonts0)):
for j in fonts0[i][0].keys():
fonts[i][0][j] = fonts0[i][0][j].replace('*','o').replace('.','b')
font = fonts[fontNumber]
fw = font[1]
ft = font[2]
my = max(my,font[3])
font = font[0]
snap = lambda x: ceil(x/scale)*scale
f = open(filename)
l = [i.split(":\n") for i in f.read().split("#")[1:]]
f.close()
l = [i[0].split(" ") + [i[1]] if i != ["\n"] else [] for i in l]
g.new("Collection")
dx = 0
dy = 0
tx = 0
j = 1
textState = 0
patternState = 0
states=[".","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","pA"]
for i in range(len(l)):
if l[i]==[]:
dx += snap(tx+space)
dy = 0
tx = 0
if exponential: count *= 2
continue
if len(l[i])==5: patternState = int(l[i][3])
elif len(l[i])==6:
textState = int(l[i][3])
patternState = int(l[i][4])
p = l[i][0]
i00 = ""
i0 = "0"
if "/" in p: i00=p.split("/")[1]
else: i00 = p
for ch in i00:
if ch in "0123456789": i0 += ch
i0 = int(i0)
if count>0 and (ceil(i0/count)!=ceil(j/count) or i0<j):
dx += snap(tx+space)
dy = 0
tx = 0
if exponential: count *= 2
fx = 0
for k in range(len(p)):
char = font[p[k]]
if textState > 0: char = char.replace("*",states[textState])
g.putcells(g.parse(char), dx+fx, dy)
fx += ft
fx = snap(max(fx+fw-ft+space, mx))
if patternState > 0: l[i][-1] = l[i][-1].replace("b",".").replace("o",states[patternState]).replace("*",states[patternState])
g.putcells(g.parse(l[i][-1]), dx+fx, dy)
tx = max(tx, fx+int(l[i][1]))
dy += snap(max(int(l[i][2])+space, my))
j = i0
g.fit()
- Open Golly, then make this pattern:
Code: Select all
x = 193, y = 61, rule = B3/S23 2bo7b2o18bobobo3bobobo57bo3bo5bo43bo$10b2o41b3o30b3o63b3o$obo31bo3bo3b o57bo3bo3bobo40bo$51bo5bo2b2o18b2o2bo5bo45b2o13b2o$2bo27bobobo3bobobo 8bo4b2o4bo16bo4b2o4bo9bobobo5bo26bo$51bo11bo14bo11bo46bobo$2bo31bo3bo 3bo19b2o14b2o24bo5bo27b2o$148bo$obobo25bobobo3bobobo61bo3bobobo34bo$ 56b2o26b2o63bo$56bo28bo61b3o$57b3o22b3o$59bo22bo2$160bo$125b2o24b2o5bo bo$126bo24bo7b2o$124bo13b2o12b3o$122b4o15b2o11bo$121bo14b2obo$obobo13b 2o100bo2b3o10b2o3bob2o$10b3o5b2o101b2o2bo10b2obo3b2o$4bo11b2o105b2o16b ob2o$16b2o105bo14b2o$obobo119bo6b3o7b2o26bo$121b3o7bo38b2o$o120bo5b2o 3bo11bo24b2o$128bo14bobo$obobo120b3o15b2o$125bo2$187bo$168b2o15b3o$ 167bobo14bo$142b2o24bo11bo3b2o5bo$141b2o38bo7b3o$143bo26b2o7b3o6bo$ 173b2o14bo$168b2obo16b2o$168b2o3bob2o10bo2b2o$168b2obo3b2o10b3o2bo$ 173bob2o14bo$158bo11b2o15b4o$158b3o12b2o13bo$152b2o7bo24bo$152bobo5b2o 24b2o$152bo4$163b3o$163bo$165bo$164bo$173b2o$173bobo$175bo$160b2o13b2o $161bo$158b3o$158bo!
- Run collector.py, then enter filename;
- Then you will see an oscillator collection like this one:
Code: Select all
x = 103, y = 151, rule = B3/S23 2bo27b2o$30b2o$obo2$2bo2$2bo2$obobo22$obobo33b2o$30b3o5b2o$4bo31b2o$ 36b2o$obobo2$o2$obobo22$obobo3bobobo$33b3o30b3o$4bo3bo3bo$31bo5bo2b2o 18b2o2bo5bo$obobo3bobobo18bo4b2o4bo16bo4b2o4bo$31bo11bo14bo11bo$4bo3bo 3bo29b2o14b2o2$obobo3bobobo$36b2o26b2o$36bo28bo$37b3o22b3o$39bo22bo18$ o3bo5bo53bo$62b3o$o3bo3bobo50bo$46b2o13b2o$obobo5bo36bo$47bobo$4bo5bo 37b2o$58bo$4bo3bobobo44bo$59bo$57b3o4$70bo$35b2o24b2o5bobo$36bo24bo7b 2o$34bo13b2o12b3o$32b4o15b2o11bo$31bo14b2obo$30bo2b3o10b2o3bob2o$31b2o 2bo10b2obo3b2o$33b2o16bob2o$33bo14b2o$34bo6b3o7b2o26bo$31b3o7bo38b2o$ 31bo5b2o3bo11bo24b2o$38bo14bobo$35b3o15b2o$35bo2$97bo$78b2o15b3o$77bob o14bo$52b2o24bo11bo3b2o5bo$51b2o38bo7b3o$53bo26b2o7b3o6bo$83b2o14bo$ 78b2obo16b2o$78b2o3bob2o10bo2b2o$78b2obo3b2o10b3o2bo$83bob2o14bo$68bo 11b2o15b4o$68b3o12b2o13bo$62b2o7bo24bo$62bobo5b2o24b2o$62bo4$73b3o$73b o$75bo$74bo$83b2o$83bobo$85bo$70b2o13b2o$71bo$68b3o$68bo!
Code: Select all
x = 103, y = 181, rule = B3/S23
2bo27b2o$30b2o$obo2$2bo2$2bo2$obobo22$obobo33b2o$30b3o5b2o$4bo31b2o$
36b2o$obobo2$o2$obobo22$obobo$33b3o3b3o$4bo$31bo4bobo4bo$obobo26bo4bob
o4bo$31bo4bobo4bo$4bo28b3o3b3o2$obobo28b3o3b3o$31bo4bobo4bo$31bo4bobo
4bo$31bo4bobo4bo2$33b3o3b3o17$obobo3bobobo$33b3o30b3o$4bo3bo3bo$31bo5b
o2b2o18b2o2bo5bo$obobo3bobobo18bo4b2o4bo16bo4b2o4bo$31bo11bo14bo11bo$
4bo3bo3bo29b2o14b2o2$obobo3bobobo$36b2o26b2o$36bo28bo$37b3o22b3o$39bo
22bo18$o3bo5bo53bo$62b3o$o3bo3bobo50bo$46b2o13b2o$obobo5bo36bo$47bobo$
4bo5bo37b2o$58bo$4bo3bobobo44bo$59bo$57b3o4$70bo$35b2o24b2o5bobo$36bo
24bo7b2o$34bo13b2o12b3o$32b4o15b2o11bo$31bo14b2obo$30bo2b3o10b2o3bob2o
$31b2o2bo10b2obo3b2o$33b2o16bob2o$33bo14b2o$34bo6b3o7b2o26bo$31b3o7bo
38b2o$31bo5b2o3bo11bo24b2o$38bo14bobo$35b3o15b2o$35bo2$97bo$78b2o15b3o
$77bobo14bo$52b2o24bo11bo3b2o5bo$51b2o38bo7b3o$53bo26b2o7b3o6bo$83b2o
14bo$78b2obo16b2o$78b2o3bob2o10bo2b2o$78b2obo3b2o10b3o2bo$83bob2o14bo$
68bo11b2o15b4o$68b3o12b2o13bo$62b2o7bo24bo$62bobo5b2o24b2o$62bo4$73b3o
$73bo$75bo$74bo$83b2o$83bobo$85bo$70b2o13b2o$71bo$68b3o$68bo!
To do:
- Support more fonts
- Implement faster scanning algorithm
The latest version of new-gliders.db (28991 gliders): here
My scripts: new-glider.py v0.2, nbsearch2a.py, collector.py v0.3
-Dmitry Maitak
Re: Golly scripts
For a set of several hundred "data-dump" userspace pages related to photon partials, wwei47 mentioned that it would be okay to remove them from the LifeWiki if there was a way to do a bulk download.
Bulk downloads are not particularly difficult to do with a Python script, so I've written one that works for this specific problem:
Code: Select all
import golly as g
import urllib.request
from urllib.request import urlopen, Request
import os
outpath = g.getstring("Enter base path for output files, using '/' as folder delimiter","C:/users/{username}/Desktop/out/")
if outpath == "C:/users/{username}/Desktop/out/":
g.note("Please run this script again and change the sample path to something that works on your system.")
g.exit()
if not outpath.endswith("/"):
outpath += "/"
pages = """User:Prime Raptor21/Photon partials for 5S/P31
User:Prime Raptor21/Photon partials for 5S/P37
User:Prime Raptor21/Photon partials for 5S/P38
User:Prime Raptor21/Photon partials for 5S/P39
User:Prime Raptor21/Photon partials for 5S/P41
User:Prime Raptor21/Photon partials for 5S/P43
User:Prime Raptor21/Photon partials for 5S/P44
User:Prime Raptor21/Photon partials for 5S/P45
User:Prime Raptor21/Photon partials for 5S/P46
User:Prime Raptor21/Photon partials for 5S/P47
User:Prime Raptor21/Photon partials for 5S/P48
User:Prime Raptor21/Photon partials for 5S/P49
User:Prime Raptor21/Photon partials for 5S/P50
User:Prime Raptor21/Photon partials for 5S/P51
User:Prime Raptor21/Photon partials for 5S/P52
User:Prime Raptor21/Photon partials for 5S/P53
User:Prime Raptor21/Photon partials for 5S/P54
User:Prime Raptor21/Photon partials for 5S/P55
User:Prime Raptor21/Photon partials for 5S/P56
User:Prime Raptor21/Photon partials for 5S/P57
User:Prime Raptor21/Photon partials for 5S/P58
User:Prime Raptor21/Photon partials for 5S/P59
User:Prime Raptor21/Photon partials for 5S/P61
User:Prime Raptor21/Photon partials for 5S/P62
User:Prime Raptor21/Photon partials for 5S/P63
User:Prime Raptor21/Photon partials for 5S/P64
User:Prime Raptor21/Photon partials for 5S/P65
User:Prime Raptor21/Photon partials for 5S/P66
User:Prime Raptor21/Photon partials for 5S/P67
User:Prime Raptor21/Photon partials for 5S/P68
User:Prime Raptor21/Photon partials for 5S/P69
User:Prime Raptor21/Photon partials for 5S/P70
User:Prime Raptor21/Photon partials for 5S/P71
User:Prime Raptor21/Photon partials for 5S/P72
User:Prime Raptor21/Photon partials for 5S/P73
User:Prime Raptor21/Photon partials for 5S/P74
User:Prime Raptor21/Photon partials for 5S/P75
User:Prime Raptor21/Photon partials for 5S/P76
User:Prime Raptor21/Photon partials for 5S/P77
User:Prime Raptor21/Photon partials for 5S/P78
User:Prime Raptor21/Photon partials for 5S/P79
User:Prime Raptor21/Photon partials for 5S/P80
User:Prime Raptor21/Photon partials for 5S/P81
User:Prime Raptor21/Photon partials for 5S/P82
User:Prime Raptor21/Photon partials for 5S/P83
User:Prime Raptor21/Photon partials for 5S/P84
User:Prime Raptor21/Photon partials for 5S/P85
User:Prime Raptor21/Photon partials for 5S/P86
User:Prime Raptor21/Photon partials for 5S/P87
User:Prime Raptor21/Photon partials for 5S/P88
User:Prime Raptor21/Photon partials for 5S/P89
User:Prime Raptor21/Photon partials for 5S/P90
User:Prime Raptor21/Photon partials for 5S/P91
User:Prime Raptor21/Photon partials for 5S/P92
User:Prime Raptor21/Photon partials for 5S/P93
User:Prime Raptor21/Photon partials for 5S/P94
User:Prime Raptor21/Photon partials for 5S/P95
User:Prime Raptor21/Photon partials for 5S/P96
User:Prime Raptor21/Photon partials for 5S/P97
User:Prime Raptor21/Photon partials for 5S/P98
User:Prime Raptor21/Photon partials for 5S/P99
User:Prime Raptor21/Photon partials for 5S/P100
User:Prime Raptor21/Photon partials for 5S/P101
User:Prime Raptor21/Photon partials for 5S/P102
User:Prime Raptor21/Photon partials for 5S/P103
User:Prime Raptor21/Photon partials for 5S/P104
User:Prime Raptor21/Photon partials for 5S/P105
User:Prime Raptor21/Photon partials for 5S/P106
User:Prime Raptor21/Photon partials for 5S/P107
User:Prime Raptor21/Photon partials for 5S/P108
User:Prime Raptor21/Photon partials for 5S/P109
User:Prime Raptor21/Photon partials for 5S/P110
User:Prime Raptor21/Photon partials for 5S/P111
User:Prime Raptor21/Photon partials for 5S/P112
User:Prime Raptor21/Photon partials for 5S/P113
User:Prime Raptor21/Photon partials for 5S/P114
User:Prime Raptor21/Photon partials for 5S/P115
User:Prime Raptor21/Photon partials for 5S/P116
User:Prime Raptor21/Photon partials for 5S/P117
User:Prime Raptor21/Photon partials for 5S/P118
User:Prime Raptor21/Photon partials for 5S/P119
User:Prime Raptor21/Photon partials for 5S/P120
User:Prime Raptor21/Photon partials for 5S/P122
User:Prime Raptor21/Photon partials for 5S/P123
User:Prime Raptor21/Photon partials for 5S/P124
User:Prime Raptor21/Photon partials for 5S/P125
User:Prime Raptor21/Photon partials for 5S/P126
User:Prime Raptor21/Photon partials for 5S/P127
User:Prime Raptor21/Photon partials for 5S/P128
User:Prime Raptor21/Photon partials for 5S/P129
User:Prime Raptor21/Photon partials for 5S/P130
User:Prime Raptor21/Photon partials for 5S/P131
User:Prime Raptor21/Photon partials for 5S/P132
User:Prime Raptor21/Photon partials for 5S/P133
User:Prime Raptor21/Photon partials for 5S/P134
User:Prime Raptor21/Photon partials for 5S/P135
User:Prime Raptor21/Photon partials for 5S/P136
User:Prime Raptor21/Photon partials for 5S/P137
User:Prime Raptor21/Photon partials for 5S/P138
User:Prime Raptor21/Photon partials for 5S/P139
User:Prime Raptor21/Photon partials for 5S/P140
User:Prime Raptor21/Photon partials for 5S/P141
User:Prime Raptor21/Photon partials for 5S/P142
User:Prime Raptor21/Photon partials for 5S/P143
User:Prime Raptor21/Photon partials for 5S/P144
User:Prime Raptor21/Photon partials for 5S/P145
User:Prime Raptor21/Photon partials for 5S/P146
User:Prime Raptor21/Photon partials for 5S/P147
User:Prime Raptor21/Photon partials for 5S/P148
User:Prime Raptor21/Photon partials for 5S/P149
User:Prime Raptor21/Photon partials for 5S/P150
User:Prime Raptor21/Photon partials for 5S/P151
User:Prime Raptor21/Photon partials for 5S/P152
User:Prime Raptor21/Photon partials for 5S/P153
User:Prime Raptor21/Photon partials for 5S/P154
User:Prime Raptor21/Photon partials for 5S/P155
User:Prime Raptor21/Photon partials for 5S/P156
User:Prime Raptor21/Photon partials for 5S/P157
User:Prime Raptor21/Photon partials for 5S/P158
User:Prime Raptor21/Photon partials for 5S/P160
User:Prime Raptor21/Photon partials for 5S/P161
User:Prime Raptor21/Photon partials for 5S/P162
User:Prime Raptor21/Photon partials for 5S/P163
User:Prime Raptor21/Photon partials for 5S/P164
User:Prime Raptor21/Photon partials for 5S/P165
User:Prime Raptor21/Photon partials for 5S/P166
User:Prime Raptor21/Photon partials for 5S/P168
User:Prime Raptor21/Photon partials for 5S/P169
User:Prime Raptor21/Photon partials for 5S/P170
User:Prime Raptor21/Photon partials for 5S/P171
User:Prime Raptor21/Photon partials for 5S/P172
User:Prime Raptor21/Photon partials for 5S/P174
User:Prime Raptor21/Photon partials for 5S/P175
User:Prime Raptor21/Photon partials for 5S/P176
User:Prime Raptor21/Photon partials for 5S/P177
User:Prime Raptor21/Photon partials for 5S/P180
User:Prime Raptor21/Photon partials for 5S/P181
User:Prime Raptor21/Photon partials for 5S/P182
User:Prime Raptor21/Photon partials for 5S/P184
User:Prime Raptor21/Photon partials for 5S/P186
User:Prime Raptor21/Photon partials for 5S/P187
User:Prime Raptor21/Photon partials for 5S/P188
User:Prime Raptor21/Photon partials for 5S/P189
User:Prime Raptor21/Photon partials for 5S/P190
User:Prime Raptor21/Photon partials for 5S/P194
User:Prime Raptor21/Photon partials for 5S/P195
User:Prime Raptor21/Photon partials for 5S/P197
User:Prime Raptor21/Photon partials for 5S/P198
User:Prime Raptor21/Photon partials for 5S/P200
User:Prime Raptor21/Photon partials for 5S/P202
User:Prime Raptor21/Photon partials for 5S/P203
User:Prime Raptor21/Photon partials for 5S/P204
User:Prime Raptor21/Photon partials for 5S/P205
User:Prime Raptor21/Photon partials for 5S/P206
User:Prime Raptor21/Photon partials for 5S/P208
User:Prime Raptor21/Photon partials for 5S/P209
User:Prime Raptor21/Photon partials for 5S/P210
User:Prime Raptor21/Photon partials for 5S/P217
User:Prime Raptor21/Photon partials for 5S/P220
User:Prime Raptor21/Photon partials for 5S/P224
User:Prime Raptor21/Photon partials for 5S/P226
User:Prime Raptor21/Photon partials for 5S/P228
User:Prime Raptor21/Photon partials for 5S/P230
User:Prime Raptor21/Photon partials for 5S/P232
User:Prime Raptor21/Photon partials for 5S/P236
User:Prime Raptor21/Photon partials for 5S/P238
User:Prime Raptor21/Photon partials for 5S/P249
User:Prime Raptor21/Photon partials for 5S/P252
User:Prime Raptor21/Photon partials for 5S/P254
User:Prime Raptor21/Photon partials for 5S/P255
User:Prime Raptor21/Photon partials for 5S/P258
User:Prime Raptor21/Photon partials for 5S/P260
User:Prime Raptor21/Photon partials for 5S/P271
User:Prime Raptor21/Photon partials for 5S/P282
User:Prime Raptor21/Photon partials for 5S/P284
User:Prime Raptor21/Photon partials for 5S/P296
User:Prime Raptor21/Photon partials for 5S/P309
User:Prime Raptor21/Photon partials for 5S/P335
User:Prime Raptor21/Photon partials for 5S/P376
User:Prime Raptor21/Photon partials for 5S/P378
User:Prime Raptor21/Photon partials for 5S/P383
User:Prime Raptor21/Photon partials for 5S/P392
User:Prime Raptor21/Photon partials for 5S/P213
User:Prime Raptor21/Photon partials for 5S/P215
User:Prime Raptor21/Photon partials for 5S/P216
User:Prime Raptor21/Photon partials for 5S/P218
User:Prime Raptor21/Photon partials for 5S/P225
User:Prime Raptor21/Photon partials for 5S/P231
User:Prime Raptor21/Photon partials for 5S/P234
User:Prime Raptor21/Photon partials for 5S/P240
User:Prime Raptor21/Photon partials for 5S/P242
User:Prime Raptor21/Photon partials for 5S/P250
User:Prime Raptor21/Photon partials for 5S/P251
User:Prime Raptor21/Photon partials for 5S/P264
User:Prime Raptor21/Photon partials for 5S/P265
User:Prime Raptor21/Photon partials for 5S/P270
User:Prime Raptor21/Photon partials for 5S/P273
User:Prime Raptor21/Photon partials for 5S/P278
User:Prime Raptor21/Photon partials for 5S/P280
User:Prime Raptor21/Photon partials for 5S/P283
User:Prime Raptor21/Photon partials for 5S/P286
User:Prime Raptor21/Photon partials for 5S/P287
User:Prime Raptor21/Photon partials for 5S/P290
User:Prime Raptor21/Photon partials for 5S/P298
User:Prime Raptor21/Photon partials for 5S/P300
User:Prime Raptor21/Photon partials for 5S/P308
User:Prime Raptor21/Photon partials for 5S/P312
User:Prime Raptor21/Photon partials for 5S/P314
User:Prime Raptor21/Photon partials for 5S/P315
User:Prime Raptor21/Photon partials for 5S/P322
User:Prime Raptor21/Photon partials for 5S/P324
User:Prime Raptor21/Photon partials for 5S/P329
User:Prime Raptor21/Photon partials for 5S/P338
User:Prime Raptor21/Photon partials for 5S/P339
User:Prime Raptor21/Photon partials for 5S/P344
User:Prime Raptor21/Photon partials for 5S/P348
User:Prime Raptor21/Photon partials for 5S/P354
User:Prime Raptor21/Photon partials for 5S/P360
User:Prime Raptor21/Photon partials for 5S/P366
User:Prime Raptor21/Photon partials for 5S/P370
User:Prime Raptor21/Photon partials for 5S/P372
User:Prime Raptor21/Photon partials for 5S/P385
User:Prime Raptor21/Photon partials for 5S/P407
User:Prime Raptor21/Photon partials for 5S/P411
User:Prime Raptor21/Photon partials for 5S/P412
User:Prime Raptor21/Photon partials for 5S/P414
User:Prime Raptor21/Photon partials for 5S/P415
User:Prime Raptor21/Photon partials for 5S/P417
User:Prime Raptor21/Photon partials for 5S/P420
User:Prime Raptor21/Photon partials for 5S/P434
User:Prime Raptor21/Photon partials for 5S/P441
User:Prime Raptor21/Photon partials for 5S/P446
User:Prime Raptor21/Photon partials for 5S/P447
User:Prime Raptor21/Photon partials for 5S/P462
User:Prime Raptor21/Photon partials for 5S/P465
User:Prime Raptor21/Photon partials for 5S/P479
User:Prime Raptor21/Photon partials for 5S/P487
User:Prime Raptor21/Photon partials for 5S/P492
User:Prime Raptor21/Photon partials for 5S/P502
User:Prime Raptor21/Photon partials for 5S/P504
User:Prime Raptor21/Photon partials for 5S/P508
User:Prime Raptor21/Photon partials for 5S/P510
User:Prime Raptor21/Photon partials for 5S/P511
User:Prime Raptor21/Photon partials for 5S/P538
User:Prime Raptor21/Photon partials for 5S/P540
User:Prime Raptor21/Photon partials for 5S/P616
User:Prime Raptor21/Photon partials for 5S/P623
User:Prime Raptor21/Photon partials for 5S/P658
User:Prime Raptor21/Photon partials for 5S/P679
User:Prime Raptor21/Photon partials for 5S/P717
User:Prime Raptor21/Photon partials for 5S/P732
User:Prime Raptor21/Photon partials for 5S/P734
User:Prime Raptor21/Photon partials for 5S/P757
User:Prime Raptor21/Photon partials for 5S/P778
User:Prime Raptor21/Photon partials for 5S/P788
User:Prime Raptor21/Photon partials for 5S/P889
User:Prime Raptor21/Photon partials for 5S/P982
User:Prime Raptor21/Photon partials for 5S/P1006
User:Prime Raptor21/Photon partials for 5S/P1018
User:Prime Raptor21/Photon partials for 5S/P1022
User:Prime Raptor21/Photon partials for 5S/P1436
User:Prime Raptor21/Photon partials for 5S/P1636
User:Prime Raptor21/Photon partials for 5S/The Vault/P31
User:Prime Raptor21/Photon partials for 5S/The Vault/P37
User:Prime Raptor21/Photon partials for 5S/The Vault/P38
User:Prime Raptor21/Photon partials for 5S/The Vault/P39
User:Prime Raptor21/Photon partials for 5S/The Vault/P41
User:Prime Raptor21/Photon partials for 5S/The Vault/P43
User:Prime Raptor21/Photon partials for 5S/The Vault/P44
User:Prime Raptor21/Photon partials for 5S/The Vault/P45
User:Prime Raptor21/Photon partials for 5S/The Vault/P46
User:Prime Raptor21/Photon partials for 5S/The Vault/P47
User:Prime Raptor21/Photon partials for 5S/The Vault/P48
User:Prime Raptor21/Photon partials for 5S/The Vault/P49
User:Prime Raptor21/Photon partials for 5S/The Vault/P50
User:Prime Raptor21/Photon partials for 5S/The Vault/P51
User:Prime Raptor21/Photon partials for 5S/The Vault/P52
User:Prime Raptor21/Photon partials for 5S/The Vault/P53
User:Prime Raptor21/Photon partials for 5S/The Vault/P54
User:Prime Raptor21/Photon partials for 5S/The Vault/P55
User:Prime Raptor21/Photon partials for 5S/The Vault/P56
User:Prime Raptor21/Photon partials for 5S/The Vault/P57
User:Prime Raptor21/Photon partials for 5S/The Vault/P58
User:Prime Raptor21/Photon partials for 5S/The Vault/P59
User:Prime Raptor21/Photon partials for 5S/The Vault/P61
User:Prime Raptor21/Photon partials for 5S/The Vault/P62
User:Prime Raptor21/Photon partials for 5S/The Vault/P63
User:Prime Raptor21/Photon partials for 5S/The Vault/P64
User:Prime Raptor21/Photon partials for 5S/The Vault/P65
User:Prime Raptor21/Photon partials for 5S/The Vault/P66
User:Prime Raptor21/Photon partials for 5S/The Vault/P67
User:Prime Raptor21/Photon partials for 5S/The Vault/P68
User:Prime Raptor21/Photon partials for 5S/The Vault/P69
User:Prime Raptor21/Photon partials for 5S/The Vault/P70
User:Prime Raptor21/Photon partials for 5S/The Vault/P71
User:Prime Raptor21/Photon partials for 5S/The Vault/P72
User:Prime Raptor21/Photon partials for 5S/The Vault/P73
User:Prime Raptor21/Photon partials for 5S/The Vault/P74
User:Prime Raptor21/Photon partials for 5S/The Vault/P75
User:Prime Raptor21/Photon partials for 5S/The Vault/P76
User:Prime Raptor21/Photon partials for 5S/The Vault/P77
User:Prime Raptor21/Photon partials for 5S/The Vault/P78
User:Prime Raptor21/Photon partials for 5S/The Vault/P79
User:Prime Raptor21/Photon partials for 5S/The Vault/P80
User:Prime Raptor21/Photon partials for 5S/The Vault/P81
User:Prime Raptor21/Photon partials for 5S/The Vault/P82
User:Prime Raptor21/Photon partials for 5S/The Vault/P83
User:Prime Raptor21/Photon partials for 5S/The Vault/P84
User:Prime Raptor21/Photon partials for 5S/The Vault/P85
User:Prime Raptor21/Photon partials for 5S/The Vault/P86
User:Prime Raptor21/Photon partials for 5S/The Vault/P87
User:Prime Raptor21/Photon partials for 5S/The Vault/P88
User:Prime Raptor21/Photon partials for 5S/The Vault/P89
User:Prime Raptor21/Photon partials for 5S/The Vault/P90
User:Prime Raptor21/Photon partials for 5S/The Vault/P91
User:Prime Raptor21/Photon partials for 5S/The Vault/P92
User:Prime Raptor21/Photon partials for 5S/The Vault/P93
User:Prime Raptor21/Photon partials for 5S/The Vault/P94
User:Prime Raptor21/Photon partials for 5S/The Vault/P95
User:Prime Raptor21/Photon partials for 5S/The Vault/P96
User:Prime Raptor21/Photon partials for 5S/The Vault/P97
User:Prime Raptor21/Photon partials for 5S/The Vault/P98
User:Prime Raptor21/Photon partials for 5S/The Vault/P99
User:Prime Raptor21/Photon partials for 5S/The Vault/P100
User:Prime Raptor21/Photon partials for 5S/The Vault/P101
User:Prime Raptor21/Photon partials for 5S/The Vault/P102
User:Prime Raptor21/Photon partials for 5S/The Vault/P103
User:Prime Raptor21/Photon partials for 5S/The Vault/P104
User:Prime Raptor21/Photon partials for 5S/The Vault/P105
User:Prime Raptor21/Photon partials for 5S/The Vault/P106
User:Prime Raptor21/Photon partials for 5S/The Vault/P107
User:Prime Raptor21/Photon partials for 5S/The Vault/P108
User:Prime Raptor21/Photon partials for 5S/The Vault/P109
User:Prime Raptor21/Photon partials for 5S/The Vault/P110
User:Prime Raptor21/Photon partials for 5S/The Vault/P111
User:Prime Raptor21/Photon partials for 5S/The Vault/P112
User:Prime Raptor21/Photon partials for 5S/The Vault/P113
User:Prime Raptor21/Photon partials for 5S/The Vault/P114
User:Prime Raptor21/Photon partials for 5S/The Vault/P115
User:Prime Raptor21/Photon partials for 5S/The Vault/P116
User:Prime Raptor21/Photon partials for 5S/The Vault/P117
User:Prime Raptor21/Photon partials for 5S/The Vault/P118
User:Prime Raptor21/Photon partials for 5S/The Vault/P119
User:Prime Raptor21/Photon partials for 5S/The Vault/P120
User:Prime Raptor21/Photon partials for 5S/The Vault/P121
User:Prime Raptor21/Photon partials for 5S/The Vault/P122
User:Prime Raptor21/Photon partials for 5S/The Vault/P123
User:Prime Raptor21/Photon partials for 5S/The Vault/P124
User:Prime Raptor21/Photon partials for 5S/The Vault/P125
User:Prime Raptor21/Photon partials for 5S/The Vault/P126
User:Prime Raptor21/Photon partials for 5S/The Vault/P127
User:Prime Raptor21/Photon partials for 5S/The Vault/P128
User:Prime Raptor21/Photon partials for 5S/The Vault/P129
User:Prime Raptor21/Photon partials for 5S/The Vault/P130
User:Prime Raptor21/Photon partials for 5S/The Vault/P131
User:Prime Raptor21/Photon partials for 5S/The Vault/P132
User:Prime Raptor21/Photon partials for 5S/The Vault/P133
User:Prime Raptor21/Photon partials for 5S/The Vault/P134
User:Prime Raptor21/Photon partials for 5S/The Vault/P135
User:Prime Raptor21/Photon partials for 5S/The Vault/P136
User:Prime Raptor21/Photon partials for 5S/The Vault/P137
User:Prime Raptor21/Photon partials for 5S/The Vault/P138
User:Prime Raptor21/Photon partials for 5S/The Vault/P139
User:Prime Raptor21/Photon partials for 5S/The Vault/P140
User:Prime Raptor21/Photon partials for 5S/The Vault/P141
User:Prime Raptor21/Photon partials for 5S/The Vault/P142
User:Prime Raptor21/Photon partials for 5S/The Vault/P143
User:Prime Raptor21/Photon partials for 5S/The Vault/P144
User:Prime Raptor21/Photon partials for 5S/The Vault/P145
User:Prime Raptor21/Photon partials for 5S/The Vault/P146
User:Prime Raptor21/Photon partials for 5S/The Vault/P147
User:Prime Raptor21/Photon partials for 5S/The Vault/P148
User:Prime Raptor21/Photon partials for 5S/The Vault/P149
User:Prime Raptor21/Photon partials for 5S/The Vault/P150
User:Prime Raptor21/Photon partials for 5S/The Vault/P151
User:Prime Raptor21/Photon partials for 5S/The Vault/P152
User:Prime Raptor21/Photon partials for 5S/The Vault/P153
User:Prime Raptor21/Photon partials for 5S/The Vault/P154
User:Prime Raptor21/Photon partials for 5S/The Vault/P155
User:Prime Raptor21/Photon partials for 5S/The Vault/P156
User:Prime Raptor21/Photon partials for 5S/The Vault/P157
User:Prime Raptor21/Photon partials for 5S/The Vault/P158
User:Prime Raptor21/Photon partials for 5S/The Vault/P159
User:Prime Raptor21/Photon partials for 5S/The Vault/P160
User:Prime Raptor21/Photon partials for 5S/The Vault/P161
User:Prime Raptor21/Photon partials for 5S/The Vault/P162
User:Prime Raptor21/Photon partials for 5S/The Vault/P163
User:Prime Raptor21/Photon partials for 5S/The Vault/P164
User:Prime Raptor21/Photon partials for 5S/The Vault/P165
User:Prime Raptor21/Photon partials for 5S/The Vault/P166
User:Prime Raptor21/Photon partials for 5S/The Vault/P167
User:Prime Raptor21/Photon partials for 5S/The Vault/P168
User:Prime Raptor21/Photon partials for 5S/The Vault/P169
User:Prime Raptor21/Photon partials for 5S/The Vault/P170
User:Prime Raptor21/Photon partials for 5S/The Vault/P171
User:Prime Raptor21/Photon partials for 5S/The Vault/P172
User:Prime Raptor21/Photon partials for 5S/The Vault/P173
User:Prime Raptor21/Photon partials for 5S/The Vault/P174
User:Prime Raptor21/Photon partials for 5S/The Vault/P175
User:Prime Raptor21/Photon partials for 5S/The Vault/P176
User:Prime Raptor21/Photon partials for 5S/The Vault/P177
User:Prime Raptor21/Photon partials for 5S/The Vault/P178
User:Prime Raptor21/Photon partials for 5S/The Vault/P179
User:Prime Raptor21/Photon partials for 5S/The Vault/P180
User:Prime Raptor21/Photon partials for 5S/The Vault/P181
User:Prime Raptor21/Photon partials for 5S/The Vault/P182
User:Prime Raptor21/Photon partials for 5S/The Vault/P183
User:Prime Raptor21/Photon partials for 5S/The Vault/P184
User:Prime Raptor21/Photon partials for 5S/The Vault/P185
User:Prime Raptor21/Photon partials for 5S/The Vault/P186
User:Prime Raptor21/Photon partials for 5S/The Vault/P187
User:Prime Raptor21/Photon partials for 5S/The Vault/P188
User:Prime Raptor21/Photon partials for 5S/The Vault/P189
User:Prime Raptor21/Photon partials for 5S/The Vault/P190
User:Prime Raptor21/Photon partials for 5S/The Vault/P191
User:Prime Raptor21/Photon partials for 5S/The Vault/P192
User:Prime Raptor21/Photon partials for 5S/The Vault/P193
User:Prime Raptor21/Photon partials for 5S/The Vault/P194
User:Prime Raptor21/Photon partials for 5S/The Vault/P196
User:Prime Raptor21/Photon partials for 5S/The Vault/P197
User:Prime Raptor21/Photon partials for 5S/The Vault/P198
User:Prime Raptor21/Photon partials for 5S/The Vault/P199
User:Prime Raptor21/Photon partials for 5S/The Vault/P200
User:Prime Raptor21/Photon partials for 5S/The Vault/P201
User:Prime Raptor21/Photon partials for 5S/The Vault/P202
User:Prime Raptor21/Photon partials for 5S/The Vault/P203
User:Prime Raptor21/Photon partials for 5S/The Vault/P204
User:Prime Raptor21/Photon partials for 5S/The Vault/P205
User:Prime Raptor21/Photon partials for 5S/The Vault/P206
User:Prime Raptor21/Photon partials for 5S/The Vault/P207
User:Prime Raptor21/Photon partials for 5S/The Vault/P208
User:Prime Raptor21/Photon partials for 5S/The Vault/P209
User:Prime Raptor21/Photon partials for 5S/The Vault/P210
User:Prime Raptor21/Photon partials for 5S/The Vault/P212
User:Prime Raptor21/Photon partials for 5S/The Vault/P213
User:Prime Raptor21/Photon partials for 5S/The Vault/P214
User:Prime Raptor21/Photon partials for 5S/The Vault/P215
User:Prime Raptor21/Photon partials for 5S/The Vault/P216
User:Prime Raptor21/Photon partials for 5S/The Vault/P217
User:Prime Raptor21/Photon partials for 5S/The Vault/P218
User:Prime Raptor21/Photon partials for 5S/The Vault/P219
User:Prime Raptor21/Photon partials for 5S/The Vault/P220
User:Prime Raptor21/Photon partials for 5S/The Vault/P221
User:Prime Raptor21/Photon partials for 5S/The Vault/P222
User:Prime Raptor21/Photon partials for 5S/The Vault/P223
User:Prime Raptor21/Photon partials for 5S/The Vault/P225
User:Prime Raptor21/Photon partials for 5S/The Vault/P228
User:Prime Raptor21/Photon partials for 5S/The Vault/P230
User:Prime Raptor21/Photon partials for 5S/The Vault/P231
User:Prime Raptor21/Photon partials for 5S/The Vault/P233
User:Prime Raptor21/Photon partials for 5S/The Vault/P234
User:Prime Raptor21/Photon partials for 5S/The Vault/P236
User:Prime Raptor21/Photon partials for 5S/The Vault/P238
User:Prime Raptor21/Photon partials for 5S/The Vault/P239
User:Prime Raptor21/Photon partials for 5S/The Vault/P240
User:Prime Raptor21/Photon partials for 5S/The Vault/P241
User:Prime Raptor21/Photon partials for 5S/The Vault/P247
User:Prime Raptor21/Photon partials for 5S/The Vault/P248
User:Prime Raptor21/Photon partials for 5S/The Vault/P252
User:Prime Raptor21/Photon partials for 5S/The Vault/P254
User:Prime Raptor21/Photon partials for 5S/The Vault/P255
User:Prime Raptor21/Photon partials for 5S/The Vault/P259
User:Prime Raptor21/Photon partials for 5S/The Vault/P260
User:Prime Raptor21/Photon partials for 5S/The Vault/P262
User:Prime Raptor21/Photon partials for 5S/The Vault/P264
User:Prime Raptor21/Photon partials for 5S/The Vault/P266
User:Prime Raptor21/Photon partials for 5S/The Vault/P268
User:Prime Raptor21/Photon partials for 5S/The Vault/P270
User:Prime Raptor21/Photon partials for 5S/The Vault/P272
User:Prime Raptor21/Photon partials for 5S/The Vault/P273
User:Prime Raptor21/Photon partials for 5S/The Vault/P274
User:Prime Raptor21/Photon partials for 5S/The Vault/P275
User:Prime Raptor21/Photon partials for 5S/The Vault/P276
User:Prime Raptor21/Photon partials for 5S/The Vault/P278
User:Prime Raptor21/Photon partials for 5S/The Vault/P279
User:Prime Raptor21/Photon partials for 5S/The Vault/P280
User:Prime Raptor21/Photon partials for 5S/The Vault/P282
User:Prime Raptor21/Photon partials for 5S/The Vault/P283
User:Prime Raptor21/Photon partials for 5S/The Vault/P285
User:Prime Raptor21/Photon partials for 5S/The Vault/P286
User:Prime Raptor21/Photon partials for 5S/The Vault/P287
User:Prime Raptor21/Photon partials for 5S/The Vault/P288
User:Prime Raptor21/Photon partials for 5S/The Vault/P294
User:Prime Raptor21/Photon partials for 5S/The Vault/P295
User:Prime Raptor21/Photon partials for 5S/The Vault/P296
User:Prime Raptor21/Photon partials for 5S/The Vault/P297
User:Prime Raptor21/Photon partials for 5S/The Vault/P300
User:Prime Raptor21/Photon partials for 5S/The Vault/P304
User:Prime Raptor21/Photon partials for 5S/The Vault/P308
User:Prime Raptor21/Photon partials for 5S/The Vault/P310
User:Prime Raptor21/Photon partials for 5S/The Vault/P312
User:Prime Raptor21/Photon partials for 5S/The Vault/P315
User:Prime Raptor21/Photon partials for 5S/The Vault/P318
User:Prime Raptor21/Photon partials for 5S/The Vault/P320
User:Prime Raptor21/Photon partials for 5S/The Vault/P322
User:Prime Raptor21/Photon partials for 5S/The Vault/P330
User:Prime Raptor21/Photon partials for 5S/The Vault/P339
User:Prime Raptor21/Photon partials for 5S/The Vault/P341
User:Prime Raptor21/Photon partials for 5S/The Vault/P346
User:Prime Raptor21/Photon partials for 5S/The Vault/P352
User:Prime Raptor21/Photon partials for 5S/The Vault/P360
User:Prime Raptor21/Photon partials for 5S/The Vault/P363
User:Prime Raptor21/Photon partials for 5S/The Vault/P364
User:Prime Raptor21/Photon partials for 5S/The Vault/P369
User:Prime Raptor21/Photon partials for 5S/The Vault/P372
User:Prime Raptor21/Photon partials for 5S/The Vault/P376
User:Prime Raptor21/Photon partials for 5S/The Vault/P381
User:Prime Raptor21/Photon partials for 5S/The Vault/P382
User:Prime Raptor21/Photon partials for 5S/The Vault/P383
User:Prime Raptor21/Photon partials for 5S/The Vault/P392
User:Prime Raptor21/Photon partials for 5S/The Vault/P394
User:Prime Raptor21/Photon partials for 5S/The Vault/P399
User:Prime Raptor21/Photon partials for 5S/The Vault/P403
User:Prime Raptor21/Photon partials for 5S/The Vault/P413
User:Prime Raptor21/Photon partials for 5S/The Vault/P414
User:Prime Raptor21/Photon partials for 5S/The Vault/P420
User:Prime Raptor21/Photon partials for 5S/The Vault/P426
User:Prime Raptor21/Photon partials for 5S/The Vault/P428
User:Prime Raptor21/Photon partials for 5S/The Vault/P434
User:Prime Raptor21/Photon partials for 5S/The Vault/P435
User:Prime Raptor21/Photon partials for 5S/The Vault/P447
User:Prime Raptor21/Photon partials for 5S/The Vault/P448
User:Prime Raptor21/Photon partials for 5S/The Vault/P456
User:Prime Raptor21/Photon partials for 5S/The Vault/P459
User:Prime Raptor21/Photon partials for 5S/The Vault/P462
User:Prime Raptor21/Photon partials for 5S/The Vault/P464
User:Prime Raptor21/Photon partials for 5S/The Vault/P465
User:Prime Raptor21/Photon partials for 5S/The Vault/P467
User:Prime Raptor21/Photon partials for 5S/The Vault/P476
User:Prime Raptor21/Photon partials for 5S/The Vault/P480
User:Prime Raptor21/Photon partials for 5S/The Vault/P482
User:Prime Raptor21/Photon partials for 5S/The Vault/P483
User:Prime Raptor21/Photon partials for 5S/The Vault/P485
User:Prime Raptor21/Photon partials for 5S/The Vault/P489
User:Prime Raptor21/Photon partials for 5S/The Vault/P501
User:Prime Raptor21/Photon partials for 5S/The Vault/P504
User:Prime Raptor21/Photon partials for 5S/The Vault/P506
User:Prime Raptor21/Photon partials for 5S/The Vault/P508
User:Prime Raptor21/Photon partials for 5S/The Vault/P510
User:Prime Raptor21/Photon partials for 5S/The Vault/P511
User:Prime Raptor21/Photon partials for 5S/The Vault/P514
User:Prime Raptor21/Photon partials for 5S/The Vault/P536
User:Prime Raptor21/Photon partials for 5S/The Vault/P543
User:Prime Raptor21/Photon partials for 5S/The Vault/P546
User:Prime Raptor21/Photon partials for 5S/The Vault/P549
User:Prime Raptor21/Photon partials for 5S/The Vault/P558
User:Prime Raptor21/Photon partials for 5S/The Vault/P570
User:Prime Raptor21/Photon partials for 5S/The Vault/P572
User:Prime Raptor21/Photon partials for 5S/The Vault/P574
User:Prime Raptor21/Photon partials for 5S/The Vault/P583
User:Prime Raptor21/Photon partials for 5S/The Vault/P585
User:Prime Raptor21/Photon partials for 5S/The Vault/P608
User:Prime Raptor21/Photon partials for 5S/The Vault/P619
User:Prime Raptor21/Photon partials for 5S/The Vault/P620
User:Prime Raptor21/Photon partials for 5S/The Vault/P630
User:Prime Raptor21/Photon partials for 5S/The Vault/P635
User:Prime Raptor21/Photon partials for 5S/The Vault/P646
User:Prime Raptor21/Photon partials for 5S/The Vault/P651
User:Prime Raptor21/Photon partials for 5S/The Vault/P682
User:Prime Raptor21/Photon partials for 5S/The Vault/P684
User:Prime Raptor21/Photon partials for 5S/The Vault/P694
User:Prime Raptor21/Photon partials for 5S/The Vault/P699
User:Prime Raptor21/Photon partials for 5S/The Vault/P708
User:Prime Raptor21/Photon partials for 5S/The Vault/P732
User:Prime Raptor21/Photon partials for 5S/The Vault/P762
User:Prime Raptor21/Photon partials for 5S/The Vault/P780
User:Prime Raptor21/Photon partials for 5S/The Vault/P819
User:Prime Raptor21/Photon partials for 5S/The Vault/P826
User:Prime Raptor21/Photon partials for 5S/The Vault/P840
User:Prime Raptor21/Photon partials for 5S/The Vault/P868
User:Prime Raptor21/Photon partials for 5S/The Vault/P889
User:Prime Raptor21/Photon partials for 5S/The Vault/P930
User:Prime Raptor21/Photon partials for 5S/The Vault/P961
User:Prime Raptor21/Photon partials for 5S/The Vault/P990
User:Prime Raptor21/Photon partials for 5S/The Vault/P1013
User:Prime Raptor21/Photon partials for 5S/The Vault/P1016
User:Prime Raptor21/Photon partials for 5S/The Vault/P1020
User:Prime Raptor21/Photon partials for 5S/The Vault/P1022
User:Prime Raptor21/Photon partials for 5S/The Vault/P1023
User:Prime Raptor21/Photon partials for 5S/The Vault/P1073
User:Prime Raptor21/Photon partials for 5S/The Vault/P1085
User:Prime Raptor21/Photon partials for 5S/The Vault/P1094
User:Prime Raptor21/Photon partials for 5S/The Vault/P1113
User:Prime Raptor21/Photon partials for 5S/The Vault/P1146
User:Prime Raptor21/Photon partials for 5S/The Vault/P1190
User:Prime Raptor21/Photon partials for 5S/The Vault/P1207
User:Prime Raptor21/Photon partials for 5S/The Vault/P1250
User:Prime Raptor21/Photon partials for 5S/The Vault/P1365
User:Prime Raptor21/Photon partials for 5S/The Vault/P1454
User:Prime Raptor21/Photon partials for 5S/The Vault/P1524
User:Prime Raptor21/Photon partials for 5S/The Vault/P1533
User:Prime Raptor21/Photon partials for 5S/The Vault/P1663
User:Prime Raptor21/Photon partials for 5S/The Vault/P1676
User:Prime Raptor21/Photon partials for 5S/The Vault/P1714
User:Prime Raptor21/Photon partials for 5S/The Vault/P1771
User:Prime Raptor21/Photon partials for 5S/The Vault/P1778
User:Prime Raptor21/Photon partials for 5S/The Vault/P1785
User:Prime Raptor21/Photon partials for 5S/The Vault/P1860
User:Prime Raptor21/Photon partials for 5S/The Vault/P1880
User:Prime Raptor21/Photon partials for 5S/The Vault/P1905
User:Prime Raptor21/Photon partials for 5S/The Vault/P1953
User:Prime Raptor21/Photon partials for 5S/The Vault/P2044
User:Prime Raptor21/Photon partials for 5S/The Vault/P2046
User:Prime Raptor21/Photon partials for 5S/The Vault/P2047
User:Prime Raptor21/Photon partials for 5S/The Vault/P2239
User:Prime Raptor21/Photon partials for 5S/The Vault/P2467
User:Prime Raptor21/Photon partials for 5S/The Vault/P2504
User:Prime Raptor21/Photon partials for 5S/The Vault/P2643
User:Prime Raptor21/Photon partials for 5S/The Vault/P2644
User:Prime Raptor21/Photon partials for 5S/The Vault/P3298
User:Prime Raptor21/Photon partials for 5S/The Vault/P3810
User:Prime Raptor21/Photon partials for 5S/The Vault/P3937
User:Prime Raptor21/Photon partials for 5S/The Vault/P4094
User:Prime Raptor21/Photon partials for 5S/The Vault/P4095"""
pageslist = pages.split("\n")
count = len(pageslist)
for article in pageslist:
url = ("https://conwaylife.com/wiki/" + article).replace(" ","_")
outfname = article.replace("User:Prime Raptor21/Photon partials for 5S/","").replace("/","_") + ".txt"
response = urllib.request.urlopen(url)
html = str(response.read())
i1 = html.index("<pre>")
i2 = html.index("</pre>")
with open(outpath + outfname,"w") as f:
output = html[i1+5:i2].replace("\\n","\n").strip()
f.write(output)
g.show(str(count) + " : " + str(len(output)))
count -= 1
g.show("Done.")
1) the list of articles at the top of the script,
2) the fact that each automatically-generated article started with "<pre>" and ended with "</pre>", so there's a little bit of code at the end that extracts just the text between "<pre>" and "</pre>" and sends that to a file.
Something very similar could be done for other LifeWiki data extraction problems, with minor changes to the code.
Not as big as I thought...
It turns out that when you compress the script's output files, they only come to 1.2 megabytes. Here's the archive:
Re: Golly scripts
Code: Select all
import random
li = [chr(n) for n in range(65, 91)] + [chr(n) for n in range(97, 123)] + [chr(n) for n in range(48, 58)] + ['+', '/']
def randomap():
mapstr = 'MAP'
for n in range(86):
mapstr += li[random.randrange(random.randrange(random.randrange(64)+1)+1)]
return mapstr
if __name__ == "__main__":
print(randomap())
else:
import golly
golly.setrule(randomap())
Some interesting outputs:
Code: Select all
x = 2, y = 4, rule = MAPAFVBDLCEASEEDEBAeEIDUAABSNNCHALALPACLMAHCGSDHFBAGAJZMKAKbCDXBDIHMVFJCAwGACOKCBAEBDGFDA
o2$bo$o!
Code: Select all
x = 89, y = 12, rule = MAPAcABBaGeAMAKABBPFNCDAAITEBEAPAAMCYFCsLPFS9EMBYCEDCeCDBNXSAgAHJAABHTAABRIACBGZBAFdAABEA
2$4bo$3bobo$71bo$3bo55b29o$3bo51b4o12bo$3bo43b8o16bo$3bo41b2o24bo$3bo
67bo$3bo67bo$3bo!
Code: Select all
x = 5, y = 4, rule = MAPHCMAKDSDRGbLJAAABfMBBBHPBMSgCRACTEECABICCQERTBZqQDGACLDAlCBDIFRNALNBHAGACfAQVAFCBjBJHA
$4bo$2bo$bo!
Code: Select all
x = 19, y = 5, rule = MAPNAJAFBGOABEAHEAFSAUmMgCAeaCJXGCOlEoGFRMAJEKDEZCHEAFDBACAFFLYOiGIFPUFAUBXTQOOEJesKIAOBA
2o14b2o$2o14bo$2o14bo$2o14b2o$bo12bo2bo!
Code: Select all
x = 5, y = 36, rule = MAPBCSABBtAHCEIATFERACAPQCDAWCIBMDEARFGAIABGACQdEEKCPCAACBACEAGODCEEAcACBAPHfnBAAkiLDKACQ
5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$
5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o$5o!
I'm making a poll. please contribute.
First gun i constructed:
Code: Select all
x = 69, y = 69, rule = B3-n/S1e2-a3-e4e
2$32b3o$32bobo$32bobo$32b3o27$63b4o$b4o58bo2bo$bo2bo23bo4b2o28b4o$b4o
21bobo$28bo21$35bo$34b3o6$33b3o$33bobo$33bobo$33b3o!
Re: Golly scripts
I've moved a response by b-engine out to the "Miscellaneous Discoveries in Other Cellular Automata" thread, just because this "Golly scripts" thread needs to be about Golly scripts, not extended reports of things that a particular script produces.
However, one part of that post was really more relevant to this thread:
Re: Golly scripts
After i finally figured out how to toggle individual transitions in MAP rules, i made this:
Code: Select all
import random,base64
def randomap():
bits = bytearray(64)
for n in range(512):
if (not n in [1,2,4,8,32,64,128,256]) and random.randrange(3) == 0:
bits[n // 8] |= (0x80 >> (n % 8))
return "MAP" + base64.b64encode(bits).decode('ascii').strip("=")
if __name__ == "__main__":
print(randomap())
else:
import golly
golly.setrule(randomap())
Example output:
Code: Select all
x = 25, y = 18, rule = MAPAgFqoA2HKpoWxCggISgoOB48gW5KhE25JJJskOJRAC8QJPjghpkELA4MSiR3bAUGgPQxEGXAcMiCBX1+IOJg+A
$11bo$11bo$11bo$2bo8bo$2b5o4bo$7b8o$11bo$11bo$11bo$11bo11bo$11bo$11bo$
11bo$11bo$12bo$12bo!
Code: Select all
import random,base64
def randomap():
bits = bytearray(64)
for n in range(512):
if (not n in [0,1,2,4,8,32,64,128,256,3,6,9,36,72,192,288,384]) and random.randrange(2) == 0:
bits[n // 8] |= (0x80 >> (n % 8))
return "MAP" + base64.b64encode(bits).decode('ascii').strip("=")
if __name__ == "__main__":
print(randomap())
else:
import golly
golly.setrule(randomap())
Code: Select all
x = 25, y = 30, rule = MAPADXh4ANyV1U3d7FJ5Vq1ITlqxjGmqPA0WOez8kU5i2MXpd6IVq2P7X5ymu7X7wJsRKYer8LonpouLE6d2+Fo3g
2$12bo$11bo7bo$11bo7bo$10bo8bo$10bo8bobo$9bo9bo$9bo9bo$8bo10bo$8bo10bo
$7bo11bo$7bo11bo$6bo12bo$6bo12bo$5bo13bo$5bo13bo$20bo$21bo$22bo6$2bo$
3bo$b3o!
Code: Select all
x = 67, y = 52, rule = MAPBALlxwV5TgUrFlPhJl3EXyGXwtb6euRbQ1YRoZtQLWp/DlEpTfDYupbir8dtJZdsHnhnnhNksAfSfOZLVblmCA
2$10b3o$11bo21$50b2o$50bo$47bo2bo$47bobo$46bo2bo$46bo2bo$46bobo$12bo
33bobo$12b2o32bobo$45bo2b7o$3bo41b4o5bo$2b3o6bobo30bo2bo$12bo30b2o2bo$
46bo15b3o$46bo4b11o$36b15o$26b10o10bo$46bo$45bo$45bo$45bo$45bo$45bo$
45bo$44b2o!
I'm making a poll. please contribute.
First gun i constructed:
Code: Select all
x = 69, y = 69, rule = B3-n/S1e2-a3-e4e
2$32b3o$32bobo$32bobo$32b3o27$63b4o$b4o58bo2bo$bo2bo23bo4b2o28b4o$b4o
21bobo$28bo21$35bo$34b3o6$33b3o$33bobo$33bobo$33b3o!
Re: Golly scripts
I invented a notation for MAP rules, which is used in the following script for defining custom MAP rules:
Code: Select all
import base64
letter_to_number = {
'z': 0,
'u': 128,
'd': 2,
'l': 32,
'r': 8,
'h': 40,
'v': 130,
'w': 42,
'c': 162,
'q': 138,
'n': 168,
'f': 160,
'g': 136,
'i': 10,
'j': 34,
'a': 170,
'Z': 0,
'U': 256,
'D': 1,
'L': 4,
'R': 64,
'H': 68,
'V': 257,
'W': 69,
'C': 261,
'Q': 321,
'N': 324,
'F': 260,
'G': 320,
'I': 65,
'J': 5,
'A': 325}
def customap(rulestring):
bits = bytearray(64)
n = 0
n_base = 0
for char in rulestring:
if char in ['b', 'B']:
n = n_base = 0
char_ = False
elif char in ['/', ',']:
if char_:
bits[n // 8] |= (0x80 >> (n % 8))
n = n_base
char_ = False
elif char in ['/', 's', 'S']:
n = n_base = 16
else:
char_ = True
n += letter_to_number[char]
if char_:
bits[n // 8] |= (0x80 >> (n % 8))
n = n_base
return "MAP" + base64.b64encode(bits).decode('ascii').strip("=")
if __name__ == "__main__":
rstr = input('Type a rulestring: ')
print(customap(rstr))
else:
import golly
rstr = golly.getstring("Type a rulestring, using the notation documented at conwaylife.com/wiki/User:iddi01/Anisotropic_rule_notation: ")
golly.setrule(customap(rstr))
try:
f = open(golly.getdir('rules') + "mapstrings.txt", 'r+')
f.read()
except FileNotFoundError:
f = open(golly.getdir('rules') + "mapstrings.txt", 'w')
f.write(rstr + " = " + customap(rstr) + '\n')
f.close()
Whenever you set a rule using the script, the rulestring you typed and the corresponding MAP string is saved in mapstrings.txt in Golly's rule folder. That way, you can reuse a rule without having to type the rulestring again.
Example of what it generates:
A rule which emulates W110 at the upper and lower edge of a pattern and is chaotic within it (BzR,uZ,uU,uR,G,zL,dZ,dL,dD,J/S):
Code: Select all
x = 1, y = 1, rule = MAPPgAAAAAAAACAAAAAAAAAAIAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAA
o!
I'm making a poll. please contribute.
First gun i constructed:
Code: Select all
x = 69, y = 69, rule = B3-n/S1e2-a3-e4e
2$32b3o$32bobo$32bobo$32b3o27$63b4o$b4o58bo2bo$bo2bo23bo4b2o28b4o$b4o
21bobo$28bo21$35bo$34b3o6$33b3o$33bobo$33bobo$33b3o!
- confocaloid
- Posts: 4268
- Joined: February 8th, 2022, 3:15 pm
- Location: https://catagolue.hatsya.com/census/b3s234c/C4_4/xp62
Re: Golly scripts
iddi01 wrote: ↑April 21st, 2024, 6:49 amI invented a notation for MAP rules, which is used in the following script for defining custom MAP rules:
Unlikely events happen.
My silence does not imply agreement, nor indifference. If I disagreed with something in the past, then please do not construe my silence as something that could change that.
Re: Golly scripts
Code: Select all
import copy, golly as g
rule = "insert rule here"
g.setrule(rule)
longest = 185
while 1:
generation = 0
g.new("")
g.select([-5,-5,10,10])
g.randfill(40)
clist = g.getcells([-5,-5,10,10])
poplist = []
while 1:
g.run(1)
generation += 1
population = g.getpop()
if poplist.count(population) > 10 + generation // 250:
break
poplist.append(population)
if generation>longest:
longest = generation
g.new("")
g.putcells(clist)
g.fit()
g.update()
g.save("insert file path here/methuselah"+str(longest)+"-"+rule.replace('/', '_'),"rle")
g.show("New best methuselah: " + str(longest))
Note: The script does not work with rules that have common linear growth.
Another note: The lifespan provided by the script is only an approximation, so it's recommended that you check the lifespan of the soup yourself.
It has found the 9-generation predecessor of this methuselah:
Code: Select all
x = 10, y = 10, rule = B35cek6e/S23-k4i
6bobo$2b3o$b2obo4bo$b3o$o2bo3bobo$2bo6bo$3o3bobo$4bobo2bo$o5bo$o8bo!
#C [[ STOP 9 ]]
Code: Select all
x = 10, y = 10, rule = B2i3-kq4j5y7/S2-i34centw5e
o2b3obobo$2b2o$obobo4bo$o2b2o$bo5bo$o2b4o$7b2o$o2bo2bobo$4obobo$2bo4b
2o!
I'm making a poll. please contribute.
First gun i constructed:
Code: Select all
x = 69, y = 69, rule = B3-n/S1e2-a3-e4e
2$32b3o$32bobo$32bobo$32b3o27$63b4o$b4o58bo2bo$bo2bo23bo4b2o28b4o$b4o
21bobo$28bo21$35bo$34b3o6$33b3o$33bobo$33bobo$33b3o!
Re: Golly scripts
It can be made twice faster by moving g.new out of the loop:iddi01 wrote: ↑May 27th, 2024, 12:46 pmA lightweight methuselah searcher partially based on dvgrn's blob searcher: ...
Code: Select all
import copy, golly as g
rule = "insert rule here"
g.setrule(rule)
g.new("")
longest = 185
while 1:
generation = 0
bbox = g.getrect()
if bbox:
g.select(bbox)
g.clear(0)
g.select([-5,-5,10,10])
g.randfill(40)
clist = g.getcells([-5,-5,10,10])
poplist = []
while 1:
g.run(1)
generation += 1
population = g.getpop()
if poplist.count(population) > 10 + generation // 250:
break
poplist.append(population)
if generation>longest:
longest = generation
g.new("")
g.putcells(clist)
g.fit()
g.update()
g.save("insert file path here/methuselah" + str(longest) + "-" +
rule.replace('/', '_').replace(':', '_') + ".rle", "rle")
g.show("New best methuselah: " + str(longest))
- H. H. P. M. P. Cole
- Posts: 305
- Joined: July 15th, 2023, 9:36 pm
Re: Golly scripts
The principle is that if the average bounding box of a soup after some number of generations is high and the average population of the same soup after the same number of generations is low then there might be small ships. Of course, a false negative could be where the only common ship is small and slow, and a false positive could be when there is a small linear growth pattern (or there are no common moving patterns at all and soups in the rule are just extremely long-living), but still, these programs are generally successful.
Code: Select all
import golly as g
import random
resultsFile = 'interestingrules-test.txt'
coefficient = 1/12
bbsize = 64
soupsperrule = 64
def getbb(celllist):
maxx = 0
minx = 0
maxy = 0
miny = 0
for cellcoord in range(0, len(celllist)//2):
if celllist[2*cellcoord] > maxx:
maxx = celllist[2*cellcoord]
if celllist[2*cellcoord] < minx:
minx = celllist[2*cellcoord]
if celllist[2*cellcoord+1] > maxy:
maxy = celllist[2*cellcoord+1]
if celllist[2*cellcoord+1] < miny:
miny = celllist[2*cellcoord+1]
return [maxx-minx, maxy-miny]
def randrule(coefficient):
birth = []
survival = []
valid = False
while valid == False:
birth = []
survival = []
for i in range(1, 125):
r = random.randint(0, 255)
if r <= 256*coefficient:
birth.append(i)
for i in range(0, 125):
r = random.randint(0, 255)
if r <= 256*coefficient:
survival.append(i)
if (not (1 in birth)) and (not (5 in birth)) and (not (25 in birth)) and not (6 in birth and 30 in birth) and not (6 in birth and 31 in birth and 30 in survival) and (6 in birth or 26 in birth or 30 in birth or 31 in birth):
valid = True
if valid == True:
s = 'R3,C2,S'
for i in survival:
s = s + str(i)+','
s = s + 'B'
for i in birth:
s = s + str(i)+','
s = s + 'NW00000001000000000000050000000000001900000001051900190501000000190000000000000500000000000001000000'
return s
def clear_layer():
r = g.getrect()
if r:
g.select(r)
g.clear(0)
return
rulecount = 0
intrulecount = 0
while True:
g.new('')
rule = randrule(coefficient)
g.setrule(rule)
bbxl = []
bbyl = []
popl = []
popm = []
for soups in range(0, soupsperrule):
clear_layer()
g.show(str(rulecount)+' rules tested, '+str(soups)+' soups out of 64, '+str(intrulecount)+' possibly interesting rules')
g.select([0,0,bbsize,bbsize])
g.randfill(25)
g.run(64)
bb = getbb(g.getcells(g.getrect()))
bbxl.append(bb[0])
bbyl.append(bb[1])
popl.append(int(g.getpop()))
g.select([0,0,bbsize,bbsize])
g.clear(1)
popm.append(int(g.getpop()))
bbxaverage = sum(bbxl)/soupsperrule
bbyaverage = sum(bbyl)/soupsperrule
popaverage = sum(popl)/soupsperrule
popinboxaverage = sum(popm)/soupsperrule
with open(resultsFile, 'a') as rF:
if (bbxaverage)*(bbyaverage)/(bbsize**2) > 1.5 and popinboxaverage < 0.9*popaverage and popaverage < (bbsize**2)/16:
intrulecount = intrulecount+1
rF.write(rule+'\n')
rulecount = rulecount+1
Code: Select all
import golly as g
import random
resultsFile = 'interestingrules-test.txt'
coefficient = 1/12
bbsize = 64
soupsperrule = 64
conditions = ['0',
'1c','1e',
'2a','2c','2e','2k','2i','2n',
'3a','3c','3e','3i','3k','3n','3y','3q','3j','3r',
'4a','4c','4e','4i','4k','4n','4y','4q','4j','4r','4t','4w','4z',
'5a','5c','5e','5i','5k','5n','5y','5q','5j','5r',
'6a','6c','6e','6k','6i','6n',
'7c','7e',
'8']
birth1 = ['2c','3i']
birth2 = ['2e','3a']
def getbb(celllist):
maxx = 0
minx = 0
maxy = 0
miny = 0
for cellcoord in range(0, len(celllist)//2):
if celllist[2*cellcoord] > maxx:
maxx = celllist[2*cellcoord]
if celllist[2*cellcoord] < minx:
minx = celllist[2*cellcoord]
if celllist[2*cellcoord+1] > maxy:
maxy = celllist[2*cellcoord+1]
if celllist[2*cellcoord+1] < miny:
miny = celllist[2*cellcoord+1]
return [maxx-minx, maxy-miny]
def randrule(coefficient):
birth = []
survival = []
valid = False
while valid == False:
bbcount = 0
bdcount = 0
birth = []
for i in range(0, 2):
r = random.randint(0, 255)
if r <= 127:
birth.append(birth1[i])
bbcount = bbcount+1
for i in range(0, 2):
r = random.randint(0, 255)
if r <= 127:
birth.append(birth2[i])
bdcount = bdcount+1
if bbcount >= 1 and bdcount >= 1:
valid = True
if valid == True:
for i in range(4, 51):
r = random.randint(0, 255)
if r <= 256*coefficient and conditions[i] not in birth1 and conditions[i] not in birth2:
birth.append(conditions[i])
for i in range(0, 51):
r = random.randint(0, 255)
if r <= 256*coefficient:
survival.append(conditions[i])
s = 'B'
for i in birth:
s = s + str(i)
s = s + '/S'
for i in survival:
s = s + str(i)
return s
def clear_layer():
r = g.getrect()
if r:
g.select(r)
g.clear(0)
return
rulecount = 0
intrulecount = 0
while True:
g.new('')
rule = randrule(coefficient)
g.setrule(rule)
bbxl = []
bbyl = []
popl = []
popm = []
for soups in range(0, soupsperrule):
clear_layer()
g.show(str(rulecount)+' rules tested, '+str(soups)+' soups out of 64, '+str(intrulecount)+' possibly interesting rules')
g.select([0,0,bbsize,bbsize])
g.randfill(25)
g.run(64)
bb = getbb(g.getcells(g.getrect()))
bbxl.append(bb[0])
bbyl.append(bb[1])
popl.append(int(g.getpop()))
g.select([0,0,bbsize,bbsize])
g.clear(1)
popm.append(int(g.getpop()))
bbxaverage = sum(bbxl)/soupsperrule
bbyaverage = sum(bbyl)/soupsperrule
popaverage = sum(popl)/soupsperrule
popinboxaverage = sum(popm)/soupsperrule
with open(resultsFile, 'a') as rF:
if (bbxaverage)*(bbyaverage)/(bbsize**2) > 1.5 and popinboxaverage < 0.9*popaverage and popaverage < (bbsize**2)/16:
intrulecount = intrulecount+1
rF.write(rule+'\n')
rulecount = rulecount+1
EDIT3: Added detection of a rulespace (in the HROT weighted version) that is known to support a small replicator, making this rulespace explosive (to the best of my knowledge).
Re: Golly scripts
Edit: Oups, I'm on error.
It's not for 2SL OTTs but for 2SL Splitters.
I made a Python 3 script to fast find if a 2 Still Life is an OTT or not.
It needs two more files :
- rle file containing all the OTTs - arranged by me
- a text file containing the locations of all 2 SL plus its corresponding rle string
How to use it :
Works with B3/S23 and LifeHistory rules (I didn't tried other rules).
- select a living 2 SL constellation in any pattern
- run the script
- if there are no matches found, the script just exits with a "No match found" message.
- else the 2 SL OTTs rle file will be opened in a new layer with a focus on the first found.
Here is the script :
You need to indicate the two absolute paths of the files (rle and txt) at lines 15 and 18
Code: Select all
### Two Still Lifes Glider Splitter Identifer
#
# HOW TO :
# - select a living 2 SL constellation in B3/S23 or LifeHistory universe of your choice.
# - run the script
# - press 'h' to get a help in case of finding.
#
# Author : Tawal
############## ENTER HERE THE ABSOLUTE PATH OF THE NEEDED FILES ###############
### Register file
register_file = "HERE : ABSOLUTE PATH OF REGISTER TEXT FILE"
### Splitters rle file
splitters_file = "HERE : ABSOLUTE PATH OF 2SL SPLITTERS RLE FILE"
#######################################################################
### Imports
import golly as g
import re
import os
### Functions
def cells(clist):
return sorted([ (clist[i], clist[i+1]) for i in range(0, len(clist)-1, 2) ])
def clist2rect(clist):
x, y = min(clist[::2]), min(clist[1::2])
w, h = max(clist[::2])-x, max(clist[1::2])-y
return [x, y, w ,h]
def focus(loc, z):
g.select([ loc[0] - (z - loc[2])//2, loc[1] - (z - loc[3])//2, z, z ])
g.fitsel()
g.select([])
g.update()
def chg2states(clist):
new_clist = []
for i in range(1, len(clist)//3 +1):
if clist[3*i-1]%2 == 1:
new_clist.append(clist[3*(i-1)])
new_clist.append(clist[3*i - 2])
return new_clist
def clist2rle(clist):
x, y, w, h = clist2rect(clist)
clist = cells(clist)
rle = ""
for dy in range(h+1):
o, b = 1, 1
for dx in range(w+1):
if (x + dx, y + dy) in clist:
if rle[-1::] == "o":
o += 1
b = 1
rle = re.sub('(|\d+)o$', str(o), rle)
rle += "o"
else:
if rle[-1::] == "b":
b += 1
o = 1
rle = re.sub('(|\d+)b$', str(b), rle)
rle += "b"
rle += "$"
return rle[:-1] + "!"
### Is script valid to run ###
g.shrink()
sel = g.getcells(g.getselrect())
if sel == []:
g.exit("No selection !")
no_file = ""
if not os.path.isfile(register_file):
no_file = register_file
if not os.path.isfile(splitters_file):
no_file += " " + splitters_file
if no_file:
g.exit("File(s) not found : " + no_file)
### Handle the selection
if g.numstates()>2:
sel = chg2states(sel)
### All possibles orientations of selection (rle string)
aSel = []
aSel.append(clist2rle(sel)) # 0°
aSel.append(clist2rle(g.transform(sel, 0, 0, -1, 0, 0, -1))) # 180°
aSel.append(clist2rle(g.transform(sel, 0, 0, 0, -1, 1, 0))) # -90°
aSel.append(clist2rle(g.transform(sel, 0, 0, 0, 1, -1, 0))) # +90°
# Uniq orientations
u_Sels = []
[u_Sels.append(rle) for rle in aSel if rle not in u_Sels ]
ott_locs = []
with open(register_file, "r") as f:
for line in f:
ott = line.split(":")[1].replace("\n", "")
for pat in u_Sels:
if str(pat) == str(ott):
r_ott = line.split(":")[0].split(",")
r_ott = [ int(s) for s in r_ott ]
ott_locs.append(r_ott)
f.close()
if ott_locs == []:
g.exit("No match found.")
num = 0
n_locs = len(ott_locs)
gen = g.getbase()**g.getstep()
g.addlayer()
g.open(splitters_file)
while True:
focus(ott_locs[num], 80)
event = g.getevent()
g.show("Press <h> for help. Press <esc> to quit the script. Finding shown : "+str(num+1)+"/"+str(n_locs))
if event == "key h none" or event == "key H none":
g.note("\n- Press arrows Right and Left keys to navigate.\n- Press 'e' or 'E' to run (evolve) the pattern.\n then you can only press 's' or 'S' to stop the running pattern.\n- Press 'r' or 'R' to reset the runned pattern.\n- Press 'Esc' to exit the script.\n")
elif event == "key left none":
num -= 1
if num < 0:
num = n_locs + num
elif event == "key right none":
num += 1
if num >= n_locs:
num = abs(n_locs - num)
elif event == "key e none" or event == "key E none":
while True:
sub_event = g.getevent()
g.run(gen)
g.update()
if sub_event == "key s none" or sub_event == "key S none":
break
elif event == "key r none" or event == "key R none":
g.reset()
g.update()
- rle OTTs file : copy the rle above and paste your clipboard on a new layer
Code: Select all
x = 84304, y = 1662, rule = LifeHistory
268.C299.C299.C299.C299.C299.C299.C299.C299.C299.C291.2C6.C299.C299.C
299.C299.C299.C292.C6.C299.C299.C299.C299.C299.C299.C299.C299.C299.C
299.C299.C299.C299.C299.C299.C4.C294.C299.C299.C299.C299.C299.C299.C
299.C299.C299.C299.C299.C299.C299.C299.C299.C299.C299.C299.C299.C300.
C299.C6.C292.C299.C299.C299.C299.C299.C299.C299.C299.C299.C299.C299.C
299.C299.C299.C299.C299.C299.C299.C299.C299.C299.C299.C298.C294.C4.C
299.C299.C299.C299.C299.C299.C299.C299.C299.C299.C299.C299.C299.C299.
C299.C299.C299.C8.2C289.C299.C299.C299.C299.C299.C299.C299.C299.C299.
C299.C299.C299.C299.C302.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C
298.2C298.2C295.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C
298.2C293.2C3.2C298.2C298.2C298.2C298.2C299.2C298.2C298.2C298.2C298.
2C298.2C292.2C4.2C298.2C4.2C292.2C298.2C298.2C298.2C298.2C298.2C298.
2C2.2C294.2C298.2C298.2C298.2C297.2C298.2C298.2C298.2C298.2C298.2C
298.2C298.2C298.2C298.2C298.2C298.2C289.C8.2C298.2C298.2C298.2C298.2C
298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C
298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C
298.2C298.2C298.2C298.2C298.2C298.2C298.2C3.2C293.2C298.2C298.2C298.
2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C
298.2C298.2C298.2C298.2C297.2C298.2C298.2C294.2C2.2C298.2C298.2C298.
2C298.2C298.2C298.2C298.2C298.2C298.2C2.2C294.2C298.2C298.2C298.2C
298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C
298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C6.C291.2C298.2C298.2C
298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C294.2C2.2C292.2C4.2C
298.2C298.2C4.2C292.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.
2C298.2C298.2C$267.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C
.C297.C.C297.C.C290.C.C4.C.C297.C.C297.C.C297.C.C297.C.C297.C.C290.C.
C4.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C3.2C
292.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C2.C.C292.C.C297.C.C
297.C.C294.2C.C.C297.C.C297.C.C297.C.C297.C.C297.C.C7.2C288.C.C297.C.
C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C6.2C289.C.C
298.C.C297.C.C4.C.C290.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C
297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C5.2C290.C.C297.C.C
297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C296.C.C292.C.C2.C.C
297.C.C290.C6.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C
297.C.C297.C.C297.C.C289.C7.C.C297.C.C291.2C4.C.C297.C.C297.C.C6.C2.C
287.C.C297.C.C297.C.C290.C6.C.C297.C.C6.C290.C.C297.C.C297.C.C291.2C
4.C.C297.C.C297.C.C297.C.C297.C.C297.C.C300.C.C3.C293.C.C297.C.C287.C
9.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C294.C.C297.C.C297.C.C
297.C.C4.C292.C.C297.C.C297.C.C292.2C3.C.C297.C.C297.C.C6.2C284.C2.C.
C.C297.C.C297.C.C297.C.C297.C.C298.C.C297.C.C297.C.C297.C.C297.C.C
297.C.C291.C.C3.C.C297.C.C3.C.C291.C.C297.C.C297.C.C297.C.C297.C.C
297.C.C297.C.C2.2C293.C.C297.C.C297.C.C297.C.C296.C.C3.C293.C.C297.C.
C297.C.C292.2C3.C.C297.C.C297.C.C297.C.C297.C.C297.C2.C291.C4.C2.C
296.C2.C287.C.C6.C2.C296.C2.C296.C2.C296.C2.C296.C2.C290.2C4.C2.C296.
C2.C296.C2.C296.C2.C296.C2.C296.C2.C296.C2.C296.C2.C296.C2.C292.2C2.C
2.C296.C2.C296.C2.C296.C2.C296.C2.C296.C2.C296.C2.C296.C2.C296.C2.C
296.C2.C296.C2.C296.C2.C5.C290.C2.C296.C2.C296.C2.C296.C2.C296.C2.C
296.C2.C296.C2.C296.C2.C.C.C292.C2.C296.C2.C296.C2.C296.C2.C296.C2.C
296.C2.C296.C2.C296.C2.C296.C2.C5.C290.C2.C296.C2.C296.C2.C296.C2.C
296.C2.C296.C2.C296.C2.C296.C2.C296.C2.C296.C2.C296.2C3.C294.2C298.2C
293.C.C2.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C2.C.
C293.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C
.C297.C.C297.C.C5.2C290.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C
297.C.C297.C.C297.C.C4.C292.C.C4.C.C290.C.C297.C.C290.C6.C.C297.C.C
297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C293.2C2.C.C291.C.C3.
C.C297.C.C297.C.C3.C.C291.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C
.C297.C.C297.C.C297.C.C6.2C289.C.C$267.2C298.2C298.2C298.2C298.2C298.
2C298.2C298.2C298.2C298.2C292.C.C3.2C298.2C298.2C3.2C293.2C298.2C298.
2C290.C.C5.C.C297.C.C297.C.C291.C5.C.C297.C.C297.C.C297.C.C4.2C291.C.
C297.C.C2.C2.C291.C.C297.C.C297.C.C291.2C4.C.C297.C.C292.C4.C2.C296.C
2.C2.2C288.C3.C2.C296.C2.C296.C2.C292.C.C.C2.C296.C2.C296.C2.C288.2C
6.C2.C296.C2.C296.C2.C6.C.C287.C2.C296.C2.C296.C2.C296.C2.C296.C2.C
296.C2.C296.C2.C6.2C288.C2.C296.C2.C296.C2.C5.C.C288.C2.C296.C.C297.C
.C5.C.C289.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.
C288.2C7.C.C297.C.C293.2C2.C.C297.C.C297.C.C6.C.C288.C.C297.C.C297.C.
C3.2C292.C.C297.C2.C296.C2.C296.C2.C296.C2.C296.C2.C297.2C3.C288.C2.C
2.2C298.2C289.C.C6.2C298.2C293.2C3.2C293.2C3.2C298.2C298.2C298.2C298.
2C298.2C298.2C298.2C288.C.C7.C.C292.2C3.C.C289.C2.C4.C.C297.C.C297.C.
C5.C.C284.2C3.C.C297.C.C297.C.C288.C.C6.C299.C6.C.C284.C5.C299.C299.C
291.C2.C4.C299.C299.C299.C299.C299.C301.2C3.C.C292.2C298.2C287.C.C8.
2C298.2C298.2C298.2C298.2C298.2C298.2C4.2C289.2C298.2C298.2C298.2C4.C
.C291.2C298.2C298.2C292.C.C3.2C298.2C298.2C6.C2.C284.C.C.2C298.2C298.
2C3.2C293.2C298.2C295.C2.C.C297.C.C297.C.C297.C.C297.C.C297.C.C291.C.
C3.C.C297.C.C3.C.C291.C.C297.C.C297.C.C297.C.C297.C.C297.C.C297.C.C
297.C.C297.C.C297.C.C3.2C292.C.C3.2C293.C3.C.C293.C299.C299.C292.C2.C
3.C299.C299.C299.C299.C298.C.C291.C.C3.C.C291.C5.C.C289.C.C5.C.C297.C
.C297.C.C297.C.C297.C.C290.C2.C3.C.C297.C.C297.C.C297.C.C297.C2.C296.
C2.C296.C2.C296.C2.C296.C2.C291.C.C2.C2.C296.C2.C296.C2.C296.C2.C296.
C2.C296.C2.C296.C2.C296.C2.C297.2C298.2C298.2C298.2C5.C.C290.2C298.2C
298.2C298.2C293.2C3.2C298.2C298.C.C297.C.C.2C294.C.C297.C.C297.C.C
297.C.C297.C.C297.C.C297.C.C291.C5.C2.C296.C2.C3.C.C290.C2.C296.C2.C
296.C2.C296.C2.C296.C2.C3.2C291.C2.C296.C2.C6.2C288.C2.C296.C2.C296.C
2.C299.C.C887.C.C2708.C.C293.2C298.2C298.2C298.2C298.2C298.2C298.2C
298.2C298.2C298.2C298.2C298.2C4.C2.C290.2C298.2C293.2C3.2C298.2C3.2C
293.2C298.2C298.2C298.2C2.2C289.C4.C.C297.C.C2.C.C292.C.C3.2C292.C.C
297.C.C288.C.C6.C.C297.C.C292.2C3.C.C292.2C3.C.C297.C.C297.C.C297.C.C
297.C.C297.C.C297.C.C291.C.C3.C.C297.C.C297.C.C3.C.C291.C.C297.C299.C
299.C299.C299.C299.C299.C299.C299.C7.C.C289.C$264.C2997.C609.C.C1184.
2C7.C299.C299.C291.C.C5.C299.C299.C299.C4.C.C292.C299.C4.2C293.C299.C
299.C292.C.C4.C299.C292.C.C4.2C298.2C292.C.C3.2C293.2C3.2C298.2C294.C
3.2C298.2C298.2C288.C2.C6.2C298.2C298.2C8.2C288.2C298.C.C297.C.C297.C
.C297.C.C297.C.C297.C.C5.C2.C288.C.C297.C.C297.C.C6.2C289.C.C296.2C
298.2C7.C290.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C298.2C9.2C
277.C2.C6.2C298.2C294.2C2.2C298.2C298.2C8.2C288.2C298.2C298.2C4.C.C
291.2C299.2C5.C292.2C298.2C298.2C298.2C302.C.C288.2C593.C.C601.C.C
297.C.C2392.C.C9.2C291.C.C4.2C289.C.C6.2C298.2C298.2C6.C284.C.C4.C
299.C299.C289.2C314.C2.C282.C.C896.C.C1805.2C5.2C291.2C298.2C288.C.C
7.2C298.2C298.2C298.2C298.2C298.2C298.2C5.C2.C282.C910.C2.C1186.C612.
C.C286.C606.C2.C888.C.C2.C299.C299.C299.C299.C299.C293.C5.C299.C5.C
293.C299.C299.C299.C299.C299.C299.C299.C299.C299.C4.C.C292.C4.C.C296.
2C1187.C2.C1496.C6.C292.C2.C3.C291.C.C5.C291.2C6.C299.C299.C299.C299.
C291.C2.C4.C299.C299.C4.2C293.C299.2C298.2C298.2C8.C280.C8.2C298.2C
292.2C4.2C298.2C298.2C298.2C298.2C298.2C298.2C290.2C6.2C1204.C2.C
1485.C.C603.C299.C293.2C4.C299.C299.C299.C8.2C289.C299.C299.C291.C.C
5.2C298.2C5.2C291.2C298.2C298.2C298.2C298.2C3.C.C292.2C298.2C6.C2.C
288.2C298.2C298.2C300.2C889.C2710.C1499.C2100.C.C885.C2.C306.C2.C
1196.C.C287.C.C4.C299.C3.2C294.C299.C299.C289.C2.C6.C299.C292.C.C4.C
292.C.C4.C299.C299.C299.C299.C299.C299.C293.C5.C299.C299.C5.C293.C
2707.2C$263.C.C2101.2C1504.C.C296.2C1787.C301.2C607.C.C1202.2C583.C.C
307.2C288.2C599.C.C296.C.C1494.2C314.2C892.C299.C299.C4.C294.C299.C
299.C6.C.C290.C299.C299.C299.C3307.C2.C277.2C2114.C.C597.C.C1495.2C
884.2C601.C.C299.C1512.2C879.2C302.C.C297.C899.C.C1212.2C283.C2.C599.
2C295.C298.2C909.2C298.2C294.C.C297.C.C297.C.C288.2C7.C.C293.C3.C.C
297.C.C297.C.C290.2C5.C.C297.C.C297.C.C6.C.C281.C.C307.C602.2C1801.C
895.C2.C283.2C601.C.C5109.C.C297.C1202.2C283.2C1496.C.C299.2C295.C2.C
1798.2C610.C.C885.C315.C.C278.C.C599.2C310.2C298.2C1486.2C1213.2C
1487.C.C1195.C.C912.C2.C1180.2C1810.C.C601.C.C2387.2C600.2C604.2C585.
2C303.2C1503.C299.C.C2100.C887.2C308.2C1198.C.C286.2C902.C296.C296.C.
C598.C.C299.C4812.2C$262.C.C301.C602.2C1195.C2.C1195.2C307.C297.C.C
286.2C901.C897.C.C608.C1203.2C286.2C296.C308.C.C889.C297.2C304.2C
1505.C.C1495.C.C901.C1195.2C2389.C912.C.C2395.C598.2C2685.C300.C607.
2C1203.C2.C1183.C1199.C603.2C894.C.C598.C.C593.C2.C908.C.C297.C.C293.
2C298.2C298.2C298.2C293.C.C2.2C298.2C298.2C290.C2.C4.2C298.2C298.2C8.
C282.C2.C305.C.C298.C2694.2C306.2C284.C.C600.2C303.C2097.2C1196.2C
1510.C1500.C2.C593.2C290.2C302.2C300.2C287.C.C597.2C2412.C.C883.C.C
313.C.C280.C.C597.C.C309.C.C297.C.C1795.C301.C291.C1195.2C604.C305.2C
295.C592.C.C913.C.C883.2C1500.2C607.C603.C2387.C.C599.C.C603.C2.C583.
C2.C302.C.C900.C302.C297.C.C297.C2.C2700.2C896.2C287.2C305.2C303.C
1190.C.C294.C.C296.C600.C5112.C2.C1182.2C$262.2C301.C.C299.2C299.C.C
1196.C.C290.2C310.2C591.C.C605.C.C285.C.C899.C.C895.C.C2101.C.C605.C.
C1491.C.C1506.2C581.2C310.C602.C1188.2C297.2C609.C.C298.C590.C303.C
296.C299.C299.C296.C.C308.2C602.C585.2C601.2C596.2C302.2C598.2C592.C
303.2C2091.C.C906.C.C603.2C289.2C308.C2.C581.2C2402.C2.C894.C598.C.C
594.C2.C909.C.C297.C.C888.C597.C2.C894.C.C899.C.C305.C2.C296.C.C889.
2C1801.C2.C592.C.C903.C.C1205.2C888.C.C307.2C886.C2.C1203.2C1195.C
609.C.C594.2C290.C.C301.C.C299.C.C287.C2708.2C303.C591.C292.C.C313.2C
282.C598.2C310.2C298.2C1795.C.C299.C.C289.C.C1194.2C910.C.C293.C.C
592.C304.2C307.2C300.C884.C.C900.C305.C291.C.C2105.2C1491.C.C601.C
604.C.C585.C2.C302.C.C898.C.C300.C.C295.C2.C298.2C588.C2111.C2.C894.C
2.C285.C2.C304.C.C1493.C.C294.C2.C1803.2C605.2C288.2C899.2C593.2C597.
2C300.2C910.C.C1183.C.C$87.2C.C.2C.C14.2C.C.2C.C447.2C298.C.C300.C
291.2C598.2C305.C290.C2.C309.2C592.C.C605.C287.C298.2C599.C.C305.C
591.C898.2C1203.2C606.C1492.2C2090.C.C308.C.C1790.2C297.C.C609.C.C
296.C.C588.C.C301.C.C294.C.C297.C.C297.C.C296.C308.C.C1187.C2.C600.2C
596.C.C301.C.C597.C.C590.C.C301.C.C302.2C1788.C908.C303.2C298.C2.C
287.C2.C308.2C582.C.C2402.C.C1194.C299.C596.2C304.2C605.C299.C888.C.C
597.2C896.C901.C307.C.C295.C2.C888.C.C299.2C1501.C.C593.C903.C.C1205.
C.C889.C307.C.C887.2C1204.C.C1193.C.C609.C888.C.C301.C.C299.C.C1492.C
299.C593.2C607.C.C893.C.C292.C2405.2C1199.C.C298.C.C289.C2.C600.2C
297.2C1206.C.C293.2C896.C2.C305.C2.C1185.C.C898.C.C303.C.C290.2C299.
2C1805.C.C903.C587.C905.2C301.C289.2C296.2C304.C899.C.C300.C2.C295.2C
888.C.C1205.2C602.2C299.C2.C895.C.C286.C2.C304.C.C1493.C296.2C1503.2C
298.C.C604.C2.C286.C2.C898.C.C592.C.C595.C.C299.C.C911.C1185.C.C$87.C
.2C.C.2C14.C.2C.C.2C747.2C592.C2.C596.C2.C596.C2.C903.C1193.C.C598.2C
305.C.C1488.C.C4211.2C1184.C308.C.C297.C592.2C1199.2C610.C297.2C589.C
2.C299.C.C296.2C298.C.C297.C.C604.2C301.2C886.2C1200.C.C301.C.C597.C
591.C.C301.2C302.C.C293.2C904.C1800.C2.C297.C.C289.C.C588.2C303.2C
2403.C1194.C.C1200.C2.C300.2C1199.C291.C2.C892.2C309.2C596.2C902.C
297.2C889.2C299.C.C605.2C895.C892.2C604.2C1206.2C1199.C601.2C590.2C
900.C.C1192.C2.C298.C1199.C303.C301.C1492.C.C297.C.C298.2C291.C.C608.
C.C892.2C1196.C1501.C2.C306.2C298.2C591.C299.2C291.2C600.C2.C295.C2.C
1206.C1192.C.C306.C.C893.2C292.C900.C305.C289.2C300.C.C1499.2C305.C.C
587.C313.C.C1491.C2.C589.C2.C1208.C293.C302.2C1187.2C312.2C298.2C298.
2C290.C2.C600.C2.C299.2C897.C288.2C306.C2392.2C901.C.C299.C304.2C299.
C.C288.2C900.C.C592.C296.2C299.C301.C608.2C588.2C899.C$1460.C.C309.2C
287.2C598.2C2099.C905.C2.C1489.C604.2C3605.C2.C1492.2C297.C.C590.C.C
2701.2C300.2C598.2C298.C907.C2.C2088.C303.C1191.C300.2C305.C293.C2.C
902.C.C1799.C.C299.C291.C589.C.C1508.2C895.2C1496.2C1201.2C300.C2.C
1197.C.C291.C.C891.C.C308.C.C595.C2.C2391.2C605.C2.C1787.C.C905.C602.
2C2103.C2.C588.C2.C597.2C301.C1194.C.C297.C.C3298.C.C297.C298.C.C292.
C610.C584.2C1504.C.C1206.2C292.C.C306.C2.C296.C2.C1785.C.C296.C2.C
2400.C308.C894.C.C1787.C.C300.2C604.2C596.2C296.C.C305.C587.C.C311.C.
C897.2C593.C.C590.C2.C1207.C.C2097.C.C297.C.C297.C.C290.C.C601.C2.C
4187.C.C902.C604.C2.C299.C1192.C889.C.C1209.C2.C586.C2.C303.2C$97.2C
8.2C11.2C8.2C1329.C309.C2.C3894.2C896.2C1196.C2.C3302.2C300.C.C1793.
2C591.C307.2C4503.C.C3885.C.C599.C.C903.C2.C1799.C1183.2C1507.C2.C
893.C2.C3001.C.C1197.C2.C291.C892.2C310.C596.C2.C1793.2C1203.C.C1789.
C905.C.C298.C301.C.C1799.2C302.C.C590.2C598.C.C1496.C299.C3300.2C596.
2C1489.C.C1504.C1206.C.C293.C307.C.C297.C.C1787.C298.2C605.2C2695.2C
302.2C1787.2C906.C2.C595.C.C296.C.C892.C.C311.2C897.C.C594.C592.2C
1208.2C1483.C614.2C298.2C299.C292.C603.2C4188.2C1508.C.C2383.2C898.2C
310.C.C588.C.C303.C.C$97.C9.C12.C9.C1640.C.C4792.C.C1197.C.C3301.C2.C
300.C2694.C2.C4503.C3886.2C601.C905.C.C4492.C.C894.C2.C3002.C1199.2C
2095.2C1793.C.C1204.C2697.2C297.C.C300.2C1799.C2.C302.C1192.2C5693.2C
1492.C2711.C.C603.C299.C2694.2C2695.C.C2998.C.C597.2C297.C894.C1210.C
.C3882.C.C7812.C3283.C2.C310.C590.C305.2C$98.C9.C12.C9.C1640.C4792.C.
C1199.C3302.C.C2996.C.C9901.C4494.C896.2C8095.2C4203.C.C297.2C1801.C.
C7190.C.C4205.C6297.2C2999.C3004.C3884.2C11096.C.C$97.2C8.2C11.2C8.2C
6434.C4504.C2998.C23389.2C4206.2C296.C.C1802.C7191.2C31494.C$37459.C.
C4504.2C$97.2C8.2C11.2C8.2C37327.2C$97.C9.C12.C9.C$98.C9.C12.C9.C$97.
2C8.2C11.2C8.2C2$87.2C.C.2C.C14.2C.C.2C.C$87.C.2C.C.2C14.C.2C.C.2C2$
84.2C21.2C11.2C8.2C$84.C22.C12.C9.C$85.C22.C12.C9.C$84.2C21.2C11.2C8.
2C2$84.2C21.2C11.2C8.2C$84.C22.C12.C9.C$85.C22.C12.C9.C159.3C301.3C
304.3C286.3C297.3C291.3C303.3C303.3C291.3C308.3C290.3C296.3C298.3C
294.3C296.3C297.3C295.3C300.3C301.3C291.3C289.3C300.3C303.3C294.3C
304.3C293.3C296.3C300.3C296.3C298.3C287.3C313.3C290.3C307.3C291.3C
292.3C302.3C302.3C287.3C311.3C302.3C271.3C298.3C313.3C288.3C293.3C
304.3C312.3C287.3C286.3C317.3C281.3C304.3C294.3C301.3C291.3C303.3C
297.3C297.3C297.3C295.3C288.3C304.3C296.3C302.3C293.3C301.3C305.3C
281.3C305.3C292.3C302.3C289.3C298.3C302.3C298.3C286.3C309.3C290.3C
292.3C295.3C304.3C287.3C304.3C298.3C304.3C292.3C305.3C299.3C269.3C
315.3C289.3C295.3C298.3C306.3C302.3C282.3C314.3C290.3C301.3C293.3C
287.3C300.3C293.3C299.3C298.3C305.3C302.3C290.3C306.3C301.3C285.3C
301.3C297.3C284.3C302.3C296.3C304.3C295.3C304.3C286.3C310.3C291.3C
298.3C286.3C301.3C297.3C291.3C309.3C298.3C292.3C288.3C305.3C297.3C
282.3C308.3C309.3C294.3C297.3C287.3C305.3C295.3C303.3C293.3C296.3C
300.3C304.3C285.3C302.3C293.3C289.3C310.3C292.3C297.3C307.3C284.3C
294.3C319.3C273.3C304.3C290.3C311.3C300.3C286.3C304.3C294.3C293.3C
307.3C297.3C283.3C299.3C303.3C301.3C294.3C275.3C326.3C283.3C308.3C
278.3C312.3C293.3C297.3C308.3C289.3C294.3C296.3C310.3C284.3C305.3C
301.3C283.3C306.3C293.3C298.3C306.3C297.3C285.3C306.3C291.3C300.3C
283.3C303.3C300.3C302.3C283.3C302.3C303.3C299.3C293.3C306.3C297.3C
281.3C306.3C311.3C272.3C312.3C283.3C296.3C314.3C298.3C273.3C315.3C
288.3C301.3C305.3C291.3C305.3C290.3C297.3C287.3C311.3C296.3C301.3C
297.3C287.3C299.3C306.3C295.3C285.3C304.3C302.3C291.3C301.3C296.3C
298.3C296.3C294.3C297.3C307.3C287.3C296.3C306.3C298.3C291.3C303.3C
291.3C291.3C308.3C286.3C299.3C297.3C296.3C303.3C301.3C288.3C298.3C
296.3C291.3C312.3C288.3C286.3C317.3C285.3C299.3C307.3C295.3C292.3C
298.3C286.3C322.3C289.3C$84.2C21.2C11.2C8.2C159.C303.C306.C288.C299.C
293.C305.C305.C293.C310.C292.C298.C300.C296.C298.C299.C297.C302.C303.
C293.C291.C302.C305.C296.C306.C295.C298.C302.C298.C300.C289.C315.C
292.C309.C293.C294.C304.C304.C289.C313.C304.C273.C300.C315.C290.C295.
C306.C314.C289.C288.C319.C283.C306.C296.C303.C293.C305.C299.C299.C
299.C297.C290.C306.C298.C304.C295.C303.C307.C283.C307.C294.C304.C291.
C300.C304.C300.C288.C311.C292.C294.C297.C306.C289.C306.C300.C306.C
294.C307.C301.C271.C317.C291.C297.C300.C308.C304.C284.C316.C292.C303.
C295.C289.C302.C295.C301.C300.C307.C304.C292.C308.C303.C287.C303.C
299.C286.C304.C298.C306.C297.C306.C288.C312.C293.C300.C288.C303.C299.
C293.C311.C300.C294.C290.C307.C299.C284.C310.C311.C296.C299.C289.C
307.C297.C305.C295.C298.C302.C306.C287.C304.C295.C291.C312.C294.C299.
C309.C286.C296.C321.C275.C306.C292.C313.C302.C288.C306.C296.C295.C
309.C299.C285.C301.C305.C303.C296.C277.C328.C285.C310.C280.C314.C295.
C299.C310.C291.C296.C298.C312.C286.C307.C303.C285.C308.C295.C300.C
308.C299.C287.C308.C293.C302.C285.C305.C302.C304.C285.C304.C305.C301.
C295.C308.C299.C283.C308.C313.C274.C314.C285.C298.C316.C300.C275.C
317.C290.C303.C307.C293.C307.C292.C299.C289.C313.C298.C303.C299.C289.
C301.C308.C297.C287.C306.C304.C293.C303.C298.C300.C298.C296.C299.C
309.C289.C298.C308.C300.C293.C305.C293.C293.C310.C288.C301.C299.C298.
C305.C303.C290.C300.C298.C293.C314.C290.C288.C319.C287.C301.C309.C
297.C294.C300.C288.C324.C291.C$292.C303.C306.C288.C299.C293.C305.C
305.C293.C310.C292.C298.C300.C296.C298.C299.C297.C302.C303.C293.C291.
C302.C305.C296.C306.C295.C298.C302.C298.C300.C289.C315.C292.C309.C
293.C294.C304.C304.C289.C313.C304.C273.C300.C315.C290.C295.C306.C314.
C289.C288.C319.C283.C306.C296.C303.C293.C305.C299.C299.C299.C297.C
290.C306.C298.C304.C295.C303.C307.C283.C307.C294.C304.C291.C300.C304.
C300.C288.C311.C292.C294.C297.C306.C289.C306.C300.C306.C294.C307.C
301.C271.C317.C291.C297.C300.C308.C304.C284.C316.C292.C303.C295.C289.
C302.C295.C301.C300.C307.C304.C292.C308.C303.C287.C303.C299.C286.C
304.C298.C306.C297.C306.C288.C312.C293.C300.C288.C303.C299.C293.C311.
C300.C294.C290.C307.C299.C284.C310.C311.C296.C299.C289.C307.C297.C
305.C295.C298.C302.C306.C287.C304.C295.C291.C312.C294.C299.C309.C286.
C296.C321.C275.C306.C292.C313.C302.C288.C306.C296.C295.C309.C299.C
285.C301.C305.C303.C296.C277.C328.C285.C310.C280.C314.C295.C299.C310.
C291.C296.C298.C312.C286.C307.C303.C285.C308.C295.C300.C308.C299.C
287.C308.C293.C302.C285.C305.C302.C304.C285.C304.C305.C301.C295.C308.
C299.C283.C308.C313.C274.C314.C285.C298.C316.C300.C275.C317.C290.C
303.C307.C293.C307.C292.C299.C289.C313.C298.C303.C299.C289.C301.C308.
C297.C287.C306.C304.C293.C303.C298.C300.C298.C296.C299.C309.C289.C
298.C308.C300.C293.C305.C293.C293.C310.C288.C301.C299.C298.C305.C303.
C290.C300.C298.C293.C314.C290.C288.C319.C287.C301.C309.C297.C294.C
300.C288.C324.C291.C$87.2C.C.2C.C14.2C.C.2C.C$87.C.2C.C.2C14.C.2C.C.
2C189$260.C101.C99.C96.C102.2C94.2C$3.2C.C.2C.C247.C.C99.C.C97.C.C94.
C.C100.C2.C93.2C$3.C.2C.C.2C247.C.C98.C.C97.C.C96.C101.C2.C$260.C99.
2C98.2C192.2C6.2C$2C11.2C240.2C298.2C97.2C$C12.C240.C.C100.C196.C.C$.
C12.C238.C.C100.C.C98.2C94.C.C$2C11.2C239.C102.C98.C2.C94.C201.2C$
457.2C296.C2.C$2C11.2C740.C2.C$C12.C742.2C$.C12.C$2C11.2C5$2C11.2C$C
12.C$.C12.C$2C11.2C2$2C11.2C$C12.C$.C12.C$2C11.2C2$3.2C.C.2C.C$3.C.2C
.C.2C2$274.3C117.3C97.3C77.3C107.3C97.3C$274.C119.C99.C79.C109.C99.C$
275.C119.C99.C79.C109.C99.C168$250.C106.C102.2C92.2C101.2C93.2C$249.C
.C104.C.C100.C.C91.C2.C100.C.C92.C.C6.2C$249.2C105.C2.C100.C93.C.C
101.C94.C7.C.C$357.2C196.C206.2C$254.2C108.2C$254.C.C107.C.C96.2C$
255.C.C107.2C96.C.C$256.C207.C.C$465.C91.2C$557.C.C98.2C$558.2C98.C.C
$659.2C19$274.3C117.3C96.3C78.3C97.3C117.3C$274.C119.C98.C80.C99.C
119.C$275.C119.C98.C80.C99.C119.C$14.2C$14.C$15.C$14.2C2$14.2C$14.C$
15.C$14.2C5$14.2C$14.C$15.C$14.2C2$14.2C$14.C$15.C$14.2C146$258.C96.
2C4.2C92.2C4.2C$257.C.C94.C.C3.C.C91.C.C3.C.C$256.C.C94.C.C3.C.C91.C.
C3.C.C$256.2C96.C5.C93.C5.C3$258.C$257.C.C$256.C.C$256.2C21$284.3C97.
3C97.3C$284.C99.C99.C$285.C99.C99.C$.2C11.2C$.C12.C$2.C12.C$.2C11.2C
2$.2C11.2C$.C12.C$2.C12.C$.2C11.2C2$4.2C.C.2C.C$4.C.2C.C.2C2$14.2C$
14.C$15.C$14.2C2$14.2C$14.C$15.C$14.2C146$263.C94.2C$262.C.C93.C.C$
262.C2.C93.2C$263.C.C$264.C$353.2C$257.2C93.C2.C$257.C.C93.C2.C$258.
2C94.2C22$4.2C.C.2C.C271.3C97.3C$4.C.2C.C.2C271.C99.C$285.C99.C$.2C$.
C$2.C$.2C2$.2C$.C$2.C$.2C2$4.2C.C.2C.C$4.C.2C.C.2C2$14.2C$14.C$15.C$
14.2C2$14.2C$14.C$15.C$14.2C2$4.2C.C.2C.C$4.C.2C.C.2C143$251.C112.C
91.2C100.2C90.2C108.2C$250.C.C110.C.C89.C.C99.C2.C88.C2.C5.C101.C.C$
250.C2.C108.C2.C89.2C94.C5.C.C90.C2.C3.C.C101.C$251.C.C109.2C185.C.C
5.C92.2C5.2C$252.C296.C2.C$550.2C3$252.C108.2C84.2C304.2C$251.C.C106.
C2.C83.C.C302.C.C$252.2C106.C.C85.C303.2C$361.C19$4.2C.C.2C.C271.3C
97.3C77.3C117.3C87.3C117.3C$4.C.2C.C.2C271.C99.C79.C119.C89.C119.C$
285.C99.C79.C119.C89.C119.C$.2C11.2C$.C12.C$2.C12.C$.2C11.2C2$.2C11.
2C$.C12.C$2.C12.C$.2C11.2C2$4.2C.C.2C.C$4.C.2C.C.2C2$.2C11.2C$.C12.C$
2.C12.C$.2C11.2C2$.2C11.2C$.C12.C$2.C12.C$.2C11.2C2$4.2C.C.2C.C$4.C.
2C.C.2C143$258.C105.2C$257.C.C104.C.C$258.2C105.2C4$251.2C106.C$251.C
.C104.C.C$252.2C105.2C22$24.2C.C.2C.C251.3C97.3C$24.C.2C.C.2C251.C99.
C$285.C99.C$14.2C5.2C11.2C$14.C6.C12.C$15.C6.C12.C$14.2C5.2C11.2C2$
14.2C5.2C11.2C$14.C6.C12.C$15.C6.C12.C$14.2C5.2C11.2C5$14.2C5.2C11.2C
$14.C6.C12.C$15.C6.C12.C$14.2C5.2C11.2C2$14.2C5.2C11.2C$14.C6.C12.C$
15.C6.C12.C$14.2C5.2C11.2C2$24.2C.C.2C.C$24.C.2C.C.2C143$250.C109.2C$
249.C.C107.C.C$249.2C109.C3$365.2C$254.2C109.2C$254.2C23$24.2C.C.2C.C
251.3C96.3C$24.C.2C.C.2C251.C98.C$285.C98.C$14.2C18.2C$14.C19.C$15.C
19.C$14.2C18.2C2$14.2C18.2C$14.C19.C$15.C19.C$14.2C18.2C2$24.2C.C.2C.
C$24.C.2C.C.2C2$14.2C18.2C$14.C19.C$15.C19.C$14.2C18.2C2$14.2C18.2C$
14.C19.C$15.C19.C$14.2C18.2C2$24.2C.C.2C.C$24.C.2C.C.2C144$259.2C103.
C97.C92.2C$258.C2.C101.C.C95.C.C90.C.C$258.C2.C95.C5.C.C94.C2.C90.2C$
259.2C95.C.C5.C96.2C$356.2C3$559.2C$257.2C300.C.C$256.C2.C300.2C$9.2C
.C.2C.C14.2C.C.2C.C215.C2.C199.C$9.C.2C.C.2C14.C.2C.C.2C216.2C199.C.C
$459.C$19.2C8.2C$19.C9.C$20.C9.C$19.2C8.2C2$19.2C8.2C$19.C9.C$20.C9.C
$19.2C8.2C2$9.2C.C.2C.C$9.C.2C.C.2C20.2C.C$38.C.2C$19.2C8.2C11.2C$19.
C9.C12.C$20.C9.C12.C$19.2C8.2C11.2C$286.3C97.3C87.3C107.3C$19.2C8.2C
11.2C242.C99.C89.C109.C$19.C9.C12.C244.C99.C89.C109.C$20.C9.C12.C$19.
2C8.2C11.2C2$9.2C.C.2C.C14.2C.C.2C.C$9.C.2C.C.2C14.C.2C.C.2C!
#C [[ MAXGRIDZIZE 14 ]]
Code: Select all
1685,3788,7,6:6bob$5bobo$5b2ob$2bo6b$bobo4b$obo5b$2o6b!
1988,3788,4,7:3bob$2bobo$2b2ob$5b$5b$bo3b$obo2b$b2o2b!
2289,3788,3,8:2bob$bobo$b2ob$4b$4b$4b$b2ob$obob$2o2b!
2590,3788,3,7:bo2b$obob$2o2b$4b$4b$2b2o$bobo$2bob!
2883,3788,9,10:8bob$7bobo$7b2ob$10b$10b$10b$10b$b2o7b$o2bo7b$obo7b$bo8b!
3190,3788,7,11:bo6b$obo5b$2o6b$8b$8b$8b$8b$8b$8b$5b2ob$4bo5bo$4bobob!
3483,3788,9,9:8bob$7bobo$7b2ob$10b$10b$10b$10b$b2o7b$o2bo7b$b2o7b!
3789,3788,3,7:2bob$bobo$b2ob$4b$b2ob$o2bo$bobo$2bob!
4082,3788,10,9:9bob$8bobo$8b2ob$11b$11b$11b$b2o8b$o2bo8b$bo2bo7b$2b2o7b!
4390,3788,6,7:bo5b$obo4b$2o5b$7b$7b$7b$5b2o$5b2o!
4683,3788,9,3:2o6bob$obo4bobo$bobo3b2ob$2bo8b!
4988,3788,4,8:3bob$2bobo$2b2ob$5b$5b$2o3b$obo2b$bobob$2bo3b!
5290,3788,8,5:bo7b$obo6b$2o3b2o2b$5bobob$6bobo$7bob!
5590,3788,8,7:bo7b$obo6b$2o7b$9b$5b2o2b$5bobob$6bobo$7bob!
5884,3788,8,7:7bob$6bobo$6b2ob$9b$9b$2o7b$obo6b$bo7b!
6184,3788,8,9:7bob$6bobo$6b2ob$9b$9b$9b$9b$2o7b$obo6b$bo7b!
6482,3788,10,3:2bo7bob$bobo4bobo$obo5bobo$2o7bob!
6785,3788,7,8:6bob$5bobo$5bobo$6bob$8b$2bo6b$bobo4b$obo5b$2o6b!
7090,3788,4,10:bo3b$obo2b$obo2b$bo3b$5b$5b$5b$3bob$2bobo$bo2bo$2b2ob!
7383,3788,9,4:8bob$7bobo$bo5bobo$obo5bob$bo8b!
7684,3788,8,7:7bob$6bobo$6bobo$7bob$2b2o5b$bobo5b$obo6b$bo7b!
7989,3788,3,11:2bob$bobo$bobo$2bob$4b$4b$4b$4b$4b$4b$b2ob$obob!
8290,3788,8,5:bo7b$obo6b$obo4b2o$bo4bobo$5bobob$6bo7b!
8583,3788,9,9:8bob$7bobo$7bobo$8bob$10b$10b$10b$b2o7b$obo7b$bo8b!
8890,3788,8,3:bo7b$obo3b2ob$obo2bo3bo$bo4b2ob!
9188,3788,4,11:3bob$2bobo$2bobo$3bob$5b$5b$5b$5b$5b$b2o2b$o2bob$bobob!
9490,3788,2,3:bob$obo$obo$bob!
9788,3788,4,7:3bob$2bobo$2bobo$3bob$5b$2o3b$obo2b$b2o2b!
10084,3788,8,5:7bob$6bobo$2o4bobo$obo4bob$bobo5b$2bo7b!
10390,3788,8,7:bo7b$obo6b$obo6b$bo7b$5b2o2b$5bobob$6bobo$7bob!
10684,3788,9,4:7bo8b$6bobob$bo4bo5bo$obo4b2ob$b2o7b!
10990,3788,7,3:bo4bob$obo2bobo$o2bo3b2o$b2o5b!
11285,3788,8,5:6bo7b$5bobob$bo3bo4bo$obo3b2ob$bobo5b$2bo7b!
11585,3788,8,5:6bo7b$5bobob$5bo6bo$b2o3b2ob$obo6b$2o7b!
11890,3788,3,7:bo2b$obob$o2bo$b2ob$4b$b2ob$obob$2o2b!
12186,3788,7,3:5bo6b$b2obobob$obobo2bo$bo3b2ob!
12490,3788,6,11:bo5b$obo4b$o2bo4b$b2o4b$7b$7b$7b$7b$7b$7b$4b2ob$3bo4bo!
12790,3788,9,11:bo8b$obo7b$o2bo7b$b2o7b$10b$10b$10b$10b$7b2ob$6bo7bo$6bobob$7bo8b!
13081,3788,12,4:10bo11b$9bobob$b2o6bo7bo$o2bo7b2ob$b2o10b!
13390,3788,9,6:bo8b$obo7b$o2bo7b$b2o7b$8b2o$8bob$9bo!
13690,3788,3,3:bo2b$obob$o2bo$b2ob!
13982,3788,11,8:9bo10b$8bobob$8bo9bo$9b2ob$12b$12b$2o10b$obo9b$bo10b!
14290,3788,5,9:bo4b$obo3b$o2bo3b$bobo2b$2bo4b$6b$4bob$3bobo$2bobob$2b2o2b!
14590,3788,3,10:bo2b$obob$o2bo$bobo$2bob$4b$4b$4b$2bob$bobo$2b2o!
14890,3788,8,6:bo7b$obo6b$o2bo6b$bobo5b$2bo5bob$6bobo$7bob!
15184,3788,9,10:7bo8b$6bobob$6bo7bo$7bobo$8bob$10b$10b$10b$b2o7b$obo7b$bo8b!
15490,3788,5,11:bo4b$obo3b$o2bo3b$bobo2b$2bo4b$6b$6b$6b$6b$6b$3b2ob$2bo3bo!
15790,3788,9,4:bo8b$obo7b$o2bo7b$bobo5bo$2bo7bo!
16086,3788,7,7:5bo6b$4bobob$4bo5bo$5bobo$6bob$8b$2o6b$2o6b!
16385,3788,8,8:6bo7b$5bobob$5bo6bo$6bobo$7bob$9b$2o7b$obo6b$b2o6b!
16690,3788,9,4:bo8b$obo6bo$o2bo6bo$bobo6b$2bo8b!
16990,3788,9,8:bo8b$obo7b$o2bo7b$bobo6b$2bo8b$6b2o2b$6bobob$7bobo$8bob!
17290,3788,8,8:2bo7b$bobo5b$obo6b$2o7b$9b$9b$7bob$6bobo$6b2ob!
17590,3788,9,3:2bo7bo$bobo4bob$obo5bob$2o7bo!
17887,3788,6,9:5bob$4bobo$3bobob$3b2o2b$7b$7b$bo5b$obo4b$o2bo4b$b2o4b!
18190,3788,3,9:2bob$bobo$obob$2o2b$4b$4b$2bob$bobo$obob$2o2b!
18488,3788,5,8:4bob$3bobo$2bobob$2b2o2b$6b$6b$bo4b$obo3b$b2o3b!
18788,3788,5,9:4bob$3bobo$2bobob$2b2o2b$6b$6b$bo4b$obo3b$bobo2b$2b2o2b!
19088,3788,5,9:4bob$3bobo$2bobob$2b2o2b$6b$6b$bo4b$obo3b$bobo2b$2bo4b!
19386,3788,7,7:6bob$5bobo$4bobob$4b2o2b$8b$bo6b$obo5b$bo6b!
19690,3788,8,8:2bo7b$bobo5b$obo6b$2o7b$9b$9b$7b2o$6bobo$6b2ob!
19990,3788,9,11:2bo8b$bobo6b$obo7b$2o8b$10b$10b$10b$10b$9bo$8bob$8bob$9bo!
20290,3788,3,3:2bob$bobo$obob$2o2b!
20580,3788,13,4:12bob$11bobo$b2o7bobob$o2bo7b2o2b$b2o11b!
20886,3788,7,8:6bob$5bobo$4bobob$4b2o2b$8b$8b$b2o5b$o2bo5b$b2o5b!
21186,3788,7,3:6bob$5bobo$2o2bobob$2o2b2o2b!
21490,3788,3,7:2bob$bobo$obob$2o2b$4b$4b$2o2b$2o2b!
21790,3788,9,3:2bo8b$bobo5bo$obo6bo$2o8b!
22088,3788,5,9:4bob$3bobo$2bobob$2b2o2b$6b$6b$2o4b$obo3b$bobo2b$2bo4b!
22390,3788,5,9:2bo4b$bobo2b$obo3b$2o4b$6b$6b$2b2o2b$2bobob$3bobo$4bob!
22690,3788,9,5:2bo8b$bobo6b$obo3b2o2b$2o4bobob$7bobo$8bob!
22990,3788,4,8:2bo3b$bobob$obo2b$2o3b$5b$5b$2b2ob$2bobo$3bob!
23290,3788,9,5:2bo8b$bobo6b$o2bo7b$b2o5bob$7bobo$7b2ob!
23585,3788,8,9:7bob$6bobo$5bo6bo$6b2ob$9b$9b$bo7b$obo6b$obo6b$bo7b!
23886,3788,7,11:6bob$5bobo$4bo5bo$5b2ob$8b$8b$4b2o2b$3bobo4b$3b2o3b$b2o5b$obo5b$2o6b!
24190,3788,5,9:2bo4b$bobo2b$o2bo3b$b2o3b$6b$6b$6b$4b2o$3bobo$4bob!
24488,3788,5,11:4bob$3bobo$2bo3bo$3b2ob$6b$6b$6b$6b$b2o3b$o2bo3b$obo3b$bo4b!
24790,3788,7,4:bo6b$obo5b$b2o3bob$5bobo$5b2ob!
25085,3788,7,3:bo4bob$obo2bobo$o2bo3b2o$b2o5b!
25390,3788,7,11:bo6b$obo5b$b2o5b$8b$8b$8b$8b$8b$5bo6b$4bobob$4bo5bo$5bobo!
25681,3788,11,4:10bob$2bo7bobo$bobo6b2o$obo9b$2o10b!
25983,3788,9,7:8bob$7bobo$8b2o$10b$10b$bo8b$obo7b$bo8b!
26284,3788,8,5:7bob$6bobo$2b2o3b2o$bobo5b$obo6b$bo7b!
26585,3788,7,4:6bob$5bobo$b2o3b2o$obo5b$bo6b!
26890,3788,4,7:bo3b$obo2b$b2o2b$5b$5b$3b2o$2bobo$3bob!
27190,3788,9,10:bo8b$obo7b$b2o7b$10b$10b$10b$10b$7b2ob$6bo7bo$6bobob$7bo8b!
27490,3788,9,9:bo8b$obo7b$b2o7b$10b$10b$10b$8b2o$7bo8b$7bobo$8bob!
27788,3788,4,9:3bob$2bobo$3b2o$5b$5b$5b$b2o2b$o2bob$bobob$2bo3b!
28090,3788,9,6:bo8b$obo7b$b2o7b$10b$9bo$8bob$9bo!
28380,3788,12,10:11bob$10bobo$11b2o$13b$13b$13b$13b$13b$2o11b$obo10b$b2o10b!
28684,3788,8,8:7bob$6bobo$7b2o$9b$9b$9b$2o7b$obo6b$b2o6b!
28980,3788,13,4:11bo12b$2bo8bobob$bobo7bobo$obo9b2o$2o12b!
29284,3788,9,5:7bo8b$6bobob$2b2o3bobo$bobo4b2o$obo7b$bo8b!
29583,3788,10,4:8bo9b$b2o4bobob$o2bo5bobo$obo6b2o$bo9b!
29890,3788,3,11:bo2b$obob$bobo$2b2o$4b$4b$4b$4b$4b$b2ob$o2bo$obob!
30190,3788,9,3:bo8b$obo6bo$bobo5bo$2b2o6b!
30484,3788,9,5:7bo8b$6bobob$2b2o3bobo$bobo4bob$obo7b$bo8b!
30787,3788,6,11:4bo5b$3bobob$4bobo$5bob$7b$7b$7b$7b$7b$b2o4b$o2bo4b$o2bo4b!
31088,3788,5,8:3bo4b$2bobob$3bobo$4bob$6b$b2o3b$o2bo3b$bobo2b$2bo4b!
31382,3788,10,3:9bob$bo6bobo$obo6bob$2o9b!
31690,3788,9,4:bo8b$obo6bo$bo6bob$8bob$9bo!
31984,3788,8,6:7bob$6bobo$bo5bob$obo6b$o2bo6b$bobo5b$2bo7b!
32285,3788,7,9:6bob$5bobo$6bob$8b$8b$8b$8b$bo6b$obo5b$b2o5b!
32585,3788,7,7:6bob$5bobo$6bob$8b$2b2o4b$bobo4b$obo5b$bo6b!
32883,3788,9,4:8bob$b2o4bobo$o2bo5bob$obo7b$bo8b!
33182,3788,10,7:9bob$8bobo$9bob$11b$b2o8b$o2bo8b$o2bo8b$b2o8b!
33488,3788,4,9:3bob$2bobo$3bob$5b$5b$5b$5b$b2o2b$o2bob$b2o2b!
33790,3788,4,11:bo3b$obo2b$bo3b$5b$5b$5b$5b$5b$2b2ob$bo2bo$2bobo$3bob!
34090,3788,7,7:bo6b$obo5b$bo6b$8b$4b2o2b$4bobob$5bobo$6bob!
34390,3788,7,7:bo6b$obo5b$bo6b$8b$4b2o2b$4bobob$5bobo$6bob!
34690,3788,9,5:4b2o4b$3bobo5bo$3b2o3bob$b2o5b2o$obo7b$2o8b!
34990,3788,5,11:4b2o$3bobo$3b2ob$b2o3b$obo3b$2o4b$6b$6b$3bo4b$2bobob$2bo3bo$3b2ob!
35285,3788,10,10:9b2o$8bobo$8b2ob$6b2o3b$5bobo7b$5b2o4b$bo9b$obo8b$o2bo8b$bobo7b$2bo9b!
35581,3788,14,5:13b2o$2bo10bobo$bobo8b2ob$obo7b2o3b$2o7bobo9b$9b2o4b!
35884,3788,11,7:10b2o$9bobo$9b2ob$7b2o3b$2bo4bobo6b$bobo2b2o4b$o2bo9b$b2o9b!
36180,3788,15,10:14b2o$13bobo$13b2ob$11b2o3b$10bobo12b$10b2o4b$16b$16b$b2o13b$obo13b$2o14b!
36490,3788,5,10:4b2o$3bobo$3b2ob$b2o3b$obo3b$2o4b$6b$6b$2b2o2b$bobo2b$2bo4b!
36782,3788,13,7:12b2o$11bobo$11b2ob$9b2o3b$b2o5bobo7b$o2bo5b2o4b$obo11b$bo12b!
37089,3788,6,11:5b2o$4bobo$4b2ob$2b2o3b$bobo3b$b2o4b$7b$7b$b2o4b$o2bo4b$o2bo4b$b2o4b!
37390,3788,9,5:4b2o4b$3bobo6b$3b2o4bo$b2o5bob$obo6bo$2o8b!
37683,3788,9,7:8b2o$7bobo$7b2ob$bo8b$obo7b$o2bo7b$bobo6b$2bo8b!
37990,3788,5,8:b2o3b$obo3b$2o4b$6b$3bo4b$2bobob$2bo3bo$3bobo$4bob!
38290,3788,4,8:b2o2b$obo2b$2o3b$5b$5b$3bob$2bobo$bo2bo$2b2ob!
38590,3788,8,4:b2o6b$obo4bob$2o4bobo$5bo6bo$6b2ob!
38885,3788,7,11:6b2o$5bobo$5b2ob$8b$8b$8b$8b$8b$8b$8b$b2o5b$obo5b!
39183,3788,9,8:8b2o$7bobo$7b2ob$10b$10b$10b$b2o7b$obo7b$2o8b!
39484,3788,8,9:7b2o$6bobo$6b2ob$9b$9b$9b$9b$b2o6b$obo6b$2o7b!
39784,3788,8,3:7b2o$b2o3bobo$obo3b2ob$bo7b!
40090,3788,4,11:b2o2b$obo2b$2o3b$5b$5b$5b$5b$5b$2b2ob$bo2bo$bobob$2bo3b!
40390,3788,9,4:b2o7b$obo6bo$2o6bob$8bob$9bo!
40685,3788,7,3:b2o3b2o$o2bobobo$bobob2ob$2bo6b!
40987,3788,5,8:4b2o$3bobo$3b2ob$6b$6b$b2o3b$o2bo3b$bobo2b$2bo4b!
41290,3788,8,5:b2o6b$obo6b$2o3b2o2b$4bo5bob$5bo6bo$6b2ob!
41582,3788,10,7:9b2o$8bobo$8b2ob$11b$2o9b$obo8b$bobo7b$2bo9b!
41882,3788,10,10:9b2o$8bobo$8b2ob$11b$11b$11b$11b$11b$2o9b$obo8b$bo9b!
42185,3788,8,5:7b2o$6bobo$2bo3bobob$bobo2bo3b$obo6b$2o7b!
42488,3788,5,8:4b2o$3bobo$2bobob$3bo4b$6b$2bo4b$bobo2b$obo3b$2o4b!
42789,3788,4,11:3b2o$2bobo$bobob$2bo3b$5b$5b$5b$5b$5b$bo3b$obo2b$b2o2b!
43089,3788,4,11:3b2o$2bobo$bobob$2bo3b$5b$5b$5b$5b$5b$5b$bo3b$obo2b!
43390,3788,4,11:2b2ob$bobob$obo2b$bo3b$5b$5b$5b$5b$5b$3b2o$2bobo$2b2ob!
43690,3788,8,8:2b2o5b$bobo5b$obo6b$bo7b$9b$9b$7b2o$6bobo$6b2ob!
43984,3788,9,3:2b2o4b2o$bobo3bobo$obo3bobob$bo5bo6b!
44290,3788,9,3:2b2o4b2o$bobo3bobo$obo3bobob$bo5bo6b!
44587,3788,6,7:5b2o$4bobo$3bobob$4bo5b$7b$b2o4b$obo4b$bo5b!
44890,3788,8,8:2b2o5b$bobo5b$obo6b$bo7b$9b$9b$7b2o$6bobo$7bob!
45190,3788,6,11:2b2o3b$bobo3b$obo4b$bo5b$7b$7b$7b$7b$7b$7b$4b2ob$3bo4bo!
45490,3788,9,11:2b2o6b$bobo6b$obo7b$bo8b$10b$10b$10b$10b$9bo$8bob$8bob$9bo!
45785,3788,8,7:7b2o$6bobo$5bobob$6bo7b$9b$b2o6b$o2bo6b$b2o6b!
46090,3788,3,10:2b2o$bobo$obob$bo2b$4b$4b$4b$4b$b2ob$o2bo$b2ob!
46390,3788,7,3:2b2o2b2o$bobo2b2o$obo5b$bo6b!
46690,3788,3,11:2b2o$bobo$obob$bo2b$4b$4b$4b$4b$4b$b2ob$bobo$2b2o!
46990,3788,5,9:2b2o2b$bobo2b$obo3b$bo4b$6b$6b$2b2o2b$2bobob$3bobo$4bob!
47290,3788,9,5:2b2o6b$bobo6b$obo3b2o2b$bo4bobob$7bobo$8bob!
47590,3788,8,4:2b2o5b$bobo5b$obo3b2ob$bo4bobo$7bob!
47890,3788,7,3:b2o5b$obo3bob$bo3bobo$5b2ob!
48188,3788,4,10:3b2o$2bobo$3bob$5b$5b$5b$bo3b$obo2b$o2bob$bobob$2bo3b!
48489,3788,3,10:2b2o$bobo$2bob$4b$4b$4b$4b$4b$bo2b$obob$bo2b!
48790,3788,9,6:b2o7b$obo7b$bo8b$10b$10b$9bo$9bo!
49084,3788,8,4:7b2o$b2o3bobo$o2bo4bob$o2bo6b$b2o6b!
49390,3788,7,6:b2o5b$obo5b$bo6b$8b$8b$6b2o$6b2o!
49688,3788,4,8:3b2o$2bobo$3bob$5b$5b$2o3b$obo2b$bobob$2bo3b!
49990,3788,5,8:b2o3b$obo3b$bo4b$6b$6b$2b2o2b$2bobob$3bobo$4bob!
50290,3788,7,8:b2o5b$obo5b$bo6b$8b$8b$4b2o2b$4bobob$5bobo$6bob!
50583,3788,10,6:8b2ob$7bo8bo$7bobob$bo6bo7b$obo8b$obo8b$bo9b!
50884,3788,9,4:7b2ob$bo4bo5bo$obo3bobob$o2bo4bo5b$b2o7b!
51182,3788,11,5:9b2ob$8bo9bo$2bo6bobob$bobo5bo6b$o2bo9b$b2o9b!
51481,3788,12,3:bo8b2ob$obo6bo7bo$bobo5bobob$2b2o6bo7b!
51789,3788,4,10:2b2ob$bo2bo$bobob$2bo3b$5b$5b$5b$bo3b$obo2b$bobob$2b2ob!
52089,3788,4,9:2b2ob$bo2bo$bobob$2bo3b$5b$5b$5b$bo3b$obo2b$bo3b!
52387,3788,6,11:4b2ob$3bo4bo$3bobob$4bo5b$7b$7b$7b$7b$3b2o2b$2bobo3b$2b2o3b$2o5b!
52683,3788,10,9:8b2ob$7bo8bo$7bobob$8bo9b$11b$11b$11b$b2o8b$obo8b$bo9b!
52983,3788,10,4:8b2ob$b2o4bo5bo$o2bo4bobob$o2bo5bo6b$b2o8b!
53290,3788,6,9:b2o4b$o2bo4b$obo4b$bo5b$7b$7b$3b2o2b$3bobob$4bobo$5bob!
53590,3788,9,6:b2o7b$o2bo7b$obo7b$bo4b2o2b$6bobob$7bobo$8bob!
53880,3788,13,11:11b2ob$10bo11bo$10bobob$11bo12b$14b$14b$14b$14b$14b$2o12b$obo11b$bo12b!
54189,3788,4,8:2b2ob$bo2bo$bo2bo$2b2ob$5b$5b$bo3b$obo2b$2o3b!
54483,3788,10,7:8b2ob$7bo8bo$7bo8bo$8b2ob$bo9b$obo8b$obo8b$bo9b!
54790,3788,9,6:b2o7b$o2bo7b$o2bo7b$b2o7b$10b$9bo$9bo!
55081,3788,12,6:10b2ob$9bo10bo$9bo10bo$bo8b2ob$obo10b$bobo9b$2bo11b!
55386,3788,7,10:5b2ob$4bo5bo$4bo5bo$5b2ob$8b$8b$8b$8b$bo6b$obo5b$bo6b!
55682,3788,11,6:9b2ob$4b2o2bo3bo$3bobo4bo5bo$3b2o4b2ob$b2o9b$obo9b$2o10b!
55990,3788,6,6:b2o4b$o2bo4b$o2bo4b$b2o4b$5b2o$4bobo$4b2ob!
56290,3788,6,6:b2o4b$o2bo4b$o2bo4b$b2o4b$5b2o$4bobo$4b2ob!
56590,3788,6,11:b2o4b$o2bo4b$o2bo4b$b2o4b$7b$7b$7b$7b$7b$5b2o$4bobo$3bobob!
56889,3788,4,10:2b2ob$bo2bo$bo2bo$2b2ob$5b$5b$5b$b2o2b$o2bob$obo2b$bo3b!
57190,3788,9,11:b2o7b$o2bo7b$o2bo7b$b2o7b$10b$10b$10b$10b$9bo$8bob$8bob$9bo!
57490,3788,9,11:b2o7b$o2bo7b$o2bo7b$b2o7b$10b$10b$10b$10b$9bo$8bob$8bob$9bo!
57783,3788,10,4:8b2ob$7bo8bo$7bo8bo$2o6b2ob$2o9b!
58090,3788,3,8:b2ob$o2bo$b2ob$4b$4b$2bob$bobo$bobo$2bob!
58390,3788,5,8:b2o3b$o2bo3b$b2o3b$6b$6b$4bob$3bobo$2bobob$2b2o2b!
58684,3788,9,8:7b2ob$6bo7bo$7b2ob$10b$10b$2bo8b$bobo6b$o2bo7b$b2o7b!
58990,3788,9,4:b2o7b$o2bo6bo$b2o5bob$7bo8b$8b2o!
59287,3788,6,10:4b2ob$3bo4bo$4b2ob$7b$7b$7b$7b$b2o4b$o2bo4b$obo4b$bo5b!
59586,3788,7,10:5b2ob$4bo5bo$5b2ob$8b$8b$8b$8b$b2o5b$o2bo5b$o2bo5b$b2o5b!
59882,3788,11,6:9b2ob$8bo9bo$9b2ob$12b$12b$2o10b$2o10b!
60190,3788,5,11:b2o3b$o2bo3b$b2o3b$6b$6b$6b$6b$6b$6b$6b$4b2o$4b2o!
60486,3788,7,5:5b2ob$4bo5bo$2o3b2ob$obo5b$bobo4b$2bo6b!
60790,3788,7,8:b2o5b$o2bo5b$b2o5b$8b$8b$4b2o2b$4bobob$5bobo$6bob!
61090,3788,3,7:b2ob$o2bo$bobo$2bob$4b$bo2b$obob$b2ob!
61390,3788,7,3:b2o3b2o$o2bobobo$bobob2ob$2bo6b!
61684,3788,9,6:7b2ob$6bo7bo$7bobo$2b2o4bob$bobo6b$obo7b$bo8b!
61989,3788,4,9:2b2ob$bo2bo$2bobo$3bob$5b$5b$b2o2b$o2bob$obo2b$bo3b!
62290,3788,9,9:b2o7b$o2bo7b$bobo6b$2bo8b$10b$10b$9bo$8bob$8bob$9bo!
62590,3788,3,3:b2ob$o2bo$bobo$2bob!
62890,3788,3,11:b2ob$o2bo$bobo$2bob$4b$4b$4b$4b$4b$4b$b2ob$bobo!
63190,3788,6,10:b2o4b$o2bo4b$bobo3b$2bo5b$7b$7b$7b$7b$4b2ob$4bobo$5b2o!
63486,3788,7,8:5b2ob$4bo5bo$5bobo$6bob$8b$2o6b$obo5b$bobo4b$2bo6b!
63784,3788,10,4:7b2o2b$6bo7bob$bo5bo6bo$obo5b2ob$2o9b!
64090,3788,9,3:b2o7b$o2bo6bo$bo2bo4bob$2b2o5bo!
64388,3788,6,8:3b2o2b$2bo3bob$3bo4bo$4b2ob$7b$7b$bo5b$obo4b$bo5b!
64690,3788,6,8:b2o4b$o2bo4b$bo2bo3b$2b2o3b$7b$7b$5bob$4bobo$5bob!
64984,3788,10,10:7b2o2b$6bo7bob$7bo8bo$8b2ob$11b$4b2o5b$3bobo7b$3b2o6b$b2o8b$obo8b$2o9b!
65287,3788,7,9:4b2o2b$3bo4bob$4bo5bo$5b2ob$8b$8b$8b$b2o5b$obo5b$2o6b!
65590,3788,9,5:b2o7b$o2bo7b$bo2bo4b2o$2b2o3bobo$6bobob$7bo8b!
65890,3788,5,11:b2o3b$o2bo3b$bo2bob$2b2o2b$6b$6b$6b$6b$6b$3b2ob$2bo3bo$2bobob!
66190,3788,4,3:b2o2b$o2bob$bo2bo$2b2ob!
66490,3788,4,11:b2o2b$o2bob$bo2bo$2b2ob$5b$5b$5b$5b$5b$b2o2b$bobob$2b2ob!
66789,3788,5,11:2b2o2b$bo2bob$2bo3bo$3b2ob$6b$6b$6b$6b$2o4b$obo3b$bobo2b$2bo4b!
67090,3788,8,9:b2o6b$o2bo6b$bo2bo5b$2b2o5b$9b$9b$5b2o2b$5bobob$6bobo$7bob!
67390,3788,6,3:2o5b$2o3bob$4bobo$4b2ob!
67685,3788,6,11:5b2o$5b2o$7b$7b$7b$7b$7b$7b$bo5b$obo4b$obo4b$bo5b!
67990,3788,9,10:2o8b$2o8b$10b$10b$10b$10b$10b$10b$10b$9bo$9bo!
68284,3788,7,3:2b2o2b2o$bobo2b2o$obo5b$bo6b!
68588,3788,3,7:2b2o$2b2o$4b$4b$2b2o$bobo$obob$bo2b!
68890,3788,9,11:2o8b$2o8b$10b$10b$10b$10b$10b$10b$10b$9bo$8bob$7bobo!
69190,3788,3,6:2o2b$2o2b$4b$4b$2b2o$bobo$2bob!
69490,3788,7,10:2o6b$2o6b$8b$8b$8b$8b$8b$5b2ob$4bo5bo$4bobob$5bo6b!
69790,3788,9,7:2o8b$2o8b$10b$10b$8b2o$7bo8b$7bobo$8bob!
70087,3788,4,10:3b2o$3b2o$5b$5b$5b$5b$5b$b2o2b$o2bob$o2bob$b2o2b!
70384,3788,7,7:6b2o$6b2o$8b$8b$b2o5b$o2bo5b$bo2bo4b$2b2o4b!
70690,3788,3,7:2o2b$2o2b$4b$4b$2o2b$obob$bobo$2bob!
70990,3788,7,3:2o2b2o2b$2o2bobob$5bobo$6bob!
71290,3788,9,10:2o8b$obo7b$b2o7b$10b$10b$10b$10b$10b$9bo$8bob$8b2o!
71590,3788,4,8:2o3b$obo2b$b2o2b$5b$5b$3bob$2bobo$2bobo$3bob!
71890,3788,8,8:2o7b$obo6b$b2o6b$9b$9b$6bo7b$5bobob$5bo6bo$6b2ob!
72190,3788,6,7:2o5b$obo4b$b2o4b$7b$5bob$4bobo$3bo4bo$4b2ob!
72490,3788,7,6:2o6b$obo5b$b2o5b$6bob$5bobo$4bo5bo$5b2ob!
72782,3788,10,11:8b2ob$8bobo$9b2o$11b$11b$11b$11b$11b$11b$11b$bo9b$obo8b!
73084,3788,8,8:6b2ob$6bobo$7b2o$9b$9b$9b$bo7b$obo6b$b2o6b!
73390,3788,9,10:2o8b$obo7b$b2o7b$10b$10b$10b$10b$10b$9bo$8bob$8b2o!
73690,3788,9,10:2o8b$obo7b$b2o7b$10b$10b$10b$10b$10b$9bo$8bob$8b2o!
73990,3788,9,10:2o8b$obo7b$b2o7b$10b$10b$10b$10b$10b$9bo$8bob$9bo!
74290,3788,4,10:2o3b$obo2b$b2o2b$5b$5b$5b$5b$2b2ob$bo2bo$bobob$2bo3b!
74590,3788,9,4:2o8b$obo5b2o$b2o4bo5b$7bobo$8bob!
74890,3788,8,10:2o7b$obo6b$b2o6b$9b$9b$9b$9b$6b2ob$5bo6bo$5bo6bo$6b2ob!
75190,3788,9,8:2o8b$obo7b$b2o7b$10b$10b$8b2o$7bo8b$7bo8b$8b2o!
75485,3788,7,4:5b2ob$5bobo$b2o3b2o$o2bo5b$b2o5b!
75790,3788,8,4:2o7b$obo6b$b2o3b2ob$5bo6bo$6b2ob!
76090,3788,8,8:2o7b$obo6b$b2o6b$9b$9b$6b2ob$5bo6bo$6bobo$7bob!
76384,3788,8,8:6b2ob$6bobo$7b2o$9b$9b$b2o6b$o2bo6b$bo2bo5b$2b2o5b!
76690,3788,5,8:2o4b$obo3b$b2o3b$6b$6b$2b2o2b$2bobob$3bobo$4bob!
76990,3788,8,5:2o7b$obo6b$b2o2b2o2b$5bobob$6bobo$7bob!
77285,3788,8,4:5b2o2b$5bobob$bo4bobo$obo4bob$2o7b!
77590,3788,8,3:2o7b$obo4bob$bobo2bobo$2bo4b2ob!
77890,3788,9,3:2o6bob$obo4bobo$bobo3b2ob$2bo8b!
78188,3788,5,7:2b2o2b$2bobob$3bobo$4bob$bo4b$obo3b$obo3b$bo4b!
78485,3788,8,7:5b2o2b$5bobob$6bobo$7bob$bo7b$obo6b$o2bo6b$b2o6b!
78782,3788,11,5:8b2o2b$bo6bobob$obo6bobo$o2bo7bob$bobo8b$2bo10b!
79086,3788,7,10:4b2o2b$4bobob$5bobo$6bob$8b$8b$8b$8b$b2o5b$obo5b$2o6b!
79384,3788,9,5:6b2o2b$6bobob$2b2o3bobo$bobo4bob$obo7b$bo8b!
79685,3788,8,4:5b2o2b$5bobob$b2o3bobo$obo4bob$bo7b!
79990,3788,3,9:2o2b$obob$bobo$2bob$4b$4b$4b$b2ob$obob$bo2b!
80290,3788,3,8:2o2b$obob$bobo$2bob$4b$4b$2b2o$bobo$2bob!
80590,3788,9,11:2o8b$obo7b$bobo6b$2bo8b$10b$10b$10b$10b$7b2ob$6bo7bo$6bobob$7bo8b!
80890,3788,9,9:2o8b$obo7b$bobo6b$2bo8b$10b$10b$9bo$8bob$8bob$9bo!
81188,3788,5,8:2b2o2b$2bobob$3bobo$4bob$6b$6b$b2o3b$o2bo3b$b2o3b!
81486,3788,7,3:2o2b2o2b$2o2bobob$5bobo$6bob!
81784,3788,9,3:2o4b2o2b$obo3bobob$bobo3bobo$2bo6bob!
82090,3788,3,9:2o2b$obob$bobo$2bob$4b$4b$2o2b$obob$bobo$2bob!
82390,3788,9,3:2o4b2o2b$obo3bobob$bobo3bobo$2bo6bob!
82685,3788,8,8:5b2o2b$5bobob$6bobo$7bob$9b$9b$2o7b$obo6b$bo7b!
82982,3788,10,10:8b2ob$8bobo$9bob$11b$11b$11b$11b$11b$b2o8b$obo8b$2o9b!
83283,3788,9,8:7b2ob$7bobo$8bob$10b$10b$10b$b2o7b$obo7b$bo8b!
83585,3788,7,8:5b2ob$5bobo$6bob$8b$8b$8b$b2o5b$obo5b$bo6b!
83881,3788,11,11:9b2ob$9bobo$10bob$12b$12b$12b$12b$12b$12b$12b$b2o9b$o2bo9b!
84190,3788,7,11:2o6b$obo5b$bo6b$8b$8b$8b$8b$8b$5b2ob$4bo5bo$4bobob$5bo6b!
84490,3788,9,7:2o8b$obo7b$bo8b$10b$9bo$8bob$8bob$9bo!
84784,3788,8,11:6b2ob$6bobo$7bob$9b$9b$9b$9b$9b$b2o6b$o2bo6b$bobo5b$2bo7b!
85090,3788,3,11:2o2b$obob$bo2b$4b$4b$4b$4b$4b$4b$b2ob$bobo$2b2o!
85390,3788,9,2:2o8b$obo6bo$bo7bo!
85684,3788,8,8:6b2ob$6bobo$7bob$9b$9b$2o7b$obo6b$bobo5b$2bo7b!
1676,4011,8,7:7bob$6bobo$6bobo$7bob$2b2o5b$bobo5b$obo6b$bo7b!
1779,4011,7,7:6bob$5bobo$4bobob$4b2o2b$8b$bo6b$obo5b$bo6b!
1879,4011,7,8:6bob$5bobo$4bobob$4b2o2b$8b$8b$b2o5b$o2bo5b$b2o5b!
1976,4011,7,7:6bob$5bobo$6bob$8b$2b2o4b$bobo4b$obo5b$bo6b!
2077,4011,10,4:8b2ob$7bo8bo$7bo8bo$2o6b2ob$2o9b!
2178,4011,4,10:3b2o$3b2o$5b$5b$5b$5b$5b$b2o2b$o2bob$o2bob$b2o2b!
1672,4211,8,7:bo7b$obo6b$2o7b$9b$5b2o2b$5bobob$6bobo$7bob!
1779,4211,10,6:bo9b$obo8b$o2bo8b$b2o8b$8b2ob$8bobo$9b2o!
1882,4211,7,8:b2o5b$obo5b$bo6b$8b$8b$4b2o2b$4bobob$5bobo$6bob!
1976,4211,6,10:b2o4b$o2bo4b$bobo3b$2bo5b$7b$7b$7b$7b$4b2ob$4bobo$5b2o!
2080,4211,3,11:2o2b$obob$bo2b$4b$4b$4b$4b$4b$4b$b2ob$bobo$2b2o!
2175,4211,11,3:2o10b$obo6b2ob$bo7bobo$10b2o!
1679,4411,3,9:2bob$bobo$obob$2o2b$4b$4b$2bob$bobo$obob$2o2b!
1776,4411,9,3:2b2o4b2o$bobo3bobo$obo3bobob$bo5bo6b!
1876,4411,9,3:2b2o4b2o$bobo3bobo$obo3bobob$bo5bo6b!
1680,4611,8,8:6bo7b$5bobob$5bo6bo$6bobo$7bob$9b$2o7b$obo6b$b2o6b!
1775,4611,8,8:6b2ob$6bobo$7b2o$9b$9b$b2o6b$o2bo6b$bo2bo5b$2b2o5b!
1673,4811,3,10:bo2b$obob$o2bo$bobo$2bob$4b$4b$4b$2bob$bobo$2b2o!
1783,4811,5,11:4bob$3bobo$2bo3bo$3b2ob$6b$6b$6b$6b$b2o3b$o2bo3b$obo3b$bo4b!
1870,4811,10,10:9b2o$8bobo$8b2ob$11b$11b$11b$11b$11b$2o9b$obo8b$bo9b!
1972,4811,11,5:9b2ob$8bo9bo$2bo6bobob$bobo5bo6b$o2bo9b$b2o9b!
2072,4811,10,3:b2o8b$o2bo6bob$bo2bo4bobo$2b2o5b2o!
2175,4811,10,10:8b2ob$8bobo$9bob$11b$11b$11b$11b$11b$b2o8b$obo8b$2o9b!
1674,5011,8,8:7bob$6bobo$7b2o$9b$9b$9b$2o7b$obo6b$b2o6b!
1781,5011,8,8:6b2ob$6bobo$7b2o$9b$9b$9b$bo7b$obo6b$b2o6b!
1672,5211,6,7:bo5b$obo4b$2o5b$7b$7b$7b$5b2o$5b2o!
1782,5211,7,6:b2o5b$obo5b$bo6b$8b$8b$6b2o$6b2o!
1679,5412,5,11:3b2ob$2bo3bo$2bo3bo$3b2ob$6b$6b$6b$6b$b2o3b$o2bo3b$o2bo3b$b2o3b!
1779,5412,9,4:8bob$7bobo$bo5bobo$obo5bob$2o8b!
1881,5412,5,12:4bob$3bobo$2bo3bo$3b2ob$6b$6b$6b$6b$6b$6b$bo4b$obo3b$bo4b!
1977,5412,7,9:b2o5b$obo5b$2o6b$8b$8b$8b$8b$5b2ob$5bobo$6b2o!
Edit:
Updated the script and the attachment at 13:48 UTC +2.00
Edit:
Another update (script and attachment) :
Just keep the 4 rotations - removed the mirrored
- Attachments
-
- 2SL_Glider_Splitters_Search.zip
- (10.37 KiB) Downloaded 1 time
Avatar's pattern
Possible uses found by Dave Green
Jormungant's explanation and uses
Currently investigating signal collisions … (stand by)