Skip to content

Instantly share code, notes, and snippets.

@s5bug
Last active May 9, 2024 03:41
Show Gist options
  • Save s5bug/ba1e84211896c3f99e691e4c08533015 to your computer and use it in GitHub Desktop.
Save s5bug/ba1e84211896c3f99e691e4c08533015 to your computer and use it in GitHub Desktop.
Advent of Code solved in Hex Casting

Accepts input as a list of UTF-32 codepoints and returns a Number.

High-Level

let isNewline: Number -> Boolean =
  (x: Number) -> x == 10

let isDigit: Number -> Boolean =
  (x: Number) -> (x >= 48) && (x < 58)

let toDigit: Number -> Number =
  (x: Number) -> (x - 48)

let handleLine: List[Number] -> Number =
  let rec iterate: (Number?, Number?, List[Number]) -> Number =
    (first: Number?, last: Number?, rest: List[Number]) ->
      if(isEmpty(rest)) (first * 10) + last
      else
        let (h, t) = uncons(rest)
        if(isDigit(h))
          let newFirst = if(first == null) toDigit(h) else first
          iterate(newFirst, toDigit(h), t)
        else iterate(first, last, t)

  (x: List[Number]) -> iterate(null, null, x)

let splitLines: List[Number] -> List[List[Number]]
  let rec unconsLine: (List[Number], List[Number]) -> (List[Number], List[Number]) =
    (acc: List[Number], rest: List[Number]) ->
      if(rest is Nil) (acc, rest)
      else
        let (h, t) = uncons(rest)
        if(isNewline(h)) (acc, t)
        else unconsLine(acc :+ h, t)
  
  let rec accumulate: (List[List[Number]], List[Number]) -> List[List[Number]] =
    (acc: List[List[Number]], rest: List[Number]) ->
      if(rest == Nil) acc
      else
        let (hl, t) = unconsLine(Nil, rest)
        accumulate(acc :+ hl, t)

  (x: List[Number]) -> accumulate(Nil, x)

let rec sum: List[Number] -> Number =
  (x: List[Number]) ->
    if(x == Nil) 0
    else
      let (h, t) = uncons(x)
      h + sum(t)

let main: List[Number] -> Number =
  (input: List[Number]) ->
    let lines = splitLines(input)
    let individuals = mapList(lines, handleLine)
    sum(individuals)

IR

def isNewline = // num -- bool
  10
  eq

def isDigit = // num -- bool
  dup // -- num num
  48
  geq // -- num bool
  swap
  58
  lt
  and

def toDigit = // num -- num
  48
  sub

def iteratePtr = // first last rest 'iteratePtr -- lineValue
  prospector
  augursPur
  { // first last rest 'iteratePtr --
    swap // first last 'iteratePtr rest
    uncons // first last 'iteratePtr t h
    dup
    isDigit // first last 'iteratePtr t h isDigit(h)
    { // first last 'iteratePtr t h --
      v---
      toDigit // first 'iteratePtr t toDigit(h)
      dup // first 'iteratePtr t toDigit(h) toDigit(h)
      5
      fisherman
      dup // 'iteratePtr t toDigit(h) toDigit(h) first first
      null
      eq
      rotate2
      augursExalt // 'iteratePtr t toDigit(h) newFirst
      23
      swindle
      dup
      hermes
    }
    { // first last 'iteratePtr t h --
      v
      swap
      dup
      hermes
    }
    augursExalt
    hermes
  }
  { // first last rest 'iteratePtr --
    vv // -- first last
    swap
    10
    mul
    add
  }
  augursExalt
  hermes

def handleLine = // line -- value
  null // -- line null
  null // -- line null null
  rotate // -- null null line
  'iteratePtr
  dup
  hermes

def unconsLinePtr = // acc rest 'unconsLinePtr -- line rest
  prospector // -- acc rest 'unconsLinePtr rest
  augursPur // -- acc rest 'unconsLinePtr restNonEmpty
  { // acc rest 'unconsLinePtr --
    swap
    uncons // -- acc 'unconsLinePtr t h
    dup
    isNewline
    { // acc 'unconsLinePtr t h --
      v-v
    }
    { // acc 'unconsLinePtr t h --
      4
      fisherman // -- 'unconsLinePtr t h acc
      swap
      integrate // -- 'unconsLinePtr t (acc :+ h)
      swap
      rotate // -- (acc :+ h) t 'unconsLinePtr
      dup
      hermes
    }
    augursExalt
    hermes
  }
  { // acc rest 'unconsLinePtr --
    v
  }
  augursExalt
  hermes

def accumulatePtr = // acc rest 'unconsLinePtr 'accumulatePtr -- lines
  2
  fisherman2
  augursPur // -- acc rest 'unconsLinePtr 'accumulatePtr restNonEmpty
  { // -- acc rest 'unconsLinePtr 'accumulatePtr
    Nil // -- acc rest 'unconsLinePtr 'accumulatePtr Nil
    4
    fisherman // -- acc 'unconsLinePtr 'accumulatePtr Nil rest
    3
    fisherman2 // -- acc 'unconsLinePtr 'accumulatePtr Nil rest 'unconsLinePtr
    dup
    hermes // acc 'unconsLinePtr 'accumulatePtr unconsHl unconsT
    34
    swindle // 'unconsLinePtr 'accumulatePtr unconsT acc unconsHl
    integrate // 'unconsLinePtr 'accumulatePtr unconsT accHl
    22
    swindle
    dup
    hermes
  }
  { // -- acc rest 'unconsLinePtr 'accumulatePtr
    vvv
  }
  augursExalt
  hermes

def splitLines = // text -- lines
  Nil
  swap // -- Nil text
  'unconsLinePtr
  'accumulatePtr
  dup
  hermes

def sumPtr = // l 'sumPtr -- sum
  prospector
  augursPr // -- l 'sumPtr lNonEmpty
  { // l 'sumPtr --
    swap
    uncons // -- 'sumPtr t h
    swap
    rotate
    dup
    hermes
    add
  }
  {
    vv
    0
  }
  augursExalt
  hermes

def mapHandleLineMod = // ...stack line -- number
  flocksReflection
  flocksGambit
  0
  selectDist // -- line
  handleLine

def main = // text -- lineSum
  splitLines
  'mapHandleLineMod
  swap
  thoth
  'sumPtr
  dup
  hermes

Patterns

Vacant Reflection
Jester's Gambit
{
    Prospector's Gambit
    Augur's Purification
    {
        Jester's Gambit
        Speaker's Decomposition
        Gemini Decomposition
        Numerical Reflection: 10
        Equality Distillation
        {
            Bookkeeper's Gambit: v-v
        }
        {
            Numerical Reflection: 4
            Fisherman's Gambit
            Jester's Gambit
            Integration Distillation
            Jester's Gambit
            Rotation Gambit
            Gemini Decomposition
            Hermes' Gambit
        }
        Augur's Exaltation
        Hermes' Gambit
    }
    {
        Bookkeeper's Gambit: v
    }
    Augur's Exaltation
    Hermes' Gambit
}
{
    Numerical Reflection: 2
    Fisherman's Gambit II
    Augur's Purification
    {
        Vacant Reflection
        Numerical Reflection: 4
        Fisherman's Gambit
        Numerical Reflection: 3
        Fisherman's Gambit II
        Gemini Decomposition
        Hermes' Gambit
        Numerical Reflection: 34
        Swindler's Gambit
        Integration Distillation
        Numerical Reflection: 22
        Swindler's Gambit
        Gemini Decomposition
        Hermes' Gambit
    }
    {
        Bookkeeper's Gambit: vvv
    }
    Augur's Exaltation
    Hermes' Gambit
}
Gemini Decomposition
Hermes' Gambit
{
    Flock's Reflection
    Flock's Gambit
    Numerical Reflection: 0
    Selection Distillation
    Nullary Reflection
    Nullary Reflection
    Rotation Gambit
    {
        Prospector's Gambit
        Augur's Purification
        {
            Jester's Gambit
            Speaker's Decomposition
            Gemini Decomposition
            Gemini Decomposition
            Numerical Reflection: 48
            Maximus Distillation II
            Jester's Gambit
            Numerical Reflection: 58
            Minimus Distillation
            Conjunction Distillation
            {
                Bookkeeper's Gambit: v---
                Numerical Reflection: 48
                Subtractive Distillation
                Gemini Decomposition
                Numerical Reflection: 5
                Fisherman's Gambit
                Gemini Decomposition
                Nullary Reflection
                Equality Distillation
                Rotation Gambit II
                Augur's Exaltation
                Numerical Reflection: 23
                Swindler's Gambit
                Gemini Decomposition
                Hermes' Gambit
            }
            {
                Bookkeeper's Gambit: v
                Jester's Gambit
                Gemini Decomposition
                Hermes' Gambit
            }
            Augur's Exaltation
            Hermes' Gambit
        }
        {
            Bookkeeper's Gambit: vv
            Jester's Gambit
            Numerical Reflection: 10
            Multiplicative Distillation
            Additive Distillation
        }
        Augur's Exaltation
        Hermes' Gambit
    }
    Gemini Decomposition
    Hermes' Gambit
}
Jester's Gambit
Thoth's Gambit
{
    Prospector's Gambit
    Augur's Purification
    {
        Jester's Gambit
        Speaker's Decomposition
        Jester's Gambit
        Rotation Gambit
        Gemini Decomposition
        Hermes' Gambit
        Additive Distillation
    }
    {
        Bookkeeper's Gambit: vv
        Numerical Reflection: 0
    }
    Augur's Exaltation
    Hermes' Gambit
}
Gemini Decomposition
Hermes' Gambit

High-Level

type Dfa = List[DfaState]

record DfaState = {
  accept: Number?,
  transitions: List[Transition]
}

record Transition = {
  max: Number,
  to: Number
}

