Skip to content

Instantly share code, notes, and snippets.

@saml
Forked from lessandro/coins.py
Created August 15, 2012 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saml/3363495 to your computer and use it in GitHub Desktop.
Save saml/3363495 to your computer and use it in GitHub Desktop.
import sys
sys.setrecursionlimit(999999999)
class Solver(object):
def __init__(self, coins):
self.coins = coins
self.path = {}
self.memo = {}
def cost(self, cents):
if cents == 0:
return 0
if cents < 0:
return float('inf')
if cents in self.memo:
return self.memo[cents]
best_coin = None
best_total = float('inf')
for coin in self.coins:
total = 1 + self.cost(cents - coin)
if total < best_total:
best_coin = coin
best_total = total
self.path[cents] = best_coin
self.memo[cents] = best_total
return best_total
def solve(self, cents):
if self.cost(cents) == float('inf'):
return []
ls = []
while cents != 0:
ls.append(self.path[cents])
cents -= self.path[cents]
return reversed(sorted(ls))
if __name__ == '__main__':
with open(sys.argv[1], 'r') as input_file:
input_file.readline()
solver = Solver([int(x,10) for x in input_file.readline().split()])
input_file.readline()
for x in input_file:
try:
x = x.strip()
print(x + ' => ' + ' '.join(str(answer) for answer in solver.solve(int(x,10))))
except:
pass
@saml
Copy link
Author

saml commented Aug 15, 2012

Traceback (most recent call last):
File "coins.py", line 51, in
print(solver.solve(int(x,10)))
File "coins.py", line 34, in solve
if self.cost(cents) == float('inf'):
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + self.cost(cents - coin)
File "coins.py", line 23, in cost
total = 1 + sel

@saml
Copy link
Author

saml commented Aug 15, 2012

8165 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5
3919 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1 1 1
7524 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1 1 1 1
6633 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1 1
6883 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1 1
1646 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1
9431 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1
76 => 25 25 25 1
9523 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1 1 1
6778 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 1 1 1
3847 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1 1
4389 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 1 1 1 1
7090 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5
7324 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1 1 1 1
4609 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1 1 1
1134 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1 1 1
277 => 25 25 25 25 25 25 25 25 25 25 25 1 1
5042 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1
6168 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1 1
8995 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10
1832 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1
7884 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1 1 1
3415 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5
5261 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 1
215 => 25 25 25 25 25 25 25 25 10 5
1350 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25
1279 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 1 1 1 1
8777 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 1 1
6411 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 1
3761 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 1
4838 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 1 1 1
7948 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1 1 1
6833 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1 1
6418 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1 1
4920 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10
2667 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1
4088 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 1 1 1
5383 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1 1
1680 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5
6631 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1
6127 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 1 1
4573 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1 1 1
8472 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1 1
7984 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1 1 1
4398 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1 1 1
6468 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1 1
3040 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5
7287 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 1 1
3592 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1
636 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 1
349 => 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1 1 1 1
8479 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 1 1 1 1
4403 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 1 1 1
5145 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10
2531 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1
8845 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10
868 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1 1
3876 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 1
4905 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5
3491 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1
6859 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1 1 1
2207 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1
2835 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10
8644 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1 1 1
1778 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 1 1 1
6819 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1 1 1
0 =>
1766 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1
9579 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 1 1 1 1
8546 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1
6700 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25
5578 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 1 1 1
2190 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5
7565 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5
7159 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1 1 1
2021 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1
2782 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1
7246 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1
4374 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1 1 1 1
3731 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1
2986 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 1
4444 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1 1 1
7267 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1
4221 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1
7073 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10 1 1 1
7107 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1
1239 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 1 1 1 1
985 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10
129 => 25 25 25 25 25 1 1 1 1
7689 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 1 1 1 1
2283 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1 1
4435 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10
9475 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25
4695 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10
3992 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1
4078 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 1 1 1
2108 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5 1 1 1
3880 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5
9000 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25
5013 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 1 1 1
9275 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25
8090 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5
352 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 1 1
1662 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 1 1
4445 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10
295 => 25 25 25 25 25 25 25 25 25 25 25 10 10
3055 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 5
6842 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 5 1 1
9095 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 10 10
4487 => 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment