id
int64 0
399
| prompt
stringlengths 265
2.96k
| answer
stringclasses 14
values | pythoncode
stringlengths 267
2.97k
| num_nodes
int64 3
10
| num_edges
int64 3
40
| avg_node_edge
float64 1
4
| graph_density
float64 0.11
1
| num_classes
int64 2
10
| avg_node_class
float64 1
5
| max_num_field
int64 1
10
| min_num_field
int64 1
3
| avg_num_field
float64 1
6.5
| path_length
int64 3
10
| max_node_visits
int64 1
5
| max_edge_visits
int64 1
4
| unique_node_number
int64 2
8
| path_node_coverage
float64 0.2
1
| unique_edge_number
int64 2
10
| path_edge_coverage
float64 0.07
1
| num_cycle
int64 0
7
| shortest_cycle
int64 2
7
⌀ | longest_cycle
int64 2
10
⌀ | average_cycle
float64 2
7
⌀ | unique_edge_label
int64 1
7
| max_label_occurrences
int64 1
9
| max_label_consecutive
int64 1
9
| max_node_outdegree
int64 1
4
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
300 | class A:
def __init__(self, txt: str):
self.v: C = None
self.r: E = None
self.q: G = None
self.u: F = None
self.z: H = None
self.w: F = None
self.x: G = None
self.s: B = None
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: I = None
self.r: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.r: G = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: I = None
self.r: G = None
self.q: F = None
self.u: A = None
self.z: H = None
self.w: G = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: G = None
self.r: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: B = None
self.r: H = None
self.q: B = None
self.u: I = None
self.z: A = None
self.w: F = None
self.x: C = None
self.s: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: F = None
self.r: E = None
self.q: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: H = None
self.txt = txt
f = A("f")
a = B("a")
c = C("c")
i = D("i")
b = E("b")
j = F("j")
l = G("l")
n = H("n")
k = I("k")
f.v = c
f.r = b
f.o = b
f.q = l
f.x = l
f.u = j
f.w = j
f.z = n
f.s = a
a.v = k
a.r = i
c.v = f
c.r = l
c.q = i
i.v = k
i.r = l
i.w = l
i.q = j
i.u = f
i.z = n
i.x = c
b.v = l
b.r = a
j.v = l
l.v = a
l.q = a
l.r = n
l.u = k
l.z = f
l.s = f
l.w = j
l.x = c
n.v = j
n.r = b
n.q = c
k.v = n
assert j.v.x.v.u.v.w.v.w.txt == " | j" | class A:
def __init__(self, txt: str):
self.v: C = None
self.r: E = None
self.q: G = None
self.u: F = None
self.z: H = None
self.w: F = None
self.x: G = None
self.s: B = None
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: I = None
self.r: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.r: G = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: I = None
self.r: G = None
self.q: F = None
self.u: A = None
self.z: H = None
self.w: G = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: G = None
self.r: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: B = None
self.r: H = None
self.q: B = None
self.u: I = None
self.z: A = None
self.w: F = None
self.x: C = None
self.s: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: F = None
self.r: E = None
self.q: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: H = None
self.txt = txt
f = A("f")
a = B("a")
c = C("c")
i = D("i")
b = E("b")
j = F("j")
l = G("l")
n = H("n")
k = I("k")
f.v = c
f.r = b
f.o = b
f.q = l
f.x = l
f.u = j
f.w = j
f.z = n
f.s = a
a.v = k
a.r = i
c.v = f
c.r = l
c.q = i
i.v = k
i.r = l
i.w = l
i.q = j
i.u = f
i.z = n
i.x = c
b.v = l
b.r = a
j.v = l
l.v = a
l.q = a
l.r = n
l.u = k
l.z = f
l.s = f
l.w = j
l.x = c
n.v = j
n.r = b
n.q = c
k.v = n
assert j.v.x.v.u.v.w.v.w.txt == "j" | 9 | 30 | 3.333333 | 0.416667 | 9 | 1 | 9 | 1 | 4 | 8 | 4 | 3 | 4 | 0.444444 | 5 | 0.166667 | 5 | 2 | 8 | 4.222222 | 4 | 4 | 1 | 2 |
301 | class A:
def __init__(self, txt: str):
self.p: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: I = None
self.w: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: I = None
self.w: A = None
self.o: H = None
self.t: A = None
self.v: H = None
self.y: F = None
self.u: H = None
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.w: G = None
self.o: I = None
self.t: B = None
self.v: E = None
self.y: G = None
self.u: C = None
self.z: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.w: D = None
self.o: F = None
self.t: A = None
self.v: I = None
self.y: A = None
self.u: I = None
self.z: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: H = None
self.w: F = None
self.o: E = None
self.t: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: F = None
self.w: D = None
self.o: B = None
self.t: F = None
self.txt = txt
m = A("m")
e = B("e")
l = C("l")
b = D("b")
j = E("j")
n = F("n")
g = G("g")
f = H("f")
c = I("c")
m.p = n
e.p = c
e.w = c
l.p = c
l.w = m
l.t = m
l.o = f
l.v = f
l.u = f
l.y = n
l.z = j
b.p = n
b.w = g
b.y = g
b.o = c
b.t = e
b.v = j
b.u = l
b.z = f
j.p = b
j.w = b
j.o = n
j.z = n
j.t = m
j.y = m
j.v = c
j.u = c
n.p = m
g.p = f
g.w = n
g.o = j
g.t = l
f.p = l
c.p = n
c.t = n
c.w = b
c.o = e
assert c.o.p.o.p.o.p.o.p.p.txt == " | n" | class A:
def __init__(self, txt: str):
self.p: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: I = None
self.w: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: I = None
self.w: A = None
self.o: H = None
self.t: A = None
self.v: H = None
self.y: F = None
self.u: H = None
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.w: G = None
self.o: I = None
self.t: B = None
self.v: E = None
self.y: G = None
self.u: C = None
self.z: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.w: D = None
self.o: F = None
self.t: A = None
self.v: I = None
self.y: A = None
self.u: I = None
self.z: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: H = None
self.w: F = None
self.o: E = None
self.t: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: F = None
self.w: D = None
self.o: B = None
self.t: F = None
self.txt = txt
m = A("m")
e = B("e")
l = C("l")
b = D("b")
j = E("j")
n = F("n")
g = G("g")
f = H("f")
c = I("c")
m.p = n
e.p = c
e.w = c
l.p = c
l.w = m
l.t = m
l.o = f
l.v = f
l.u = f
l.y = n
l.z = j
b.p = n
b.w = g
b.y = g
b.o = c
b.t = e
b.v = j
b.u = l
b.z = f
j.p = b
j.w = b
j.o = n
j.z = n
j.t = m
j.y = m
j.v = c
j.u = c
n.p = m
g.p = f
g.w = n
g.o = j
g.t = l
f.p = l
c.p = n
c.t = n
c.w = b
c.o = e
assert c.o.p.o.p.o.p.o.p.p.txt == "n" | 9 | 27 | 3 | 0.375 | 9 | 1 | 8 | 1 | 4.111111 | 9 | 5 | 4 | 3 | 0.333333 | 3 | 0.111111 | 7 | 2 | 8 | 3.75 | 2 | 5 | 2 | 2 |
302 | class A:
def __init__(self, txt: str):
self.s: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
m = A("m")
j = B("j")
d = B("d")
c = B("c")
h = B("h")
k = B("k")
n = B("n")
i = A("i")
g = B("g")
m.s = i
m.o = h
j.s = i
d.s = i
c.s = m
h.s = i
k.s = i
n.s = i
i.s = m
i.o = j
g.s = m
assert n.s.o.s.txt == " | i" | class A:
def __init__(self, txt: str):
self.s: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
m = A("m")
j = B("j")
d = B("d")
c = B("c")
h = B("h")
k = B("k")
n = B("n")
i = A("i")
g = B("g")
m.s = i
m.o = h
j.s = i
d.s = i
c.s = m
h.s = i
k.s = i
n.s = i
i.s = m
i.o = j
g.s = m
assert n.s.o.s.txt == "i" | 9 | 11 | 1.222222 | 0.152778 | 2 | 4.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.333333 | 3 | 0.272727 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
303 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
g = A("g")
i = B("i")
j = B("j")
n = B("n")
d = A("d")
c = A("c")
a = B("a")
m = A("m")
b = B("b")
g.y = c
i.y = c
j.y = m
n.y = c
d.y = g
c.y = m
a.y = c
m.y = g
b.y = c
assert d.y.y.y.y.y.y.y.y.y.txt == " | m" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
g = A("g")
i = B("i")
j = B("j")
n = B("n")
d = A("d")
c = A("c")
a = B("a")
m = A("m")
b = B("b")
g.y = c
i.y = c
j.y = m
n.y = c
d.y = g
c.y = m
a.y = c
m.y = g
b.y = c
assert d.y.y.y.y.y.y.y.y.y.txt == "m" | 9 | 9 | 1 | 0.125 | 2 | 4.5 | 1 | 1 | 1 | 9 | 3 | 3 | 4 | 0.444444 | 4 | 0.444444 | 6 | 3 | 6 | 4 | 1 | 9 | 9 | 1 |
304 | class A:
def __init__(self, txt: str):
self.y: A = None
self.t: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.t: A = None
self.w: G = None
self.p: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: F = None
self.t: D = None
self.w: A = None
self.p: E = None
self.r: E = None
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.t: B = None
self.w: F = None
self.p: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: E = None
self.t: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: C = None
self.t: C = None
self.w: B = None
self.p: C = None
self.txt = txt
b = A("b")
i = B("i")
c = C("c")
a = D("a")
l = E("l")
g = F("g")
j = G("j")
h = A("h")
f = D("f")
b.y = h
b.t = h
b.w = i
i.y = j
c.y = g
c.t = b
c.w = j
c.p = l
a.y = g
a.t = f
a.w = h
a.p = l
a.r = l
a.z = i
l.y = i
l.t = i
l.w = g
l.p = j
g.y = l
g.t = j
j.y = c
j.t = c
j.p = c
j.w = i
h.y = b
h.t = b
h.w = i
f.y = g
f.t = a
f.w = b
f.p = l
f.r = l
f.z = i
assert a.t.z.y.w.y.w.y.w.y.txt == " | j" | class A:
def __init__(self, txt: str):
self.y: A = None
self.t: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.t: A = None
self.w: G = None
self.p: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: F = None
self.t: D = None
self.w: A = None
self.p: E = None
self.r: E = None
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.t: B = None
self.w: F = None
self.p: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: E = None
self.t: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: C = None
self.t: C = None
self.w: B = None
self.p: C = None
self.txt = txt
b = A("b")
i = B("i")
c = C("c")
a = D("a")
l = E("l")
g = F("g")
j = G("j")
h = A("h")
f = D("f")
b.y = h
b.t = h
b.w = i
i.y = j
c.y = g
c.t = b
c.w = j
c.p = l
a.y = g
a.t = f
a.w = h
a.p = l
a.r = l
a.z = i
l.y = i
l.t = i
l.w = g
l.p = j
g.y = l
g.t = j
j.y = c
j.t = c
j.p = c
j.w = i
h.y = b
h.t = b
h.w = i
f.y = g
f.t = a
f.w = b
f.p = l
f.r = l
f.z = i
assert a.t.z.y.w.y.w.y.w.y.txt == "j" | 9 | 26 | 2.888889 | 0.361111 | 7 | 1.285714 | 6 | 1 | 3.428571 | 9 | 4 | 4 | 4 | 0.444444 | 4 | 0.153846 | 6 | 2 | 6 | 3.333333 | 4 | 4 | 1 | 1 |
305 | class A:
def __init__(self, txt: str):
self.s: C = None
self.v: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.v: B = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: D = None
self.v: C = None
self.w: B = None
self.x: A = None
self.txt = txt
d = A("d")
a = B("a")
j = C("j")
c = D("c")
m = B("m")
b = C("b")
i = A("i")
f = A("f")
g = D("g")
d.s = j
d.v = j
d.w = a
a.s = c
a.v = m
a.w = i
j.s = c
c.s = g
c.v = b
c.w = m
c.x = f
m.s = g
m.v = a
m.w = f
b.s = g
i.s = b
i.v = b
i.w = m
f.s = b
f.v = b
f.w = a
g.s = c
g.v = j
g.w = a
g.x = d
assert f.v.s.v.s.w.txt == " | m" | class A:
def __init__(self, txt: str):
self.s: C = None
self.v: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.v: B = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: D = None
self.v: C = None
self.w: B = None
self.x: A = None
self.txt = txt
d = A("d")
a = B("a")
j = C("j")
c = D("c")
m = B("m")
b = C("b")
i = A("i")
f = A("f")
g = D("g")
d.s = j
d.v = j
d.w = a
a.s = c
a.v = m
a.w = i
j.s = c
c.s = g
c.v = b
c.w = m
c.x = f
m.s = g
m.v = a
m.w = f
b.s = g
i.s = b
i.v = b
i.w = m
f.s = b
f.v = b
f.w = a
g.s = c
g.v = j
g.w = a
g.x = d
assert f.v.s.v.s.w.txt == "m" | 9 | 22 | 2.444444 | 0.305556 | 4 | 2.25 | 4 | 1 | 2.75 | 5 | 1 | 1 | 6 | 0.666667 | 5 | 0.227273 | 0 | null | null | null | 3 | 2 | 1 | 1 |
306 | class A:
def __init__(self, txt: str):
self.s: D = None
self.p: D = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.p: C = None
self.u: E = None
self.r: B = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.p: E = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
h = A("h")
k = B("k")
a = C("a")
g = D("g")
f = E("f")
m = D("m")
j = B("j")
c = B("c")
n = D("n")
h.s = m
h.p = g
h.u = f
k.s = j
k.r = j
k.p = a
k.z = a
k.u = f
a.s = m
a.p = f
a.u = k
g.s = f
f.s = a
m.s = f
j.s = k
j.r = k
j.p = a
j.z = a
j.u = f
c.s = k
c.p = a
c.z = a
c.u = f
c.r = j
n.s = f
assert k.s.u.s.s.s.s.u.txt == " | k" | class A:
def __init__(self, txt: str):
self.s: D = None
self.p: D = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.p: C = None
self.u: E = None
self.r: B = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.p: E = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
h = A("h")
k = B("k")
a = C("a")
g = D("g")
f = E("f")
m = D("m")
j = B("j")
c = B("c")
n = D("n")
h.s = m
h.p = g
h.u = f
k.s = j
k.r = j
k.p = a
k.z = a
k.u = f
a.s = m
a.p = f
a.u = k
g.s = f
f.s = a
m.s = f
j.s = k
j.r = k
j.p = a
j.z = a
j.u = f
c.s = k
c.p = a
c.z = a
c.u = f
c.r = j
n.s = f
assert k.s.u.s.s.s.s.u.txt == "k" | 9 | 20 | 2.222222 | 0.277778 | 5 | 1.8 | 5 | 1 | 2.6 | 7 | 2 | 2 | 5 | 0.555556 | 6 | 0.3 | 3 | 3 | 7 | 4.333333 | 2 | 5 | 4 | 2 |
307 | class A:
def __init__(self, txt: str):
self.t: E = None
self.q: C = None
self.z: E = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: E = None
self.q: B = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.q: C = None
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.q: E = None
self.z: F = None
self.p: B = None
self.r: C = None
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.q: F = None
self.z: B = None
self.p: B = None
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: A = None
self.q: D = None
self.txt = txt
e = A("e")
f = B("f")
a = C("a")
i = D("i")
b = E("b")
m = F("m")
h = B("h")
c = B("c")
j = C("j")
e.t = b
e.z = b
e.q = a
e.p = i
f.t = b
f.q = h
f.z = a
a.t = j
a.q = j
a.z = c
i.t = e
i.q = b
i.z = m
i.s = m
i.p = h
i.r = a
b.t = i
b.q = m
b.r = m
b.z = f
b.p = h
m.t = e
m.q = i
h.t = b
h.q = f
h.z = j
c.t = b
c.q = f
c.z = j
j.t = a
j.q = a
j.z = h
assert e.q.z.q.txt == " | f" | class A:
def __init__(self, txt: str):
self.t: E = None
self.q: C = None
self.z: E = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: E = None
self.q: B = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.q: C = None
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.q: E = None
self.z: F = None
self.p: B = None
self.r: C = None
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.q: F = None
self.z: B = None
self.p: B = None
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: A = None
self.q: D = None
self.txt = txt
e = A("e")
f = B("f")
a = C("a")
i = D("i")
b = E("b")
m = F("m")
h = B("h")
c = B("c")
j = C("j")
e.t = b
e.z = b
e.q = a
e.p = i
f.t = b
f.q = h
f.z = a
a.t = j
a.q = j
a.z = c
i.t = e
i.q = b
i.z = m
i.s = m
i.p = h
i.r = a
b.t = i
b.q = m
b.r = m
b.z = f
b.p = h
m.t = e
m.q = i
h.t = b
h.q = f
h.z = j
c.t = b
c.q = f
c.z = j
j.t = a
j.q = a
j.z = h
assert e.q.z.q.txt == "f" | 9 | 27 | 3 | 0.375 | 6 | 1.5 | 6 | 2 | 3.833333 | 3 | 1 | 1 | 4 | 0.444444 | 3 | 0.111111 | 0 | null | null | null | 2 | 2 | 1 | 1 |
308 | class A:
def __init__(self, txt: str):
self.u: G = None
self.t: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.t: F = None
self.r: G = None
self.y: F = None
self.x: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.t: G = None
self.r: D = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: D = None
self.t: C = None
self.r: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.t: F = None
self.r: C = None
self.y: F = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: G = None
self.t: D = None
self.r: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
a = A("a")
c = B("c")
b = C("b")
e = D("e")
l = E("l")
n = F("n")
d = G("d")
k = D("k")
h = C("h")
a.u = d
a.t = c
a.r = c
c.u = l
c.t = n
c.y = n
c.r = d
c.x = d
b.u = a
b.t = d
b.r = e
b.y = n
e.u = k
e.t = b
e.r = d
l.u = c
l.x = c
l.t = n
l.y = n
l.r = b
n.u = d
n.t = e
n.r = a
d.u = h
k.u = e
k.t = h
k.r = d
h.u = a
h.t = d
h.r = e
h.y = n
assert n.r.u.u.y.u.u.u.u.txt == " | d" | class A:
def __init__(self, txt: str):
self.u: G = None
self.t: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.t: F = None
self.r: G = None
self.y: F = None
self.x: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.t: G = None
self.r: D = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: D = None
self.t: C = None
self.r: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.t: F = None
self.r: C = None
self.y: F = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: G = None
self.t: D = None
self.r: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
a = A("a")
c = B("c")
b = C("b")
e = D("e")
l = E("l")
n = F("n")
d = G("d")
k = D("k")
h = C("h")
a.u = d
a.t = c
a.r = c
c.u = l
c.t = n
c.y = n
c.r = d
c.x = d
b.u = a
b.t = d
b.r = e
b.y = n
e.u = k
e.t = b
e.r = d
l.u = c
l.x = c
l.t = n
l.y = n
l.r = b
n.u = d
n.t = e
n.r = a
d.u = h
k.u = e
k.t = h
k.r = d
h.u = a
h.t = d
h.r = e
h.y = n
assert n.r.u.u.y.u.u.u.u.txt == "d" | 9 | 26 | 2.888889 | 0.361111 | 7 | 1.285714 | 5 | 1 | 3.428571 | 8 | 3 | 2 | 4 | 0.444444 | 6 | 0.230769 | 5 | 3 | 6 | 4.166667 | 3 | 6 | 4 | 2 |
309 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
h = A("h")
i = B("i")
m = A("m")
a = B("a")
g = A("g")
f = A("f")
b = A("b")
j = A("j")
n = B("n")
h.s = a
i.s = a
m.s = n
a.s = i
g.s = a
f.s = n
b.s = i
j.s = i
n.s = i
assert m.s.s.s.s.s.s.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
h = A("h")
i = B("i")
m = A("m")
a = B("a")
g = A("g")
f = A("f")
b = A("b")
j = A("j")
n = B("n")
h.s = a
i.s = a
m.s = n
a.s = i
g.s = a
f.s = n
b.s = i
j.s = i
n.s = i
assert m.s.s.s.s.s.s.s.txt == "a" | 9 | 9 | 1 | 0.125 | 2 | 4.5 | 1 | 1 | 1 | 7 | 3 | 3 | 4 | 0.444444 | 4 | 0.444444 | 4 | 2 | 4 | 2.666667 | 1 | 7 | 7 | 1 |
310 | class A:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
e = A("e")
d = B("d")
g = A("g")
h = A("h")
j = A("j")
i = A("i")
b = A("b")
f = B("f")
m = A("m")
e.o = d
e.w = m
d.o = f
d.w = g
g.o = f
g.w = j
h.o = d
h.w = j
j.o = d
j.w = i
i.o = d
i.w = b
b.o = f
b.w = j
f.o = d
f.w = b
m.o = d
m.w = b
assert i.w.w.w.o.txt == " | d" | class A:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
e = A("e")
d = B("d")
g = A("g")
h = A("h")
j = A("j")
i = A("i")
b = A("b")
f = B("f")
m = A("m")
e.o = d
e.w = m
d.o = f
d.w = g
g.o = f
g.w = j
h.o = d
h.w = j
j.o = d
j.w = i
i.o = d
i.w = b
b.o = f
b.w = j
f.o = d
f.w = b
m.o = d
m.w = b
assert i.w.w.w.o.txt == "d" | 9 | 18 | 2 | 0.25 | 2 | 4.5 | 2 | 2 | 2 | 4 | 2 | 1 | 4 | 0.444444 | 4 | 0.222222 | 1 | 3 | 3 | 3 | 2 | 3 | 3 | 2 |
311 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.q: A = None
self.s: E = None
self.t: E = None
self.u: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: E = None
self.q: D = None
self.s: A = None
self.t: C = None
self.txt = txt
h = A("h")
m = B("m")
e = C("e")
k = D("k")
n = E("n")
j = E("j")
b = B("b")
l = A("l")
g = C("g")
h.o = l
m.o = g
m.q = l
m.s = j
m.u = j
m.t = n
e.o = g
e.q = m
k.o = e
n.o = j
n.q = k
n.s = h
n.t = g
j.o = n
j.q = k
j.s = l
j.t = e
b.o = e
b.q = l
b.s = n
b.t = n
b.u = j
l.o = h
g.o = e
g.q = b
assert j.s.o.o.o.o.o.txt == " | h" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.q: A = None
self.s: E = None
self.t: E = None
self.u: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: E = None
self.q: D = None
self.s: A = None
self.t: C = None
self.txt = txt
h = A("h")
m = B("m")
e = C("e")
k = D("k")
n = E("n")
j = E("j")
b = B("b")
l = A("l")
g = C("g")
h.o = l
m.o = g
m.q = l
m.s = j
m.u = j
m.t = n
e.o = g
e.q = m
k.o = e
n.o = j
n.q = k
n.s = h
n.t = g
j.o = n
j.q = k
j.s = l
j.t = e
b.o = e
b.q = l
b.s = n
b.t = n
b.u = j
l.o = h
g.o = e
g.q = b
assert j.s.o.o.o.o.o.txt == "h" | 9 | 23 | 2.555556 | 0.319444 | 5 | 1.8 | 5 | 1 | 2.6 | 6 | 3 | 3 | 3 | 0.333333 | 3 | 0.130435 | 4 | 2 | 4 | 2.666667 | 2 | 5 | 5 | 1 |
312 | class A:
def __init__(self, txt: str):
self.u: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
f = A("f")
g = B("g")
m = B("m")
n = A("n")
d = B("d")
j = B("j")
i = A("i")
h = B("h")
k = B("k")
f.u = k
f.x = m
g.u = i
m.u = n
n.u = d
n.x = g
d.u = n
j.u = n
i.u = m
i.x = d
h.u = n
k.u = i
assert d.u.u.u.u.txt == " | d" | class A:
def __init__(self, txt: str):
self.u: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
f = A("f")
g = B("g")
m = B("m")
n = A("n")
d = B("d")
j = B("j")
i = A("i")
h = B("h")
k = B("k")
f.u = k
f.x = m
g.u = i
m.u = n
n.u = d
n.x = g
d.u = n
j.u = n
i.u = m
i.x = d
h.u = n
k.u = i
assert d.u.u.u.u.txt == "d" | 9 | 12 | 1.333333 | 0.166667 | 2 | 4.5 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.222222 | 2 | 0.166667 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 |
313 | class A:
def __init__(self, txt: str):
self.p: D = None
self.v: E = None
self.y: B = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.y: F = None
self.u: D = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: E = None
self.v: E = None
self.y: A = None
self.u: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.v: C = None
self.txt = txt
g = A("g")
l = B("l")
i = C("i")
n = D("n")
c = E("c")
d = F("d")
e = C("e")
j = B("j")
b = A("b")
g.p = n
g.v = c
g.u = c
g.y = j
l.p = b
l.t = b
l.v = g
l.y = d
l.u = n
i.p = l
i.v = d
n.p = c
n.v = c
n.y = b
n.u = b
c.p = n
d.p = n
d.v = i
e.p = l
e.v = d
j.p = b
j.v = g
j.t = g
j.y = d
j.u = n
b.p = n
b.v = c
b.u = c
b.y = l
assert c.p.v.p.p.p.txt == " | n" | class A:
def __init__(self, txt: str):
self.p: D = None
self.v: E = None
self.y: B = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.v: A = None
self.y: F = None
self.u: D = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: E = None
self.v: E = None
self.y: A = None
self.u: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.v: C = None
self.txt = txt
g = A("g")
l = B("l")
i = C("i")
n = D("n")
c = E("c")
d = F("d")
e = C("e")
j = B("j")
b = A("b")
g.p = n
g.v = c
g.u = c
g.y = j
l.p = b
l.t = b
l.v = g
l.y = d
l.u = n
i.p = l
i.v = d
n.p = c
n.v = c
n.y = b
n.u = b
c.p = n
d.p = n
d.v = i
e.p = l
e.v = d
j.p = b
j.v = g
j.t = g
j.y = d
j.u = n
b.p = n
b.v = c
b.u = c
b.y = l
assert c.p.v.p.p.p.txt == "n" | 9 | 23 | 2.555556 | 0.319444 | 6 | 1.5 | 5 | 1 | 3 | 5 | 3 | 3 | 2 | 0.222222 | 3 | 0.130435 | 4 | 2 | 4 | 2.666667 | 2 | 4 | 3 | 2 |
314 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.r: E = None
self.w: B = None
self.v: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.r: B = None
self.w: A = None
self.v: E = None
self.o: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.r: A = None
self.w: D = None
self.v: D = None
self.txt = txt
l = A("l")
j = B("j")
e = C("e")
g = D("g")
b = E("b")
a = C("a")
c = E("c")
n = D("n")
f = A("f")
l.z = j
j.z = l
e.z = b
e.r = b
e.w = j
e.v = a
g.z = j
g.r = j
g.o = j
g.w = f
g.v = b
b.z = c
b.r = f
b.w = g
b.v = g
a.z = b
a.r = b
a.w = j
a.v = e
c.z = b
c.r = f
c.w = n
c.v = n
n.z = j
n.r = j
n.o = j
n.w = l
n.v = c
f.z = j
assert a.r.w.v.z.z.v.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.r: E = None
self.w: B = None
self.v: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.r: B = None
self.w: A = None
self.v: E = None
self.o: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: E = None
self.r: A = None
self.w: D = None
self.v: D = None
self.txt = txt
l = A("l")
j = B("j")
e = C("e")
g = D("g")
b = E("b")
a = C("a")
c = E("c")
n = D("n")
f = A("f")
l.z = j
j.z = l
e.z = b
e.r = b
e.w = j
e.v = a
g.z = j
g.r = j
g.o = j
g.w = f
g.v = b
b.z = c
b.r = f
b.w = g
b.v = g
a.z = b
a.r = b
a.w = j
a.v = e
c.z = b
c.r = f
c.w = n
c.v = n
n.z = j
n.r = j
n.o = j
n.w = l
n.v = c
f.z = j
assert a.r.w.v.z.z.v.txt == "g" | 9 | 21 | 2.333333 | 0.291667 | 5 | 1.8 | 5 | 1 | 3 | 6 | 3 | 1 | 4 | 0.444444 | 6 | 0.285714 | 3 | 2 | 4 | 3 | 4 | 2 | 2 | 3 |
315 | class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.s: A = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.s: B = None
self.z: A = None
self.txt = txt
h = A("h")
g = B("g")
c = C("c")
e = A("e")
d = C("d")
a = C("a")
n = A("n")
m = A("m")
k = B("k")
h.o = a
g.o = m
g.s = h
g.z = a
c.o = h
c.s = g
c.z = e
e.o = c
d.o = h
d.s = g
d.z = e
a.o = e
a.s = g
a.z = n
n.o = c
m.o = c
k.o = m
k.s = h
k.z = a
assert h.o.s.o.o.z.o.o.o.z.txt == " | n" | class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.s: A = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.s: B = None
self.z: A = None
self.txt = txt
h = A("h")
g = B("g")
c = C("c")
e = A("e")
d = C("d")
a = C("a")
n = A("n")
m = A("m")
k = B("k")
h.o = a
g.o = m
g.s = h
g.z = a
c.o = h
c.s = g
c.z = e
e.o = c
d.o = h
d.s = g
d.z = e
a.o = e
a.s = g
a.z = n
n.o = c
m.o = c
k.o = m
k.s = h
k.z = a
assert h.o.s.o.o.z.o.o.o.z.txt == "n" | 9 | 19 | 2.111111 | 0.263889 | 3 | 3 | 3 | 1 | 2.333333 | 9 | 2 | 2 | 7 | 0.777778 | 8 | 0.421053 | 3 | 2 | 7 | 5.333333 | 3 | 6 | 3 | 2 |
316 | class A:
def __init__(self, txt: str):
self.y: B = None
self.t: G = None
self.p: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.t: A = None
self.p: D = None
self.q: F = None
self.w: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.t: B = None
self.p: G = None
self.q: F = None
self.w: A = None
self.o: H = None
self.v: A = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.t: D = None
self.p: C = None
self.q: D = None
self.w: C = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: G = None
self.t: E = None
self.p: G = None
self.q: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: C = None
self.t: H = None
self.p: F = None
self.q: B = None
self.txt = txt
a = A("a")
c = B("c")
g = C("g")
f = D("f")
j = E("j")
n = F("n")
d = G("d")
e = H("e")
b = H("b")
a.y = c
a.t = d
a.p = j
c.y = d
c.t = a
c.p = f
c.q = n
c.w = b
g.y = n
g.q = n
g.t = c
g.p = d
g.w = a
g.v = a
g.o = e
g.r = f
f.y = j
f.t = g
j.y = g
j.p = g
j.w = g
j.o = g
j.t = f
j.q = f
n.y = d
n.p = d
n.t = j
n.q = e
d.y = j
e.y = g
e.t = b
e.p = n
e.q = c
b.y = g
b.t = e
b.p = n
b.q = c
assert a.t.y.q.t.q.q.q.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.y: B = None
self.t: G = None
self.p: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.t: A = None
self.p: D = None
self.q: F = None
self.w: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.t: B = None
self.p: G = None
self.q: F = None
self.w: A = None
self.o: H = None
self.v: A = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.t: D = None
self.p: C = None
self.q: D = None
self.w: C = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: G = None
self.t: E = None
self.p: G = None
self.q: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: C = None
self.t: H = None
self.p: F = None
self.q: B = None
self.txt = txt
a = A("a")
c = B("c")
g = C("g")
f = D("f")
j = E("j")
n = F("n")
d = G("d")
e = H("e")
b = H("b")
a.y = c
a.t = d
a.p = j
c.y = d
c.t = a
c.p = f
c.q = n
c.w = b
g.y = n
g.q = n
g.t = c
g.p = d
g.w = a
g.v = a
g.o = e
g.r = f
f.y = j
f.t = g
j.y = g
j.p = g
j.w = g
j.o = g
j.t = f
j.q = f
n.y = d
n.p = d
n.t = j
n.q = e
d.y = j
e.y = g
e.t = b
e.p = n
e.q = c
b.y = g
b.t = e
b.p = n
b.q = c
assert a.t.y.q.t.q.q.q.y.txt == "d" | 9 | 30 | 3.333333 | 0.416667 | 8 | 1.125 | 8 | 1 | 4.125 | 8 | 2 | 1 | 8 | 0.888889 | 8 | 0.266667 | 1 | 7 | 7 | 7 | 3 | 4 | 3 | 1 |
317 | class A:
def __init__(self, txt: str):
self.t: C = None
self.w: G = None
self.r: E = None
self.q: H = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.w: B = None
self.r: E = None
self.q: G = None
self.p: E = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.w: H = None
self.r: C = None
self.q: B = None
self.p: D = None
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: G = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: D = None
self.w: F = None
self.r: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: G = None
self.w: E = None
self.r: G = None
self.q: E = None
self.p: B = None
self.y: D = None
self.v: B = None
self.u: B = None
self.txt = txt
m = A("m")
d = B("d")
a = C("a")
e = D("e")
j = E("j")
k = F("k")
l = G("l")
h = H("h")
g = G("g")
m.t = a
m.w = g
m.r = j
m.q = h
m.p = d
d.t = m
d.w = k
a.t = l
a.w = e
e.t = l
e.q = l
e.w = d
e.r = j
e.p = j
e.y = j
j.t = d
j.q = d
j.y = d
j.w = h
j.r = a
j.p = e
k.t = g
k.w = d
l.t = e
l.w = k
l.r = a
h.t = g
h.r = g
h.w = j
h.q = j
h.p = d
h.v = d
h.u = d
h.y = e
g.t = e
g.w = k
g.r = a
assert d.w.t.r.w.q.r.t.r.w.txt == " | e" | class A:
def __init__(self, txt: str):
self.t: C = None
self.w: G = None
self.r: E = None
self.q: H = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.w: B = None
self.r: E = None
self.q: G = None
self.p: E = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.w: H = None
self.r: C = None
self.q: B = None
self.p: D = None
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: G = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: D = None
self.w: F = None
self.r: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: G = None
self.w: E = None
self.r: G = None
self.q: E = None
self.p: B = None
self.y: D = None
self.v: B = None
self.u: B = None
self.txt = txt
m = A("m")
d = B("d")
a = C("a")
e = D("e")
j = E("j")
k = F("k")
l = G("l")
h = H("h")
g = G("g")
m.t = a
m.w = g
m.r = j
m.q = h
m.p = d
d.t = m
d.w = k
a.t = l
a.w = e
e.t = l
e.q = l
e.w = d
e.r = j
e.p = j
e.y = j
j.t = d
j.q = d
j.y = d
j.w = h
j.r = a
j.p = e
k.t = g
k.w = d
l.t = e
l.w = k
l.r = a
h.t = g
h.r = g
h.w = j
h.q = j
h.p = d
h.v = d
h.u = d
h.y = e
g.t = e
g.w = k
g.r = a
assert d.w.t.r.w.q.r.t.r.w.txt == "e" | 9 | 28 | 3.111111 | 0.388889 | 8 | 1.125 | 8 | 2 | 4.25 | 9 | 3 | 2 | 6 | 0.666667 | 7 | 0.25 | 4 | 2 | 5 | 3.4 | 4 | 3 | 1 | 2 |
318 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
i = A("i")
f = B("f")
a = C("a")
h = D("h")
m = B("m")
d = B("d")
c = A("c")
g = C("g")
e = C("e")
i.t = m
f.t = g
f.o = m
a.t = e
h.t = a
m.t = a
m.o = d
d.t = g
d.o = m
c.t = d
g.t = a
e.t = g
assert i.t.o.o.t.txt == " | a" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
i = A("i")
f = B("f")
a = C("a")
h = D("h")
m = B("m")
d = B("d")
c = A("c")
g = C("g")
e = C("e")
i.t = m
f.t = g
f.o = m
a.t = e
h.t = a
m.t = a
m.o = d
d.t = g
d.o = m
c.t = d
g.t = a
e.t = g
assert i.t.o.o.t.txt == "a" | 9 | 12 | 1.333333 | 0.166667 | 4 | 2.25 | 2 | 1 | 1.25 | 4 | 2 | 1 | 4 | 0.444444 | 4 | 0.333333 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
319 | class A:
def __init__(self, txt: str):
self.v: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.w: C = None
self.u: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.w: B = None
self.txt = txt
d = A("d")
f = B("f")
h = C("h")
n = A("n")
m = A("m")
g = B("g")
k = C("k")
c = C("c")
b = B("b")
d.v = c
d.w = f
f.v = b
f.w = k
f.u = g
h.v = d
h.w = f
n.v = h
n.w = b
m.v = h
m.w = b
g.v = f
g.w = c
g.u = b
k.v = n
k.w = g
c.v = d
c.w = g
b.v = f
b.u = f
b.w = c
assert g.u.w.v.v.v.v.v.v.w.txt == " | g" | class A:
def __init__(self, txt: str):
self.v: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.w: C = None
self.u: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.w: B = None
self.txt = txt
d = A("d")
f = B("f")
h = C("h")
n = A("n")
m = A("m")
g = B("g")
k = C("k")
c = C("c")
b = B("b")
d.v = c
d.w = f
f.v = b
f.w = k
f.u = g
h.v = d
h.w = f
n.v = h
n.w = b
m.v = h
m.w = b
g.v = f
g.w = c
g.u = b
k.v = n
k.w = g
c.v = d
c.w = g
b.v = f
b.u = f
b.w = c
assert g.u.w.v.v.v.v.v.v.w.txt == "g" | 9 | 20 | 2.222222 | 0.277778 | 3 | 3 | 3 | 2 | 2.333333 | 9 | 4 | 3 | 4 | 0.444444 | 5 | 0.25 | 6 | 2 | 9 | 3.7 | 3 | 6 | 6 | 2 |
320 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.t: A = None
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.t: B = None
self.v: C = None
self.txt = txt
n = A("n")
i = B("i")
k = C("k")
a = B("a")
f = A("f")
m = C("m")
h = B("h")
j = A("j")
d = A("d")
n.s = i
i.s = h
i.v = h
i.t = d
k.s = f
k.t = a
k.v = m
a.s = i
a.v = i
a.t = d
f.s = i
m.s = d
m.t = h
m.v = k
h.s = i
h.v = i
h.t = d
j.s = i
d.s = a
assert i.t.s.s.s.txt == " | h" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.t: A = None
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.t: B = None
self.v: C = None
self.txt = txt
n = A("n")
i = B("i")
k = C("k")
a = B("a")
f = A("f")
m = C("m")
h = B("h")
j = A("j")
d = A("d")
n.s = i
i.s = h
i.v = h
i.t = d
k.s = f
k.t = a
k.v = m
a.s = i
a.v = i
a.t = d
f.s = i
m.s = d
m.t = h
m.v = k
h.s = i
h.v = i
h.t = d
j.s = i
d.s = a
assert i.t.s.s.s.txt == "h" | 9 | 16 | 1.777778 | 0.222222 | 3 | 3 | 3 | 1 | 2.333333 | 4 | 2 | 1 | 4 | 0.444444 | 4 | 0.25 | 1 | 3 | 3 | 3 | 2 | 3 | 3 | 2 |
321 | class A:
def __init__(self, txt: str):
self.v: B = None
self.s: C = None
self.u: B = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.s: A = None
self.u: D = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: D = None
self.s: D = None
self.u: C = None
self.txt = txt
f = A("f")
c = B("c")
n = C("n")
i = D("i")
e = C("e")
a = C("a")
b = A("b")
m = D("m")
l = B("l")
f.v = l
f.u = l
f.s = e
f.w = e
c.v = m
n.v = c
n.s = b
n.u = m
n.w = l
i.v = m
i.s = m
i.u = a
e.v = c
e.w = c
e.s = f
e.u = i
a.v = l
a.w = l
a.s = b
a.u = i
b.v = l
b.u = l
b.s = a
b.w = e
m.v = i
m.s = i
m.u = a
l.v = i
assert m.s.u.u.v.u.u.u.txt == " | a" | class A:
def __init__(self, txt: str):
self.v: B = None
self.s: C = None
self.u: B = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.s: A = None
self.u: D = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: D = None
self.s: D = None
self.u: C = None
self.txt = txt
f = A("f")
c = B("c")
n = C("n")
i = D("i")
e = C("e")
a = C("a")
b = A("b")
m = D("m")
l = B("l")
f.v = l
f.u = l
f.s = e
f.w = e
c.v = m
n.v = c
n.s = b
n.u = m
n.w = l
i.v = m
i.s = m
i.u = a
e.v = c
e.w = c
e.s = f
e.u = i
a.v = l
a.w = l
a.s = b
a.u = i
b.v = l
b.u = l
b.s = a
b.w = e
m.v = i
m.s = i
m.u = a
l.v = i
assert m.s.u.u.v.u.u.u.txt == "a" | 9 | 21 | 2.333333 | 0.291667 | 4 | 2.25 | 4 | 1 | 3 | 7 | 3 | 2 | 3 | 0.333333 | 5 | 0.238095 | 5 | 2 | 5 | 3.428571 | 3 | 5 | 3 | 2 |
322 | class A:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: E = None
self.y: E = None
self.txt = txt
e = A("e")
b = B("b")
d = C("d")
g = D("g")
j = E("j")
c = C("c")
h = B("h")
l = E("l")
i = E("i")
e.q = i
b.q = j
d.q = g
d.y = b
g.q = e
j.q = l
j.y = l
c.q = g
c.y = h
h.q = l
l.q = i
l.y = i
i.q = l
i.y = j
assert l.q.y.y.q.txt == " | i" | class A:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: E = None
self.y: E = None
self.txt = txt
e = A("e")
b = B("b")
d = C("d")
g = D("g")
j = E("j")
c = C("c")
h = B("h")
l = E("l")
i = E("i")
e.q = i
b.q = j
d.q = g
d.y = b
g.q = e
j.q = l
j.y = l
c.q = g
c.y = h
h.q = l
l.q = i
l.y = i
i.q = l
i.y = j
assert l.q.y.y.q.txt == "i" | 9 | 12 | 1.333333 | 0.166667 | 5 | 1.8 | 2 | 1 | 1.4 | 4 | 2 | 2 | 3 | 0.333333 | 3 | 0.25 | 2 | 3 | 3 | 3 | 2 | 2 | 2 | 1 |
323 | class A:
def __init__(self, txt: str):
self.y: C = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.t: D = None
self.w: D = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
n = A("n")
l = B("l")
h = C("h")
a = D("a")
g = C("g")
d = A("d")
e = D("e")
j = B("j")
f = A("f")
n.y = g
n.t = e
l.y = j
l.x = j
l.t = a
l.w = a
h.y = e
a.y = l
g.y = a
d.y = g
d.t = a
e.y = l
j.y = l
j.x = l
j.t = a
j.w = e
f.y = h
f.t = e
assert a.y.x.w.y.x.w.y.t.y.txt == " | l" | class A:
def __init__(self, txt: str):
self.y: C = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.t: D = None
self.w: D = None
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
n = A("n")
l = B("l")
h = C("h")
a = D("a")
g = C("g")
d = A("d")
e = D("e")
j = B("j")
f = A("f")
n.y = g
n.t = e
l.y = j
l.x = j
l.t = a
l.w = a
h.y = e
a.y = l
g.y = a
d.y = g
d.t = a
e.y = l
j.y = l
j.x = l
j.t = a
j.w = e
f.y = h
f.t = e
assert a.y.x.w.y.x.w.y.t.y.txt == "l" | 9 | 15 | 1.666667 | 0.208333 | 4 | 2.25 | 4 | 1 | 2 | 9 | 4 | 2 | 4 | 0.444444 | 5 | 0.333333 | 6 | 2 | 8 | 4.555556 | 4 | 4 | 1 | 2 |
324 | class A:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.t: C = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.t: B = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.t: F = None
self.txt = txt
c = A("c")
b = B("b")
m = C("m")
i = D("i")
f = E("f")
n = F("n")
d = F("d")
g = E("g")
a = E("a")
c.r = i
b.r = m
b.t = m
b.p = m
m.r = b
m.t = c
i.r = f
i.t = b
i.p = m
f.r = m
n.r = b
n.t = d
d.r = b
d.t = n
g.r = m
a.r = m
assert g.r.t.r.p.t.r.t.txt == " | b" | class A:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.t: C = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.t: B = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.t: F = None
self.txt = txt
c = A("c")
b = B("b")
m = C("m")
i = D("i")
f = E("f")
n = F("n")
d = F("d")
g = E("g")
a = E("a")
c.r = i
b.r = m
b.t = m
b.p = m
m.r = b
m.t = c
i.r = f
i.t = b
i.p = m
f.r = m
n.r = b
n.t = d
d.r = b
d.t = n
g.r = m
a.r = m
assert g.r.t.r.p.t.r.t.txt == "b" | 9 | 14 | 1.555556 | 0.194444 | 6 | 1.5 | 3 | 1 | 2 | 7 | 2 | 2 | 5 | 0.555556 | 5 | 0.357143 | 3 | 3 | 3 | 3 | 3 | 3 | 1 | 2 |
325 | class A:
def __init__(self, txt: str):
self.s: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
j = B("j")
e = C("e")
f = C("f")
n = A("n")
m = C("m")
d = B("d")
l = C("l")
i = C("i")
c.s = d
c.w = n
j.s = m
e.s = n
f.s = n
n.s = d
n.w = c
m.s = c
d.s = f
l.s = n
i.s = n
assert f.s.s.s.s.w.s.s.txt == " | f" | class A:
def __init__(self, txt: str):
self.s: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
j = B("j")
e = C("e")
f = C("f")
n = A("n")
m = C("m")
d = B("d")
l = C("l")
i = C("i")
c.s = d
c.w = n
j.s = m
e.s = n
f.s = n
n.s = d
n.w = c
m.s = c
d.s = f
l.s = n
i.s = n
assert f.s.s.s.s.w.s.s.txt == "f" | 9 | 11 | 1.222222 | 0.152778 | 3 | 3 | 2 | 1 | 1.333333 | 7 | 3 | 2 | 4 | 0.444444 | 5 | 0.454545 | 4 | 3 | 7 | 4.2 | 2 | 6 | 4 | 2 |
326 | class A:
def __init__(self, txt: str):
self.s: D = None
self.v: B = None
self.z: B = None
self.y: C = None
self.x: D = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: H = None
self.v: E = None
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.v: H = None
self.z: F = None
self.y: E = None
self.x: G = None
self.t: F = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.v: H = None
self.z: D = None
self.y: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: B = None
self.v: C = None
self.z: G = None
self.y: A = None
self.x: C = None
self.t: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: F = None
self.v: B = None
self.z: D = None
self.y: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: B = None
self.v: C = None
self.z: C = None
self.y: E = None
self.x: A = None
self.t: E = None
self.u: E = None
self.txt = txt
a = A("a")
i = B("i")
f = C("f")
g = D("g")
b = E("b")
d = F("d")
l = G("l")
h = H("h")
n = A("n")
a.s = g
a.x = g
a.t = g
a.v = i
a.z = i
a.y = f
i.s = g
f.s = h
f.v = b
f.z = i
g.s = a
g.v = h
g.z = d
g.t = d
g.y = b
g.x = l
g.u = f
b.s = f
b.v = h
b.y = h
b.z = g
d.s = i
d.v = f
d.x = f
d.z = l
d.y = n
d.t = g
l.s = d
l.v = i
l.y = i
l.z = g
h.s = i
h.v = f
h.z = f
h.y = b
h.t = b
h.u = b
h.x = a
n.s = g
n.x = g
n.t = g
n.v = i
n.z = i
n.y = f
assert a.x.s.v.s.u.z.s.y.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.s: D = None
self.v: B = None
self.z: B = None
self.y: C = None
self.x: D = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: H = None
self.v: E = None
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.v: H = None
self.z: F = None
self.y: E = None
self.x: G = None
self.t: F = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.v: H = None
self.z: D = None
self.y: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: B = None
self.v: C = None
self.z: G = None
self.y: A = None
self.x: C = None
self.t: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: F = None
self.v: B = None
self.z: D = None
self.y: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: B = None
self.v: C = None
self.z: C = None
self.y: E = None
self.x: A = None
self.t: E = None
self.u: E = None
self.txt = txt
a = A("a")
i = B("i")
f = C("f")
g = D("g")
b = E("b")
d = F("d")
l = G("l")
h = H("h")
n = A("n")
a.s = g
a.x = g
a.t = g
a.v = i
a.z = i
a.y = f
i.s = g
f.s = h
f.v = b
f.z = i
g.s = a
g.v = h
g.z = d
g.t = d
g.y = b
g.x = l
g.u = f
b.s = f
b.v = h
b.y = h
b.z = g
d.s = i
d.v = f
d.x = f
d.z = l
d.y = n
d.t = g
l.s = d
l.v = i
l.y = i
l.z = g
h.s = i
h.v = f
h.z = f
h.y = b
h.t = b
h.u = b
h.x = a
n.s = g
n.x = g
n.t = g
n.v = i
n.z = i
n.y = f
assert a.x.s.v.s.u.z.s.y.z.txt == "g" | 9 | 31 | 3.444444 | 0.430556 | 8 | 1.125 | 7 | 1 | 4.75 | 9 | 4 | 2 | 5 | 0.555556 | 8 | 0.258065 | 5 | 2 | 8 | 4 | 6 | 3 | 1 | 3 |
327 | class A:
def __init__(self, txt: str):
self.p: C = None
self.q: D = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: D = None
self.q: A = None
self.txt = txt
j = A("j")
n = B("n")
f = C("f")
d = D("d")
l = B("l")
k = B("k")
c = C("c")
g = D("g")
e = C("e")
j.p = e
j.q = g
j.x = k
n.p = j
f.p = j
f.q = g
d.p = g
d.q = j
l.p = j
k.p = j
c.p = j
c.q = d
g.p = d
g.q = j
e.p = j
e.q = d
assert c.q.q.x.p.p.q.txt == " | d" | class A:
def __init__(self, txt: str):
self.p: C = None
self.q: D = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: D = None
self.q: A = None
self.txt = txt
j = A("j")
n = B("n")
f = C("f")
d = D("d")
l = B("l")
k = B("k")
c = C("c")
g = D("g")
e = C("e")
j.p = e
j.q = g
j.x = k
n.p = j
f.p = j
f.q = g
d.p = g
d.q = j
l.p = j
k.p = j
c.p = j
c.q = d
g.p = d
g.q = j
e.p = j
e.q = d
assert c.q.q.x.p.p.q.txt == "d" | 9 | 16 | 1.777778 | 0.222222 | 4 | 2.25 | 3 | 1 | 2 | 6 | 2 | 1 | 5 | 0.555556 | 6 | 0.375 | 2 | 2 | 5 | 3.5 | 3 | 3 | 2 | 2 |
328 | class A:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
b = A("b")
k = B("k")
l = A("l")
e = A("e")
d = B("d")
j = B("j")
g = A("g")
a = B("a")
i = B("i")
b.o = j
b.w = l
k.o = g
l.o = a
l.w = g
e.o = k
e.w = b
d.o = g
j.o = l
g.o = a
g.w = b
a.o = e
i.o = e
assert l.w.o.o.o.o.txt == " | g" | class A:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
b = A("b")
k = B("k")
l = A("l")
e = A("e")
d = B("d")
j = B("j")
g = A("g")
a = B("a")
i = B("i")
b.o = j
b.w = l
k.o = g
l.o = a
l.w = g
e.o = k
e.w = b
d.o = g
j.o = l
g.o = a
g.w = b
a.o = e
i.o = e
assert l.w.o.o.o.o.txt == "g" | 9 | 13 | 1.444444 | 0.180556 | 2 | 4.5 | 2 | 1 | 1.5 | 5 | 2 | 1 | 5 | 0.555556 | 5 | 0.384615 | 1 | 4 | 4 | 4 | 2 | 4 | 4 | 1 |
329 | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.v: A = None
self.txt = txt
b = A("b")
e = B("e")
m = B("m")
a = B("a")
d = A("d")
k = A("k")
h = B("h")
j = A("j")
g = B("g")
b.u = d
b.v = h
e.u = a
e.v = b
m.u = a
m.v = b
a.u = g
a.v = k
d.u = k
d.v = h
k.u = d
k.v = a
h.u = m
h.v = k
j.u = d
j.v = a
g.u = m
g.v = j
assert k.u.u.v.v.u.u.u.u.txt == " | k" | class A:
def __init__(self, txt: str):
self.u: A = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.v: A = None
self.txt = txt
b = A("b")
e = B("e")
m = B("m")
a = B("a")
d = A("d")
k = A("k")
h = B("h")
j = A("j")
g = B("g")
b.u = d
b.v = h
e.u = a
e.v = b
m.u = a
m.v = b
a.u = g
a.v = k
d.u = k
d.v = h
k.u = d
k.v = a
h.u = m
h.v = k
j.u = d
j.v = a
g.u = m
g.v = j
assert k.u.u.v.v.u.u.u.u.txt == "k" | 9 | 18 | 2 | 0.25 | 2 | 4.5 | 2 | 2 | 2 | 8 | 5 | 3 | 3 | 0.333333 | 4 | 0.222222 | 6 | 2 | 8 | 4 | 2 | 6 | 4 | 2 |
330 | class A:
def __init__(self, txt: str):
self.v: E = None
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.u: C = None
self.o: D = None
self.z: E = None
self.x: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.u: A = None
self.o: E = None
self.z: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.u: C = None
self.txt = txt
n = A("n")
f = B("f")
b = C("b")
i = D("i")
j = E("j")
e = D("e")
c = C("c")
g = D("g")
d = B("d")
n.v = j
n.u = i
f.v = n
b.v = n
b.u = c
b.x = c
b.o = g
b.z = j
i.v = n
i.u = n
i.o = j
i.z = j
j.v = e
j.u = c
e.v = n
e.u = n
e.o = j
e.z = j
c.v = n
c.u = b
c.x = b
c.o = e
c.z = j
g.v = n
g.u = n
g.o = j
g.z = j
d.v = n
assert j.v.o.v.txt == " | e" | class A:
def __init__(self, txt: str):
self.v: E = None
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.u: C = None
self.o: D = None
self.z: E = None
self.x: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.u: A = None
self.o: E = None
self.z: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.u: C = None
self.txt = txt
n = A("n")
f = B("f")
b = C("b")
i = D("i")
j = E("j")
e = D("e")
c = C("c")
g = D("g")
d = B("d")
n.v = j
n.u = i
f.v = n
b.v = n
b.u = c
b.x = c
b.o = g
b.z = j
i.v = n
i.u = n
i.o = j
i.z = j
j.v = e
j.u = c
e.v = n
e.u = n
e.o = j
e.z = j
c.v = n
c.u = b
c.x = b
c.o = e
c.z = j
g.v = n
g.u = n
g.o = j
g.z = j
d.v = n
assert j.v.o.v.txt == "e" | 9 | 20 | 2.222222 | 0.277778 | 5 | 1.8 | 5 | 1 | 2.8 | 3 | 2 | 2 | 2 | 0.222222 | 2 | 0.1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
331 | class A:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.txt = txt
m = A("m")
h = B("h")
f = B("f")
b = A("b")
j = B("j")
e = A("e")
g = A("g")
n = A("n")
l = B("l")
m.s = e
m.q = e
h.s = n
h.q = e
f.s = n
f.q = g
b.s = m
b.q = m
j.s = n
j.q = n
e.s = m
e.q = b
g.s = n
g.q = n
n.s = g
n.q = b
l.s = n
l.q = b
assert l.s.s.s.s.s.q.txt == " | b" | class A:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.txt = txt
m = A("m")
h = B("h")
f = B("f")
b = A("b")
j = B("j")
e = A("e")
g = A("g")
n = A("n")
l = B("l")
m.s = e
m.q = e
h.s = n
h.q = e
f.s = n
f.q = g
b.s = m
b.q = m
j.s = n
j.q = n
e.s = m
e.q = b
g.s = n
g.q = n
n.s = g
n.q = b
l.s = n
l.q = b
assert l.s.s.s.s.s.q.txt == "b" | 9 | 14 | 1.555556 | 0.194444 | 2 | 4.5 | 2 | 2 | 2 | 6 | 3 | 2 | 4 | 0.444444 | 4 | 0.285714 | 3 | 2 | 4 | 2.5 | 2 | 5 | 5 | 2 |
332 | class A:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.p: F = None
self.o: D = None
self.s: F = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: F = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: H = None
self.p: G = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: A = None
self.p: D = None
self.o: D = None
self.s: E = None
self.y: B = None
self.u: D = None
self.w: D = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: B = None
self.p: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: G = None
self.p: G = None
self.txt = txt
f = A("f")
m = B("m")
k = C("k")
e = D("e")
g = E("g")
n = F("n")
b = G("b")
h = H("h")
l = E("l")
f.x = k
m.x = k
m.p = n
m.s = n
m.o = e
m.y = l
k.x = n
k.p = b
e.x = m
e.p = f
g.x = h
g.p = b
g.o = m
n.x = f
n.p = e
n.o = e
n.u = e
n.w = e
n.s = l
n.y = m
n.t = m
b.x = m
b.p = k
h.x = b
h.p = b
l.x = h
l.p = b
l.o = m
assert k.x.s.o.y.o.x.txt == " | k" | class A:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.p: F = None
self.o: D = None
self.s: F = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: F = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: H = None
self.p: G = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: A = None
self.p: D = None
self.o: D = None
self.s: E = None
self.y: B = None
self.u: D = None
self.w: D = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: B = None
self.p: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: G = None
self.p: G = None
self.txt = txt
f = A("f")
m = B("m")
k = C("k")
e = D("e")
g = E("g")
n = F("n")
b = G("b")
h = H("h")
l = E("l")
f.x = k
m.x = k
m.p = n
m.s = n
m.o = e
m.y = l
k.x = n
k.p = b
e.x = m
e.p = f
g.x = h
g.p = b
g.o = m
n.x = f
n.p = e
n.o = e
n.u = e
n.w = e
n.s = l
n.y = m
n.t = m
b.x = m
b.p = k
h.x = b
h.p = b
l.x = h
l.p = b
l.o = m
assert k.x.s.o.y.o.x.txt == "k" | 9 | 22 | 2.444444 | 0.305556 | 8 | 1.125 | 8 | 1 | 3.125 | 6 | 2 | 2 | 4 | 0.444444 | 5 | 0.227273 | 3 | 2 | 6 | 3.333333 | 4 | 2 | 1 | 2 |
333 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.w: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.w: B = None
self.r: B = None
self.txt = txt
n = A("n")
c = B("c")
m = C("m")
l = C("l")
a = B("a")
i = C("i")
d = A("d")
k = A("k")
g = B("g")
n.q = a
c.q = g
c.w = a
m.q = i
m.w = c
m.r = c
l.q = m
l.w = g
l.r = c
a.q = g
a.w = g
i.q = m
i.w = g
i.r = c
d.q = c
k.q = c
g.q = c
g.w = c
assert c.q.w.w.txt == " | a" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.w: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.w: B = None
self.r: B = None
self.txt = txt
n = A("n")
c = B("c")
m = C("m")
l = C("l")
a = B("a")
i = C("i")
d = A("d")
k = A("k")
g = B("g")
n.q = a
c.q = g
c.w = a
m.q = i
m.w = c
m.r = c
l.q = m
l.w = g
l.r = c
a.q = g
a.w = g
i.q = m
i.w = g
i.r = c
d.q = c
k.q = c
g.q = c
g.w = c
assert c.q.w.w.txt == "a" | 9 | 15 | 1.666667 | 0.208333 | 3 | 3 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 0.333333 | 3 | 0.2 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
334 | class A:
def __init__(self, txt: str):
self.w: B = None
self.s: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.s: C = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.s: E = None
self.u: D = None
self.t: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: C = None
self.s: D = None
self.u: E = None
self.t: C = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: D = None
self.s: C = None
self.u: A = None
self.t: A = None
self.txt = txt
d = A("d")
n = B("n")
l = C("l")
i = D("i")
f = E("f")
m = C("m")
a = A("a")
b = D("b")
j = B("j")
d.w = n
d.s = a
d.u = j
n.w = j
n.s = l
n.u = a
l.w = f
l.s = f
l.u = i
l.t = m
i.w = l
i.t = l
i.s = b
i.u = f
i.y = a
f.w = i
f.s = m
f.u = a
f.t = d
m.w = f
m.s = f
m.u = b
m.t = l
a.w = j
a.u = j
a.s = d
b.w = m
b.s = i
b.u = f
b.t = l
b.y = d
j.w = n
j.s = m
j.u = d
assert m.w.t.s.s.u.w.s.s.s.txt == " | m" | class A:
def __init__(self, txt: str):
self.w: B = None
self.s: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.s: C = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.s: E = None
self.u: D = None
self.t: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: C = None
self.s: D = None
self.u: E = None
self.t: C = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: D = None
self.s: C = None
self.u: A = None
self.t: A = None
self.txt = txt
d = A("d")
n = B("n")
l = C("l")
i = D("i")
f = E("f")
m = C("m")
a = A("a")
b = D("b")
j = B("j")
d.w = n
d.s = a
d.u = j
n.w = j
n.s = l
n.u = a
l.w = f
l.s = f
l.u = i
l.t = m
i.w = l
i.t = l
i.s = b
i.u = f
i.y = a
f.w = i
f.s = m
f.u = a
f.t = d
m.w = f
m.s = f
m.u = b
m.t = l
a.w = j
a.u = j
a.s = d
b.w = m
b.s = i
b.u = f
b.t = l
b.y = d
j.w = n
j.s = m
j.u = d
assert m.w.t.s.s.u.w.s.s.s.txt == "m" | 9 | 30 | 3.333333 | 0.416667 | 5 | 1.8 | 5 | 3 | 3.8 | 9 | 2 | 1 | 7 | 0.777778 | 9 | 0.3 | 3 | 2 | 9 | 6 | 4 | 5 | 3 | 2 |
335 | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.r: F = None
self.w: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.r: F = None
self.w: E = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.r: A = None
self.w: B = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.r: C = None
self.w: C = None
self.x: B = None
self.txt = txt
i = A("i")
l = B("l")
e = C("e")
h = D("h")
m = E("m")
c = F("c")
d = E("d")
n = A("n")
j = A("j")
i.z = h
i.y = h
l.z = e
l.w = e
l.x = e
l.y = h
l.r = c
e.z = h
e.r = h
e.y = c
h.z = m
h.w = m
h.y = e
h.x = e
h.r = c
m.z = n
m.r = n
m.y = h
m.w = l
m.x = c
c.z = h
c.y = d
c.r = e
c.w = e
c.x = l
d.z = n
d.r = n
d.y = h
d.w = l
d.x = c
n.z = h
n.y = h
j.z = h
j.y = h
assert l.y.w.r.y.z.x.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: D = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.y: D = None
self.r: F = None
self.w: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: F = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.y: C = None
self.r: F = None
self.w: E = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: D = None
self.r: A = None
self.w: B = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.r: C = None
self.w: C = None
self.x: B = None
self.txt = txt
i = A("i")
l = B("l")
e = C("e")
h = D("h")
m = E("m")
c = F("c")
d = E("d")
n = A("n")
j = A("j")
i.z = h
i.y = h
l.z = e
l.w = e
l.x = e
l.y = h
l.r = c
e.z = h
e.r = h
e.y = c
h.z = m
h.w = m
h.y = e
h.x = e
h.r = c
m.z = n
m.r = n
m.y = h
m.w = l
m.x = c
c.z = h
c.y = d
c.r = e
c.w = e
c.x = l
d.z = n
d.r = n
d.y = h
d.w = l
d.x = c
n.z = h
n.y = h
j.z = h
j.y = h
assert l.y.w.r.y.z.x.txt == "c" | 9 | 23 | 2.555556 | 0.319444 | 6 | 1.5 | 5 | 2 | 4.166667 | 6 | 2 | 1 | 5 | 0.555556 | 6 | 0.26087 | 2 | 3 | 3 | 3 | 5 | 2 | 1 | 2 |
336 | class A:
def __init__(self, txt: str):
self.x: F = None
self.w: F = None
self.t: E = None
self.u: D = None
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: F = None
self.w: A = None
self.t: A = None
self.u: D = None
self.q: B = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: D = None
self.w: A = None
self.t: D = None
self.u: A = None
self.q: A = None
self.p: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.t: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
a = A("a")
n = B("n")
c = C("c")
d = D("d")
h = E("h")
k = F("k")
b = D("b")
l = B("l")
j = B("j")
a.x = k
a.w = k
a.q = k
a.t = h
a.u = b
n.x = a
c.x = k
c.w = a
c.t = a
c.u = d
c.q = j
c.p = l
d.x = b
d.t = b
d.p = b
d.w = a
d.u = a
d.q = a
h.x = n
h.w = a
h.t = a
k.x = c
b.x = d
b.t = d
b.p = d
b.w = a
b.u = a
b.q = a
l.x = a
j.x = a
assert d.w.w.x.x.txt == " | k" | class A:
def __init__(self, txt: str):
self.x: F = None
self.w: F = None
self.t: E = None
self.u: D = None
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: F = None
self.w: A = None
self.t: A = None
self.u: D = None
self.q: B = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: D = None
self.w: A = None
self.t: D = None
self.u: A = None
self.q: A = None
self.p: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.t: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
a = A("a")
n = B("n")
c = C("c")
d = D("d")
h = E("h")
k = F("k")
b = D("b")
l = B("l")
j = B("j")
a.x = k
a.w = k
a.q = k
a.t = h
a.u = b
n.x = a
c.x = k
c.w = a
c.t = a
c.u = d
c.q = j
c.p = l
d.x = b
d.t = b
d.p = b
d.w = a
d.u = a
d.q = a
h.x = n
h.w = a
h.t = a
k.x = c
b.x = d
b.t = d
b.p = d
b.w = a
b.u = a
b.q = a
l.x = a
j.x = a
assert d.w.w.x.x.txt == "k" | 9 | 18 | 2 | 0.25 | 6 | 1.5 | 6 | 1 | 3.666667 | 4 | 2 | 1 | 4 | 0.444444 | 4 | 0.222222 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
337 | class A:
def __init__(self, txt: str):
self.y: F = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: G = None
self.w: G = None
self.z: G = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.w: E = None
self.z: F = None
self.p: A = None
self.o: F = None
self.r: E = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.w: C = None
self.z: G = None
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.w: E = None
self.z: G = None
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: A = None
self.w: B = None
self.z: F = None
self.txt = txt
n = A("n")
l = B("l")
d = C("d")
i = D("i")
g = E("g")
a = F("a")
c = G("c")
f = C("f")
j = B("j")
n.y = a
n.w = f
l.y = a
d.y = c
d.w = c
d.z = c
d.p = c
i.y = n
i.p = n
i.w = g
i.r = g
i.u = g
i.z = a
i.o = a
g.y = l
g.w = f
g.z = c
g.p = a
a.y = n
a.p = n
a.w = g
a.z = c
c.y = n
c.w = l
c.z = a
f.y = c
f.w = c
f.z = c
f.p = c
j.y = a
assert i.y.w.z.w.y.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.y: F = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: G = None
self.w: G = None
self.z: G = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.w: E = None
self.z: F = None
self.p: A = None
self.o: F = None
self.r: E = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.w: C = None
self.z: G = None
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.w: E = None
self.z: G = None
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: A = None
self.w: B = None
self.z: F = None
self.txt = txt
n = A("n")
l = B("l")
d = C("d")
i = D("i")
g = E("g")
a = F("a")
c = G("c")
f = C("f")
j = B("j")
n.y = a
n.w = f
l.y = a
d.y = c
d.w = c
d.z = c
d.p = c
i.y = n
i.p = n
i.w = g
i.r = g
i.u = g
i.z = a
i.o = a
g.y = l
g.w = f
g.z = c
g.p = a
a.y = n
a.p = n
a.w = g
a.z = c
c.y = n
c.w = l
c.z = a
f.y = c
f.w = c
f.z = c
f.p = c
j.y = a
assert i.y.w.z.w.y.z.txt == "c" | 9 | 19 | 2.111111 | 0.263889 | 7 | 1.285714 | 7 | 1 | 3.571429 | 6 | 2 | 1 | 6 | 0.666667 | 6 | 0.315789 | 1 | 3 | 3 | 3 | 3 | 2 | 1 | 1 |
338 | class A:
def __init__(self, txt: str):
self.u: I = None
self.o: C = None
self.y: I = None
self.p: H = None
self.z: D = None
self.w: I = None
self.s: B = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.o: A = None
self.y: G = None
self.p: I = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: H = None
self.o: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: C = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: D = None
self.o: A = None
self.y: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.u: B = None
self.o: G = None
self.y: E = None
self.p: I = None
self.z: G = None
self.w: I = None
self.s: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: B = None
self.o: A = None
self.y: A = None
self.txt = txt
d = A("d")
h = B("h")
g = C("g")
c = D("c")
e = E("e")
k = F("k")
f = G("f")
b = H("b")
n = I("n")
d.u = n
d.y = n
d.w = n
d.o = g
d.t = g
d.p = b
d.z = c
d.s = h
h.u = g
g.u = e
g.o = d
g.y = f
g.p = n
g.z = c
c.u = d
c.o = k
e.u = b
e.o = n
k.u = g
k.o = d
f.u = c
f.o = d
f.y = k
b.u = h
b.o = f
b.z = f
b.y = e
b.s = e
b.p = n
b.w = n
n.u = h
n.o = d
n.y = d
assert e.u.u.u.u.u.w.txt == " | n" | class A:
def __init__(self, txt: str):
self.u: I = None
self.o: C = None
self.y: I = None
self.p: H = None
self.z: D = None
self.w: I = None
self.s: B = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.o: A = None
self.y: G = None
self.p: I = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: H = None
self.o: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: C = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: D = None
self.o: A = None
self.y: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.u: B = None
self.o: G = None
self.y: E = None
self.p: I = None
self.z: G = None
self.w: I = None
self.s: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: B = None
self.o: A = None
self.y: A = None
self.txt = txt
d = A("d")
h = B("h")
g = C("g")
c = D("c")
e = E("e")
k = F("k")
f = G("f")
b = H("b")
n = I("n")
d.u = n
d.y = n
d.w = n
d.o = g
d.t = g
d.p = b
d.z = c
d.s = h
h.u = g
g.u = e
g.o = d
g.y = f
g.p = n
g.z = c
c.u = d
c.o = k
e.u = b
e.o = n
k.u = g
k.o = d
f.u = c
f.o = d
f.y = k
b.u = h
b.o = f
b.z = f
b.y = e
b.s = e
b.p = n
b.w = n
n.u = h
n.o = d
n.y = d
assert e.u.u.u.u.u.w.txt == "n" | 9 | 26 | 2.888889 | 0.361111 | 9 | 1 | 8 | 1 | 3.666667 | 6 | 2 | 2 | 5 | 0.555556 | 5 | 0.192308 | 2 | 4 | 4 | 4 | 2 | 5 | 5 | 2 |
339 | class A:
def __init__(self, txt: str):
self.r: B = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.z: D = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.z: F = None
self.u: G = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.z: A = None
self.u: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.z: E = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: F = None
self.txt = txt
h = A("h")
j = B("j")
e = C("e")
g = D("g")
l = E("l")
c = F("c")
a = G("a")
n = E("n")
f = D("f")
h.r = j
h.z = e
j.r = a
j.z = g
j.u = g
e.r = j
e.z = c
e.u = a
e.p = g
g.r = l
g.z = h
g.u = c
l.r = h
l.z = n
l.u = e
c.r = a
a.r = c
n.r = h
n.z = l
n.u = e
f.r = n
f.z = h
f.u = c
assert l.u.p.r.z.r.txt == " | h" | class A:
def __init__(self, txt: str):
self.r: B = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.z: D = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.z: F = None
self.u: G = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.z: A = None
self.u: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.z: E = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: F = None
self.txt = txt
h = A("h")
j = B("j")
e = C("e")
g = D("g")
l = E("l")
c = F("c")
a = G("a")
n = E("n")
f = D("f")
h.r = j
h.z = e
j.r = a
j.z = g
j.u = g
e.r = j
e.z = c
e.u = a
e.p = g
g.r = l
g.z = h
g.u = c
l.r = h
l.z = n
l.u = e
c.r = a
a.r = c
n.r = h
n.z = l
n.u = e
f.r = n
f.z = h
f.u = c
assert l.u.p.r.z.r.txt == "h" | 9 | 22 | 2.444444 | 0.305556 | 7 | 1.285714 | 4 | 1 | 2.428571 | 5 | 2 | 1 | 5 | 0.555556 | 5 | 0.227273 | 1 | 3 | 3 | 3 | 4 | 2 | 1 | 2 |
340 | class A:
def __init__(self, txt: str):
self.u: B = None
self.q: D = None
self.y: B = None
self.s: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.q: A = None
self.y: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.q: D = None
self.txt = txt
e = A("e")
k = B("k")
n = C("n")
g = D("g")
i = E("i")
l = C("l")
j = A("j")
m = C("m")
b = A("b")
e.u = k
e.y = k
e.t = k
e.q = g
e.s = j
k.u = l
k.q = b
k.y = g
n.u = i
n.q = g
g.u = b
i.u = k
i.q = g
l.u = i
l.q = g
j.u = k
j.y = k
j.t = k
j.q = g
j.s = b
m.u = i
m.q = g
b.u = k
b.y = k
b.t = k
b.q = g
b.s = j
assert l.q.u.s.s.u.u.u.q.u.txt == " | b" | class A:
def __init__(self, txt: str):
self.u: B = None
self.q: D = None
self.y: B = None
self.s: A = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.q: A = None
self.y: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.q: D = None
self.txt = txt
e = A("e")
k = B("k")
n = C("n")
g = D("g")
i = E("i")
l = C("l")
j = A("j")
m = C("m")
b = A("b")
e.u = k
e.y = k
e.t = k
e.q = g
e.s = j
k.u = l
k.q = b
k.y = g
n.u = i
n.q = g
g.u = b
i.u = k
i.q = g
l.u = i
l.q = g
j.u = k
j.y = k
j.t = k
j.q = g
j.s = b
m.u = i
m.q = g
b.u = k
b.y = k
b.t = k
b.q = g
b.s = j
assert l.q.u.s.s.u.u.u.q.u.txt == "b" | 9 | 21 | 2.333333 | 0.291667 | 5 | 1.8 | 5 | 1 | 2.6 | 9 | 3 | 2 | 6 | 0.666667 | 8 | 0.380952 | 4 | 2 | 7 | 5.4 | 3 | 5 | 3 | 2 |
341 | class A:
def __init__(self, txt: str):
self.u: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.p: A = None
self.txt = txt
d = A("d")
k = B("k")
g = A("g")
m = A("m")
n = B("n")
l = A("l")
j = A("j")
c = B("c")
a = B("a")
d.u = j
d.p = g
k.u = g
k.p = g
g.u = d
g.p = j
m.u = l
m.p = l
n.u = j
n.p = j
l.u = m
l.p = j
j.u = m
j.p = d
c.u = l
c.p = d
a.u = j
a.p = l
assert k.p.p.u.txt == " | m" | class A:
def __init__(self, txt: str):
self.u: A = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.p: A = None
self.txt = txt
d = A("d")
k = B("k")
g = A("g")
m = A("m")
n = B("n")
l = A("l")
j = A("j")
c = B("c")
a = B("a")
d.u = j
d.p = g
k.u = g
k.p = g
g.u = d
g.p = j
m.u = l
m.p = l
n.u = j
n.p = j
l.u = m
l.p = j
j.u = m
j.p = d
c.u = l
c.p = d
a.u = j
a.p = l
assert k.p.p.u.txt == "m" | 9 | 15 | 1.666667 | 0.208333 | 2 | 4.5 | 2 | 2 | 2 | 3 | 1 | 1 | 4 | 0.444444 | 3 | 0.2 | 0 | null | null | null | 2 | 2 | 2 | 1 |
342 | class A:
def __init__(self, txt: str):
self.y: B = None
self.s: D = None
self.o: B = None
self.t: F = None
self.r: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: E = None
self.s: B = None
self.o: A = None
self.t: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.s: C = None
self.o: D = None
self.t: B = None
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.s: B = None
self.o: E = None
self.t: D = None
self.r: A = None
self.w: D = None
self.txt = txt
h = A("h")
f = B("f")
j = C("j")
a = D("a")
m = E("m")
c = F("c")
i = F("i")
e = B("e")
b = D("b")
h.y = f
h.s = a
h.o = e
h.t = c
h.r = c
f.y = m
f.s = e
f.t = e
f.o = h
j.y = m
a.y = m
a.s = j
m.y = b
m.s = j
m.r = j
m.o = a
m.t = f
c.y = f
c.s = e
c.o = m
c.t = b
c.w = b
c.r = h
i.y = e
i.s = f
i.o = m
i.t = b
i.w = b
i.r = h
e.y = m
e.s = f
e.t = f
e.o = h
b.y = m
b.s = j
assert c.y.t.s.y.o.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.y: B = None
self.s: D = None
self.o: B = None
self.t: F = None
self.r: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: E = None
self.s: B = None
self.o: A = None
self.t: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.s: C = None
self.o: D = None
self.t: B = None
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.s: B = None
self.o: E = None
self.t: D = None
self.r: A = None
self.w: D = None
self.txt = txt
h = A("h")
f = B("f")
j = C("j")
a = D("a")
m = E("m")
c = F("c")
i = F("i")
e = B("e")
b = D("b")
h.y = f
h.s = a
h.o = e
h.t = c
h.r = c
f.y = m
f.s = e
f.t = e
f.o = h
j.y = m
a.y = m
a.s = j
m.y = b
m.s = j
m.r = j
m.o = a
m.t = f
c.y = f
c.s = e
c.o = m
c.t = b
c.w = b
c.r = h
i.y = e
i.s = f
i.o = m
i.t = b
i.w = b
i.r = h
e.y = m
e.s = f
e.t = f
e.o = h
b.y = m
b.s = j
assert c.y.t.s.y.o.s.txt == "j" | 9 | 29 | 3.222222 | 0.402778 | 6 | 1.5 | 6 | 1 | 3.833333 | 6 | 2 | 1 | 6 | 0.666667 | 6 | 0.206897 | 1 | 2 | 2 | 2 | 4 | 2 | 1 | 2 |
343 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
n = A("n")
j = B("j")
k = B("k")
e = A("e")
a = B("a")
g = B("g")
i = A("i")
d = B("d")
b = B("b")
n.r = g
j.r = i
k.r = i
e.r = k
a.r = n
g.r = i
i.r = d
d.r = n
b.r = e
assert g.r.r.r.r.r.r.r.txt == " | n" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
n = A("n")
j = B("j")
k = B("k")
e = A("e")
a = B("a")
g = B("g")
i = A("i")
d = B("d")
b = B("b")
n.r = g
j.r = i
k.r = i
e.r = k
a.r = n
g.r = i
i.r = d
d.r = n
b.r = e
assert g.r.r.r.r.r.r.r.txt == "n" | 9 | 9 | 1 | 0.125 | 2 | 4.5 | 1 | 1 | 1 | 7 | 2 | 2 | 4 | 0.444444 | 4 | 0.444444 | 4 | 4 | 4 | 4 | 1 | 7 | 7 | 1 |
344 | class A:
def __init__(self, txt: str):
self.x: A = None
self.s: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.s: B = None
self.txt = txt
l = A("l")
g = B("g")
a = C("a")
m = C("m")
e = B("e")
d = C("d")
f = A("f")
n = A("n")
b = A("b")
l.x = b
l.s = e
l.v = g
g.x = e
a.x = g
a.s = g
m.x = g
m.s = g
e.x = g
d.x = g
d.s = e
f.x = b
f.s = e
f.v = g
n.x = l
n.s = g
n.v = e
b.x = l
b.s = g
b.v = g
assert d.s.x.x.x.txt == " | g" | class A:
def __init__(self, txt: str):
self.x: A = None
self.s: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.s: B = None
self.txt = txt
l = A("l")
g = B("g")
a = C("a")
m = C("m")
e = B("e")
d = C("d")
f = A("f")
n = A("n")
b = A("b")
l.x = b
l.s = e
l.v = g
g.x = e
a.x = g
a.s = g
m.x = g
m.s = g
e.x = g
d.x = g
d.s = e
f.x = b
f.s = e
f.v = g
n.x = l
n.s = g
n.v = e
b.x = l
b.s = g
b.v = g
assert d.s.x.x.x.txt == "g" | 9 | 17 | 1.888889 | 0.236111 | 3 | 3 | 3 | 1 | 2 | 4 | 2 | 2 | 3 | 0.333333 | 3 | 0.176471 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
345 | class A:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: H = None
self.x: F = None
self.w: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.x: I = None
self.w: E = None
self.v: F = None
self.q: D = None
self.u: A = None
self.r: E = None
self.y: G = None
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: I = None
self.x: H = None
self.w: B = None
self.v: G = None
self.q: F = None
self.u: A = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.x: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: D = None
self.x: G = None
self.w: F = None
self.v: A = None
self.q: H = None
self.u: H = None
self.r: E = None
self.txt = txt
a = A("a")
c = B("c")
j = C("j")
h = D("h")
d = E("d")
g = F("g")
f = G("f")
m = H("m")
l = I("l")
a.p = h
c.p = m
c.x = g
c.w = f
j.p = d
j.w = d
j.r = d
j.x = l
j.v = g
j.q = h
j.u = a
j.y = f
j.o = c
h.p = l
h.x = m
h.w = c
h.v = f
h.q = g
h.u = a
h.r = a
d.p = g
d.x = a
g.p = h
g.x = l
f.p = d
m.p = j
l.p = h
l.x = f
l.w = g
l.v = a
l.q = m
l.u = m
l.r = d
assert d.x.p.v.p.x.txt == " | a" | class A:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: H = None
self.x: F = None
self.w: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.x: I = None
self.w: E = None
self.v: F = None
self.q: D = None
self.u: A = None
self.r: E = None
self.y: G = None
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: I = None
self.x: H = None
self.w: B = None
self.v: G = None
self.q: F = None
self.u: A = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.x: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: D = None
self.x: G = None
self.w: F = None
self.v: A = None
self.q: H = None
self.u: H = None
self.r: E = None
self.txt = txt
a = A("a")
c = B("c")
j = C("j")
h = D("h")
d = E("d")
g = F("g")
f = G("f")
m = H("m")
l = I("l")
a.p = h
c.p = m
c.x = g
c.w = f
j.p = d
j.w = d
j.r = d
j.x = l
j.v = g
j.q = h
j.u = a
j.y = f
j.o = c
h.p = l
h.x = m
h.w = c
h.v = f
h.q = g
h.u = a
h.r = a
d.p = g
d.x = a
g.p = h
g.x = l
f.p = d
m.p = j
l.p = h
l.x = f
l.w = g
l.v = a
l.q = m
l.u = m
l.r = d
assert d.x.p.v.p.x.txt == "a" | 9 | 29 | 3.222222 | 0.402778 | 9 | 1 | 9 | 1 | 3.666667 | 5 | 2 | 2 | 4 | 0.444444 | 4 | 0.137931 | 2 | 4 | 4 | 4 | 3 | 2 | 1 | 1 |
346 | class A:
def __init__(self, txt: str):
self.x: B = None
self.p: E = None
self.q: E = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.p: D = None
self.q: B = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
a = A("a")
j = B("j")
d = C("d")
m = D("m")
b = E("b")
f = A("f")
g = A("g")
h = D("h")
e = B("e")
a.x = j
a.p = b
a.q = b
a.u = b
j.x = e
j.p = a
d.x = m
d.p = m
d.q = e
d.u = h
m.x = e
b.x = j
b.p = a
f.x = j
f.p = b
f.q = b
f.u = b
g.x = e
g.p = b
g.q = b
g.u = b
h.x = j
e.x = j
e.p = a
assert h.x.p.x.x.p.txt == " | a" | class A:
def __init__(self, txt: str):
self.x: B = None
self.p: E = None
self.q: E = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.p: D = None
self.q: B = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.txt = txt
a = A("a")
j = B("j")
d = C("d")
m = D("m")
b = E("b")
f = A("f")
g = A("g")
h = D("h")
e = B("e")
a.x = j
a.p = b
a.q = b
a.u = b
j.x = e
j.p = a
d.x = m
d.p = m
d.q = e
d.u = h
m.x = e
b.x = j
b.p = a
f.x = j
f.p = b
f.q = b
f.u = b
g.x = e
g.p = b
g.q = b
g.u = b
h.x = j
e.x = j
e.p = a
assert h.x.p.x.x.p.txt == "a" | 9 | 17 | 1.888889 | 0.236111 | 5 | 1.8 | 4 | 1 | 2.6 | 5 | 2 | 1 | 4 | 0.444444 | 5 | 0.294118 | 2 | 2 | 3 | 2.5 | 2 | 3 | 2 | 2 |
347 | class A:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
a = A("a")
k = B("k")
j = C("j")
n = C("n")
l = B("l")
e = C("e")
i = A("i")
g = B("g")
f = B("f")
a.v = e
k.v = f
j.v = f
n.v = g
l.v = k
e.v = g
i.v = j
g.v = f
f.v = l
assert g.v.v.v.v.v.txt == " | l" | class A:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
a = A("a")
k = B("k")
j = C("j")
n = C("n")
l = B("l")
e = C("e")
i = A("i")
g = B("g")
f = B("f")
a.v = e
k.v = f
j.v = f
n.v = g
l.v = k
e.v = g
i.v = j
g.v = f
f.v = l
assert g.v.v.v.v.v.txt == "l" | 9 | 9 | 1 | 0.125 | 3 | 3 | 1 | 1 | 1 | 5 | 2 | 2 | 4 | 0.444444 | 4 | 0.444444 | 2 | 3 | 3 | 3 | 1 | 5 | 5 | 1 |
348 | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.q: A = None
self.u: B = None
self.p: F = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.q: G = None
self.u: C = None
self.p: G = None
self.t: G = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.q: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.q: A = None
self.u: C = None
self.txt = txt
k = A("k")
c = B("c")
j = C("j")
g = D("g")
i = E("i")
l = F("l")
h = G("h")
e = B("e")
b = D("b")
k.z = i
k.y = b
k.q = c
c.z = k
j.z = i
j.y = e
j.q = k
j.u = c
j.t = c
j.p = l
g.z = b
g.y = j
g.u = j
g.q = h
g.p = h
g.t = h
g.s = e
i.z = k
i.y = h
i.q = h
l.z = e
l.y = g
h.z = c
h.y = g
h.q = k
h.u = j
e.z = k
b.z = g
b.y = j
b.u = j
b.q = h
b.p = h
b.t = h
b.s = e
assert k.q.z.y.t.q.y.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: E = None
self.y: D = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.y: B = None
self.q: A = None
self.u: B = None
self.p: F = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.y: C = None
self.q: G = None
self.u: C = None
self.p: G = None
self.t: G = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.y: G = None
self.q: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.y: D = None
self.q: A = None
self.u: C = None
self.txt = txt
k = A("k")
c = B("c")
j = C("j")
g = D("g")
i = E("i")
l = F("l")
h = G("h")
e = B("e")
b = D("b")
k.z = i
k.y = b
k.q = c
c.z = k
j.z = i
j.y = e
j.q = k
j.u = c
j.t = c
j.p = l
g.z = b
g.y = j
g.u = j
g.q = h
g.p = h
g.t = h
g.s = e
i.z = k
i.y = h
i.q = h
l.z = e
l.y = g
h.z = c
h.y = g
h.q = k
h.u = j
e.z = k
b.z = g
b.y = j
b.u = j
b.q = h
b.p = h
b.t = h
b.s = e
assert k.q.z.y.t.q.y.txt == "b" | 9 | 26 | 2.888889 | 0.361111 | 7 | 1.285714 | 7 | 1 | 3.714286 | 6 | 3 | 2 | 4 | 0.444444 | 5 | 0.192308 | 3 | 2 | 5 | 3.25 | 4 | 2 | 1 | 2 |
349 | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
a = A("a")
i = B("i")
n = A("n")
l = A("l")
g = A("g")
m = A("m")
c = B("c")
d = B("d")
e = B("e")
a.z = n
a.y = g
i.z = n
i.y = a
n.z = g
n.y = l
l.z = a
l.y = n
g.z = n
g.y = m
m.z = a
m.y = g
c.z = g
c.y = a
d.z = m
d.y = l
e.z = a
e.y = n
assert e.y.y.z.z.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.y: A = None
self.txt = txt
a = A("a")
i = B("i")
n = A("n")
l = A("l")
g = A("g")
m = A("m")
c = B("c")
d = B("d")
e = B("e")
a.z = n
a.y = g
i.z = n
i.y = a
n.z = g
n.y = l
l.z = a
l.y = n
g.z = n
g.y = m
m.z = a
m.y = g
c.z = g
c.y = a
d.z = m
d.y = l
e.z = a
e.y = n
assert e.y.y.z.z.z.txt == "g" | 9 | 18 | 2 | 0.25 | 2 | 4.5 | 2 | 2 | 2 | 5 | 2 | 1 | 5 | 0.555556 | 5 | 0.277778 | 1 | 3 | 3 | 3 | 2 | 3 | 3 | 2 |
350 | class A:
def __init__(self, txt: str):
self.y: C = None
self.s: D = None
self.z: B = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: H = None
self.s: J = None
self.z: G = None
self.t: J = None
self.w: I = None
self.q: G = None
self.p: H = None
self.x: H = None
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.s: B = None
self.z: D = None
self.t: H = None
self.w: E = None
self.q: H = None
self.p: E = None
self.x: A = None
self.r: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: H = None
self.s: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: A = None
self.s: B = None
self.z: C = None
self.t: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: E = None
self.s: A = None
self.z: B = None
self.t: E = None
self.w: I = None
self.q: B = None
self.p: D = None
self.x: J = None
self.r: D = None
self.u: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: C = None
self.s: J = None
self.z: J = None
self.t: E = None
self.w: F = None
self.q: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: A = None
self.s: B = None
self.txt = txt
d = A("d")
m = B("m")
l = C("l")
h = D("h")
i = E("i")
e = F("e")
a = G("a")
c = H("c")
g = I("g")
k = J("k")
d.y = l
d.s = h
d.t = h
d.z = m
m.y = c
m.p = c
m.x = c
m.s = k
m.t = k
m.z = a
m.q = a
m.r = a
m.w = g
l.y = m
l.s = m
l.z = h
l.t = c
l.q = c
l.w = i
l.p = i
l.x = d
l.r = e
h.y = c
h.s = a
i.y = m
e.y = m
a.y = d
a.s = m
a.z = l
a.t = l
c.y = i
c.t = i
c.s = d
c.z = m
c.q = m
c.w = g
c.p = h
c.r = h
c.x = k
c.u = e
g.y = l
g.s = k
g.z = k
g.t = i
g.w = e
g.q = e
k.y = d
k.s = m
assert l.r.y.w.y.r.y.t.s.r.s.txt == " | m" | class A:
def __init__(self, txt: str):
self.y: C = None
self.s: D = None
self.z: B = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: H = None
self.s: J = None
self.z: G = None
self.t: J = None
self.w: I = None
self.q: G = None
self.p: H = None
self.x: H = None
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.s: B = None
self.z: D = None
self.t: H = None
self.w: E = None
self.q: H = None
self.p: E = None
self.x: A = None
self.r: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: H = None
self.s: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: A = None
self.s: B = None
self.z: C = None
self.t: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: E = None
self.s: A = None
self.z: B = None
self.t: E = None
self.w: I = None
self.q: B = None
self.p: D = None
self.x: J = None
self.r: D = None
self.u: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: C = None
self.s: J = None
self.z: J = None
self.t: E = None
self.w: F = None
self.q: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: A = None
self.s: B = None
self.txt = txt
d = A("d")
m = B("m")
l = C("l")
h = D("h")
i = E("i")
e = F("e")
a = G("a")
c = H("c")
g = I("g")
k = J("k")
d.y = l
d.s = h
d.t = h
d.z = m
m.y = c
m.p = c
m.x = c
m.s = k
m.t = k
m.z = a
m.q = a
m.r = a
m.w = g
l.y = m
l.s = m
l.z = h
l.t = c
l.q = c
l.w = i
l.p = i
l.x = d
l.r = e
h.y = c
h.s = a
i.y = m
e.y = m
a.y = d
a.s = m
a.z = l
a.t = l
c.y = i
c.t = i
c.s = d
c.z = m
c.q = m
c.w = g
c.p = h
c.r = h
c.x = k
c.u = e
g.y = l
g.s = k
g.z = k
g.t = i
g.w = e
g.q = e
k.y = d
k.s = m
assert l.r.y.w.y.r.y.t.s.r.s.txt == "m" | 10 | 33 | 3.3 | 0.366667 | 10 | 1 | 10 | 1 | 4.8 | 10 | 4 | 2 | 6 | 0.6 | 8 | 0.242424 | 5 | 2 | 8 | 4.25 | 5 | 3 | 1 | 3 |
351 | class A:
def __init__(self, txt: str):
self.z: B = None
self.p: C = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.p: H = None
self.y: H = None
self.x: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.p: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.p: D = None
self.y: B = None
self.x: H = None
self.q: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.p: E = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
j = B("j")
e = C("e")
k = D("k")
d = E("d")
b = F("b")
m = G("m")
h = H("h")
i = A("i")
f = C("f")
a.z = j
a.p = f
a.y = b
j.z = e
j.p = h
j.y = h
j.x = h
e.z = k
e.p = h
k.z = m
k.p = i
d.z = f
d.q = f
d.p = k
d.y = j
d.x = h
b.z = i
b.p = d
b.y = e
m.z = k
h.z = j
i.z = j
i.p = e
i.y = b
f.z = k
f.p = h
assert i.y.p.y.z.z.p.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: B = None
self.p: C = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.p: H = None
self.y: H = None
self.x: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.p: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.p: D = None
self.y: B = None
self.x: H = None
self.q: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.p: E = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
a = A("a")
j = B("j")
e = C("e")
k = D("k")
d = E("d")
b = F("b")
m = G("m")
h = H("h")
i = A("i")
f = C("f")
a.z = j
a.p = f
a.y = b
j.z = e
j.p = h
j.y = h
j.x = h
e.z = k
e.p = h
k.z = m
k.p = i
d.z = f
d.q = f
d.p = k
d.y = j
d.x = h
b.z = i
b.p = d
b.y = e
m.z = k
h.z = j
i.z = j
i.p = e
i.y = b
f.z = k
f.p = h
assert i.y.p.y.z.z.p.txt == "i" | 10 | 23 | 2.3 | 0.255556 | 8 | 1.25 | 5 | 1 | 2.625 | 6 | 2 | 1 | 6 | 0.6 | 6 | 0.26087 | 1 | 6 | 6 | 6 | 3 | 2 | 2 | 1 |
352 | class A:
def __init__(self, txt: str):
self.s: H = None
self.q: C = None
self.r: D = None
self.v: A = None
self.x: C = None
self.o: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.q: B = None
self.r: D = None
self.v: A = None
self.x: F = None
self.o: F = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: H = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: E = None
self.q: B = None
self.r: G = None
self.v: D = None
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: G = None
self.q: G = None
self.r: G = None
self.v: G = None
self.x: A = None
self.txt = txt
f = A("f")
c = B("c")
h = C("h")
e = D("e")
l = E("l")
n = F("n")
i = G("i")
m = H("m")
g = B("g")
k = A("k")
f.s = m
f.q = h
f.x = h
f.r = e
f.v = k
f.o = k
f.u = k
c.s = e
h.s = k
h.q = g
h.r = e
h.v = f
h.x = n
h.o = n
h.u = c
e.s = g
e.q = h
l.s = m
l.q = n
n.s = l
n.q = g
n.r = i
n.v = e
n.x = c
i.s = g
m.s = i
m.q = i
m.r = i
m.v = i
m.x = k
g.s = e
k.s = m
k.q = h
k.x = h
k.r = e
k.v = f
k.o = f
k.u = f
assert e.s.s.s.s.s.s.txt == " | e" | class A:
def __init__(self, txt: str):
self.s: H = None
self.q: C = None
self.r: D = None
self.v: A = None
self.x: C = None
self.o: A = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.q: B = None
self.r: D = None
self.v: A = None
self.x: F = None
self.o: F = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: H = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: E = None
self.q: B = None
self.r: G = None
self.v: D = None
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: G = None
self.q: G = None
self.r: G = None
self.v: G = None
self.x: A = None
self.txt = txt
f = A("f")
c = B("c")
h = C("h")
e = D("e")
l = E("l")
n = F("n")
i = G("i")
m = H("m")
g = B("g")
k = A("k")
f.s = m
f.q = h
f.x = h
f.r = e
f.v = k
f.o = k
f.u = k
c.s = e
h.s = k
h.q = g
h.r = e
h.v = f
h.x = n
h.o = n
h.u = c
e.s = g
e.q = h
l.s = m
l.q = n
n.s = l
n.q = g
n.r = i
n.v = e
n.x = c
i.s = g
m.s = i
m.q = i
m.r = i
m.v = i
m.x = k
g.s = e
k.s = m
k.q = h
k.x = h
k.r = e
k.v = f
k.o = f
k.u = f
assert e.s.s.s.s.s.s.txt == "e" | 10 | 28 | 2.8 | 0.311111 | 8 | 1.25 | 7 | 1 | 3.75 | 6 | 4 | 3 | 2 | 0.2 | 2 | 0.071429 | 5 | 2 | 6 | 3.111111 | 1 | 6 | 6 | 1 |
353 | class A:
def __init__(self, txt: str):
self.y: E = None
self.r: G = None
self.x: E = None
self.s: F = None
self.t: F = None
self.z: B = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.r: E = None
self.x: C = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.r: G = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: G = None
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.txt = txt
c = A("c")
i = B("i")
k = C("k")
g = D("g")
n = E("n")
f = F("f")
a = G("a")
h = E("h")
m = F("m")
e = B("e")
c.y = h
c.x = h
c.r = a
c.s = f
c.v = f
c.t = m
c.z = e
i.y = a
i.r = n
i.x = k
i.s = g
k.y = e
g.y = e
g.r = a
g.x = c
n.y = a
n.r = c
f.y = e
f.r = k
a.y = h
h.y = a
h.r = c
m.y = i
m.r = k
e.y = a
e.r = h
e.x = k
e.s = g
assert g.x.r.y.y.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.y: E = None
self.r: G = None
self.x: E = None
self.s: F = None
self.t: F = None
self.z: B = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.r: E = None
self.x: C = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.r: G = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: G = None
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.txt = txt
c = A("c")
i = B("i")
k = C("k")
g = D("g")
n = E("n")
f = F("f")
a = G("a")
h = E("h")
m = F("m")
e = B("e")
c.y = h
c.x = h
c.r = a
c.s = f
c.v = f
c.t = m
c.z = e
i.y = a
i.r = n
i.x = k
i.s = g
k.y = e
g.y = e
g.r = a
g.x = c
n.y = a
n.r = c
f.y = e
f.r = k
a.y = h
h.y = a
h.r = c
m.y = i
m.r = k
e.y = a
e.r = h
e.x = k
e.s = g
assert g.x.r.y.y.y.txt == "h" | 10 | 26 | 2.6 | 0.288889 | 7 | 1.428571 | 7 | 1 | 2.857143 | 5 | 2 | 2 | 4 | 0.4 | 4 | 0.153846 | 2 | 2 | 2 | 2 | 3 | 3 | 3 | 1 |
354 | class A:
def __init__(self, txt: str):
self.p: A = None
self.z: A = None
self.w: A = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.z: E = None
self.w: C = None
self.x: E = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.z: B = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: B = None
self.z: A = None
self.w: C = None
self.x: B = None
self.txt = txt
m = A("m")
d = B("d")
f = C("f")
e = D("e")
i = E("i")
b = A("b")
k = D("k")
a = A("a")
l = E("l")
c = A("c")
m.p = a
m.z = a
m.w = a
m.x = e
d.p = f
d.w = f
d.z = i
d.x = i
d.r = i
f.p = a
f.z = d
f.w = e
e.p = k
i.p = d
i.x = d
i.z = c
i.w = f
b.p = a
b.z = a
b.w = a
b.x = k
k.p = e
a.p = c
a.z = c
a.w = m
a.x = e
l.p = d
l.x = d
l.z = b
l.w = f
c.p = m
c.z = b
c.w = a
c.x = k
assert m.w.z.x.txt == " | k" | class A:
def __init__(self, txt: str):
self.p: A = None
self.z: A = None
self.w: A = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.z: E = None
self.w: C = None
self.x: E = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.z: B = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: B = None
self.z: A = None
self.w: C = None
self.x: B = None
self.txt = txt
m = A("m")
d = B("d")
f = C("f")
e = D("e")
i = E("i")
b = A("b")
k = D("k")
a = A("a")
l = E("l")
c = A("c")
m.p = a
m.z = a
m.w = a
m.x = e
d.p = f
d.w = f
d.z = i
d.x = i
d.r = i
f.p = a
f.z = d
f.w = e
e.p = k
i.p = d
i.x = d
i.z = c
i.w = f
b.p = a
b.z = a
b.w = a
b.x = k
k.p = e
a.p = c
a.z = c
a.w = m
a.x = e
l.p = d
l.x = d
l.z = b
l.w = f
c.p = m
c.z = b
c.w = a
c.x = k
assert m.w.z.x.txt == "k" | 10 | 24 | 2.4 | 0.266667 | 5 | 2 | 5 | 1 | 3.4 | 3 | 1 | 1 | 4 | 0.4 | 3 | 0.125 | 0 | null | null | null | 3 | 1 | 1 | 1 |
355 | class A:
def __init__(self, txt: str):
self.x: B = None
self.r: E = None
self.v: F = None
self.y: D = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: G = None
self.r: A = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: G = None
self.r: B = None
self.v: F = None
self.y: C = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: A = None
self.r: C = None
self.v: B = None
self.y: D = None
self.z: F = None
self.u: A = None
self.txt = txt
j = A("j")
c = B("c")
d = C("d")
m = D("m")
a = E("a")
e = F("e")
l = G("l")
n = B("n")
k = B("k")
b = F("b")
j.x = k
j.r = a
j.v = b
j.y = m
j.z = d
c.x = b
d.x = m
d.r = a
m.x = l
m.r = j
m.v = d
a.x = e
e.x = l
e.r = n
e.v = b
e.y = d
e.z = j
l.x = j
l.u = j
l.r = d
l.v = k
l.y = m
l.z = b
n.x = e
k.x = e
b.x = l
b.r = k
b.v = e
b.y = d
b.z = j
assert l.z.z.r.x.y.r.txt == " | a" | class A:
def __init__(self, txt: str):
self.x: B = None
self.r: E = None
self.v: F = None
self.y: D = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: G = None
self.r: A = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: G = None
self.r: B = None
self.v: F = None
self.y: C = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: A = None
self.r: C = None
self.v: B = None
self.y: D = None
self.z: F = None
self.u: A = None
self.txt = txt
j = A("j")
c = B("c")
d = C("d")
m = D("m")
a = E("a")
e = F("e")
l = G("l")
n = B("n")
k = B("k")
b = F("b")
j.x = k
j.r = a
j.v = b
j.y = m
j.z = d
c.x = b
d.x = m
d.r = a
m.x = l
m.r = j
m.v = d
a.x = e
e.x = l
e.r = n
e.v = b
e.y = d
e.z = j
l.x = j
l.u = j
l.r = d
l.v = k
l.y = m
l.z = b
n.x = e
k.x = e
b.x = l
b.r = k
b.v = e
b.y = d
b.z = j
assert l.z.z.r.x.y.r.txt == "a" | 10 | 29 | 2.9 | 0.322222 | 7 | 1.428571 | 6 | 1 | 3.285714 | 6 | 2 | 1 | 6 | 0.6 | 6 | 0.206897 | 1 | 3 | 3 | 3 | 4 | 2 | 2 | 1 |
356 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.w: A = None
self.z: A = None
self.txt = txt
g = A("g")
k = B("k")
m = C("m")
b = C("b")
e = C("e")
h = B("h")
d = B("d")
l = C("l")
n = B("n")
c = A("c")
g.r = c
k.r = l
k.w = g
m.r = c
m.w = c
m.z = c
b.r = c
b.w = c
b.z = g
e.r = c
e.w = g
e.z = g
h.r = e
h.w = c
d.r = b
d.w = c
l.r = c
l.w = c
l.z = c
n.r = e
n.w = c
c.r = g
assert k.w.r.r.r.r.r.r.r.txt == " | c" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.w: A = None
self.z: A = None
self.txt = txt
g = A("g")
k = B("k")
m = C("m")
b = C("b")
e = C("e")
h = B("h")
d = B("d")
l = C("l")
n = B("n")
c = A("c")
g.r = c
k.r = l
k.w = g
m.r = c
m.w = c
m.z = c
b.r = c
b.w = c
b.z = g
e.r = c
e.w = g
e.z = g
h.r = e
h.w = c
d.r = b
d.w = c
l.r = c
l.w = c
l.z = c
n.r = e
n.w = c
c.r = g
assert k.w.r.r.r.r.r.r.r.txt == "c" | 10 | 16 | 1.6 | 0.177778 | 3 | 3.333333 | 3 | 1 | 2 | 8 | 4 | 4 | 3 | 0.3 | 3 | 0.1875 | 6 | 2 | 6 | 3.333333 | 2 | 7 | 7 | 1 |
357 | class A:
def __init__(self, txt: str):
self.t: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: J = None
self.s: C = None
self.w: I = None
self.p: C = None
self.y: F = None
self.v: E = None
self.z: D = None
self.r: D = None
self.o: I = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: J = None
self.s: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.s: F = None
self.w: I = None
self.p: C = None
self.y: H = None
self.v: C = None
self.z: E = None
self.r: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.s: B = None
self.w: G = None
self.p: B = None
self.y: A = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: C = None
self.s: I = None
self.w: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: A = None
self.s: J = None
self.w: D = None
self.p: F = None
self.y: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: J = None
self.s: D = None
self.w: F = None
self.p: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: A = None
self.s: E = None
self.w: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: D = None
self.s: I = None
self.w: G = None
self.txt = txt
n = A("n")
e = B("e")
f = C("f")
i = D("i")
a = E("a")
k = F("k")
g = G("g")
h = H("h")
m = I("m")
b = J("b")
n.t = g
e.t = b
e.s = f
e.p = f
e.w = m
e.o = m
e.y = k
e.v = a
e.z = i
e.r = i
e.u = n
f.t = b
f.s = i
i.t = n
i.s = k
i.w = m
i.p = f
i.v = f
i.y = h
i.r = h
i.z = a
a.t = i
a.s = e
a.p = e
a.w = g
a.v = g
a.y = n
k.t = f
k.s = m
k.w = h
g.t = n
g.s = b
g.w = i
g.p = k
g.y = f
h.t = b
h.s = i
h.w = k
h.p = m
m.t = n
m.w = n
m.s = a
b.t = i
b.s = m
b.w = g
assert k.s.w.t.txt == " | g" | class A:
def __init__(self, txt: str):
self.t: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: J = None
self.s: C = None
self.w: I = None
self.p: C = None
self.y: F = None
self.v: E = None
self.z: D = None
self.r: D = None
self.o: I = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: J = None
self.s: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.s: F = None
self.w: I = None
self.p: C = None
self.y: H = None
self.v: C = None
self.z: E = None
self.r: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.s: B = None
self.w: G = None
self.p: B = None
self.y: A = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: C = None
self.s: I = None
self.w: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: A = None
self.s: J = None
self.w: D = None
self.p: F = None
self.y: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: J = None
self.s: D = None
self.w: F = None
self.p: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: A = None
self.s: E = None
self.w: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: D = None
self.s: I = None
self.w: G = None
self.txt = txt
n = A("n")
e = B("e")
f = C("f")
i = D("i")
a = E("a")
k = F("k")
g = G("g")
h = H("h")
m = I("m")
b = J("b")
n.t = g
e.t = b
e.s = f
e.p = f
e.w = m
e.o = m
e.y = k
e.v = a
e.z = i
e.r = i
e.u = n
f.t = b
f.s = i
i.t = n
i.s = k
i.w = m
i.p = f
i.v = f
i.y = h
i.r = h
i.z = a
a.t = i
a.s = e
a.p = e
a.w = g
a.v = g
a.y = n
k.t = f
k.s = m
k.w = h
g.t = n
g.s = b
g.w = i
g.p = k
g.y = f
h.t = b
h.s = i
h.w = k
h.p = m
m.t = n
m.w = n
m.s = a
b.t = i
b.s = m
b.w = g
assert k.s.w.t.txt == "g" | 10 | 37 | 3.7 | 0.411111 | 10 | 1 | 10 | 1 | 4.5 | 3 | 1 | 1 | 4 | 0.4 | 3 | 0.081081 | 0 | null | null | null | 3 | 1 | 1 | 1 |
358 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
j = A("j")
m = B("m")
d = A("d")
g = A("g")
k = A("k")
n = B("n")
e = B("e")
i = A("i")
b = A("b")
l = A("l")
j.x = i
m.x = b
d.x = i
g.x = b
k.x = g
n.x = i
e.x = i
i.x = g
b.x = i
l.x = i
assert l.x.x.x.x.x.x.x.x.x.txt == " | b" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
j = A("j")
m = B("m")
d = A("d")
g = A("g")
k = A("k")
n = B("n")
e = B("e")
i = A("i")
b = A("b")
l = A("l")
j.x = i
m.x = b
d.x = i
g.x = b
k.x = g
n.x = i
e.x = i
i.x = g
b.x = i
l.x = i
assert l.x.x.x.x.x.x.x.x.x.txt == "b" | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 9 | 3 | 3 | 4 | 0.4 | 4 | 0.4 | 6 | 3 | 6 | 4 | 1 | 9 | 9 | 1 |
359 | class A:
def __init__(self, txt: str):
self.v: A = None
self.y: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: C = None
self.y: A = None
self.x: B = None
self.txt = txt
n = A("n")
h = B("h")
d = C("d")
c = A("c")
j = C("j")
g = A("g")
i = B("i")
k = C("k")
e = A("e")
m = C("m")
n.v = e
n.y = g
n.x = i
h.v = j
d.v = j
d.y = n
d.x = h
c.v = g
c.y = e
c.x = h
j.v = d
j.y = n
j.x = i
g.v = c
g.y = n
g.x = h
i.v = m
k.v = d
k.y = g
k.x = i
e.v = g
e.y = c
e.x = h
m.v = k
m.y = g
m.x = h
assert e.v.x.v.v.x.v.y.v.y.x.txt == " | h" | class A:
def __init__(self, txt: str):
self.v: A = None
self.y: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: C = None
self.y: A = None
self.x: B = None
self.txt = txt
n = A("n")
h = B("h")
d = C("d")
c = A("c")
j = C("j")
g = A("g")
i = B("i")
k = C("k")
e = A("e")
m = C("m")
n.v = e
n.y = g
n.x = i
h.v = j
d.v = j
d.y = n
d.x = h
c.v = g
c.y = e
c.x = h
j.v = d
j.y = n
j.x = i
g.v = c
g.y = n
g.x = h
i.v = m
k.v = d
k.y = g
k.x = i
e.v = g
e.y = c
e.x = h
m.v = k
m.y = g
m.x = h
assert e.v.x.v.v.x.v.y.v.y.x.txt == "h" | 10 | 26 | 2.6 | 0.288889 | 3 | 3.333333 | 3 | 1 | 2.333333 | 10 | 3 | 2 | 7 | 0.7 | 9 | 0.346154 | 4 | 3 | 8 | 5.4 | 3 | 5 | 2 | 2 |
360 | class A:
def __init__(self, txt: str):
self.v: E = None
self.s: C = None
self.r: D = None
self.w: E = None
self.p: G = None
self.z: D = None
self.t: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: I = None
self.s: G = None
self.r: F = None
self.w: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: H = None
self.s: H = None
self.r: E = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: G = None
self.s: F = None
self.r: E = None
self.w: A = None
self.p: C = None
self.z: H = None
self.t: C = None
self.y: C = None
self.q: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.s: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: F = None
self.s: H = None
self.r: H = None
self.w: H = None
self.p: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: I = None
self.s: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: G = None
self.s: A = None
self.r: E = None
self.w: B = None
self.p: C = None
self.z: G = None
self.txt = txt
d = A("d")
l = B("l")
h = C("h")
g = D("g")
m = E("m")
j = F("j")
c = G("c")
k = H("k")
n = I("n")
i = G("i")
d.v = m
d.w = m
d.s = h
d.r = g
d.z = g
d.p = i
d.t = k
l.v = n
l.s = i
l.r = j
l.w = k
h.v = k
h.s = k
h.r = m
h.w = l
g.v = i
g.s = j
g.r = m
g.w = d
g.p = h
g.t = h
g.y = h
g.z = k
g.q = k
m.v = j
m.s = j
j.v = d
c.v = j
c.s = k
c.r = k
c.w = k
c.p = m
k.v = n
k.s = j
n.v = c
n.s = d
n.r = m
n.w = l
n.p = h
n.z = i
i.v = j
i.s = k
i.r = k
i.w = k
i.p = m
assert d.r.w.r.q.s.v.s.v.s.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.v: E = None
self.s: C = None
self.r: D = None
self.w: E = None
self.p: G = None
self.z: D = None
self.t: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: I = None
self.s: G = None
self.r: F = None
self.w: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: H = None
self.s: H = None
self.r: E = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: G = None
self.s: F = None
self.r: E = None
self.w: A = None
self.p: C = None
self.z: H = None
self.t: C = None
self.y: C = None
self.q: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.s: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: F = None
self.s: H = None
self.r: H = None
self.w: H = None
self.p: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: I = None
self.s: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: G = None
self.s: A = None
self.r: E = None
self.w: B = None
self.p: C = None
self.z: G = None
self.txt = txt
d = A("d")
l = B("l")
h = C("h")
g = D("g")
m = E("m")
j = F("j")
c = G("c")
k = H("k")
n = I("n")
i = G("i")
d.v = m
d.w = m
d.s = h
d.r = g
d.z = g
d.p = i
d.t = k
l.v = n
l.s = i
l.r = j
l.w = k
h.v = k
h.s = k
h.r = m
h.w = l
g.v = i
g.s = j
g.r = m
g.w = d
g.p = h
g.t = h
g.y = h
g.z = k
g.q = k
m.v = j
m.s = j
j.v = d
c.v = j
c.s = k
c.r = k
c.w = k
c.p = m
k.v = n
k.s = j
n.v = c
n.s = d
n.r = m
n.w = l
n.p = h
n.z = i
i.v = j
i.s = k
i.r = k
i.w = k
i.p = m
assert d.r.w.r.q.s.v.s.v.s.v.txt == "d" | 10 | 34 | 3.4 | 0.377778 | 9 | 1.111111 | 9 | 1 | 4.444444 | 10 | 4 | 2 | 5 | 0.5 | 7 | 0.205882 | 6 | 2 | 10 | 4.888889 | 5 | 3 | 1 | 2 |
361 | class A:
def __init__(self, txt: str):
self.x: D = None
self.o: E = None
self.s: C = None
self.t: C = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.o: D = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.o: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.o: D = None
self.s: B = None
self.t: B = None
self.p: D = None
self.txt = txt
f = A("f")
i = B("i")
h = C("h")
l = D("l")
j = E("j")
a = C("a")
c = A("c")
n = A("n")
d = A("d")
k = D("k")
f.x = k
f.o = j
f.s = a
f.t = h
f.p = h
i.x = n
i.o = l
i.s = k
h.x = l
h.o = j
l.x = j
j.x = c
j.o = l
j.s = i
j.t = i
j.p = k
a.x = l
a.o = j
c.x = k
c.o = j
c.s = a
c.t = a
c.p = h
n.x = k
n.o = j
n.s = h
n.t = h
n.p = a
d.x = k
d.o = j
d.s = h
d.t = h
d.p = h
k.x = j
assert j.o.x.p.txt == " | k" | class A:
def __init__(self, txt: str):
self.x: D = None
self.o: E = None
self.s: C = None
self.t: C = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.o: D = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.o: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.o: D = None
self.s: B = None
self.t: B = None
self.p: D = None
self.txt = txt
f = A("f")
i = B("i")
h = C("h")
l = D("l")
j = E("j")
a = C("a")
c = A("c")
n = A("n")
d = A("d")
k = D("k")
f.x = k
f.o = j
f.s = a
f.t = h
f.p = h
i.x = n
i.o = l
i.s = k
h.x = l
h.o = j
l.x = j
j.x = c
j.o = l
j.s = i
j.t = i
j.p = k
a.x = l
a.o = j
c.x = k
c.o = j
c.s = a
c.t = a
c.p = h
n.x = k
n.o = j
n.s = h
n.t = h
n.p = a
d.x = k
d.o = j
d.s = h
d.t = h
d.p = h
k.x = j
assert j.o.x.p.txt == "k" | 10 | 28 | 2.8 | 0.311111 | 5 | 2 | 5 | 1 | 3.2 | 3 | 2 | 1 | 3 | 0.3 | 3 | 0.107143 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 2 |
362 | class A:
def __init__(self, txt: str):
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: I = None
self.p: E = None
self.r: I = None
self.w: I = None
self.o: H = None
self.z: A = None
self.u: C = None
self.v: A = None
self.t: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.r: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: I = None
self.p: B = None
self.r: G = None
self.w: B = None
self.o: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: C = None
self.p: A = None
self.r: B = None
self.w: G = None
self.o: G = None
self.z: F = None
self.u: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: E = None
self.p: H = None
self.r: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: I = None
self.p: F = None
self.r: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.r: I = None
self.w: A = None
self.o: F = None
self.z: E = None
self.u: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: H = None
self.txt = txt
j = A("j")
a = B("a")
k = C("k")
d = D("d")
m = E("m")
g = F("g")
b = G("b")
e = H("e")
i = I("i")
h = C("h")
j.x = g
a.x = i
a.r = i
a.w = i
a.t = i
a.p = m
a.o = e
a.z = j
a.v = j
a.u = h
k.x = a
k.p = j
k.r = h
d.x = i
d.p = a
d.w = a
d.r = b
d.o = b
m.x = k
m.p = j
m.r = a
m.w = b
m.o = b
m.z = g
m.u = g
g.x = m
g.r = m
g.p = e
b.x = i
b.p = g
b.r = j
e.x = a
e.u = a
e.p = j
e.w = j
e.r = i
e.o = g
e.z = m
i.x = e
h.x = a
h.p = j
h.r = k
assert d.o.p.r.p.x.p.p.x.txt == " | g" | class A:
def __init__(self, txt: str):
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: I = None
self.p: E = None
self.r: I = None
self.w: I = None
self.o: H = None
self.z: A = None
self.u: C = None
self.v: A = None
self.t: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.r: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: I = None
self.p: B = None
self.r: G = None
self.w: B = None
self.o: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: C = None
self.p: A = None
self.r: B = None
self.w: G = None
self.o: G = None
self.z: F = None
self.u: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: E = None
self.p: H = None
self.r: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: I = None
self.p: F = None
self.r: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: B = None
self.p: A = None
self.r: I = None
self.w: A = None
self.o: F = None
self.z: E = None
self.u: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: H = None
self.txt = txt
j = A("j")
a = B("a")
k = C("k")
d = D("d")
m = E("m")
g = F("g")
b = G("b")
e = H("e")
i = I("i")
h = C("h")
j.x = g
a.x = i
a.r = i
a.w = i
a.t = i
a.p = m
a.o = e
a.z = j
a.v = j
a.u = h
k.x = a
k.p = j
k.r = h
d.x = i
d.p = a
d.w = a
d.r = b
d.o = b
m.x = k
m.p = j
m.r = a
m.w = b
m.o = b
m.z = g
m.u = g
g.x = m
g.r = m
g.p = e
b.x = i
b.p = g
b.r = j
e.x = a
e.u = a
e.p = j
e.w = j
e.r = i
e.o = g
e.z = m
i.x = e
h.x = a
h.p = j
h.r = k
assert d.o.p.r.p.x.p.p.x.txt == "g" | 10 | 31 | 3.1 | 0.344444 | 9 | 1.111111 | 9 | 1 | 4.333333 | 8 | 3 | 2 | 6 | 0.6 | 7 | 0.225806 | 3 | 3 | 6 | 3.75 | 4 | 4 | 2 | 2 |
363 | class A:
def __init__(self, txt: str):
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.v: C = None
self.o: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: G = None
self.v: E = None
self.o: G = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.v: B = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.v: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.v: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: A = None
self.v: C = None
self.txt = txt
b = A("b")
l = B("l")
h = C("h")
g = D("g")
c = E("c")
d = F("d")
i = G("i")
e = B("e")
m = D("m")
k = A("k")
b.q = m
l.q = h
l.v = h
l.o = i
h.q = i
h.o = i
h.v = c
h.y = d
g.q = e
g.v = l
g.o = k
c.q = d
c.v = e
d.q = i
d.v = m
i.q = k
i.v = h
e.q = h
e.v = h
e.o = i
m.q = e
m.v = e
m.o = k
k.q = g
assert m.o.q.v.v.v.q.q.q.q.txt == " | g" | class A:
def __init__(self, txt: str):
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.v: C = None
self.o: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: G = None
self.v: E = None
self.o: G = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.v: B = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.v: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.v: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: A = None
self.v: C = None
self.txt = txt
b = A("b")
l = B("l")
h = C("h")
g = D("g")
c = E("c")
d = F("d")
i = G("i")
e = B("e")
m = D("m")
k = A("k")
b.q = m
l.q = h
l.v = h
l.o = i
h.q = i
h.o = i
h.v = c
h.y = d
g.q = e
g.v = l
g.o = k
c.q = d
c.v = e
d.q = i
d.v = m
i.q = k
i.v = h
e.q = h
e.v = h
e.o = i
m.q = e
m.v = e
m.o = k
k.q = g
assert m.o.q.v.v.v.q.q.q.q.txt == "g" | 10 | 20 | 2 | 0.222222 | 7 | 1.428571 | 4 | 1 | 2.428571 | 9 | 2 | 2 | 8 | 0.8 | 8 | 0.4 | 2 | 7 | 7 | 7 | 3 | 5 | 4 | 1 |
364 | class A:
def __init__(self, txt: str):
self.z: J = None
self.t: I = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: I = None
self.t: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.t: G = None
self.q: H = None
self.u: G = None
self.v: F = None
self.s: G = None
self.w: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: H = None
self.t: A = None
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: I = None
self.t: A = None
self.q: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.t: J = None
self.q: J = None
self.u: I = None
self.v: E = None
self.s: A = None
self.w: A = None
self.x: D = None
self.p: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.t: J = None
self.q: H = None
self.u: J = None
self.v: I = None
self.s: A = None
self.w: F = None
self.x: H = None
self.p: F = None
self.r: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: E = None
self.t: B = None
self.q: F = None
self.u: D = None
self.v: G = None
self.s: G = None
self.w: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: B = None
self.t: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
b = A("b")
h = B("h")
n = C("n")
a = D("a")
m = E("m")
c = F("c")
l = G("l")
e = H("e")
i = I("i")
d = J("d")
b.z = d
b.t = i
b.q = a
h.z = i
h.t = d
n.z = a
n.t = l
n.u = l
n.s = l
n.q = e
n.v = c
n.w = d
a.z = e
a.t = b
a.q = b
m.z = i
m.t = b
m.q = e
c.z = n
c.t = d
c.q = d
c.u = i
c.v = m
c.s = b
c.w = b
c.x = a
c.p = a
l.z = b
l.s = b
l.t = d
l.u = d
l.q = e
l.x = e
l.r = e
l.v = i
l.w = c
l.p = c
e.z = m
e.t = h
e.w = h
e.q = c
e.u = a
e.v = l
e.s = l
i.z = h
i.t = l
d.z = m
assert c.p.z.u.z.w.t.z.z.t.txt == " | l" | class A:
def __init__(self, txt: str):
self.z: J = None
self.t: I = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: I = None
self.t: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.t: G = None
self.q: H = None
self.u: G = None
self.v: F = None
self.s: G = None
self.w: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: H = None
self.t: A = None
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: I = None
self.t: A = None
self.q: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.t: J = None
self.q: J = None
self.u: I = None
self.v: E = None
self.s: A = None
self.w: A = None
self.x: D = None
self.p: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: A = None
self.t: J = None
self.q: H = None
self.u: J = None
self.v: I = None
self.s: A = None
self.w: F = None
self.x: H = None
self.p: F = None
self.r: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: E = None
self.t: B = None
self.q: F = None
self.u: D = None
self.v: G = None
self.s: G = None
self.w: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: B = None
self.t: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
b = A("b")
h = B("h")
n = C("n")
a = D("a")
m = E("m")
c = F("c")
l = G("l")
e = H("e")
i = I("i")
d = J("d")
b.z = d
b.t = i
b.q = a
h.z = i
h.t = d
n.z = a
n.t = l
n.u = l
n.s = l
n.q = e
n.v = c
n.w = d
a.z = e
a.t = b
a.q = b
m.z = i
m.t = b
m.q = e
c.z = n
c.t = d
c.q = d
c.u = i
c.v = m
c.s = b
c.w = b
c.x = a
c.p = a
l.z = b
l.s = b
l.t = d
l.u = d
l.q = e
l.x = e
l.r = e
l.v = i
l.w = c
l.p = c
e.z = m
e.t = h
e.w = h
e.q = c
e.u = a
e.v = l
e.s = l
i.z = h
i.t = l
d.z = m
assert c.p.z.u.z.w.t.z.z.t.txt == "l" | 10 | 34 | 3.4 | 0.377778 | 10 | 1 | 10 | 1 | 4.7 | 9 | 2 | 2 | 8 | 0.8 | 8 | 0.235294 | 2 | 2 | 2 | 2 | 5 | 4 | 2 | 2 |
365 | class A:
def __init__(self, txt: str):
self.r: G = None
self.p: B = None
self.v: G = None
self.q: J = None
self.w: D = None
self.u: J = None
self.x: E = None
self.y: J = None
self.t: J = None
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: I = None
self.p: E = None
self.v: C = None
self.q: J = None
self.w: J = None
self.u: I = None
self.x: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: G = None
self.p: I = None
self.v: E = None
self.q: E = None
self.w: E = None
self.u: G = None
self.x: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.p: C = None
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: J = None
self.p: G = None
self.v: E = None
self.q: J = None
self.w: J = None
self.u: D = None
self.x: B = None
self.y: H = None
self.t: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: J = None
self.p: B = None
self.v: I = None
self.q: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: C = None
self.p: G = None
self.v: C = None
self.q: G = None
self.w: J = None
self.u: E = None
self.x: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: G = None
self.p: J = None
self.v: H = None
self.q: C = None
self.w: J = None
self.u: F = None
self.x: H = None
self.y: H = None
self.t: C = None
self.o: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: B = None
self.p: F = None
self.v: A = None
self.q: G = None
self.w: F = None
self.txt = txt
b = A("b")
g = B("g")
i = C("i")
j = D("j")
n = E("n")
a = F("a")
e = G("e")
h = H("h")
k = I("k")
l = J("l")
b.r = e
b.v = e
b.p = g
b.q = l
b.u = l
b.y = l
b.t = l
b.w = j
b.x = n
b.o = a
g.r = k
g.u = k
g.p = n
g.v = i
g.x = i
g.q = l
g.w = l
g.y = b
i.r = e
i.u = e
i.p = k
i.x = k
i.v = n
i.q = n
i.w = n
j.r = i
j.p = i
j.v = b
n.r = j
n.p = j
a.r = l
a.q = l
a.w = l
a.p = e
a.v = n
a.t = n
a.u = j
a.x = g
a.y = h
e.r = l
e.p = g
e.q = g
e.v = k
h.r = i
h.v = i
h.p = e
h.q = e
h.x = e
h.w = l
h.u = n
k.r = e
k.p = l
k.w = l
k.o = l
k.v = h
k.x = h
k.y = h
k.q = i
k.t = i
k.u = a
l.r = g
l.p = a
l.w = a
l.v = b
l.q = e
assert g.y.r.p.p.r.p.u.v.o.q.txt == " | e" | class A:
def __init__(self, txt: str):
self.r: G = None
self.p: B = None
self.v: G = None
self.q: J = None
self.w: D = None
self.u: J = None
self.x: E = None
self.y: J = None
self.t: J = None
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: I = None
self.p: E = None
self.v: C = None
self.q: J = None
self.w: J = None
self.u: I = None
self.x: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: G = None
self.p: I = None
self.v: E = None
self.q: E = None
self.w: E = None
self.u: G = None
self.x: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.p: C = None
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: J = None
self.p: G = None
self.v: E = None
self.q: J = None
self.w: J = None
self.u: D = None
self.x: B = None
self.y: H = None
self.t: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: J = None
self.p: B = None
self.v: I = None
self.q: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: C = None
self.p: G = None
self.v: C = None
self.q: G = None
self.w: J = None
self.u: E = None
self.x: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: G = None
self.p: J = None
self.v: H = None
self.q: C = None
self.w: J = None
self.u: F = None
self.x: H = None
self.y: H = None
self.t: C = None
self.o: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: B = None
self.p: F = None
self.v: A = None
self.q: G = None
self.w: F = None
self.txt = txt
b = A("b")
g = B("g")
i = C("i")
j = D("j")
n = E("n")
a = F("a")
e = G("e")
h = H("h")
k = I("k")
l = J("l")
b.r = e
b.v = e
b.p = g
b.q = l
b.u = l
b.y = l
b.t = l
b.w = j
b.x = n
b.o = a
g.r = k
g.u = k
g.p = n
g.v = i
g.x = i
g.q = l
g.w = l
g.y = b
i.r = e
i.u = e
i.p = k
i.x = k
i.v = n
i.q = n
i.w = n
j.r = i
j.p = i
j.v = b
n.r = j
n.p = j
a.r = l
a.q = l
a.w = l
a.p = e
a.v = n
a.t = n
a.u = j
a.x = g
a.y = h
e.r = l
e.p = g
e.q = g
e.v = k
h.r = i
h.v = i
h.p = e
h.q = e
h.x = e
h.w = l
h.u = n
k.r = e
k.p = l
k.w = l
k.o = l
k.v = h
k.x = h
k.y = h
k.q = i
k.t = i
k.u = a
l.r = g
l.p = a
l.w = a
l.v = b
l.q = e
assert g.y.r.p.p.r.p.u.v.o.q.txt == "e" | 10 | 39 | 3.9 | 0.433333 | 10 | 1 | 10 | 2 | 6.5 | 10 | 3 | 1 | 8 | 0.8 | 10 | 0.25641 | 3 | 3 | 8 | 4.75 | 7 | 3 | 2 | 2 |
366 | class A:
def __init__(self, txt: str):
self.s: B = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: C = None
self.v: D = None
self.r: D = None
self.w: C = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: E = None
self.v: D = None
self.txt = txt
c = A("c")
m = B("m")
n = C("n")
a = D("a")
l = E("l")
d = E("d")
e = A("e")
i = D("i")
h = D("h")
f = A("f")
c.s = m
c.v = l
m.s = f
n.s = h
n.v = m
a.s = n
a.w = n
a.v = h
a.r = i
a.p = d
l.s = d
l.v = h
d.s = l
d.v = a
e.s = m
e.v = l
i.s = n
i.w = n
i.v = h
i.r = a
i.p = l
h.s = n
h.w = n
h.v = a
h.r = i
h.p = d
f.s = m
f.v = d
assert c.v.s.v.r.r.p.v.r.txt == " | i" | class A:
def __init__(self, txt: str):
self.s: B = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: C = None
self.v: D = None
self.r: D = None
self.w: C = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: E = None
self.v: D = None
self.txt = txt
c = A("c")
m = B("m")
n = C("n")
a = D("a")
l = E("l")
d = E("d")
e = A("e")
i = D("i")
h = D("h")
f = A("f")
c.s = m
c.v = l
m.s = f
n.s = h
n.v = m
a.s = n
a.w = n
a.v = h
a.r = i
a.p = d
l.s = d
l.v = h
d.s = l
d.v = a
e.s = m
e.v = l
i.s = n
i.w = n
i.v = h
i.r = a
i.p = l
h.s = n
h.w = n
h.v = a
h.r = i
h.p = d
f.s = m
f.v = d
assert c.v.s.v.r.r.p.v.r.txt == "i" | 10 | 25 | 2.5 | 0.277778 | 5 | 2 | 5 | 1 | 2.4 | 8 | 3 | 2 | 5 | 0.5 | 6 | 0.24 | 4 | 2 | 4 | 3.2 | 4 | 3 | 2 | 2 |
367 | class A:
def __init__(self, txt: str):
self.x: C = None
self.p: E = None
self.o: E = None
self.z: D = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.p: A = None
self.o: D = None
self.z: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: H = None
self.p: G = None
self.o: G = None
self.z: D = None
self.u: D = None
self.v: D = None
self.s: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: I = None
self.p: C = None
self.o: A = None
self.z: E = None
self.u: I = None
self.v: F = None
self.s: A = None
self.y: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.p: I = None
self.o: C = None
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: A = None
self.p: G = None
self.o: E = None
self.z: A = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: B = None
self.p: C = None
self.o: E = None
self.z: A = None
self.u: A = None
self.v: I = None
self.s: B = None
self.y: C = None
self.r: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: G = None
self.p: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: H = None
self.p: C = None
self.txt = txt
i = A("i")
f = B("f")
d = C("d")
l = D("l")
c = E("c")
n = F("n")
m = G("m")
e = H("e")
k = I("k")
j = E("j")
i.x = d
i.p = c
i.o = c
i.z = l
i.u = f
f.x = c
f.p = i
f.o = l
f.z = k
d.x = e
d.p = m
d.o = m
d.z = l
d.u = l
d.v = l
d.s = n
l.x = k
l.u = k
l.y = k
l.p = d
l.o = i
l.s = i
l.z = j
l.v = n
c.x = l
c.p = k
c.o = d
c.z = i
n.x = i
n.z = i
n.p = m
n.o = c
n.u = c
m.x = f
m.s = f
m.p = d
m.y = d
m.o = c
m.z = i
m.u = i
m.v = k
m.r = l
e.x = m
e.p = m
k.x = e
k.p = d
j.x = l
j.p = k
j.o = d
j.z = i
assert c.z.x.s.o.p.p.s.x.txt == " | i" | class A:
def __init__(self, txt: str):
self.x: C = None
self.p: E = None
self.o: E = None
self.z: D = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.p: A = None
self.o: D = None
self.z: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: H = None
self.p: G = None
self.o: G = None
self.z: D = None
self.u: D = None
self.v: D = None
self.s: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: I = None
self.p: C = None
self.o: A = None
self.z: E = None
self.u: I = None
self.v: F = None
self.s: A = None
self.y: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.p: I = None
self.o: C = None
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: A = None
self.p: G = None
self.o: E = None
self.z: A = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: B = None
self.p: C = None
self.o: E = None
self.z: A = None
self.u: A = None
self.v: I = None
self.s: B = None
self.y: C = None
self.r: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: G = None
self.p: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: H = None
self.p: C = None
self.txt = txt
i = A("i")
f = B("f")
d = C("d")
l = D("l")
c = E("c")
n = F("n")
m = G("m")
e = H("e")
k = I("k")
j = E("j")
i.x = d
i.p = c
i.o = c
i.z = l
i.u = f
f.x = c
f.p = i
f.o = l
f.z = k
d.x = e
d.p = m
d.o = m
d.z = l
d.u = l
d.v = l
d.s = n
l.x = k
l.u = k
l.y = k
l.p = d
l.o = i
l.s = i
l.z = j
l.v = n
c.x = l
c.p = k
c.o = d
c.z = i
n.x = i
n.z = i
n.p = m
n.o = c
n.u = c
m.x = f
m.s = f
m.p = d
m.y = d
m.o = c
m.z = i
m.u = i
m.v = k
m.r = l
e.x = m
e.p = m
k.x = e
k.p = d
j.x = l
j.p = k
j.o = d
j.z = i
assert c.z.x.s.o.p.p.s.x.txt == "i" | 10 | 37 | 3.7 | 0.411111 | 9 | 1.111111 | 9 | 2 | 5.111111 | 8 | 2 | 2 | 5 | 0.5 | 7 | 0.189189 | 4 | 4 | 7 | 4.75 | 5 | 2 | 2 | 2 |
368 | class A:
def __init__(self, txt: str):
self.r: B = None
self.w: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.w: D = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: I = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: H = None
self.w: E = None
self.s: B = None
self.p: G = None
self.y: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: H = None
self.w: H = None
self.s: B = None
self.p: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: C = None
self.w: C = None
self.s: H = None
self.p: D = None
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: E = None
self.w: B = None
self.s: E = None
self.p: G = None
self.y: A = None
self.x: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: G = None
self.w: C = None
self.s: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: A = None
self.w: F = None
self.s: G = None
self.p: G = None
self.y: C = None
self.x: C = None
self.q: B = None
self.o: E = None
self.u: G = None
self.txt = txt
n = A("n")
e = B("e")
j = C("j")
m = D("m")
k = E("k")
a = F("a")
g = G("g")
d = H("d")
b = I("b")
f = G("f")
n.r = e
n.w = k
e.r = m
e.w = m
e.s = k
j.r = b
j.w = m
m.r = d
m.w = k
m.s = e
m.p = f
m.y = a
k.r = d
k.w = d
k.s = e
k.p = e
a.r = j
a.w = j
a.s = d
a.p = m
a.y = e
g.r = k
g.s = k
g.w = e
g.p = f
g.y = n
g.x = d
d.r = f
d.w = j
d.s = b
b.r = n
b.w = a
b.s = f
b.p = f
b.u = f
b.y = j
b.x = j
b.q = e
b.o = k
f.r = k
f.s = k
f.w = e
f.p = g
f.y = n
f.x = d
assert j.r.o.s.w.r.r.txt == " | f" | class A:
def __init__(self, txt: str):
self.r: B = None
self.w: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.w: D = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: I = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: H = None
self.w: E = None
self.s: B = None
self.p: G = None
self.y: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: H = None
self.w: H = None
self.s: B = None
self.p: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: C = None
self.w: C = None
self.s: H = None
self.p: D = None
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: E = None
self.w: B = None
self.s: E = None
self.p: G = None
self.y: A = None
self.x: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: G = None
self.w: C = None
self.s: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: A = None
self.w: F = None
self.s: G = None
self.p: G = None
self.y: C = None
self.x: C = None
self.q: B = None
self.o: E = None
self.u: G = None
self.txt = txt
n = A("n")
e = B("e")
j = C("j")
m = D("m")
k = E("k")
a = F("a")
g = G("g")
d = H("d")
b = I("b")
f = G("f")
n.r = e
n.w = k
e.r = m
e.w = m
e.s = k
j.r = b
j.w = m
m.r = d
m.w = k
m.s = e
m.p = f
m.y = a
k.r = d
k.w = d
k.s = e
k.p = e
a.r = j
a.w = j
a.s = d
a.p = m
a.y = e
g.r = k
g.s = k
g.w = e
g.p = f
g.y = n
g.x = d
d.r = f
d.w = j
d.s = b
b.r = n
b.w = a
b.s = f
b.p = f
b.u = f
b.y = j
b.x = j
b.q = e
b.o = k
f.r = k
f.s = k
f.w = e
f.p = g
f.y = n
f.x = d
assert j.r.o.s.w.r.r.txt == "f" | 10 | 36 | 3.6 | 0.4 | 9 | 1.111111 | 9 | 2 | 4.333333 | 6 | 1 | 1 | 7 | 0.7 | 6 | 0.166667 | 0 | null | null | null | 4 | 3 | 2 | 1 |
369 | class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: E = None
self.w: B = None
self.p: A = None
self.u: B = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.w: A = None
self.p: D = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.w: B = None
self.p: A = None
self.u: A = None
self.txt = txt
a = A("a")
n = B("n")
k = C("k")
l = D("l")
m = E("m")
d = F("d")
c = D("c")
g = B("g")
b = C("b")
i = A("i")
a.s = b
n.s = m
n.w = g
n.u = g
n.p = a
n.t = b
k.s = d
l.s = d
l.w = i
l.p = c
l.u = k
m.s = k
d.s = k
d.w = g
d.p = i
d.u = a
c.s = d
c.w = i
c.p = l
c.u = k
g.s = m
g.w = n
g.u = n
g.p = a
g.t = k
b.s = d
i.s = k
assert l.p.w.s.s.s.s.u.s.s.w.txt == " | g" | class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: E = None
self.w: B = None
self.p: A = None
self.u: B = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.w: A = None
self.p: D = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.w: B = None
self.p: A = None
self.u: A = None
self.txt = txt
a = A("a")
n = B("n")
k = C("k")
l = D("l")
m = E("m")
d = F("d")
c = D("c")
g = B("g")
b = C("b")
i = A("i")
a.s = b
n.s = m
n.w = g
n.u = g
n.p = a
n.t = b
k.s = d
l.s = d
l.w = i
l.p = c
l.u = k
m.s = k
d.s = k
d.w = g
d.p = i
d.u = a
c.s = d
c.w = i
c.p = l
c.u = k
g.s = m
g.w = n
g.u = n
g.p = a
g.t = k
b.s = d
i.s = k
assert l.p.w.s.s.s.s.u.s.s.w.txt == "g" | 10 | 25 | 2.5 | 0.277778 | 6 | 1.666667 | 5 | 1 | 2.666667 | 10 | 3 | 2 | 8 | 0.8 | 9 | 0.36 | 3 | 2 | 5 | 3 | 4 | 6 | 4 | 3 |
370 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
d = A("d")
i = B("i")
b = A("b")
k = A("k")
f = B("f")
c = B("c")
j = B("j")
e = A("e")
a = A("a")
n = A("n")
d.z = j
i.z = c
b.z = f
k.z = c
f.z = c
c.z = f
j.z = i
e.z = f
a.z = f
n.z = i
assert j.z.z.z.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
d = A("d")
i = B("i")
b = A("b")
k = A("k")
f = B("f")
c = B("c")
j = B("j")
e = A("e")
a = A("a")
n = A("n")
d.z = j
i.z = c
b.z = f
k.z = c
f.z = c
c.z = f
j.z = i
e.z = f
a.z = f
n.z = i
assert j.z.z.z.z.txt == "c" | 10 | 10 | 1 | 0.111111 | 2 | 5 | 1 | 1 | 1 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.4 | 1 | 2 | 2 | 2 | 1 | 4 | 4 | 1 |
371 | class A:
def __init__(self, txt: str):
self.p: B = None
self.q: B = None
self.s: F = None
self.y: E = None
self.x: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.q: D = None
self.s: C = None
self.y: C = None
self.x: C = None
self.u: D = None
self.r: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: G = None
self.q: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: H = None
self.q: F = None
self.s: E = None
self.y: H = None
self.x: I = None
self.u: H = None
self.r: G = None
self.t: B = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: C = None
self.q: H = None
self.s: A = None
self.y: J = None
self.x: B = None
self.u: G = None
self.r: F = None
self.t: B = None
self.o: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.q: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: J = None
self.q: D = None
self.s: D = None
self.y: A = None
self.x: I = None
self.u: J = None
self.r: J = None
self.t: C = None
self.o: F = None
self.v: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: J = None
self.q: E = None
self.s: A = None
self.y: D = None
self.x: J = None
self.u: J = None
self.r: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.p: G = None
self.q: E = None
self.s: E = None
self.y: D = None
self.x: B = None
self.txt = txt
h = A("h")
n = B("n")
f = C("f")
b = D("b")
a = E("a")
g = F("g")
k = G("k")
l = H("l")
e = I("e")
j = J("j")
h.p = n
h.q = n
h.s = g
h.y = a
h.x = e
n.p = h
n.q = b
n.u = b
n.r = b
n.s = f
n.y = f
n.x = f
f.p = k
f.q = h
b.p = l
b.y = l
b.u = l
b.q = g
b.o = g
b.s = a
b.x = e
b.r = k
b.t = n
a.p = f
a.q = l
a.s = h
a.y = j
a.o = j
a.x = n
a.t = n
a.u = k
a.r = g
g.p = h
g.q = l
k.p = j
k.u = j
k.r = j
k.q = b
k.s = b
k.y = h
k.v = h
k.x = e
k.t = f
k.o = g
l.p = j
l.x = j
l.u = j
l.q = a
l.s = h
l.y = b
l.r = g
e.p = a
j.p = k
j.q = a
j.s = a
j.y = b
j.x = n
assert e.p.p.q.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.q: B = None
self.s: F = None
self.y: E = None
self.x: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.q: D = None
self.s: C = None
self.y: C = None
self.x: C = None
self.u: D = None
self.r: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: G = None
self.q: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: H = None
self.q: F = None
self.s: E = None
self.y: H = None
self.x: I = None
self.u: H = None
self.r: G = None
self.t: B = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: C = None
self.q: H = None
self.s: A = None
self.y: J = None
self.x: B = None
self.u: G = None
self.r: F = None
self.t: B = None
self.o: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.q: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: J = None
self.q: D = None
self.s: D = None
self.y: A = None
self.x: I = None
self.u: J = None
self.r: J = None
self.t: C = None
self.o: F = None
self.v: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: J = None
self.q: E = None
self.s: A = None
self.y: D = None
self.x: J = None
self.u: J = None
self.r: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.p: G = None
self.q: E = None
self.s: E = None
self.y: D = None
self.x: B = None
self.txt = txt
h = A("h")
n = B("n")
f = C("f")
b = D("b")
a = E("a")
g = F("g")
k = G("k")
l = H("l")
e = I("e")
j = J("j")
h.p = n
h.q = n
h.s = g
h.y = a
h.x = e
n.p = h
n.q = b
n.u = b
n.r = b
n.s = f
n.y = f
n.x = f
f.p = k
f.q = h
b.p = l
b.y = l
b.u = l
b.q = g
b.o = g
b.s = a
b.x = e
b.r = k
b.t = n
a.p = f
a.q = l
a.s = h
a.y = j
a.o = j
a.x = n
a.t = n
a.u = k
a.r = g
g.p = h
g.q = l
k.p = j
k.u = j
k.r = j
k.q = b
k.s = b
k.y = h
k.v = h
k.x = e
k.t = f
k.o = g
l.p = j
l.x = j
l.u = j
l.q = a
l.s = h
l.y = b
l.r = g
e.p = a
j.p = k
j.q = a
j.s = a
j.y = b
j.x = n
assert e.p.p.q.y.txt == "a" | 10 | 40 | 4 | 0.444444 | 10 | 1 | 10 | 1 | 5.7 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.1 | 1 | 3 | 3 | 3 | 3 | 2 | 2 | 1 |
372 | class A:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.z: C = None
self.p: A = None
self.txt = txt
n = A("n")
j = B("j")
h = C("h")
g = A("g")
e = A("e")
a = B("a")
c = C("c")
b = A("b")
l = A("l")
d = B("d")
n.t = h
j.t = h
h.t = c
h.z = c
h.p = g
g.t = h
e.t = c
a.t = h
c.t = h
c.z = h
c.p = n
b.t = h
l.t = c
d.t = h
assert l.t.t.p.t.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: C = None
self.z: C = None
self.p: A = None
self.txt = txt
n = A("n")
j = B("j")
h = C("h")
g = A("g")
e = A("e")
a = B("a")
c = C("c")
b = A("b")
l = A("l")
d = B("d")
n.t = h
j.t = h
h.t = c
h.z = c
h.p = g
g.t = h
e.t = c
a.t = h
c.t = h
c.z = h
c.p = n
b.t = h
l.t = c
d.t = h
assert l.t.t.p.t.t.txt == "c" | 10 | 12 | 1.2 | 0.133333 | 3 | 3.333333 | 3 | 1 | 1.666667 | 5 | 2 | 1 | 4 | 0.4 | 5 | 0.416667 | 2 | 2 | 4 | 3 | 2 | 4 | 2 | 2 |
373 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.v: A = None
self.txt = txt
g = A("g")
f = B("f")
i = B("i")
l = A("l")
j = A("j")
n = A("n")
a = A("a")
e = B("e")
c = A("c")
b = B("b")
g.q = e
f.q = i
f.v = c
i.q = e
i.v = j
l.q = f
j.q = b
n.q = f
a.q = i
e.q = b
e.v = n
c.q = b
b.q = f
b.v = g
assert e.v.q.q.q.q.q.v.q.q.txt == " | f" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.v: A = None
self.txt = txt
g = A("g")
f = B("f")
i = B("i")
l = A("l")
j = A("j")
n = A("n")
a = A("a")
e = B("e")
c = A("c")
b = B("b")
g.q = e
f.q = i
f.v = c
i.q = e
i.v = j
l.q = f
j.q = b
n.q = f
a.q = i
e.q = b
e.v = n
c.q = b
b.q = f
b.v = g
assert e.v.q.q.q.q.q.v.q.q.txt == "f" | 10 | 14 | 1.4 | 0.155556 | 2 | 5 | 2 | 1 | 1.5 | 9 | 3 | 2 | 6 | 0.6 | 8 | 0.571429 | 4 | 3 | 7 | 4.2 | 2 | 7 | 5 | 2 |
374 | class A:
def __init__(self, txt: str):
self.u: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
j = A("j")
c = B("c")
k = A("k")
g = A("g")
i = A("i")
a = B("a")
l = A("l")
n = A("n")
m = A("m")
f = B("f")
j.u = f
j.p = c
c.u = a
k.u = c
k.p = a
g.u = f
g.p = a
i.u = a
i.p = a
a.u = c
l.u = a
l.p = c
n.u = f
n.p = c
m.u = c
m.p = a
f.u = a
assert a.u.u.u.u.u.u.txt == " | a" | class A:
def __init__(self, txt: str):
self.u: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
j = A("j")
c = B("c")
k = A("k")
g = A("g")
i = A("i")
a = B("a")
l = A("l")
n = A("n")
m = A("m")
f = B("f")
j.u = f
j.p = c
c.u = a
k.u = c
k.p = a
g.u = f
g.p = a
i.u = a
i.p = a
a.u = c
l.u = a
l.p = c
n.u = f
n.p = c
m.u = c
m.p = a
f.u = a
assert a.u.u.u.u.u.u.txt == "a" | 10 | 16 | 1.6 | 0.177778 | 2 | 5 | 2 | 1 | 1.5 | 6 | 4 | 3 | 2 | 0.2 | 2 | 0.125 | 5 | 2 | 6 | 3.111111 | 1 | 6 | 6 | 1 |
375 | class A:
def __init__(self, txt: str):
self.r: H = None
self.o: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: H = None
self.o: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: F = None
self.o: F = None
self.z: I = None
self.w: C = None
self.q: I = None
self.s: E = None
self.y: B = None
self.t: B = None
self.v: B = None
self.p: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.o: G = None
self.z: J = None
self.w: I = None
self.q: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.o: D = None
self.z: A = None
self.w: D = None
self.q: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: I = None
self.o: E = None
self.z: J = None
self.w: I = None
self.q: F = None
self.s: D = None
self.y: G = None
self.t: J = None
self.v: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: H = None
self.o: F = None
self.z: I = None
self.w: E = None
self.q: E = None
self.txt = txt
a = A("a")
k = B("k")
b = C("b")
f = D("f")
g = E("g")
j = F("j")
n = G("n")
i = H("i")
c = I("c")
h = J("h")
a.r = i
a.o = c
k.r = c
b.r = i
b.o = i
f.r = j
f.o = j
f.z = c
f.q = c
f.p = c
f.w = b
f.s = g
f.y = k
f.t = k
f.v = k
g.r = k
g.o = n
g.q = n
g.z = h
g.w = c
j.r = k
j.o = f
j.w = f
j.z = a
j.q = a
n.r = k
i.r = c
i.w = c
i.o = g
i.z = h
i.t = h
i.q = j
i.s = f
i.y = n
i.v = n
c.r = h
h.r = i
h.o = j
h.z = c
h.w = g
h.q = g
assert n.r.r.r.z.r.w.z.q.z.r.txt == " | i" | class A:
def __init__(self, txt: str):
self.r: H = None
self.o: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: H = None
self.o: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: F = None
self.o: F = None
self.z: I = None
self.w: C = None
self.q: I = None
self.s: E = None
self.y: B = None
self.t: B = None
self.v: B = None
self.p: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.o: G = None
self.z: J = None
self.w: I = None
self.q: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.o: D = None
self.z: A = None
self.w: D = None
self.q: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: I = None
self.o: E = None
self.z: J = None
self.w: I = None
self.q: F = None
self.s: D = None
self.y: G = None
self.t: J = None
self.v: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: H = None
self.o: F = None
self.z: I = None
self.w: E = None
self.q: E = None
self.txt = txt
a = A("a")
k = B("k")
b = C("b")
f = D("f")
g = E("g")
j = F("j")
n = G("n")
i = H("i")
c = I("c")
h = J("h")
a.r = i
a.o = c
k.r = c
b.r = i
b.o = i
f.r = j
f.o = j
f.z = c
f.q = c
f.p = c
f.w = b
f.s = g
f.y = k
f.t = k
f.v = k
g.r = k
g.o = n
g.q = n
g.z = h
g.w = c
j.r = k
j.o = f
j.w = f
j.z = a
j.q = a
n.r = k
i.r = c
i.w = c
i.o = g
i.z = h
i.t = h
i.q = j
i.s = f
i.y = n
i.v = n
c.r = h
h.r = i
h.o = j
h.z = c
h.w = g
h.q = g
assert n.r.r.r.z.r.w.z.q.z.r.txt == "i" | 10 | 28 | 2.8 | 0.311111 | 10 | 1 | 10 | 1 | 4.1 | 10 | 4 | 2 | 6 | 0.6 | 8 | 0.285714 | 5 | 2 | 6 | 3 | 4 | 5 | 3 | 4 |
376 | class A:
def __init__(self, txt: str):
self.w: A = None
self.u: D = None
self.s: C = None
self.p: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.u: E = None
self.s: A = None
self.p: D = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.u: D = None
self.s: E = None
self.p: D = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.u: B = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: D = None
self.u: B = None
self.txt = txt
n = A("n")
e = B("e")
l = C("l")
i = D("i")
b = E("b")
h = C("h")
g = C("g")
j = E("j")
d = E("d")
c = A("c")
n.w = c
n.u = i
n.s = l
n.p = e
n.r = e
e.w = c
e.r = c
e.u = d
e.s = n
e.p = i
l.w = c
l.u = i
l.p = i
l.s = b
l.r = n
i.w = c
i.u = e
i.s = h
b.w = i
b.u = e
h.w = c
h.r = c
h.u = i
h.p = i
h.s = b
g.w = c
g.u = i
g.p = i
g.s = b
g.r = n
j.w = i
j.u = e
d.w = i
d.u = e
c.w = n
c.u = i
c.s = g
c.p = e
c.r = e
assert e.u.w.s.r.u.u.u.w.txt == " | i" | class A:
def __init__(self, txt: str):
self.w: A = None
self.u: D = None
self.s: C = None
self.p: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.u: E = None
self.s: A = None
self.p: D = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.u: D = None
self.s: E = None
self.p: D = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.u: B = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: D = None
self.u: B = None
self.txt = txt
n = A("n")
e = B("e")
l = C("l")
i = D("i")
b = E("b")
h = C("h")
g = C("g")
j = E("j")
d = E("d")
c = A("c")
n.w = c
n.u = i
n.s = l
n.p = e
n.r = e
e.w = c
e.r = c
e.u = d
e.s = n
e.p = i
l.w = c
l.u = i
l.p = i
l.s = b
l.r = n
i.w = c
i.u = e
i.s = h
b.w = i
b.u = e
h.w = c
h.r = c
h.u = i
h.p = i
h.s = b
g.w = c
g.u = i
g.p = i
g.s = b
g.r = n
j.w = i
j.u = e
d.w = i
d.u = e
c.w = n
c.u = i
c.s = g
c.p = e
c.r = e
assert e.u.w.s.r.u.u.u.w.txt == "i" | 10 | 32 | 3.2 | 0.355556 | 5 | 2 | 5 | 2 | 4 | 8 | 3 | 2 | 5 | 0.5 | 6 | 0.1875 | 4 | 3 | 6 | 4.8 | 4 | 4 | 3 | 2 |
377 | class A:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
n = A("n")
a = B("a")
j = C("j")
m = D("m")
b = E("b")
e = D("e")
c = B("c")
d = B("d")
l = A("l")
f = E("f")
n.o = e
a.o = n
j.o = e
m.o = a
m.w = f
b.o = d
e.o = d
e.w = f
c.o = l
d.o = n
l.o = e
f.o = a
assert a.o.o.o.txt == " | d" | class A:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
n = A("n")
a = B("a")
j = C("j")
m = D("m")
b = E("b")
e = D("e")
c = B("c")
d = B("d")
l = A("l")
f = E("f")
n.o = e
a.o = n
j.o = e
m.o = a
m.w = f
b.o = d
e.o = d
e.w = f
c.o = l
d.o = n
l.o = e
f.o = a
assert a.o.o.o.txt == "d" | 10 | 12 | 1.2 | 0.133333 | 5 | 2 | 2 | 1 | 1.2 | 3 | 1 | 1 | 4 | 0.4 | 3 | 0.25 | 0 | null | null | null | 1 | 3 | 3 | 1 |
378 | class A:
def __init__(self, txt: str):
self.q: C = None
self.u: C = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.u: E = None
self.p: A = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: D = None
self.u: A = None
self.p: B = None
self.v: B = None
self.t: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.u: A = None
self.p: C = None
self.txt = txt
j = A("j")
e = B("e")
a = C("a")
b = D("b")
d = E("d")
h = F("h")
m = D("m")
g = B("g")
f = D("f")
l = E("l")
j.q = a
j.u = a
j.p = a
e.q = d
e.u = h
a.q = g
a.u = l
a.p = j
a.v = d
b.q = a
d.q = f
d.u = j
d.p = e
d.v = e
d.t = h
h.q = j
h.u = j
h.p = a
m.q = a
g.q = d
g.u = h
f.q = a
l.q = b
l.u = j
l.p = g
l.v = e
l.t = h
assert f.q.q.u.p.txt == " | a" | class A:
def __init__(self, txt: str):
self.q: C = None
self.u: C = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.u: E = None
self.p: A = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: D = None
self.u: A = None
self.p: B = None
self.v: B = None
self.t: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.u: A = None
self.p: C = None
self.txt = txt
j = A("j")
e = B("e")
a = C("a")
b = D("b")
d = E("d")
h = F("h")
m = D("m")
g = B("g")
f = D("f")
l = E("l")
j.q = a
j.u = a
j.p = a
e.q = d
e.u = h
a.q = g
a.u = l
a.p = j
a.v = d
b.q = a
d.q = f
d.u = j
d.p = e
d.v = e
d.t = h
h.q = j
h.u = j
h.p = a
m.q = a
g.q = d
g.u = h
f.q = a
l.q = b
l.u = j
l.p = g
l.v = e
l.t = h
assert f.q.q.u.p.txt == "a" | 10 | 23 | 2.3 | 0.255556 | 6 | 1.666667 | 5 | 1 | 3 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.173913 | 1 | 3 | 3 | 3 | 3 | 2 | 2 | 1 |
379 | class A:
def __init__(self, txt: str):
self.u: C = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.t: C = None
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.t: B = None
self.txt = txt
e = A("e")
i = B("i")
n = C("n")
k = C("k")
d = C("d")
f = B("f")
g = C("g")
h = A("h")
l = A("l")
a = A("a")
e.u = g
e.t = a
i.u = f
i.y = f
i.t = n
n.u = h
n.t = f
k.u = e
k.t = f
d.u = a
d.t = f
f.u = i
f.y = i
f.t = d
g.u = e
g.t = f
h.u = k
h.t = e
l.u = n
l.t = h
a.u = k
a.t = l
assert k.t.y.t.u.t.t.t.txt == " | l" | class A:
def __init__(self, txt: str):
self.u: C = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.t: C = None
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.t: B = None
self.txt = txt
e = A("e")
i = B("i")
n = C("n")
k = C("k")
d = C("d")
f = B("f")
g = C("g")
h = A("h")
l = A("l")
a = A("a")
e.u = g
e.t = a
i.u = f
i.y = f
i.t = n
n.u = h
n.t = f
k.u = e
k.t = f
d.u = a
d.t = f
f.u = i
f.y = i
f.t = d
g.u = e
g.t = f
h.u = k
h.t = e
l.u = n
l.t = h
a.u = k
a.t = l
assert k.t.y.t.u.t.t.t.txt == "l" | 10 | 20 | 2 | 0.222222 | 3 | 3.333333 | 3 | 2 | 2.333333 | 7 | 1 | 1 | 8 | 0.8 | 7 | 0.35 | 0 | null | null | null | 3 | 5 | 3 | 1 |
380 | class A:
def __init__(self, txt: str):
self.y: G = None
self.q: B = None
self.u: B = None
self.w: B = None
self.x: D = None
self.t: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: D = None
self.q: F = None
self.u: D = None
self.w: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.q: A = None
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.u: A = None
self.w: D = None
self.x: C = None
self.t: C = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.q: E = None
self.u: C = None
self.w: F = None
self.x: F = None
self.t: C = None
self.p: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.q: C = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.q: B = None
self.u: E = None
self.txt = txt
n = A("n")
f = B("f")
k = C("k")
a = D("a")
d = E("d")
i = F("i")
b = G("b")
m = E("m")
c = D("c")
e = A("e")
n.y = b
n.t = b
n.q = f
n.u = f
n.w = f
n.x = c
f.y = c
f.q = i
f.u = a
f.w = b
k.y = d
k.q = e
k.u = m
a.y = f
a.q = e
a.u = e
a.w = c
a.x = k
a.t = k
a.p = k
d.y = f
d.q = m
d.u = k
d.t = k
d.p = k
d.w = i
d.x = i
i.y = k
i.q = k
i.u = d
b.y = m
b.q = f
b.u = d
m.y = f
m.q = d
m.u = k
m.t = k
m.p = k
m.w = i
m.x = i
c.y = f
c.q = e
c.u = n
c.w = a
c.x = k
c.t = k
c.p = k
e.y = b
e.t = b
e.q = f
e.u = f
e.w = f
e.x = c
assert f.u.u.x.y.y.q.t.txt == " | b" | class A:
def __init__(self, txt: str):
self.y: G = None
self.q: B = None
self.u: B = None
self.w: B = None
self.x: D = None
self.t: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: D = None
self.q: F = None
self.u: D = None
self.w: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.q: A = None
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.u: A = None
self.w: D = None
self.x: C = None
self.t: C = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.q: E = None
self.u: C = None
self.w: F = None
self.x: F = None
self.t: C = None
self.p: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.q: C = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.q: B = None
self.u: E = None
self.txt = txt
n = A("n")
f = B("f")
k = C("k")
a = D("a")
d = E("d")
i = F("i")
b = G("b")
m = E("m")
c = D("c")
e = A("e")
n.y = b
n.t = b
n.q = f
n.u = f
n.w = f
n.x = c
f.y = c
f.q = i
f.u = a
f.w = b
k.y = d
k.q = e
k.u = m
a.y = f
a.q = e
a.u = e
a.w = c
a.x = k
a.t = k
a.p = k
d.y = f
d.q = m
d.u = k
d.t = k
d.p = k
d.w = i
d.x = i
i.y = k
i.q = k
i.u = d
b.y = m
b.q = f
b.u = d
m.y = f
m.q = d
m.u = k
m.t = k
m.p = k
m.w = i
m.x = i
c.y = f
c.q = e
c.u = n
c.w = a
c.x = k
c.t = k
c.p = k
e.y = b
e.t = b
e.q = f
e.u = f
e.w = f
e.x = c
assert f.u.u.x.y.y.q.t.txt == "b" | 10 | 35 | 3.5 | 0.388889 | 7 | 1.428571 | 7 | 3 | 4.714286 | 7 | 2 | 1 | 5 | 0.5 | 7 | 0.2 | 3 | 2 | 4 | 3.333333 | 5 | 2 | 2 | 2 |
381 | class A:
def __init__(self, txt: str):
self.p: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.z: A = None
self.txt = txt
b = A("b")
f = B("f")
e = B("e")
m = A("m")
i = A("i")
k = B("k")
n = A("n")
g = B("g")
j = A("j")
d = B("d")
b.p = n
b.z = f
f.p = i
f.z = m
e.p = i
e.z = i
m.p = n
m.z = d
i.p = n
i.z = g
k.p = j
k.z = b
n.p = j
n.z = g
g.p = i
g.z = m
j.p = i
j.z = e
d.p = n
d.z = j
assert b.p.p.p.p.z.p.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.p: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.z: A = None
self.txt = txt
b = A("b")
f = B("f")
e = B("e")
m = A("m")
i = A("i")
k = B("k")
n = A("n")
g = B("g")
j = A("j")
d = B("d")
b.p = n
b.z = f
f.p = i
f.z = m
e.p = i
e.z = i
m.p = n
m.z = d
i.p = n
i.z = g
k.p = j
k.z = b
n.p = j
n.z = g
g.p = i
g.z = m
j.p = i
j.z = e
d.p = n
d.z = j
assert b.p.p.p.p.z.p.z.txt == "g" | 10 | 19 | 1.9 | 0.211111 | 2 | 5 | 2 | 2 | 2 | 7 | 2 | 1 | 5 | 0.5 | 7 | 0.368421 | 3 | 2 | 3 | 2.666667 | 2 | 5 | 4 | 2 |
382 | class A:
def __init__(self, txt: str):
self.q: C = None
self.w: B = None
self.p: C = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.w: E = None
self.p: B = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.w: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: E = None
self.w: E = None
self.p: C = None
self.txt = txt
a = A("a")
n = B("n")
j = C("j")
k = D("k")
m = E("m")
h = E("h")
b = D("b")
d = C("d")
f = D("f")
e = A("e")
a.q = d
a.p = d
a.w = n
a.r = n
n.q = j
j.q = b
j.w = h
j.r = h
j.p = n
k.q = n
k.w = f
m.q = h
m.w = h
m.p = j
h.q = m
h.w = m
h.p = j
b.q = n
b.w = k
d.q = b
d.w = h
d.r = h
d.p = n
f.q = n
f.w = k
e.q = j
e.w = n
e.r = n
e.p = d
assert d.q.q.q.w.p.txt == " | j" | class A:
def __init__(self, txt: str):
self.q: C = None
self.w: B = None
self.p: C = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.w: E = None
self.p: B = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.w: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: E = None
self.w: E = None
self.p: C = None
self.txt = txt
a = A("a")
n = B("n")
j = C("j")
k = D("k")
m = E("m")
h = E("h")
b = D("b")
d = C("d")
f = D("f")
e = A("e")
a.q = d
a.p = d
a.w = n
a.r = n
n.q = j
j.q = b
j.w = h
j.r = h
j.p = n
k.q = n
k.w = f
m.q = h
m.w = h
m.p = j
h.q = m
h.w = m
h.p = j
b.q = n
b.w = k
d.q = b
d.w = h
d.r = h
d.p = n
f.q = n
f.w = k
e.q = j
e.w = n
e.r = n
e.p = d
assert d.q.q.q.w.p.txt == "j" | 10 | 22 | 2.2 | 0.244444 | 5 | 2 | 4 | 1 | 2.8 | 5 | 2 | 1 | 5 | 0.5 | 5 | 0.227273 | 1 | 2 | 2 | 2 | 3 | 3 | 3 | 1 |
383 | class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.w: D = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.w: D = None
self.txt = txt
b = A("b")
c = B("c")
a = C("a")
m = D("m")
j = A("j")
e = A("e")
l = A("l")
f = D("f")
h = A("h")
i = B("i")
b.o = a
c.o = a
c.w = f
c.t = f
a.o = f
m.o = i
m.w = f
j.o = a
e.o = a
l.o = a
f.o = i
f.w = m
h.o = a
i.o = a
i.w = f
i.t = m
assert h.o.o.w.o.o.txt == " | a" | class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.w: D = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.w: D = None
self.txt = txt
b = A("b")
c = B("c")
a = C("a")
m = D("m")
j = A("j")
e = A("e")
l = A("l")
f = D("f")
h = A("h")
i = B("i")
b.o = a
c.o = a
c.w = f
c.t = f
a.o = f
m.o = i
m.w = f
j.o = a
e.o = a
l.o = a
f.o = i
f.w = m
h.o = a
i.o = a
i.w = f
i.t = m
assert h.o.o.w.o.o.txt == "a" | 10 | 15 | 1.5 | 0.166667 | 4 | 2.5 | 3 | 1 | 1.75 | 5 | 2 | 1 | 5 | 0.5 | 5 | 0.333333 | 1 | 4 | 4 | 4 | 2 | 4 | 2 | 1 |
384 | class A:
def __init__(self, txt: str):
self.r: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.z: A = None
self.txt = txt
m = A("m")
g = B("g")
k = B("k")
f = A("f")
e = B("e")
j = B("j")
b = B("b")
c = A("c")
n = B("n")
h = A("h")
m.r = f
m.z = e
g.r = f
g.z = h
k.r = m
k.z = m
f.r = h
f.z = n
e.r = m
e.z = f
j.r = c
j.z = h
b.r = c
b.z = h
c.r = f
c.z = e
n.r = m
n.z = f
h.r = f
h.z = e
assert c.r.z.r.r.txt == " | f" | class A:
def __init__(self, txt: str):
self.r: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.z: A = None
self.txt = txt
m = A("m")
g = B("g")
k = B("k")
f = A("f")
e = B("e")
j = B("j")
b = B("b")
c = A("c")
n = B("n")
h = A("h")
m.r = f
m.z = e
g.r = f
g.z = h
k.r = m
k.z = m
f.r = h
f.z = n
e.r = m
e.z = f
j.r = c
j.z = h
b.r = c
b.z = h
c.r = f
c.z = e
n.r = m
n.z = f
h.r = f
h.z = e
assert c.r.z.r.r.txt == "f" | 10 | 19 | 1.9 | 0.211111 | 2 | 5 | 2 | 2 | 2 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.210526 | 1 | 3 | 3 | 3 | 2 | 3 | 2 | 1 |
385 | class A:
def __init__(self, txt: str):
self.q: C = None
self.z: F = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.z: E = None
self.w: B = None
self.p: A = None
self.r: A = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.z: A = None
self.w: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
n = A("n")
e = B("e")
g = C("g")
k = D("k")
f = E("f")
j = F("j")
h = F("h")
m = B("m")
d = C("d")
i = E("i")
n.q = g
n.z = j
n.w = k
e.q = g
e.z = f
e.w = m
e.p = n
e.r = n
e.s = k
g.q = d
g.w = d
g.z = n
k.q = i
f.q = m
f.z = n
j.q = n
h.q = n
m.q = g
m.z = i
m.w = e
m.p = n
m.r = n
m.s = k
d.q = g
d.w = g
d.z = n
i.q = e
i.z = n
assert d.z.w.q.z.txt == " | n" | class A:
def __init__(self, txt: str):
self.q: C = None
self.z: F = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.z: E = None
self.w: B = None
self.p: A = None
self.r: A = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.z: A = None
self.w: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
n = A("n")
e = B("e")
g = C("g")
k = D("k")
f = E("f")
j = F("j")
h = F("h")
m = B("m")
d = C("d")
i = E("i")
n.q = g
n.z = j
n.w = k
e.q = g
e.z = f
e.w = m
e.p = n
e.r = n
e.s = k
g.q = d
g.w = d
g.z = n
k.q = i
f.q = m
f.z = n
j.q = n
h.q = n
m.q = g
m.z = i
m.w = e
m.p = n
m.r = n
m.s = k
d.q = g
d.w = g
d.z = n
i.q = e
i.z = n
assert d.z.w.q.z.txt == "n" | 10 | 24 | 2.4 | 0.266667 | 6 | 1.666667 | 6 | 1 | 2.666667 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.166667 | 1 | 3 | 3 | 3 | 3 | 2 | 1 | 1 |
386 | class A:
def __init__(self, txt: str):
self.t: C = None
self.z: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.z: C = None
self.u: B = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: C = None
self.z: B = None
self.u: D = None
self.p: C = None
self.txt = txt
l = A("l")
m = B("m")
n = C("n")
i = D("i")
j = C("j")
e = B("e")
c = C("c")
g = C("g")
a = D("a")
k = A("k")
l.t = j
l.z = m
l.u = k
m.t = l
n.t = l
n.p = l
n.z = j
n.u = m
i.t = c
i.z = m
i.u = a
i.p = g
j.t = l
j.z = c
j.u = e
j.p = k
e.t = k
c.t = k
c.p = k
c.z = g
c.u = m
g.t = l
g.p = l
g.z = n
g.u = e
a.t = n
a.z = e
a.u = i
a.p = c
k.t = n
k.z = e
k.u = l
assert j.t.t.z.t.u.txt == " | l" | class A:
def __init__(self, txt: str):
self.t: C = None
self.z: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.z: C = None
self.u: B = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: C = None
self.z: B = None
self.u: D = None
self.p: C = None
self.txt = txt
l = A("l")
m = B("m")
n = C("n")
i = D("i")
j = C("j")
e = B("e")
c = C("c")
g = C("g")
a = D("a")
k = A("k")
l.t = j
l.z = m
l.u = k
m.t = l
n.t = l
n.p = l
n.z = j
n.u = m
i.t = c
i.z = m
i.u = a
i.p = g
j.t = l
j.z = c
j.u = e
j.p = k
e.t = k
c.t = k
c.p = k
c.z = g
c.u = m
g.t = l
g.p = l
g.z = n
g.u = e
a.t = n
a.z = e
a.u = i
a.p = c
k.t = n
k.z = e
k.u = l
assert j.t.t.z.t.u.txt == "l" | 10 | 29 | 2.9 | 0.322222 | 4 | 2.5 | 4 | 1 | 3 | 5 | 2 | 1 | 4 | 0.4 | 5 | 0.172414 | 2 | 2 | 4 | 3 | 3 | 3 | 2 | 2 |
387 | class A:
def __init__(self, txt: str):
self.q: C = None
self.u: E = None
self.y: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.u: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: C = None
self.u: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: E = None
self.u: B = None
self.y: A = None
self.txt = txt
g = A("g")
h = B("h")
m = C("m")
e = D("e")
b = E("b")
j = F("j")
i = G("i")
f = G("f")
d = A("d")
n = B("n")
g.q = m
g.u = b
g.y = i
h.q = d
h.u = f
m.q = f
e.q = m
e.u = j
b.q = g
j.q = g
j.u = m
i.q = b
i.u = h
i.y = d
f.q = b
f.u = n
f.y = g
d.q = m
d.u = b
d.y = f
n.q = g
n.u = i
assert g.y.q.q.u.q.q.q.y.q.txt == " | m" | class A:
def __init__(self, txt: str):
self.q: C = None
self.u: E = None
self.y: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.u: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: C = None
self.u: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: E = None
self.u: B = None
self.y: A = None
self.txt = txt
g = A("g")
h = B("h")
m = C("m")
e = D("e")
b = E("b")
j = F("j")
i = G("i")
f = G("f")
d = A("d")
n = B("n")
g.q = m
g.u = b
g.y = i
h.q = d
h.u = f
m.q = f
e.q = m
e.u = j
b.q = g
j.q = g
j.u = m
i.q = b
i.u = h
i.y = d
f.q = b
f.u = n
f.y = g
d.q = m
d.u = b
d.y = f
n.q = g
n.u = i
assert g.y.q.q.u.q.q.q.y.q.txt == "m" | 10 | 22 | 2.2 | 0.244444 | 7 | 1.428571 | 3 | 1 | 2 | 9 | 4 | 2 | 5 | 0.5 | 7 | 0.318182 | 5 | 2 | 8 | 3.875 | 3 | 6 | 3 | 3 |
388 | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.z: C = None
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.z: C = None
self.y: A = None
self.txt = txt
i = A("i")
l = B("l")
a = C("a")
j = B("j")
d = C("d")
m = B("m")
g = A("g")
n = A("n")
h = C("h")
f = B("f")
i.p = n
l.p = h
l.z = d
l.y = m
a.p = j
a.z = h
a.y = n
j.p = h
j.z = d
j.y = f
d.p = j
d.z = a
d.y = n
m.p = d
m.z = a
m.y = f
g.p = i
n.p = g
h.p = l
h.z = a
h.y = n
f.p = d
f.z = d
f.y = l
assert f.p.z.y.p.p.p.p.p.txt == " | i" | class A:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.z: C = None
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.z: C = None
self.y: A = None
self.txt = txt
i = A("i")
l = B("l")
a = C("a")
j = B("j")
d = C("d")
m = B("m")
g = A("g")
n = A("n")
h = C("h")
f = B("f")
i.p = n
l.p = h
l.z = d
l.y = m
a.p = j
a.z = h
a.y = n
j.p = h
j.z = d
j.y = f
d.p = j
d.z = a
d.y = n
m.p = d
m.z = a
m.y = f
g.p = i
n.p = g
h.p = l
h.z = a
h.y = n
f.p = d
f.z = d
f.y = l
assert f.p.z.y.p.p.p.p.p.txt == "i" | 10 | 23 | 2.3 | 0.255556 | 3 | 3.333333 | 3 | 1 | 2.333333 | 8 | 2 | 2 | 6 | 0.6 | 6 | 0.26087 | 3 | 3 | 3 | 3 | 3 | 6 | 5 | 1 |
389 | class A:
def __init__(self, txt: str):
self.r: C = None
self.u: B = None
self.x: E = None
self.q: B = None
self.p: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.u: C = None
self.x: D = None
self.q: A = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.u: A = None
self.txt = txt
i = A("i")
f = B("f")
k = C("k")
d = D("d")
c = E("c")
g = E("g")
j = B("j")
e = C("e")
m = C("m")
n = C("n")
i.r = m
i.u = f
i.q = f
i.x = c
i.p = c
f.r = i
f.u = e
k.r = d
k.x = d
k.u = n
k.q = i
k.p = i
d.r = f
d.u = f
c.r = d
c.u = i
g.r = d
g.u = i
j.r = i
j.u = n
e.r = d
e.x = d
e.u = m
e.q = i
e.p = i
m.r = d
m.x = d
m.u = n
m.q = i
m.p = i
n.r = d
n.x = d
n.u = m
n.q = i
n.p = i
assert e.x.u.r.p.txt == " | c" | class A:
def __init__(self, txt: str):
self.r: C = None
self.u: B = None
self.x: E = None
self.q: B = None
self.p: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.u: C = None
self.x: D = None
self.q: A = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.u: A = None
self.txt = txt
i = A("i")
f = B("f")
k = C("k")
d = D("d")
c = E("c")
g = E("g")
j = B("j")
e = C("e")
m = C("m")
n = C("n")
i.r = m
i.u = f
i.q = f
i.x = c
i.p = c
f.r = i
f.u = e
k.r = d
k.x = d
k.u = n
k.q = i
k.p = i
d.r = f
d.u = f
c.r = d
c.u = i
g.r = d
g.u = i
j.r = i
j.u = n
e.r = d
e.x = d
e.u = m
e.q = i
e.p = i
m.r = d
m.x = d
m.u = n
m.q = i
m.p = i
n.r = d
n.x = d
n.u = m
n.q = i
n.p = i
assert e.x.u.r.p.txt == "c" | 10 | 24 | 2.4 | 0.266667 | 5 | 2 | 5 | 2 | 3.2 | 4 | 1 | 1 | 5 | 0.5 | 4 | 0.166667 | 0 | null | null | null | 4 | 1 | 1 | 1 |
390 | class A:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.o: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.o: D = None
self.u: D = None
self.v: D = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: H = None
self.o: F = None
self.u: F = None
self.v: G = None
self.p: G = None
self.y: F = None
self.q: E = None
self.x: E = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.o: H = None
self.u: G = None
self.v: D = None
self.p: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.o: C = None
self.u: C = None
self.v: E = None
self.p: I = None
self.y: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: G = None
self.o: G = None
self.u: H = None
self.v: D = None
self.txt = txt
n = A("n")
g = B("g")
f = C("f")
h = D("h")
i = E("i")
j = F("j")
k = G("k")
b = H("b")
e = I("e")
d = D("d")
n.z = b
g.z = i
g.o = h
f.z = n
f.o = d
f.v = d
f.u = h
f.p = h
h.z = b
h.o = j
h.u = j
h.y = j
h.v = k
h.p = k
h.t = k
h.q = i
h.x = i
i.z = d
i.o = f
j.z = h
j.o = b
j.p = b
j.u = k
j.v = d
k.z = g
b.z = n
b.o = f
b.u = f
b.v = i
b.p = e
b.y = g
e.z = k
e.o = k
e.u = b
e.v = h
d.z = b
d.o = j
d.u = j
d.y = j
d.v = k
d.p = k
d.t = k
d.q = i
d.x = i
assert e.v.y.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.o: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.o: D = None
self.u: D = None
self.v: D = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: H = None
self.o: F = None
self.u: F = None
self.v: G = None
self.p: G = None
self.y: F = None
self.q: E = None
self.x: E = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.o: H = None
self.u: G = None
self.v: D = None
self.p: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.o: C = None
self.u: C = None
self.v: E = None
self.p: I = None
self.y: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: G = None
self.o: G = None
self.u: H = None
self.v: D = None
self.txt = txt
n = A("n")
g = B("g")
f = C("f")
h = D("h")
i = E("i")
j = F("j")
k = G("k")
b = H("b")
e = I("e")
d = D("d")
n.z = b
g.z = i
g.o = h
f.z = n
f.o = d
f.v = d
f.u = h
f.p = h
h.z = b
h.o = j
h.u = j
h.y = j
h.v = k
h.p = k
h.t = k
h.q = i
h.x = i
i.z = d
i.o = f
j.z = h
j.o = b
j.p = b
j.u = k
j.v = d
k.z = g
b.z = n
b.o = f
b.u = f
b.v = i
b.p = e
b.y = g
e.z = k
e.o = k
e.u = b
e.v = h
d.z = b
d.o = j
d.u = j
d.y = j
d.v = k
d.p = k
d.t = k
d.q = i
d.x = i
assert e.v.y.v.txt == "d" | 10 | 29 | 2.9 | 0.322222 | 9 | 1.111111 | 9 | 1 | 3.888889 | 3 | 1 | 1 | 4 | 0.4 | 3 | 0.103448 | 0 | null | null | null | 2 | 2 | 1 | 1 |
391 | class A:
def __init__(self, txt: str):
self.p: B = None
self.o: B = None
self.t: F = None
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: C = None
self.o: D = None
self.t: E = None
self.q: E = None
self.y: D = None
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.o: D = None
self.t: B = None
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.o: A = None
self.t: A = None
self.q: F = None
self.y: D = None
self.s: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: E = None
self.o: C = None
self.txt = txt
i = A("i")
c = B("c")
n = C("n")
k = D("k")
a = E("a")
h = F("h")
g = B("g")
l = A("l")
b = C("b")
d = D("d")
i.p = c
i.o = g
i.t = h
i.q = h
c.p = b
c.o = b
n.p = b
n.o = d
n.y = d
n.t = a
n.q = a
n.s = l
k.p = b
k.o = d
k.t = c
k.q = i
a.p = h
a.q = h
a.s = h
a.o = i
a.t = l
a.y = d
h.p = a
h.o = b
g.p = b
g.o = b
l.p = g
l.o = c
l.t = h
l.q = h
b.p = n
b.o = d
b.y = d
b.t = a
b.q = a
b.s = i
d.p = b
d.o = k
d.t = g
d.q = l
assert k.q.t.p.o.p.o.q.txt == " | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.o: B = None
self.t: F = None
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: C = None
self.o: D = None
self.t: E = None
self.q: E = None
self.y: D = None
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.o: D = None
self.t: B = None
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.o: A = None
self.t: A = None
self.q: F = None
self.y: D = None
self.s: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: E = None
self.o: C = None
self.txt = txt
i = A("i")
c = B("c")
n = C("n")
k = D("k")
a = E("a")
h = F("h")
g = B("g")
l = A("l")
b = C("b")
d = D("d")
i.p = c
i.o = g
i.t = h
i.q = h
c.p = b
c.o = b
n.p = b
n.o = d
n.y = d
n.t = a
n.q = a
n.s = l
k.p = b
k.o = d
k.t = c
k.q = i
a.p = h
a.q = h
a.s = h
a.o = i
a.t = l
a.y = d
h.p = a
h.o = b
g.p = b
g.o = b
l.p = g
l.o = c
l.t = h
l.q = h
b.p = n
b.o = d
b.y = d
b.t = a
b.q = a
b.s = i
d.p = b
d.o = k
d.t = g
d.q = l
assert k.q.t.p.o.p.o.q.txt == "a" | 10 | 30 | 3 | 0.333333 | 6 | 1.666667 | 6 | 2 | 4 | 7 | 2 | 1 | 6 | 0.6 | 7 | 0.233333 | 2 | 3 | 4 | 3.5 | 4 | 2 | 1 | 2 |
392 | class A:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: I = None
self.z: J = None
self.u: J = None
self.t: A = None
self.o: J = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.z: F = None
self.u: E = None
self.t: E = None
self.o: I = None
self.q: J = None
self.p: A = None
self.s: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: E = None
self.z: F = None
self.u: G = None
self.t: B = None
self.o: C = None
self.q: B = None
self.p: E = None
self.s: J = None
self.y: G = None
self.r: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: F = None
self.z: J = None
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: B = None
self.z: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: F = None
self.z: B = None
self.u: F = None
self.t: B = None
self.o: D = None
self.q: I = None
self.p: C = None
self.s: I = None
self.y: B = None
self.r: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: B = None
self.z: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
k = A("k")
h = B("h")
m = C("m")
b = D("b")
i = E("i")
f = F("f")
j = G("j")
e = H("e")
n = I("n")
g = J("g")
k.w = i
h.w = n
h.z = g
h.u = g
h.o = g
h.t = k
h.q = m
m.w = h
m.z = f
m.u = i
m.t = i
m.o = n
m.q = g
m.s = g
m.p = k
b.w = i
b.p = i
b.z = f
b.u = j
b.y = j
b.t = h
b.q = h
b.o = m
b.s = g
b.r = e
i.w = f
i.z = g
i.u = k
f.w = h
j.w = h
j.z = g
e.w = f
e.u = f
e.z = h
e.t = h
e.y = h
e.o = b
e.q = n
e.s = n
e.p = m
e.r = g
n.w = h
n.z = f
g.w = k
assert f.w.q.o.z.w.z.w.txt == " | k" | class A:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: I = None
self.z: J = None
self.u: J = None
self.t: A = None
self.o: J = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.z: F = None
self.u: E = None
self.t: E = None
self.o: I = None
self.q: J = None
self.p: A = None
self.s: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: E = None
self.z: F = None
self.u: G = None
self.t: B = None
self.o: C = None
self.q: B = None
self.p: E = None
self.s: J = None
self.y: G = None
self.r: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: F = None
self.z: J = None
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: B = None
self.z: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: F = None
self.z: B = None
self.u: F = None
self.t: B = None
self.o: D = None
self.q: I = None
self.p: C = None
self.s: I = None
self.y: B = None
self.r: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: B = None
self.z: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
k = A("k")
h = B("h")
m = C("m")
b = D("b")
i = E("i")
f = F("f")
j = G("j")
e = H("e")
n = I("n")
g = J("g")
k.w = i
h.w = n
h.z = g
h.u = g
h.o = g
h.t = k
h.q = m
m.w = h
m.z = f
m.u = i
m.t = i
m.o = n
m.q = g
m.s = g
m.p = k
b.w = i
b.p = i
b.z = f
b.u = j
b.y = j
b.t = h
b.q = h
b.o = m
b.s = g
b.r = e
i.w = f
i.z = g
i.u = k
f.w = h
j.w = h
j.z = g
e.w = f
e.u = f
e.z = h
e.t = h
e.y = h
e.o = b
e.q = n
e.s = n
e.p = m
e.r = g
n.w = h
n.z = f
g.w = k
assert f.w.q.o.z.w.z.w.txt == "k" | 10 | 33 | 3.3 | 0.366667 | 10 | 1 | 10 | 1 | 4.4 | 7 | 2 | 2 | 6 | 0.6 | 6 | 0.181818 | 2 | 4 | 4 | 4 | 4 | 3 | 1 | 2 |
393 | class A:
def __init__(self, txt: str):
self.x: E = None
self.p: C = None
self.r: D = None
self.t: G = None
self.q: G = None
self.z: I = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: G = None
self.p: F = None
self.r: D = None
self.t: A = None
self.q: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: G = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: C = None
self.p: G = None
self.r: I = None
self.t: C = None
self.q: C = None
self.z: I = None
self.o: H = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: G = None
self.p: D = None
self.r: F = None
self.t: F = None
self.q: D = None
self.z: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: D = None
self.p: E = None
self.r: H = None
self.t: C = None
self.q: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: A = None
self.p: F = None
self.r: D = None
self.t: G = None
self.q: D = None
self.z: G = None
self.txt = txt
n = A("n")
e = B("e")
m = C("m")
l = D("l")
d = E("d")
f = F("f")
b = G("b")
h = H("h")
a = I("a")
k = A("k")
n.x = d
n.p = m
n.r = l
n.t = b
n.q = b
n.z = a
n.o = k
e.x = b
e.p = f
e.r = l
e.t = k
e.q = h
m.x = b
m.p = e
l.x = m
l.t = m
l.q = m
l.s = m
l.p = b
l.r = a
l.z = a
l.o = h
d.x = b
d.p = l
d.q = l
d.r = f
d.t = f
d.z = h
f.x = l
f.p = d
f.r = h
f.t = m
f.q = e
b.x = d
h.x = b
a.x = k
a.p = f
a.r = l
a.q = l
a.t = b
a.z = b
k.x = d
k.p = m
k.r = l
k.t = b
k.q = b
k.z = a
k.o = n
assert m.p.r.p.txt == " | b" | class A:
def __init__(self, txt: str):
self.x: E = None
self.p: C = None
self.r: D = None
self.t: G = None
self.q: G = None
self.z: I = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: G = None
self.p: F = None
self.r: D = None
self.t: A = None
self.q: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: G = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: C = None
self.p: G = None
self.r: I = None
self.t: C = None
self.q: C = None
self.z: I = None
self.o: H = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: G = None
self.p: D = None
self.r: F = None
self.t: F = None
self.q: D = None
self.z: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: D = None
self.p: E = None
self.r: H = None
self.t: C = None
self.q: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: A = None
self.p: F = None
self.r: D = None
self.t: G = None
self.q: D = None
self.z: G = None
self.txt = txt
n = A("n")
e = B("e")
m = C("m")
l = D("l")
d = E("d")
f = F("f")
b = G("b")
h = H("h")
a = I("a")
k = A("k")
n.x = d
n.p = m
n.r = l
n.t = b
n.q = b
n.z = a
n.o = k
e.x = b
e.p = f
e.r = l
e.t = k
e.q = h
m.x = b
m.p = e
l.x = m
l.t = m
l.q = m
l.s = m
l.p = b
l.r = a
l.z = a
l.o = h
d.x = b
d.p = l
d.q = l
d.r = f
d.t = f
d.z = h
f.x = l
f.p = d
f.r = h
f.t = m
f.q = e
b.x = d
h.x = b
a.x = k
a.p = f
a.r = l
a.q = l
a.t = b
a.z = b
k.x = d
k.p = m
k.r = l
k.t = b
k.q = b
k.z = a
k.o = n
assert m.p.r.p.txt == "b" | 10 | 38 | 3.8 | 0.422222 | 9 | 1.111111 | 8 | 1 | 4.555556 | 3 | 1 | 1 | 4 | 0.4 | 3 | 0.078947 | 0 | null | null | null | 2 | 2 | 1 | 1 |
394 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.w: B = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: A = None
self.w: C = None
self.txt = txt
g = A("g")
a = B("a")
h = C("h")
k = D("k")
f = E("f")
l = B("l")
c = B("c")
d = E("d")
b = B("b")
i = A("i")
g.t = a
a.t = i
a.w = h
h.t = a
h.w = c
h.s = l
k.t = d
f.t = g
f.w = h
l.t = i
l.w = h
c.t = i
c.w = h
d.t = i
d.w = h
b.t = i
b.w = h
i.t = b
assert d.w.w.w.txt == " | h" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.w: B = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: A = None
self.w: C = None
self.txt = txt
g = A("g")
a = B("a")
h = C("h")
k = D("k")
f = E("f")
l = B("l")
c = B("c")
d = E("d")
b = B("b")
i = A("i")
g.t = a
a.t = i
a.w = h
h.t = a
h.w = c
h.s = l
k.t = d
f.t = g
f.w = h
l.t = i
l.w = h
c.t = i
c.w = h
d.t = i
d.w = h
b.t = i
b.w = h
i.t = b
assert d.w.w.w.txt == "h" | 10 | 18 | 1.8 | 0.2 | 5 | 2 | 3 | 1 | 1.8 | 3 | 2 | 1 | 3 | 0.3 | 3 | 0.166667 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
395 | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.s: B = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.s: B = None
self.q: A = None
self.txt = txt
e = A("e")
l = B("l")
d = C("d")
i = B("i")
h = A("h")
f = B("f")
b = A("b")
c = B("c")
j = C("j")
m = C("m")
e.z = i
e.s = f
e.q = m
l.z = b
l.q = b
l.s = i
d.z = e
d.q = e
d.s = l
i.z = b
i.s = l
i.q = h
h.z = c
h.s = c
h.q = d
f.z = h
f.s = l
f.q = b
b.z = l
b.s = c
b.q = j
c.z = e
c.s = f
c.q = h
j.z = b
j.q = b
j.s = i
m.z = b
m.q = b
m.s = i
assert i.s.z.z.s.s.txt == " | l" | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.s: B = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.s: B = None
self.q: A = None
self.txt = txt
e = A("e")
l = B("l")
d = C("d")
i = B("i")
h = A("h")
f = B("f")
b = A("b")
c = B("c")
j = C("j")
m = C("m")
e.z = i
e.s = f
e.q = m
l.z = b
l.q = b
l.s = i
d.z = e
d.q = e
d.s = l
i.z = b
i.s = l
i.q = h
h.z = c
h.s = c
h.q = d
f.z = h
f.s = l
f.q = b
b.z = l
b.s = c
b.q = j
c.z = e
c.s = f
c.q = h
j.z = b
j.q = b
j.s = i
m.z = b
m.q = b
m.s = i
assert i.s.z.z.s.s.txt == "l" | 10 | 25 | 2.5 | 0.277778 | 3 | 3.333333 | 3 | 3 | 3 | 5 | 3 | 2 | 3 | 0.3 | 4 | 0.16 | 3 | 2 | 4 | 3 | 2 | 3 | 2 | 2 |
396 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.s: A = None
self.txt = txt
d = A("d")
f = B("f")
b = B("b")
m = A("m")
n = B("n")
h = B("h")
l = B("l")
g = A("g")
a = A("a")
i = B("i")
d.u = b
f.u = l
f.s = m
b.u = f
b.s = m
m.u = h
n.u = b
n.s = m
h.u = n
h.s = d
l.u = h
l.s = a
g.u = b
a.u = l
i.u = f
i.s = g
assert l.u.s.u.u.u.s.u.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.s: A = None
self.txt = txt
d = A("d")
f = B("f")
b = B("b")
m = A("m")
n = B("n")
h = B("h")
l = B("l")
g = A("g")
a = A("a")
i = B("i")
d.u = b
f.u = l
f.s = m
b.u = f
b.s = m
m.u = h
n.u = b
n.s = m
h.u = n
h.s = d
l.u = h
l.s = a
g.u = b
a.u = l
i.u = f
i.s = g
assert l.u.s.u.u.u.s.u.s.txt == "a" | 10 | 16 | 1.6 | 0.177778 | 2 | 5 | 2 | 1 | 1.5 | 8 | 3 | 2 | 6 | 0.6 | 7 | 0.4375 | 3 | 2 | 7 | 4 | 2 | 5 | 3 | 2 |
397 | class A:
def __init__(self, txt: str):
self.y: A = None
self.v: A = None
self.t: E = None
self.z: D = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: D = None
self.v: E = None
self.t: C = None
self.z: E = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.v: E = None
self.t: D = None
self.z: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
b = A("b")
h = B("h")
e = C("e")
n = D("n")
m = E("m")
a = A("a")
g = D("g")
j = A("j")
d = D("d")
k = B("k")
b.y = j
b.v = a
b.t = m
b.z = d
b.s = e
h.y = d
h.v = m
h.z = m
h.s = m
h.t = e
e.y = b
e.v = h
n.y = b
n.v = m
n.t = d
n.z = a
m.y = k
a.y = b
a.v = j
a.t = m
a.z = d
a.s = e
g.y = b
g.v = m
g.t = n
g.z = a
j.y = a
j.v = b
j.t = m
j.z = g
j.s = e
d.y = a
d.z = a
d.v = m
d.t = n
k.y = g
k.v = m
k.z = m
k.s = m
k.t = e
assert m.y.y.y.y.y.s.y.z.z.txt == " | a" | class A:
def __init__(self, txt: str):
self.y: A = None
self.v: A = None
self.t: E = None
self.z: D = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: D = None
self.v: E = None
self.t: C = None
self.z: E = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.v: E = None
self.t: D = None
self.z: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
b = A("b")
h = B("h")
e = C("e")
n = D("n")
m = E("m")
a = A("a")
g = D("g")
j = A("j")
d = D("d")
k = B("k")
b.y = j
b.v = a
b.t = m
b.z = d
b.s = e
h.y = d
h.v = m
h.z = m
h.s = m
h.t = e
e.y = b
e.v = h
n.y = b
n.v = m
n.t = d
n.z = a
m.y = k
a.y = b
a.v = j
a.t = m
a.z = d
a.s = e
g.y = b
g.v = m
g.t = n
g.z = a
j.y = a
j.v = b
j.t = m
j.z = g
j.s = e
d.y = a
d.z = a
d.v = m
d.t = n
k.y = g
k.v = m
k.z = m
k.s = m
k.t = e
assert m.y.y.y.y.y.s.y.z.z.txt == "a" | 10 | 35 | 3.5 | 0.388889 | 5 | 2 | 5 | 1 | 3.4 | 9 | 2 | 1 | 8 | 0.8 | 9 | 0.257143 | 2 | 4 | 4 | 4 | 3 | 6 | 5 | 2 |
398 | class A:
def __init__(self, txt: str):
self.w: B = None
self.v: C = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
j = B("j")
a = C("a")
n = C("n")
l = A("l")
k = B("k")
e = A("e")
m = A("m")
d = A("d")
h = B("h")
i.w = k
i.v = a
i.t = j
j.w = d
j.v = e
a.w = d
n.w = i
l.w = h
l.v = a
l.t = k
k.w = m
k.v = m
e.w = k
e.t = k
e.v = a
m.w = h
m.v = a
m.t = k
d.w = k
d.v = n
d.t = h
h.w = i
h.v = e
assert i.w.v.v.txt == " | a" | class A:
def __init__(self, txt: str):
self.w: B = None
self.v: C = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
j = B("j")
a = C("a")
n = C("n")
l = A("l")
k = B("k")
e = A("e")
m = A("m")
d = A("d")
h = B("h")
i.w = k
i.v = a
i.t = j
j.w = d
j.v = e
a.w = d
n.w = i
l.w = h
l.v = a
l.t = k
k.w = m
k.v = m
e.w = k
e.t = k
e.v = a
m.w = h
m.v = a
m.t = k
d.w = k
d.v = n
d.t = h
h.w = i
h.v = e
assert i.w.v.v.txt == "a" | 10 | 21 | 2.1 | 0.233333 | 3 | 3.333333 | 3 | 1 | 2 | 3 | 1 | 1 | 4 | 0.4 | 3 | 0.142857 | 0 | null | null | null | 2 | 2 | 2 | 1 |
399 | class A:
def __init__(self, txt: str):
self.x: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
b = A("b")
h = B("h")
e = C("e")
m = A("m")
a = C("a")
f = C("f")
j = C("j")
n = B("n")
k = B("k")
c = C("c")
b.x = n
b.v = m
h.x = a
e.x = n
m.x = h
m.v = b
a.x = n
f.x = k
j.x = h
n.x = a
k.x = f
c.x = k
assert e.x.x.x.x.txt == " | a" | class A:
def __init__(self, txt: str):
self.x: B = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
b = A("b")
h = B("h")
e = C("e")
m = A("m")
a = C("a")
f = C("f")
j = C("j")
n = B("n")
k = B("k")
c = C("c")
b.x = n
b.v = m
h.x = a
e.x = n
m.x = h
m.v = b
a.x = n
f.x = k
j.x = h
n.x = a
k.x = f
c.x = k
assert e.x.x.x.x.txt == "a" | 10 | 12 | 1.2 | 0.133333 | 3 | 3.333333 | 2 | 1 | 1.333333 | 4 | 2 | 2 | 3 | 0.3 | 3 | 0.25 | 2 | 2 | 2 | 2 | 1 | 4 | 4 | 1 |