// .*((?<one>one|1)|(?<two>two|2)|etc
let digitDfa: List[DfaState] = [
  (* 0 = ~ *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 1 = *) {
    accept = 1,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 2 = *) {
    accept = 2,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 3 = *) {
    accept = 3,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 4 = *) {
    accept = 4,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 5 = *) {
    accept = 5,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 6 = *) {
    accept = 6,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 7 = *) {
    accept = 7,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 8 = *) {
    accept = 8,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 9 = *) {
    accept = 9,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 10 = ~e *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 104, to = 0 },
      { max = 105, to = 19 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 11 = ~f *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 104, to = 0 },
      { max = 105, to = 31 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 20 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 12 = ~n *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 104, to = 0 },
      { max = 105, to = 25 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 13 = ~o *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 21 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 14 = ~s *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 32 },
      { max = 102, to = 11 },
      { max = 104, to = 0 },
      { max = 105, to = 29 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 15 = ~t *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 103, to = 0 },
      { max = 104, to = 16 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 118, to = 0 },
      { max = 119, to = 17 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 16 = ~th *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 113, to = 0 },
      { max = 114, to = 27 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 17 = ~tw *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 35 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 18 = ~seve *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 104, to = 0 },
      { max = 105, to = 19 },
      { max = 109, to = 0 },
      { max = 110, to = 37 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 19 = ~ei *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 103, to = 23 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 20 = ~fo *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 21 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 117, to = 22 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 21 = ~on *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 34 },
      { max = 102, to = 11 },
      { max = 104, to = 0 },
      { max = 105, to = 25 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 22 = ~fou *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 113, to = 0 },
      { max = 114, to = 4 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 23 = ~eig *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 103, to = 0 },
      { max = 104, to = 24 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 24 = ~eigh *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 38 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 25 = ~ni *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 26 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 26 = ~nin *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 39 },
      { max = 102, to = 11 },
      { max = 104, to = 0 },
      { max = 105, to = 25 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 27 = ~thr *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 28 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 28 = ~thre *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 36 },
      { max = 102, to = 11 },
      { max = 104, to = 0 },
      { max = 105, to = 19 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ],
  },
  (* 29 = ~si *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 119, to = 0 },
      { max = 120, to = 6 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 30 = ~fiv *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 5 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 31 = ~fi *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 117, to = 0 },
      { max = 118, to = 30 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 32 = ~se *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 104, to = 0 },
      { max = 105, to = 19 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 117, to = 0 },
      { max = 118, to = 33 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 33 = ~sev *) {
    accept = null,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 18 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 34 = ~one *) {
    accept = 1,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 104, to = 0 },
      { max = 105, to = 19 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 35 = ~two *) {
    accept = 2,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 109, to = 0 },
      { max = 110, to = 21 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 36 = ~three *) {
    accept = 3,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 104, to = 0 },
      { max = 105, to = 19 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 37 = ~seven *) {
    accept = 7,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 104, to = 0 },
      { max = 105, to = 25 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 38 = ~eight *) {
    accept = 8,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 103, to = 0 },
      { max = 104, to = 16 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 118, to = 0 },
      { max = 119, to = 17 },
      { max = 1114111, to = 0 }
    ]
  },
  (* 39 = ~nine *) {
    accept = 9,
    transitions = [
      { max = 48, to = 0 },
      { max = 49, to = 1 },
      { max = 50, to = 2 },
      { max = 51, to = 3 },
      { max = 52, to = 4 },
      { max = 53, to = 5 },
      { max = 54, to = 6 },
      { max = 55, to = 7 },
      { max = 56, to = 8 },
      { max = 57, to = 9 },
      { max = 100, to = 0 },
      { max = 101, to = 10 },
      { max = 102, to = 11 },
      { max = 104, to = 0 },
      { max = 105, to = 19 },
      { max = 109, to = 0 },
      { max = 110, to = 12 },
      { max = 111, to = 13 },
      { max = 114, to = 0 },
      { max = 115, to = 14 },
      { max = 116, to = 15 },
      { max = 1114111, to = 0 }
    ]
  }
]

let isNewline: Number -> Boolean =
  (x: Number) -> x == 10

let isDigit: Number -> Boolean =
  (x: Number) -> (x >= 48) && (x < 58)

let toDigit: Number -> Number =
  (x: Number) -> (x - 48)

let transition: (Dfa, Number, Number) -> Number =
  let rec searchTransitions: (Number, List[Transition]) -> Transition =
    (target: Number, transitions: List[Transition]) ->
      let (h, t) = uncons(transitions)
      if(target <= h.max) h
      else searchTransitions(target, t)
  
  (dfa: Dfa, state: Number, symbol: Number) ->
    searchTransitions(symbol, dfa[state].transitions)

let handleLine: (Dfa, List[Number]) -> Number =
  let rec iterate: (Dfa, Number?, Number?, List[Number]) -> Number =
    (dfa: Dfa, first: Number?, last: Number?, state: Number, rest: List[Number]) ->
      if(isEmpty(rest)) (first * 10) + last
      else
        let (h, t) = uncons(rest)
        let nextState = transition(dfa, state, h)
        let accept = dfa[nextState].accept
        if(accept != null)
          let newFirst = if(first == null) accept else first
          iterate(dfa, newFirst, accept, nextState, t)
        else iterate(dfa, first, last, nextState, t)

  (dfa: Dfa, x: List[Number]) -> iterate(dfa, null, null, 0, x)

let splitLines: List[Number] -> List[List[Number]]
  let rec unconsLine: (List[Number], List[Number]) -> (List[Number], List[Number]) =
    (acc: List[Number], rest: List[Number]) ->
      if(rest is Nil) (acc, rest)
      else
        let (h, t) = uncons(rest)
        if(isNewline(h)) (acc, t)
        else unconsLine(acc :+ h, t)
  
  let rec accumulate: (List[List[Number]], List[Number]) -> List[List[Number]] =
    (acc: List[List[Number]], rest: List[Number]) ->
      if(rest == Nil) acc
      else
        let (hl, t) = unconsLine(Nil, rest)
        accumulate(acc :+ hl, t)

  (x: List[Number]) -> accumulate(Nil, x)

