Lejkin's Polystate Life

For discussion of other cellular automata.
Post Reply
User avatar
Apple Bottom
Posts: 1034
Joined: July 27th, 2015, 2:06 pm
Contact:

Lejkin's Polystate Life

Post by Apple Bottom » September 1st, 2017, 2:50 pm

Last night, I spotted Nicolay Beluchenko's page on polystate Life, as created by Boris Lejkin:
Nicolay Beluchenko wrote: Boris Lejkin has offered the following alternative of Life with several alive states: Rule S23/B3 is fulfilled for cells of each ON state irrespective of others. If the dead cell has 3 neighbours in state A and 3 neighbours in state B birthes of a new cell do not happen.
In other words: each live state, together with the shared dead state, forms its own B3/S23 CA, and if a cell would get born in two different of these state-CAs (which obviously cannot happen: the cell cannot have two states at once in the next generation, at least not until someone comes up with some kind of quantum CA), it gets born in neither.

I thought this was interesting. Golly doesn't support it natively, but it should be easy enough to use RuleLoader, right? But these files will get fairly big as the number of states grows, it's easy to introduce mistakes, and besides, I'm lazy. So I thought, why not have a script generate these?

It didn't stop there; there's no reason to do all this for just Conway Life. The script I'd like to share (attached) therefore generates polystate versions of arbitrary outer-totalistic rules.

To run it, you'll need:
  • Perl;
  • the Algorithm::Combinatorics module, from CPAN;
  • the List::Compare::Functional module, also from CPAN.
Install the CPAN modules the usual way ("cpan install Algorithm::Combinatorics List::Compare::Functional" if your distro doesn't package them), then run the script like this:

Code: Select all

$ perl polystatelife_rule.pl --states 4 --rule b36s125
Creating rule Polystate_B36S125_4...
Writing birth conditions...............................................................
Writing death conditions.................................................................................................................................................................................................................................................................................
Rule written in 0.01 seconds.
I have NOT tested this extensively (and haven't really tested non-Life rules at all), and would NOT AT ALL be surprised if this contains bugs, but the patterns from Beluchenko's page that I tried in Golly with the resulting rules worked.

I'd be very interested to hear feedback. (And to answer the obvious question right away: I don't plan on adapting this to non-totalistic rules, but if you want to do it, consider the script to be GPL3'ed and be my guest.)
Attachments
Polystate_B3S23_3.rule
(1.84 KiB) Downloaded 239 times
polystatelife_rule.zip
(2.78 KiB) Downloaded 199 times
If you speak, your speech must be better than your silence would have been. — Arabian proverb

Catagolue: Apple Bottom • Life Wiki: Apple Bottom • Twitter: @_AppleBottom_

Proud member of the Pattern Raiders!

User avatar
toroidalet
Posts: 1514
Joined: August 7th, 2016, 1:48 pm
Location: My computer
Contact:

Re: Lejkin's Polystate Life

Post by toroidalet » September 2nd, 2017, 11:33 am

Synthesis of a 44-cell multistate still life in 12 gliders:

Code: Select all

x = 18, y = 34, rule = Polystate_B3S23_3
15.A$15.A.A$15.2A2$2.A$A.A$.2A4$3.B6.B$4.B6.B$2.3B4.3B$6.B6.B$5.B6.B$
5.3B4.3B3$5.3A4.3A$5.A6.A$6.A6.A$2.3A4.3A$4.A6.A$3.A6.A4$.2B$B.B$2.B
2$15.2B$15.B.B$15.B!
Any sufficiently advanced software is indistinguishable from malice.

User avatar
Apple Bottom
Posts: 1034
Joined: July 27th, 2015, 2:06 pm
Contact:

Re: Lejkin's Polystate Life

Post by Apple Bottom » September 2nd, 2017, 4:01 pm

toroidalet wrote:Synthesis of a 44-cell multistate still life in 12 gliders:
Hey, cool! Now all we need is support for these rules in apgsearch. ;)

BTW, I noticed that more people grabbed the example rule file I included than the script itself, so in order to make it easier for people to explore these rules I've included all the generated rules files for B3/S23, up to 10 states.[1]

If anyone would like to see a different file, say for a different base rule or using a different number of states, but cannot run the script for whatever reason, let me know and I'll generate it.

1. This is an archive-within-an-archive, apologies for that. The reason is simply that the forum will allow neither a) xz-compressed files, nor b) files over 256 KB (the ZIP archive was 710). Talk about tools working against rather than for the user!
Attachments
Polystate_B3S23_3-10.zip
(141.53 KiB) Downloaded 209 times
If you speak, your speech must be better than your silence would have been. — Arabian proverb

Catagolue: Apple Bottom • Life Wiki: Apple Bottom • Twitter: @_AppleBottom_

Proud member of the Pattern Raiders!

User avatar
Saka
Posts: 3627
Joined: June 19th, 2015, 8:50 pm
Location: Indonesia
Contact:

Re: Lejkin's Polystate Life

Post by Saka » September 2nd, 2017, 11:13 pm

This might make a synth

Code: Select all

x = 17, y = 14, rule = Polystate_B3S23_3
5.2B$2A3.2B$2A3$3.2A2B$3.2A2B$11.3A$10.A2.A$10.A2.A$11.2A2$15.2A$15.
2A!

User avatar
Andrew
Moderator
Posts: 927
Joined: June 2nd, 2009, 2:08 am
Location: Melbourne, Australia
Contact:

Re: Lejkin's Polystate Life

Post by Andrew » October 8th, 2019, 8:10 pm

Below is a script based on NewCA.lua in Golly 3.3 that can be used to explore Polystate rules. Hit alt-R (option-R on a Mac) to create a random pattern in a random rule.

Save the following script as Polystate.lua:

Code: Select all

--[[
This script lets you explore Boris Lejkin's Polystate CA using
the rule syntax defined by Apple Bottom here:

http://conwaylife.com/forums/viewtopic.php?f=11&t=3078&start=0

Author: Andrew Trevorrow (andrew@trevorrow.com), Oct 2019.
--]]

local g = golly()
local gp = require "gplus"
local split = gp.split
local rand = math.random

require "gplus.NewCA"
SCRIPT_NAME = "Polystate"
DEFAULT_RULE = "Polystate_B3S23_3"
RULE_HELP = [[
This script lets you explore Boris Lejkin's Polystate CA.
Rule strings are of the form Polystate_BbSs_n where
b is the list of birth counts (1 to 8), s is the list of
survival counts (0 to 8), and n is the number of states (2 to 256).
]]

-- the following are non-local so a startup script can change them
DEFWD, DEFHT = 500, 500         -- default grid size
aliases = {}                    -- none for now

--------------------------------------------------------------------------------

NextPattern = function() end    -- set by ParseRule to NextOneState or NextMultiState
local births, survivals         -- set by ParseRule and used in NextPattern

function ParseRule(newrule)
    -- Parse the given rule string.
    -- If valid then return nil, the canonical rule string,
    -- the width and height of the grid, and the number of states.
    -- If not valid then just return an appropriate error message.
    
    if #newrule == 0 then
        newrule = DEFAULT_RULE  -- should be a valid rule!
    else
        -- check for a known alias
        local rule = aliases[newrule]
        if rule then
            newrule = rule
        elseif newrule:find(":") then
            -- try without the suffix
            local p, s = split(newrule,":")
            rule = aliases[p]
            if rule then newrule = rule..":"..s end
        end
    end
    
    local prefix, suffix = split(newrule:upper(),":")
    
    -- check for a valid prefix
    local b, s, n = prefix:match("^POLYSTATE_B([1-8]*)S([0-8]*)_(%d+)$")
    if not (b and s and n) then
        return "The rule syntax must be Polystate_BbSs_n\n"..
               "where b lists the birth counts (1 to 8),\n"..
               "s lists the survival counts (0 to 8),\n"..
               "and n is the number of states (2 to 256)."
    end
    n = tonumber(n)
    if n < 2 or n > 256 then
        return "The number of states must be from 2 to 256."
    end
    
    -- check for a valid suffix like T50 or T50,30
    local wd, ht = DEFWD, DEFHT
    if suffix then
        if suffix:find(",") then
            wd, ht = suffix:match("^T(%d+),(%d+)$")
        else
            wd = suffix:match("^T(%d+)$")
            ht = wd
        end
        wd = tonumber(wd)
        ht = tonumber(ht)
        if wd == nil or ht == nil then
            return "Rule suffix must be Twd,ht or Twd."
        end
    end
    if wd < 10 then wd = 10 elseif wd > 2000 then wd = 2000 end
    if ht < 10 then ht = 10 elseif ht > 2000 then ht = 2000 end
    
    -- given rule is valid
    
    -- set births and survivals for use in NextPattern
    births = {}
    survivals = {}
    local bc, sc = "", ""   -- canonical B and S strings
    for i = 0, 8 do
        if b:find(tostring(i)) then births[i] = 1; bc = bc..i end
        if s:find(tostring(i)) then survivals[i] = 1; sc = sc..i end
    end
    
    if n > 2 then
        NextPattern = NextMultiState
    else
        NextPattern = NextOneState
    end

    -- create the canonical form of the given rule
    local canonrule = "Polystate_B"..bc.."S"..sc.."_"..n..":T"..wd..","..ht
    
    return nil, canonrule, wd, ht, n
end

--------------------------------------------------------------------------------