let rec sum: List[Number] -> Number =
  (x: List[Number]) ->
    if(x == Nil) 0
    else
      let (h, t) = uncons(x)
      h + sum(t)

let main: List[Number] -> Number =
  (input: List[Number]) ->
    let lines = splitLines(input)
    let dfa = digitDfa
    let individuals = mapList(lines, (x: List[Number]) -> handleLine(dfa, x))
    sum(individuals)

IR

def digitDfa = // -- dfa
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  1
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  2
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  3
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  4
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  5
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  6
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  7
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  8
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  9
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  104
  0
  2
  flocksGambit
  105
  19
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  104
  0
  2
  flocksGambit
  105
  31
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  20
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  104
  0
  2
  flocksGambit
  105
  25
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  21
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  32
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  104
  0
  2
  flocksGambit
  105
  29
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  103
  0
  2
  flocksGambit
  104
  16
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  118
  0
  2
  flocksGambit
  119
  17
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  24
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  113
  0
  2
  flocksGambit
  114
  27
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  21
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  35
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  104
  0
  2
  flocksGambit
  105
  19
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  37
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  103
  23
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  21
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  21
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  117
  22
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  21
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  34
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  104
  0
  2
  flocksGambit
  105
  25
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  113
  0
  2
  flocksGambit
  114
  4
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  21
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  103
  0
  2
  flocksGambit
  104
  24
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  38
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  26
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  39
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  104
  0
  2
  flocksGambit
  105
  25
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  28
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  36
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  104
  0
  2
  flocksGambit
  105
  19
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  119
  0
  2
  flocksGambit
  120
  6
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  5
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  117
  0
  2
  flocksGambit
  118
  30
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  104
  0
  2
  flocksGambit
  105
  19
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  117
  0
  2
  flocksGambit
  118
  33
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  24
  flocksGambit
  2
  flocksGambit
  null
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  18
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  1
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  104
  0
  2
  flocksGambit
  105
  19
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  2
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  21
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  20
  flocksGambit
  2
  flocksGambit
  3
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  104
  0
  2
  flocksGambit
  105
  19
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  7
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  104
  0
  2
  flocksGambit
  105
  25
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  8
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  103
  0
  2
  flocksGambit
  104
  16
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  118
  0
  2
  flocksGambit
  119
  17
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  24
  flocksGambit
  2
  flocksGambit
  9
  48
  0
  2
  flocksGambit
  49
  1
  2
  flocksGambit
  50
  2
  2
  flocksGambit
  51
  3
  2
  flocksGambit
  52
  4
  2
  flocksGambit
  53
  5
  2
  flocksGambit
  54
  6
  2
  flocksGambit
  55
  7
  2
  flocksGambit
  56
  8
  2
  flocksGambit
  57
  9
  2
  flocksGambit
  100
  0
  2
  flocksGambit
  101
  10
  2
  flocksGambit
  102
  11
  2
  flocksGambit
  104
  0
  2
  flocksGambit
  105
  19
  2
  flocksGambit
  109
  0
  2
  flocksGambit
  110
  12
  2
  flocksGambit
  111
  13
  2
  flocksGambit
  114
  0
  2
  flocksGambit
  115
  14
  2
  flocksGambit
  116
  15
  2
  flocksGambit
  1114111
  0
  2
  flocksGambit
  22
  flocksGambit
  2
  flocksGambit
  40
  flocksGambit

def isNewline = // num -- bool
  10
  eq

def isDigit = // num -- bool
  dup // -- num num
  48
  geq // -- num bool
  swap
  58
  lt
  and

def toDigit = // num -- num
  48
  sub

def searchTransitionsPtr = // target transitions 'searchTransitionsPtr -- transition
  rotate2
  uncons // -- 'searchTransitionsPtr target t h
  dup
  0
  selectDist // -- 'searchTransitionsPtr target t h h.max
  3
  fisherman2 // -- 'searchTransitionsPtr target t h h.max target
  geq
  { // 'searchTransitionsPtr target t h --
    vvv-
  }
  { // 'searchTransitionsPtr target t h --
    v
    rotate
    dup
    hermes
  }
  augursExalt
  hermes

def transition = // dfa state symbol -- nextState
  rotate2
  selectDist
  1
  selectDist
  'searchTransitionsPtr
  dup
  hermes
  1
  Selection Distillation

def iteratePtr = // dfa first last state rest 'iteratePtr -- lineValue
  prospector
  augursPur
  { // dfa first last state rest 'iteratePtr --
    swap // -- dfa first last state rest 'iteratePtr rest
    uncons // -- dfa first last state 'iteratePtr t h
    /*
    4 1 2 5 0 3 6

    [4]1 2 5 0 3 6
     4[1]2 4 0 3 5
     4 1[1]3 0 2 4
     4 1 1[2]0 1 3
     4 1 1 2[0]0 2
     4 1 1 2 0[0]1
     4 1 1 2 0 0[0]

    (6! * 4) + (5! * 1) + (4! * 1) + (3! * 2) = 3036
    */
    3036
    swindle // -- 'iteratePtr first last t dfa state h
    2
    fisherman2
    rotate2 // -- 'iteratePtr first last t dfa dfa state h
    transition // -- 'iteratePtr first last t dfa nextState
    dup2 // -- 'iteratePtr first last t dfa nextState dfa nextState
    selectDist
    0
    selectDist // -- 'iteratePtr first last t dfa nextState accept
    dup
    null
    eq
    { // 'iteratePtr first last t dfa nextState accept --
      v
      515
      swindle
    }
    { // 'iteratePtr first last t dfa nextState accept --
      v----
      5
      fisherman
      dup2 // 'iteratePtr t dfa nextState accept first accept first
      rotate
      null // 'iteratePtr t dfa nextState accept accept first first null
      eq
      rotate2
      augursExalt // 'iteratePtr t dfa nextState accept newFirst
      359
      swindle
    }
    augursExalt
    hermes
    dup
    hermes
  }
  { // dfa first last state rest 'iteratePtr --
    v--vvv // -- first last
    swap
    10
    mul
    add
  }
  augursExalt
  hermes

def handleLine = // line dfa -- value
  null // -- line digitDfa null
  null // -- line digitDfa null null
  0 // -- line digitDfa null null 0
  5
  fisherman // -- digitDfa null null 0 line
  'iteratePtr
  dup
  hermes

def unconsLinePtr = // acc rest 'unconsLinePtr -- line rest
  prospector // -- acc rest 'unconsLinePtr rest
  augursPur // -- acc rest 'unconsLinePtr restNonEmpty
  { // acc rest 'unconsLinePtr --
    swap
    uncons // -- acc 'unconsLinePtr t h
    dup
    isNewline
    { // acc 'unconsLinePtr t h --
      v-v
    }
    { // acc 'unconsLinePtr t h --
      4
      fisherman // -- 'unconsLinePtr t h acc
      swap
      integrate // -- 'unconsLinePtr t (acc :+ h)
      swap
      rotate // -- (acc :+ h) t 'unconsLinePtr
      dup
      hermes
    }
    augursExalt
    hermes
  }
  { // acc rest 'unconsLinePtr --
    v
  }
  augursExalt
  hermes