function NextOneState(currcells, minx, miny, maxx, maxy)
    -- Create the next pattern where currcells is a one-state cell array.
    
    local newcells = {}         -- cell array for the new pattern (one-state)
    local newlen = 0            -- length of newcells
    local ecount = {}           -- keys are x,y coords for empty neighbor counts
    local gridwd = maxx-minx+1
    local get = g.getcell
    
    for i = 1, #currcells, 2 do
        local x = currcells[i]
        local y = currcells[i+1]
        local xm1 = x-1
        local xp1 = x+1
        local ym1 = y-1
        local yp1 = y+1
        
        -- might need to wrap edges
        if xm1 < minx then xm1 = maxx end
        if xp1 > maxx then xp1 = minx end
        if ym1 < miny then ym1 = maxy end
        if yp1 > maxy then yp1 = miny end

        -- calculate offsets needed to create keys for ecount
        local xm1off =  xm1-minx
        local xoff   =  x  -minx
        local xp1off =  xp1-minx
        local ym1off = (ym1-miny) * gridwd
        local yoff   = (y  -miny) * gridwd
        local yp1off = (yp1-miny) * gridwd
        
        local xm1_ym1 = xm1off + ym1off
        local x___ym1 = xoff   + ym1off
        local xp1_ym1 = xp1off + ym1off
        local xm1_y   = xm1off + yoff
        local xp1_y   = xp1off + yoff
        local xm1_yp1 = xm1off + yp1off
        local x___yp1 = xoff   + yp1off
        local xp1_yp1 = xp1off + yp1off
        
        local n = 0
        if get(xm1, ym1) > 0 then n = n + 1 else ecount[xm1_ym1] = (ecount[xm1_ym1] or 0) + 1 end
        if get(x  , ym1) > 0 then n = n + 1 else ecount[x___ym1] = (ecount[x___ym1] or 0) + 1 end
        if get(xp1, ym1) > 0 then n = n + 1 else ecount[xp1_ym1] = (ecount[xp1_ym1] or 0) + 1 end
        if get(xm1, y  ) > 0 then n = n + 1 else ecount[xm1_y  ] = (ecount[xm1_y  ] or 0) + 1 end
        if get(xp1, y  ) > 0 then n = n + 1 else ecount[xp1_y  ] = (ecount[xp1_y  ] or 0) + 1 end
        if get(xm1, yp1) > 0 then n = n + 1 else ecount[xm1_yp1] = (ecount[xm1_yp1] or 0) + 1 end
        if get(x  , yp1) > 0 then n = n + 1 else ecount[x___yp1] = (ecount[x___yp1] or 0) + 1 end
        if get(xp1, yp1) > 0 then n = n + 1 else ecount[xp1_yp1] = (ecount[xp1_yp1] or 0) + 1 end
        if survivals[n] then
            -- this live cell survives
            newlen = newlen+1 ; newcells[newlen] = x
            newlen = newlen+1 ; newcells[newlen] = y
        end
    end
    
    -- now add births to newcells using the empty neighbor counts created above
    for k,v in pairs(ecount) do
        if births[v] then
            newlen = newlen+1 ; newcells[newlen] = minx + (k % gridwd)
            newlen = newlen+1 ; newcells[newlen] = miny + (k // gridwd)
        end
    end

    -- delete the old pattern and add the new pattern
    g.putcells(currcells, 0, 0, 1, 0, 0, 1, "xor")
    g.putcells(newcells)
    
    return newcells     -- return the new pattern
end

--------------------------------------------------------------------------------

function NextMultiState(currcells, minx, miny, maxx, maxy)
    -- Create the next pattern where currcells is a multi-state cell array.
    
    local newcells = {}         -- cell array for the new pattern (multi-state)
    local newlen = 0            -- length of newcells
    local emptycells = {}       -- keys are x,y coords for empty cells next to at least one live cell
    local gridwd = maxx-minx+1
    local maxstate = g.numstates() - 1
    local get = g.getcell

    local currlen = #currcells  -- multi-state so odd number
    -- ignore any padding int at end of currcells
    if currlen % 3 > 0 then currlen = currlen - 1 end
    
    for i = 1, currlen, 3 do
        local x = currcells[i]
        local y = currcells[i+1]
        local state = currcells[i+2]
        
        local xm1 = x-1
        local xp1 = x+1
        local ym1 = y-1
        local yp1 = y+1
        -- might need to wrap edges
        if xm1 < minx then xm1 = maxx end
        if xp1 > maxx then xp1 = minx end
        if ym1 < miny then ym1 = maxy end
        if yp1 > maxy then yp1 = miny end

        -- calculate offsets needed to create keys for emptycells
        local xm1off =  xm1-minx
        local xoff   =  x  -minx
        local xp1off =  xp1-minx
        local ym1off = (ym1-miny) * gridwd
        local yoff   = (y  -miny) * gridwd
        local yp1off = (yp1-miny) * gridwd
        
        local xm1_ym1 = xm1off + ym1off
        local x___ym1 = xoff   + ym1off
        local xp1_ym1 = xp1off + ym1off
        local xm1_y   = xm1off + yoff
        local xp1_y   = xp1off + yoff
        local xm1_yp1 = xm1off + yp1off
        local x___yp1 = xoff   + yp1off
        local xp1_yp1 = xp1off + yp1off
        
        local n1 = get(xm1, ym1)
        local n2 = get(x  , ym1)
        local n3 = get(xp1, ym1)
        local n4 = get(xm1, y  )
        local n5 = get(xp1, y  )
        local n6 = get(xm1, yp1)
        local n7 = get(x  , yp1)
        local n8 = get(xp1, yp1)

        -- count the number of neighbors with the same state
        local n = 0
        if n1 > 0 then if n1 == state then n = n + 1 end else emptycells[xm1_ym1] = 0 end
        if n2 > 0 then if n2 == state then n = n + 1 end else emptycells[x___ym1] = 0 end
        if n3 > 0 then if n3 == state then n = n + 1 end else emptycells[xp1_ym1] = 0 end
        if n4 > 0 then if n4 == state then n = n + 1 end else emptycells[xm1_y  ] = 0 end
        if n5 > 0 then if n5 == state then n = n + 1 end else emptycells[xp1_y  ] = 0 end
        if n6 > 0 then if n6 == state then n = n + 1 end else emptycells[xm1_yp1] = 0 end
        if n7 > 0 then if n7 == state then n = n + 1 end else emptycells[x___yp1] = 0 end
        if n8 > 0 then if n8 == state then n = n + 1 end else emptycells[xp1_yp1] = 0 end
        
        if survivals[n] then
            -- this live cell survives
            newlen = newlen+1 ; newcells[newlen] = x
            newlen = newlen+1 ; newcells[newlen] = y
            newlen = newlen+1 ; newcells[newlen] = state
        end
    end
    
    -- now go thru emptycells and add any births to newcells
    for k,v in pairs(emptycells) do
        local x = minx + (k % gridwd)
        local y = miny + (k // gridwd)
        local xm1 = x-1
        local xp1 = x+1
        local ym1 = y-1
        local yp1 = y+1
        -- might need to wrap edges
        if xm1 < minx then xm1 = maxx end
        if xp1 > maxx then xp1 = minx end
        if ym1 < miny then ym1 = maxy end
        if yp1 > maxy then yp1 = miny end

        local n1 = get(xm1, ym1)
        local n2 = get(x  , ym1)
        local n3 = get(xp1, ym1)
        local n4 = get(xm1, y  )
        local n5 = get(xp1, y  )
        local n6 = get(xm1, yp1)
        local n7 = get(x  , yp1)
        local n8 = get(xp1, yp1)
        
        local scount = {}
        for s = 1, maxstate do
            scount[s] = 0
        end
        if n1 > 0 then scount[n1] = scount[n1] + 1 end
        if n2 > 0 then scount[n2] = scount[n2] + 1 end
        if n3 > 0 then scount[n3] = scount[n3] + 1 end
        if n4 > 0 then scount[n4] = scount[n4] + 1 end
        if n5 > 0 then scount[n5] = scount[n5] + 1 end
        if n6 > 0 then scount[n6] = scount[n6] + 1 end
        if n7 > 0 then scount[n7] = scount[n7] + 1 end
        if n8 > 0 then scount[n8] = scount[n8] + 1 end

        local possible = {}
        local posslen = 0
        for s = 1, maxstate do
            if births[ scount[s] ] then
                -- a possible birth (if it's the only one)
                posslen = posslen + 1
                if posslen > 1 then break end
                possible[posslen] = s
            end
        end
        if posslen == 1 then
            -- we have a birth
            newlen = newlen+1 ; newcells[newlen] = x
            newlen = newlen+1 ; newcells[newlen] = y
            newlen = newlen+1 ; newcells[newlen] = possible[posslen]
        end
    end
    
    if newlen > 0 then
        -- ensure length of newcells is odd
        if newlen & 1 == 0 then newlen = newlen+1 ; newcells[newlen] = 0 end
    end

    -- delete the old pattern and add the new pattern
    g.putcells(currcells, 0, 0, 1, 0, 0, 1, "xor")
    g.putcells(newcells)
    
    return newcells     -- return the new pattern
end

--------------------------------------------------------------------------------

-- override the SetColors function
function SetColors()
    g.setcolors( {0,0,0,0} )                -- state 0 is black
    g.setcolors( {255,255,0, 255,0,0 } )    -- live cells go from yellow to red
end

--------------------------------------------------------------------------------

-- startup script can redefine this
function RandomRule()
    local rand = math.random
    local b = ""
    local s = ""
    for i = 1, 8 do if rand(0,1) > 0 then b = b..i end end
    for i = 0, 8 do if rand(0,1) > 0 then s = s..i end end
    return "Polystate_B"..b.."S"..s.."_"..rand(2,256)
end

--------------------------------------------------------------------------------

-- allow alt-R to create a random pattern with a random rule
local saveHandleKey = HandleKey
function HandleKey(event)
    local _, key, mods = split(event)
    if key == "r" and mods == "alt" then
        SetRule(RandomRule())
        RandomPattern()
    else
        -- pass the event to the original HandleKey
        saveHandleKey(event)
    end
end

--------------------------------------------------------------------------------

-- and away we go...
StartNewCA()
Use Glu to explore CA rules on non-periodic tilings: DominoLife and HatLife

User avatar
toroidalet
Posts: 1514
Joined: August 7th, 2016, 1:48 pm
Location: My computer
Contact:

Re: Lejkin's Polystate Life

Post by toroidalet » October 8th, 2019, 11:52 pm

11G synthesis of Saka's pattern:

Code: Select all

x = 71, y = 60, rule = Polystate_B3S23_3
4$61.B$60.B$60.3B7$4.B$5.B$3.3B$7.B$6.B$6.3B2$.2A$.2A4$3.2A2.2B50.A$
2.A.A2.B.B48.A$4.A2.B50.3A4$35.2B$30.2A3.2B$30.2A3$33.2A2B$33.2A2B3$
36.2A$37.2A$36.A6.3A$43.A$44.A4$50.2A$50.A.A$50.A!
Cool catalysis:

Code: Select all

x = 7, y = 7, rule = Polystate_B3S23_3
.B$2.B2.2B$3B2.2B2$4.A$3.A.A$4.A!
Any sufficiently advanced software is indistinguishable from malice.

Antonin Duda
Posts: 65
Joined: October 19th, 2023, 10:23 am
Location: 404 not found

Re: Lejkin's Polystate Life

Post by Antonin Duda » October 25th, 2023, 7:04 am

P9

Code: Select all

x = 5, y = 9, rule = Polystate_B3S23_3
2.2A$.A2.A$2.2A$2.B$.2B$B.B$2B2A$.A2.A$2.2A!
edit 1:
P3

Code: Select all

x = 6, y = 4, rule = Polystate_B3S23_3
.2A$.2A.B$3.B.B$3B.B!
edit 2:
Pulsar quadrant

Code: Select all

x = 8, y = 8, rule = Polystate_B3S23_3
2.3B2$B4.B$B4.B2A$B4.B2A$2.3B$3.2A$3.2A!

User avatar
confocaloid
Posts: 2933
Joined: February 8th, 2022, 3:15 pm

Re: Lejkin's Polystate Life

Post by confocaloid » October 25th, 2023, 8:17 pm

Two Herschels collide to make six gliders

Code: Select all

#C 1H + 1H -> 3G + 3G
x = 20, y = 9, rule = Polystate_B3S23_3
17.B$17.3B$17.B.B$19.B2$A$A.A$3A$2.A!
#C [[ ZOOM 10 ]]
127:1 B3/S234c User:Confocal/R (isotropic CA, incomplete)
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.

AbhpzTa
Posts: 593
Joined: April 13th, 2016, 9:40 am
Location: Ishikawa Prefecture, Japan

Re: Lejkin's Polystate Life

Post by AbhpzTa » November 25th, 2023, 2:17 am

Stable version of some periodic reflectors (bouncer, bumper, CP/CC cenarks(smaller/faster), hotcrystal0 reflectors ("unix-specific", "beehive+fishhook"(180deg and 90deg)), "ocellus/gallus", "prepond", "p8"):

Code: Select all

x = 543, y = 244, rule = Polystate_B3S23_3
2.2A.A8.2A.A64.2A.A86.2A.A84.2A.A86.2A.A8.2A.A76.2A.A70.2A.A8.2A.A$2.
A.2A8.A.2A64.A.2A86.A.2A84.A.2A86.A.2A8.A.2A76.A.2A70.A.2A8.A.2A$6.2A
10.2A66.2A4.2A4.2A60.2A4.2A8.2A70.2A4.2A8.2A82.2A16.2A60.2A4.2A4.2A4.
2A60.2A4.2A4.2A10.2A$6.A11.A67.A5.A5.A61.A5.A9.A71.A5.A9.A83.A17.A61.
A5.A5.A5.A61.A5.A5.A11.A$7.A11.A67.A5.A5.A61.A5.A9.A71.A5.A9.A83.A17.
A61.A5.A5.A5.A61.A5.A5.A11.A$6.2A10.2A66.2A4.2A4.2A60.2A4.2A8.2A70.2A
4.2A8.2A82.2A16.2A60.2A4.2A4.2A4.2A60.2A4.2A4.2A10.2A$2.2A.A8.2A.A64.
2A.A8.2A.A64.2A.A6.2A.A74.2A.A6.2A.A86.2A.A76.2A.A8.2A.A$2.A.2A8.A.2A
64.A.2A8.A.2A64.A.2A6.A.2A74.A.2A6.A.2A86.A.2A76.A.2A8.A.2A$2A10.2A
72.2A10.2A66.2A8.2A76.2A8.2A88.2A10.2A66.2A10.2A60.2A4.2A4.2A10.2A$A
11.A73.A11.A67.A9.A77.A9.A89.A11.A67.A11.A61.A5.A5.A11.A$.A11.A73.A
11.A67.A9.A77.A9.A89.A11.A67.A11.A61.A5.A5.A11.A$2A10.2A72.2A10.2A66.
2A8.2A76.2A8.2A88.2A10.2A66.2A10.2A60.2A4.2A4.2A10.2A$2.2A.A8.2A.A64.
2A.A86.2A.A84.2A.A86.2A.A88.2A.A70.2A.A$2.A.2A8.A.2A64.A.2A86.A.2A84.
A.2A86.A.2A88.A.2A70.A.2A18$A80.A80.A87.A98.A86.2A72.A$.2A79.A77.A.A
85.A.A99.A78.A7.A70.A.A$2A78.3A78.2A86.2A97.3A79.A6.A.A69.2A$428.3A7.
2A$172.2A.BA83.2A.BA178.A$172.A.BABA82.A.BABA176.A.A$5.A.A165.2ABA.A
82.2ABA.A175.A.A$6.2A169.A87.A177.A$6.A176.2A86.2A$2.2A86.A92.A87.A
90.2B$2.2A2.2A2.B77.A.A90.A.A85.A.A90.2B$6.A.AB.B.B75.2A4.B75.A.A7.2A
76.A.A7.2A$7.A.B2A2B80.B.B71.2B2.2A82.2B2.2A91.A$8.2B2A.2A76.2A2.B2A
70.2B2.A83.2B2.A91.A.A185.2A$4.2A7.AB75.A2.A2.BA254.BA86.A.A97.A$5.A
4.2A3B75.A.A.B.B76.2A86.2A89.2B8.A.A76.2A95.A.A$2.3A5.AB79.A2.2B76.A.
A85.A.A100.2A76.A4.B91.2A$2.A8.2B73.2B85.A87.A101.A4.B76.B.B86.A$86.B
A279.B.B70.2A4.B86.A.A$86.2A181.2B91.2A4.B71.2A91.A.A$269.2B91.2A79.
2B89.A$178.2B2AB182.2B76.AB$178.B.A2B2A180.AB76.2A$179.2B2A.A180.2A$
265.2A$265.2A2$535.A.A$536.2A$536.A4.B$540.B.B$535.2A4.B$535.2A$538.
2B$538.AB$538.2A15$162.A87.A$160.A.A85.A.A$161.2A86.2A$171.2A.BA83.2A
.BA$171.A.BABA82.A.BABA$172.2ABA.A82.2ABA.A$164.B11.A75.B11.A$162.AB.
B16.2A66.AB.B16.2A$162.2AB17.A67.2AB17.A$164.A3B12.A.A69.A3B12.A.A$
162.2AB.AB2.A.A7.2A68.2AB.AB2.A.A7.2A$162.A.B2A4.2A77.A.B2A4.2A$164.
2B5.A80.2B5.A$166.B87.B$164.2B2A.B2.2A78.2B2A.B2.2A$164.B2A.B.BA.A78.
B2A.B.BA.A$164.A3.AB2.A79.A3.AB2.A$164.2A.2A83.2A.2A$268.2B$268.2B$
177.2B2AB$177.B.A2B2A$178.2B2A.A$264.2A$264.2A14$162.2A.A8.2A.A72.2A.
A8.2A.A$162.A.2A8.A.2A72.A.2A8.A.2A$166.2A4.2A4.2A74.2A4.2A4.2A$166.A
5.A5.A75.A5.A5.A$167.A5.A5.A75.A5.A5.A$166.2A4.2A4.2A74.2A4.2A4.2A$
162.2A.A8.2A.A72.2A.A8.2A.A$162.A.2A8.A.2A72.A.2A8.A.2A$166.2A10.2A
74.2A10.2A$166.A11.A75.A11.A$167.A11.A75.A11.A$166.2A10.2A74.2A10.2A$
162.2A.A8.2A.A72.2A.A8.2A.A$162.A.2A8.A.2A72.A.2A8.A.2A73$2.A.A44.2B
42.2B2A$3.2A.2B38.A.A2B42.BA.A$3.A3.B39.2A45.2A$2B4.B40.A$2B.2A.2B$3.
2A41.2A2B38.A.A2.2A$45.A2.AB39.2A2.2A$45.2AB2A39.A$47.2B$42.2A43.2A$
43.A38.2A3.2A$40.3A40.A7.B$40.A39.3A4.B2.B.B$80.A5.B.BA.B$87.BA.A$88.
2A10$22.2A8.2A10.2A11.A$21.A.A8.A10.A.A10.A.A$21.A2.2A7.A9.A12.A.A$
20.2A4.A5.2A8.2A11.2A.2A$26.A27.A5.A$20.2A5.2A3.2A8.2A10.A5.A$20.A8.A
2.A8.A.A9.2A.A.A.2A$21.A7.A3.A6.A.A9.A2.2A.2A2.A$20.2A8.4A6.2A10.2A7.
2A2$20.2A10.2A6.2A10.2A7.2A$20.A11.A7.A10.A.A7.A.A$21.A11.A4.A.A10.A
11.A$20.2A10.2A4.2A10.2A11.2A!
State-changing reflector, repeat time 111:

Code: Select all

x = 41, y = 53, rule = Polystate_B3S23_3
.B2.A$B.BA.A$B.2BA.A7.A$.B2.BA.A5.A.A$2A2B.BA.A5.A$A.AB.2BA.A$3.AB2.B
A.A$4.A2B.BA.A6.2A$5.AB.2BA.A5.2A$6.A4.A$7.A$8.A4.2B$5.3A4.B.B3.2A$5.
A7.B4.2A3$5.2A.2B.2B$5.A.AB3.B$7.A.3B$5.2BA.2A$5.BA2.2A$6.2A$11.2A$
11.A.A$11.A26$39.2A$38.2A$40.A!
100009436650194649 = 94649 * 1056634900001

Antonin Duda
Posts: 65
Joined: October 19th, 2023, 10:23 am
Location: 404 not found

Re: Lejkin's Polystate Life

Post by Antonin Duda » December 23rd, 2023, 8:45 am

A small period 2 one-time g-lwss converter, where both phases work and die out quickly

Code: Select all

x = 20, y = 11, rule = Polystate_B3S23_3
2.B.B10.B.B$3.2B11.2B$3.B12.B3$3.A2B10.A2B$3.2AB10.2AB$4.A12.A$A3.A.A
10.A.A$A4.2A5.3A3.2A$A!
Some more stuff:

Code: Select all

x = 79, y = 14, rule = Polystate_B3S23_3
A.A7.A.A9.A.A9.A.A10.A.A9.A.A12.A.A$.2A8.2A10.2A10.2A11.2A10.2A13.2A$
.A9.A11.A11.A12.A11.A14.A3$30.2B3.B2A10.B2A9.B2A12.B2A$2.B2A7.B2A9.B
2A3.2B3.2BA10.2BA9.2BA12.2BA$2.2BA7.2BA9.2BA9.B12.B11.B14.B$36.B.B5.
2B3.B.B9.B.B12.B.B$37.2B5.2B4.2B10.2B8.2B3.2B$57.2B13.2B$15.B10.2B29.
2B$14.2B10.B.B$14.B.B9.B!
Edit:
C_R_116 wrote:
September 5th, 2023, 2:48 pm
Small c/7 partial:

Code: Select all

x = 15, y = 13, rule = B3/S23
b3o7b3o$b3o7b3o$4bo5bo2$2o11b2o$2bo9bo$3o9b3o$5b2ob2o$6bobo$3b2obobob
2o$2bo9bo2$2bobo5bobo!
C/7 Partial stabilized by 2 loafers in Polystate Life:

Code: Select all

x = 23, y = 22, rule = Polystate_B3S23_3
5.3B7.3B$5.3B7.3B$8.B5.B2$4.2B11.2B$6.B9.B$4.3B9.3B$9.2B.2B$10.B.B$7.
2B.B.B.2B$6.B9.B2$6.B.B5.B.B$7.A7.A$6.A.A5.A.A$5.A2.A5.A2.A$6.2A7.2A$
7.A7.A$2.A17.A$.A.A3.A7.A3.A.A$2A.A3.2A5.2A3.A.2A$3.2A2.2A5.2A2.2A!

User avatar
confocaloid
Posts: 2933
Joined: February 8th, 2022, 3:15 pm

Re: Lejkin's Polystate Life

Post by confocaloid » April 4th, 2024, 6:33 am

Crossposting from thread viewtopic.php?f=11&t=6410 various patterns that were discovered in a rediscovery of this CA rule under a different name

Code: Select all

#C p396 B track that can fit three B heptominoes (post181024 post181026)
#C p20 rake using a puffer engine; sparky spaceship (post180911)
#C oscillators (post181188 post181261 post181324 post181419 post181737)
#C an interesting fuse; a 2 gliders+block+2 tub reaction creating a large still life (post181202)
#C p46 gun (a monomer of a LoM hassler from Life) (post181287)
#C block in pond can function as an edgy eater (post181419)
#C 10G mixed-state synthesis of a p80 B-heptomino hassler (post181737)
x = 500, y = 264, rule = Polystate_B3S23_3
57.A$22.2B.2B.2B28.A$22.2B.2B.2B8.2B13.A4.A$17.2B15.2B.B2AB13.5A$16.B
2AB14.2B.B2AB$16.B2AB18.2B19.2B$17.2B38.2B.2B5.2B10.A$57.4B5.4B10.A$
17.2B22.2B15.2B6.2B.2B5.A3.A$17.2B10.2B10.2B25.2B7.4A$29.2B$41.2B$41.
2B$23.2B$15.2B6.2B16.2B33.3A$15.2B16.2B6.2B35.A$18.2A13.2B43.A$15.2B.
A.A56.A$15.2B.A6.2A$24.A2.2B$15.2B8.2A2B10.2B38.A$15.2B22.2B39.A$30.A
45.A3.A$30.2A7.2B36.4A$18.2B11.2A5.B2AB$17.B2AB.2B6.2A6.B2AB$17.B2AB.
2B15.2B$18.2B8.2B.2B.2B$28.2B.2B.2B8$57.6B$56.B5.B$62.B12.A2.A$56.B4.
B17.A$58.2B15.A3.A$22.2B.2B.2B46.4A$22.2B.2B.2B8.2B20.A$17.2B15.2B.B
2AB18.3A$16.B2AB14.2B.B2AB16.2A2.A10.2A$16.BA.B18.2B17.2A16.A$17.2B2A
37.A10.A6.2A$18.A2.2A13.4A29.A7.A$17.2BA16.2A3.2B17.A.A6.A7.A$17.2BA.
2A6.2B4.A4.A2B18.A8.3A3.A$29.2B7.3A20.B8.3B3.B$18.3A20.2B17.B.B6.B7.B
$38.A2.2B26.B7.B$23.2B13.A19.B10.B6.2B$15.2B6.2B13.A2.2B14.2B16.B$15.
2B16.2B6.2B14.2B2.B10.2B$18.2A13.2B24.3B$15.2B.A.A39.B$15.2B.A6.2A49.
4B$24.A2.2B29.2A15.B3.B$15.2B8.2A2B10.2B15.A4.A17.B$15.2B22.2B21.A12.
B2.B$30.A25.A5.A$30.2A7.2B16.6A$18.2B11.2A5.B2AB$17.B2AB.2B6.2A6.B2AB
$17.B2AB.2B15.2B$18.2B8.2B.2B.2B$28.2B.2B.2B26$199.B$175.2B21.B.B98.
2A2.2A119.B6.B$75.A8.A24.B6.B6.2A2B4.2B2A9.3A11.A16.2B21.B.B96.2B2.2A
2.2B5.2A7.2A6.2A6.2B8.B14.2B23.B35.B.B4AB.B6.2A.2A10.A8.2BA2.A2B6.2A
7.2A2B8.B$12.2A9.A7.A42.A.A.4B.A.A10.2B10.B.B4.B.B5.2A2B4.2B2A8.A3.A
9.A.A39.B97.2B.A2.A.2B5.A.A.2B3.A.A4.A.A6.2B7.B.B13.2B22.B.B33.B.BA4.
AB.B5.2AB2A7.A3.A7.2B4.2B5.A.A6.A.A.B2A5.B.B$10.A4.A6.A3.A.A3.A12.3A
14.2B9.A2.AB.2B.BA2.A9.B.B.2A5.B2.B4.B2.B5.B.B4.B.B6.2B.A3.A.2B5.A2.A
13.A4.A78.3B2.3A5.A14.A2.A7.A10.A3.2B2.A2B2.2B2.A2.A2.2B15.B.3A35.B
35.BA6.AB7.B.B6.2BA3.A2B5.2A4.2A3.2BA8.2A.B2.A3.3AB$10.A4.A7.A2.A.A2.
A10.2BA.A.A2B7.A2.4B2.A6.2A3.2B3.2A9.2A2B.2A6.2B2A2.2A2B6.2B6.2B6.2B.
A3.A.2B6.2A.3B10.6A7.2B3.2A77.A3.A2B8.A2.A7.A.A6.A.A3.2B.A5.2B.A4.A.
2B16.A3.A7.A4.A14.A42.A3.2B3.A6.2AB7.2BA3.A2B4.A2.4A2.A2.2B2A7.B.B.2A
4.B.A$11.A2BA8.A2.A.A2.A10.2BA3.A2B6.A.AB4.BA.A6.B8.B10.2A2B10.A2.2A
2.A8.A6.A11.3A12.B3.B21.B2.B2.A.A61.B4.BA4.A3.A3.A2B5.2BA4.A2B5.A8.A
27.2B2.A21.6A9.B4.A42.A2.B2.B2.A6.2A11.3A7.2A6.2A13.2B.A5.B.BA$11.A2B
A6.2B.A.A.A.A.2B8.2A2.A2.2A6.A.A.B2.B.A.A5.B10.B22.2B2A2.2A2B6.A.A4.A
.A52.2B3.3A61.B4.BA4.A4.A2.A7.2B.A2.A.2B5.A8.A27.2B.2A8.A3.A22.B.B3.A
42.A2.B2.B2.A19.2B24.2A2B4.A.A6.B$10.A4.A5.2B.2A3.2A.2B7.A4.B4.A6.AB.
B2.B.BA6.3B6.3B21.B2.B4.B2.B5.A.A4.A.A10.3A11.B3.B28.A2.A45.A2B3.3A6.
B4.BA4.A4.3A9.A.A2.A.A5.A.A6.A.A30.A9.3A.B22.B47.A3.2B3.A19.2B25.A2B
4.2A$10.A4.A25.2A.AB.BA.2A7.2B4.2B7.3B6.3B22.B.B4.B.B7.A6.A7.2B.A3.A.
2B8.3B.2A27.2A46.2AB6.B7.3B2.3A6.2B10.2A4.2A5.A10.A43.B.B26.2A41.BA6.
AB34.A9.A.A$12.2A7.2B.2A3.2A.2B7.A4.B4.A22.B10.B23.B6.B7.2B6.2B6.2B.A
3.A.2B11.A2.A7.6A70.B7.3A2.3B6.2B24.2B.A2.A.2B45.B27.2A40.B.BA4.AB.B
29.2BA3.A2B5.2A$21.2B.A.A.A.A.2B8.2A2.A2.2A24.B8.B39.B.B4.B.B9.A3.A
14.A.A8.A4.A18.2A50.B5.A4.AB4.B30.2B2.2A2.2B30.2B21.6A57.B.B4AB.B30.
2B5.2B$23.A2.A.A2.A10.2BA3.A2B23.2A3.2B3.2A10.2A25.2A2B4.2B2A9.3A16.A
32.A2.A55.A4.AB4.B32.2A2.2A32.2B21.A4.A19.2A37.B6.B31.2A5.2A$23.A2.A.
A2.A10.2BA.A.A2B22.A2.AB.2B.BA2.A9.A.A.2B21.2A2B4.2B2A40.2B20.3A3.2B
50.A4.AB4.B118.2A75.A2.5A2.A$22.A3.A.A3.A12.3A26.A.A.4B.A.A9.2B2A.2B
73.2B20.A.A2.B2.B156.2B27.B70.2A7.2A$23.A7.A29.A2.A10.A8.A10.2B2A99.
2A3.2B52.3A2.3B97.2B22.A3.B.B$61.A2.A321.A4.B$58.2BA4.A2B41.B6.B74.B
194.A$58.2B.A2.A.2B40.B.B4.B.B25.2B13.B31.B.B186.B87.2A$59.A.A2.A.A
42.BA4.AB6.2B2A4.2A2B8.2B12.B.B30.B.B185.B.B43.2A4.2A31.2BA4.A2B$23.A
21.3A11.2A4.2A11.4A27.2A4.2A6.2B2A4.2A2B23.B.3A28.B187.B44.A2.2A2.A
31.2B6.2B$22.A3.A17.A.A.A26.2BA.2A.A2B24.BA4.AB7.A.A4.A.A9.3A13.A3.A
261.2A2.2A32.2A6.2A$23.A2.A2B15.A3.A26.2B2.2A2.2B23.B.B4.B.B6.2A6.2A
6.2BA3.A278.2B2.2B31.A2.6A2.A$23.A2.A2B13.2A2.A2.2A24.A8.A24.B6.B23.
2BA3.A11.A3.A37.B224.2B2.2B31.2A8.2A$24.A.A14.A4.B4.A22.A10.A56.A3.A
12.3A.B35.B.B133.A89.2A2.2A$24.2A15.2A.AB.BA.2A22.3A6.3A57.3A16.B.B
35.B134.3A86.A2.2A2.A$23.2B16.A4.B4.A22.3A6.3A77.B29.A144.A5.2B78.2A
4.2A$23.2B17.2A2.A2.2A23.A10.A57.2B43.B4.A107.A35.2A4.B2AB$44.A3.A26.
A8.A58.2B42.B.B3.A106.A42.B2AB$44.A.A.A26.2B2.2A2.2B103.B111.3A41.2B$
45.3A27.2BA.2A.A2B108.2A$78.4A111.2A101.A$294.2A$198.2A95.2A127.2A4.
2A$198.2A179.2B43.A6.A$204.B142.2A30.2B44.2A2.2A$199.A3.B.B120.2B19.
2A23.2B52.A2BA$199.A4.B33.2B12.2B72.2B44.2B5.A46.A2BA$199.A37.A2B12.
2BA84.2A38.2A44.2A2.2A$192.B44.2A4.A4.A4.2A84.A.A38.2A42.A6.A$191.B.B
47.2A.4A.2A90.A37.2A43.2A4.2A$192.B44.2A4.A4.A4.2A84.A.A39.2B$237.A2B
12.2BA18.B5.A59.2A4.2A34.2B$238.2B12.2B17.ABABA4.A64.A.A26.2B$271.2AB
AB2A55.2A12.A26.2B$274.BAB.A50.2A.A.A12.2A$275.BABA51.A.A9.2A$276.BAB
A49.A2.A9.A$277.BAB50.2A2.A8.3A77.3A4.3A$278.BAB51.2A11.A25.2B12.2B
34.2BA.A4.A.A2B$278.AB52.A2B35.A2B12.2BA33.2BA.A4.A.A2B$278.2A53.2B
35.2A4.A4.A4.2A36.A2B2.2BA$374.2A.4A.2A41.2B2.2B$370.2A4.A4.A4.2A$
370.A2B12.2BA$371.2B12.2B4$425.2B$425.2B$425.2A$423.A$421.2B3A$421.2B
.A$4.B128.2A160.B4.B16.2B16.2B92.A.2B$3.B.B128.A12.2B13.B131.B.B2.B.B
15.B.B14.B.B91.3A2B$4.B142.2B13.3B20.2B16.2B11.2B77.B4.B17.B.B12.B.B
17.2B8.2B65.A$7.A139.3A11.3A.B18.B.B2.A10.A2.B.B10.2B50.2B49.2B12.2B
18.2B8.2B14.2B5.A5.2B33.2A$5.2A14.3A6.B7.B7.B7.B7.B7.B76.3A11.A2.AB4.
2B6.2B5.B3.A10.A3.B25.2B18.2B16.2B109.2B5.A3.A.2B33.2B$6.2A13.A.A.3B
2.B2.3B2.B2.3B2.B2.3B2.B2.3B2.B2.3B2.B47.2B28.A13.3A2B3.2B6.2BA8.A10.
A20.2B7.2B4.A8.A4.2B42.3A2.3A15.A5.A6.A5.A44.A8.2A35.2B$21.3A6.B7.B7.
B7.B7.B7.B47.2B2A.A8.2A11.2B3.2B7.2BA2.A7.A6.2A8.A10.A20.2B12.2A8.2A
45.2A8.2A13.2A3.2A6.2A3.2A43.3A7.A$.2B117.A2.A4.2B3.A.A9.2B3.2B8.B3A
7.2A16.A10.A17.A17.A8.A43.2B.2A3.2B3.2A.2B10.A5.A6.A5.A17.A8.A$.2B
117.A.2A2B2.2B6.2B4.2A9.2A2B3.B.2B8.A6.2A8.B10.B12.2B2.3A.2B45.2B.2A
15.A2B2A3.A2BA3.2A2BA45.3A6.3A$124.2B4.A.A3.2B2.2B3A7.3A2B2.2B.2B6.2B
6.2BA8.B10.B12.2B6.2B44.A2B.A.A13.A.A.3A.6A.3A.A.A10.2B12.2B18.A.A2.
2B2.A.A$6.2A124.2A6.2B2A9.2A15.2B6.2B9.B10.B35.B8.B21.2A3.2A14.A2B2A
3.A2BA3.2A2BA11.2B12.2B15.2B5.B2.B5.2B11.2A11.2A$5.2A138.2B3.2B33.A3.
B10.B3.A30.2B8.2B20.A.A.2BA15.2B.2A3.2B3.2A.2B43.2B.A.A2.2B2.A.A.2B
55.2B$7.A137.2B3.2B32.A.A2.B10.B2.A.A12.2B10.2A4.B8.B4.2A16.2A.2B19.
2A8.2A13.A5.A6.A5.A16.3A6.3A58.2B$4.B143.A36.2A16.2A13.2B10.2A18.2A
42.3A2.3A15.2A3.2A6.2A3.2A17.A8.A60.3A2.3A$3.B.B141.3A167.A5.A6.A5.A
45.A7.3A31.A6.A$4.B126.A15.3A231.2A8.A32.3A2.3A$131.2A15.2B121.2B22.B
4.B18.2B12.2B44.2B.A3.A5.2B37.2B$148.2B121.2B21.B.B2.B.B16.B.B12.B.B
43.2B5.A5.2B37.2B$295.B4.B16.B.B14.B.B$317.2B16.2B5$422.2B$422.2B$
427.2B$427.2B2$424.A$423.3A.2B$427.2B$422.2B$422.2B4$58.2A$57.A2BA2.
2B$9.2A9.A36.A2BA.B2AB2.2A$9.2A7.3A37.2A2.B2AB.A2BA2.2B$A16.A45.2B2.A
2BA.B2AB2.2A$3A14.2A49.2A2.B2AB.A2BA2.2B$3.A69.2B2.A2BA.B2AB2.2A52.B$
2.A.A73.2A2.B2AB.A2BA2.2B45.B.B$2.2A79.2B2.A2BA.B2AB45.2B10.B19.B260.
2B$88.2A2.B2AB55.B.B18.B261.2B$93.2B57.2B18.3B252.3A$422.2B2.A.A2.B$
422.2B2.A3.B.B.2A$9.3A419.2B3.A$9.A2.A413.2B7.2A$10.3A412.B.B8.A$150.
A275.B7.B$148.A.A273.A8.B.B$149.2A273.2A7.2B$15.B148.2B258.A3.2B$15.B
86.A61.B.B258.2A.B.B3.A2.2B$15.B85.2A61.B264.B2.A.A2.2B$101.A.A327.3A
$11.B87.3B59.3A261.2B$10.B.B86.B61.A263.2B$11.B86.2AB61.A$97.2A$96.2B
.A$96.B.B39.3B$95.AB43.B$94.2A43.B30.2B$94.A.A73.B.B$92.3B75.B$92.B
50.3B$91.2AB51.B$90.2A52.B20.2B$89.2B.A72.B.B269.2A$89.B.B73.B263.2A
5.3A$89.B334.2B3.2A$424.2B15.2B$436.2A3.2B$428.3A5.2A$428.2A7$425.2B$
425.2B5$426.2A$425.A2.A2.B$423.B2.2A2.B.B$422.B.B.A.A.B.B$422.B.B2.2A
2.B$423.B2.A2.A$427.2A5$428.2B$428.2B!

Code: Select all

#C p228 glider gun based on p56 pre-pulsar hassler
#C https://conwaylife.com/forums/viewtopic.php?p=181419#p181419
x = 106, y = 58, rule = Polystate_B3S23_3
69.2B12.2B$69.2B12.2B3$69.2B12.2B$69.2B12.2B3$70.2B10.2B$69.B2AB8.B2A
B$63.2B4.B2AB8.B2AB4.2B$63.2B5.2B10.2B5.2B4$10.2B3.2B41.2B3.2B24.2B3.
2B$10.2B3.2B6.2B33.2B3.2B24.2B3.2B$17.2B4.2B40.2B20.2B$17.2B46.2B20.
2B$37.2B$20.2B14.B.B29.2B14.2B$2B2.2B3.2B9.B.B12.B.B10.2B2.2B3.2B9.B.
B12.B.B9.2B3.2B2.2B$2B2.2B2.B2AB9.2B12.2B11.2B2.2B2.B2AB9.2B12.2B9.B
2AB2.2B2.2B$8.B2AB44.B2AB34.B2AB$9.2B8.A5.A6.A5.A18.2B8.A5.A6.A5.A8.
2B$19.2A3.2A6.2A3.2A28.2A3.2A6.2A3.2A$19.A5.A6.A5.A28.A5.A6.A5.A2$21.
2B12.2B32.2B12.2B$21.2B12.2B32.2B12.2B2$19.A5.A6.A5.A28.A5.A6.A5.A$
19.2A3.2A6.2A3.2A28.2A3.2A6.2A3.2A$19.A5.A6.A5.A18.2B8.A5.A6.A5.A8.2B
$56.B2AB34.B2AB$21.2B12.2B11.2B2.2B2.B2AB9.2B12.2B9.B2AB2.2B2.2B$20.B
.B12.B.B10.2B2.2B3.2B9.B.B12.B.B9.2B3.2B2.2B$19.B.B14.B.B29.2B14.2B$
19.2B16.2B$65.2B20.2B$65.2B20.2B$58.2B3.2B24.2B3.2B$58.2B3.2B24.2B3.
2B4$63.2B5.2B10.2B5.2B$63.2B4.B2AB8.B2AB4.2B$69.B2AB8.B2AB$70.2B10.2B
3$69.2B12.2B$69.2B12.2B3$69.2B12.2B$69.2B12.2B!
127:1 B3/S234c User:Confocal/R (isotropic CA, incomplete)
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.

Post Reply