def accumulatePtr = // acc rest 'unconsLinePtr 'accumulatePtr -- lines
  2
  fisherman2
  augursPur // -- acc rest 'unconsLinePtr 'accumulatePtr restNonEmpty
  { // -- acc rest 'unconsLinePtr 'accumulatePtr
    Nil // -- acc rest 'unconsLinePtr 'accumulatePtr Nil
    4
    fisherman // -- acc 'unconsLinePtr 'accumulatePtr Nil rest
    3
    fisherman2 // -- acc 'unconsLinePtr 'accumulatePtr Nil rest 'unconsLinePtr
    dup
    hermes // acc 'unconsLinePtr 'accumulatePtr unconsHl unconsT
    34
    swindle // 'unconsLinePtr 'accumulatePtr unconsT acc unconsHl
    integrate // 'unconsLinePtr 'accumulatePtr unconsT accHl
    22
    swindle
    dup
    hermes
  }
  { // -- acc rest 'unconsLinePtr 'accumulatePtr
    vvv
  }
  augursExalt
  hermes

def splitLines = // text -- lines
  Nil
  swap // -- Nil text
  'unconsLinePtr
  'accumulatePtr
  dup
  hermes

def sumPtr = // l 'sumPtr -- sum
  prospector
  augursPr // -- l 'sumPtr lNonEmpty
  { // l 'sumPtr --
    swap
    uncons // -- 'sumPtr t h
    swap
    rotate
    dup
    hermes
    add
  }
  {
    vv
    0
  }
  augursExalt
  hermes

def mapHandleLineMod = // ...stack line -- number
  flocksReflection
  flocksGambit
  reverse
  0
  2
  selectExalt // -- [line, dfa]
  flocksDisint
  handleLine

def main = // text -- lineSum
  splitLines
  digitDfa
  'mapHandleLineMod
  rotate
  thoth
  v- // dfa lineResults -- lineResults
  'sumPtr
  dup
  hermes

Patterns

Vacant Reflection
Jester's Gambit
{
    Prospector's Gambit
    Augur's Purification
    {
        Jester's Gambit
        Speaker's Decomposition
        Gemini Decomposition
        Numerical Reflection: 10
        Equality Distillation
        {
            Bookkeeper's Gambit: v-v
        }
        {
            Numerical Reflection: 4
            Fisherman's Gambit
            Jester's Gambit
            Integration Distillation
            Jester's Gambit
            Rotation Gambit
            Gemini Decomposition
            Hermes' Gambit
        }
        Augur's Exaltation
        Hermes' Gambit
    }
    {
        Bookkeeper's Gambit: v
    }
    Augur's Exaltation
    Hermes' Gambit
}
{
    Numerical Reflection: 2
    Fisherman's Gambit II
    Augur's Purification
    {
        Vacant Reflection
        Numerical Reflection: 4
        Fisherman's Gambit
        Numerical Reflection: 3
        Fisherman's Gambit II
        Gemini Decomposition
        Hermes' Gambit
        Numerical Reflection: 34
        Swindler's Gambit
        Integration Distillation
        Numerical Reflection: 22
        Swindler's Gambit
        Gemini Decomposition
        Hermes' Gambit
    }
    {
        Bookkeeper's Gambit: vvv
    }
    Augur's Exaltation
    Hermes' Gambit
}
Gemini Decomposition
Hermes' Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 2
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 3
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 4
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 5
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 6
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 7
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 8
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 9
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 105
Numerical Reflection: 19
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 105
Numerical Reflection: 31
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 20
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 105
Numerical Reflection: 25
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 21
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 32
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 105
Numerical Reflection: 29
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 103
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 16
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 118
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 119
Numerical Reflection: 17
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 24
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 113
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 27
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 21
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 35
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 105
Numerical Reflection: 19
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 37
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 103
Numerical Reflection: 23
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 21
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 21
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 117
Numerical Reflection: 22
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 21
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 34
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 105
Numerical Reflection: 25
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 113
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 21
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 103
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 24
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 38
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 26
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 39
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 105
Numerical Reflection: 25
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 28
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 36
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 105
Numerical Reflection: 19
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 119
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 120
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 117
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 118
Numerical Reflection: 30
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 105
Numerical Reflection: 19
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 117
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 118
Numerical Reflection: 33
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 24
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Nullary Reflection
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 18
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 105
Numerical Reflection: 19
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 2
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 21
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 20
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 3
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 105
Numerical Reflection: 19
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 7
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 105
Numerical Reflection: 25
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 8
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 103
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 16
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 118
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 119
Numerical Reflection: 17
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 24
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 9
Numerical Reflection: 48
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 49
Numerical Reflection: 1
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 50
Numerical Reflection: 2
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 51
Numerical Reflection: 3
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 52
Numerical Reflection: 4
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 53
Numerical Reflection: 5
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 54
Numerical Reflection: 6
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 55
Numerical Reflection: 7
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 56
Numerical Reflection: 8
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 57
Numerical Reflection: 9
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 100
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 101
Numerical Reflection: 10
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 102
Numerical Reflection: 11
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 104
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 105
Numerical Reflection: 19
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 109
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 110
Numerical Reflection: 12
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 111
Numerical Reflection: 13
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 114
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 115
Numerical Reflection: 14
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 116
Numerical Reflection: 15
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 1114111
Numerical Reflection: 0
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 22
Flock's Gambit
Numerical Reflection: 2
Flock's Gambit
Numerical Reflection: 40
Flock's Gambit
{
    Flock's Reflection
    Flock's Gambit
    Retrograde Purification
    Numerical Reflection: 0
    Numerical Reflection: 2
    Selection Exaltation
    Flock's Disintegration
    Nullary Reflection
    Nullary Reflection
    Numerical Reflection: 0
    Numerical Reflection: 5
    Fisherman's Gambit
    {
        Prospector's Gambit
        Augur's Purification
        {
            Jester's Gambit
            Speaker's Decomposition
            Numerical Reflection: 3036
            Swindler's Gambit
            Numerical Reflection: 2
            Fisherman's Gambit II
            Rotation Gambit
            Selection Distillation
            Numerical Reflection: 1
            Selection Distillation
            {
                Rotation Gambit II
                Speaker's Decomposition
                Gemini Decomposition
                Numerical Reflection: 0
                Selection Distillation
                Numerical Reflection: 3
                Fisherman's Gambit II
                Maximus Distillation II
                {
                    Bookkeeper's Gambit: vvv-
                }
                {
                    Bookkeeper's Gambit: v
                    Rotation Gambit
                    Gemini Decomposition
                    Hermes' Gambit
                }
                Augur's Exaltation
                Hermes' Gambit
            }
            Gemini Decomposition
            Hermes' Gambit
            Numerical Reflection: 1
            Selection Distillation
            Dioscuri Gambit
            Selection Distillation
            Numerical Reflection: 0
            Selection Distillation
            Gemini Decomposition
            Nullary Reflection
            Equality Distillation
            {
                Bookkeeper's Gambit: v
                Numerical Reflection: 515
                Swindler's Gambit
            }
            {
                Bookkeeper's Gambit: v----
                Numerical Reflection: 5
                Fisherman's Gambit
                Dioscuri Gambit
                Rotation Gambit
                Nullary Reflection
                Equality Distillation
                Rotation Gambit II
                Augur's Exaltation
                Numerical Reflection: 359
                Swindler's Gambit
            }
            Augur's Exaltation
            Hermes' Gambit
            Gemini Decomposition
            Hermes' Gambit
        }
        {
            Bookkeeper's Gambit: v--vvv
            Jester's Gambit
            Numerical Reflection: 10
            Multiplicative Distillation
            Additive Distillation
        }
        Augur's Exaltation
        Hermes' Gambit
    }
    Gemini Decomposition
    Hermes' Gambit
}
Rotation Gambit
Thoth's Gambit
Bookkeeper's Gambit: v-
{
    Prospector's Gambit
    Augur's Purification
    {
        Jester's Gambit
        Speaker's Decomposition
        Jester's Gambit
        Rotation Gambit
        Gemini Decomposition
        Hermes' Gambit
        Additive Distillation
    }
    {
        Bookkeeper's Gambit: vv
        Numerical Reflection: 0
    }
    Augur's Exaltation
    Hermes' Gambit
}
Gemini Decomposition
Hermes' Gambit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment