content
stringlengths
1
1.04M
input_ids
sequencelengths
1
774k
ratio_char_token
float64
0.38
22.9
token_count
int64
1
774k
from idact.detail.jupyter_app.app_allocation_parameters import \ AppAllocationParameters def format_allocation_parameters(parameters: AppAllocationParameters): """Formats allocation parameters for the user. :param parameters: Parameters to print. """ result = "Allocation parameters:\n" result += " Nodes: {}\n".format(parameters.nodes) result += " Cores: {}\n".format(parameters.cores) result += " Memory per node: {}\n".format(parameters.memory_per_node) result += " Walltime: {}\n".format(parameters.walltime) if parameters.native_args[0] and parameters.native_args[1]: result += " Native arguments:\n" for key, value in zip(parameters.native_args[0], parameters.native_args[1]): if value == 'None': result += " {}\n".format(key) else: result += " {} -> {}\n".format(key, value) else: result += " No native arguments.\n" return result
[ 6738, 4686, 529, 13, 49170, 13, 73, 929, 88, 353, 62, 1324, 13, 1324, 62, 439, 5040, 62, 17143, 7307, 1330, 3467, 198, 220, 220, 220, 2034, 3237, 5040, 48944, 628, 198, 4299, 5794, 62, 439, 5040, 62, 17143, 7307, 7, 17143, 7307, 25, 2034, 3237, 5040, 48944, 2599, 198, 220, 220, 220, 37227, 8479, 1381, 20157, 10007, 329, 262, 2836, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 10007, 25, 40117, 284, 3601, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 1255, 796, 366, 3237, 5040, 10007, 7479, 77, 1, 198, 220, 220, 220, 1255, 15853, 366, 220, 220, 220, 399, 4147, 25, 23884, 59, 77, 1911, 18982, 7, 17143, 7307, 13, 77, 4147, 8, 198, 220, 220, 220, 1255, 15853, 366, 220, 220, 220, 327, 2850, 25, 23884, 59, 77, 1911, 18982, 7, 17143, 7307, 13, 66, 2850, 8, 198, 220, 220, 220, 1255, 15853, 366, 220, 220, 220, 14059, 583, 10139, 25, 23884, 59, 77, 1911, 18982, 7, 17143, 7307, 13, 31673, 62, 525, 62, 17440, 8, 198, 220, 220, 220, 1255, 15853, 366, 220, 220, 220, 5007, 2435, 25, 23884, 59, 77, 1911, 18982, 7, 17143, 7307, 13, 11930, 2435, 8, 198, 220, 220, 220, 611, 10007, 13, 30191, 62, 22046, 58, 15, 60, 290, 10007, 13, 30191, 62, 22046, 58, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 15853, 366, 220, 220, 220, 12547, 7159, 7479, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1994, 11, 1988, 287, 19974, 7, 17143, 7307, 13, 30191, 62, 22046, 58, 15, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10007, 13, 30191, 62, 22046, 58, 16, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1988, 6624, 705, 14202, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 15853, 366, 220, 220, 220, 220, 220, 23884, 59, 77, 1911, 18982, 7, 2539, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 15853, 366, 220, 220, 220, 220, 220, 23884, 4613, 23884, 59, 77, 1911, 18982, 7, 2539, 11, 1988, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 15853, 366, 220, 220, 220, 1400, 6868, 7159, 13, 59, 77, 1, 628, 220, 220, 220, 1441, 1255, 198 ]
2.358447
438
#!/usr/bin/env python3 import os, sys service = "[Unit]\n"\ "Description={description}\n"\ "After=network.target\n"\ "StartLimitIntervalSec=0\n"\ "\n"\ "[Service]\n"\ "Type=simple\n"\ "Restart=always\n"\ "RestartSec=1\n"\ "User=root\n"\ "ExecStart={exec}\n"\ "\n"\ "[Install]\n"\ "WantedBy=multi-user.target" name = False desc = False path = False command = False for arg in sys.argv: if "--name=" in arg: name = arg.split('=')[1] + ".service" if "--path=" in arg: path = arg.split('=')[1] if "--command=" in arg: command = arg.split('=')[1] if "--desc=" in arg: desc = arg.split('=')[1] if arg == "-h" or arg == "--help": print("Usage: python3 createservice.py [--name=NAME] [--path=PATH] [--command=COMMAND] [--desc=DESC]") exit(0) if not name: name = input("Service name: ") + ".service" if not path: path = input("Executable binary path: ") if not command: command = input("Command and args: ") if not desc: desc = input("Description: ") service = service.replace("{description}", desc).replace("{exec}", path + " " + command) f = open("/lib/systemd/system/" + name, "w") f.write(service) f.close() print(service) print() print("Wrote to /lib/systemd/system/" + name) os.system("systemctl enable " + name) os.system("systemctl start " + name) print("Started and enabled service.")
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 11748, 28686, 11, 25064, 198, 198, 15271, 796, 12878, 26453, 60, 59, 77, 1, 59, 198, 1, 11828, 34758, 11213, 32239, 77, 1, 59, 198, 1, 3260, 28, 27349, 13, 16793, 59, 77, 1, 59, 198, 1, 10434, 39184, 9492, 2100, 6558, 28, 15, 59, 77, 1, 59, 198, 1, 59, 77, 1, 59, 198, 17912, 16177, 60, 59, 77, 1, 59, 198, 1, 6030, 28, 36439, 59, 77, 1, 59, 198, 1, 19452, 433, 28, 33770, 59, 77, 1, 59, 198, 1, 19452, 433, 6558, 28, 16, 59, 77, 1, 59, 198, 1, 12982, 28, 15763, 59, 77, 1, 59, 198, 1, 23002, 10434, 34758, 18558, 32239, 77, 1, 59, 198, 1, 59, 77, 1, 59, 198, 17912, 15798, 60, 59, 77, 1, 59, 198, 1, 54, 4126, 3886, 28, 41684, 12, 7220, 13, 16793, 1, 198, 198, 3672, 796, 10352, 198, 20147, 796, 10352, 198, 6978, 796, 10352, 198, 21812, 796, 10352, 198, 198, 1640, 1822, 287, 25064, 13, 853, 85, 25, 198, 220, 220, 220, 611, 366, 438, 3672, 2625, 287, 1822, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 796, 1822, 13, 35312, 10786, 28, 11537, 58, 16, 60, 1343, 27071, 15271, 1, 198, 220, 220, 220, 611, 366, 438, 6978, 2625, 287, 1822, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 1822, 13, 35312, 10786, 28, 11537, 58, 16, 60, 198, 220, 220, 220, 611, 366, 438, 21812, 2625, 287, 1822, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3141, 796, 1822, 13, 35312, 10786, 28, 11537, 58, 16, 60, 198, 220, 220, 220, 611, 366, 438, 20147, 2625, 287, 1822, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1715, 796, 1822, 13, 35312, 10786, 28, 11537, 58, 16, 60, 198, 220, 220, 220, 611, 1822, 6624, 27444, 71, 1, 393, 1822, 6624, 366, 438, 16794, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 28350, 25, 21015, 18, 8075, 712, 501, 13, 9078, 685, 438, 3672, 28, 20608, 60, 685, 438, 6978, 28, 34219, 60, 685, 438, 21812, 28, 9858, 44, 6981, 60, 685, 438, 20147, 28, 30910, 34, 60, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 8420, 7, 15, 8, 198, 361, 407, 1438, 25, 198, 220, 220, 220, 1438, 796, 5128, 7203, 16177, 1438, 25, 366, 8, 1343, 27071, 15271, 1, 198, 361, 407, 3108, 25, 198, 220, 220, 220, 3108, 796, 5128, 7203, 23002, 18187, 13934, 3108, 25, 366, 8, 198, 361, 407, 3141, 25, 198, 220, 220, 220, 3141, 796, 5128, 7203, 21575, 290, 26498, 25, 366, 8, 198, 361, 407, 1715, 25, 198, 220, 220, 220, 1715, 796, 5128, 7203, 11828, 25, 366, 8, 198, 198, 15271, 796, 2139, 13, 33491, 7203, 90, 11213, 92, 1600, 1715, 737, 33491, 7203, 90, 18558, 92, 1600, 3108, 1343, 366, 366, 1343, 3141, 8, 198, 69, 796, 1280, 7203, 14, 8019, 14, 10057, 67, 14, 10057, 30487, 1343, 1438, 11, 366, 86, 4943, 198, 69, 13, 13564, 7, 15271, 8, 198, 69, 13, 19836, 3419, 198, 4798, 7, 15271, 8, 198, 4798, 3419, 198, 4798, 7203, 54, 2519, 284, 1220, 8019, 14, 10057, 67, 14, 10057, 30487, 1343, 1438, 8, 198, 418, 13, 10057, 7203, 10057, 34168, 7139, 366, 1343, 1438, 8, 198, 418, 13, 10057, 7203, 10057, 34168, 923, 366, 1343, 1438, 8, 198, 4798, 7203, 10434, 276, 290, 9343, 2139, 19570 ]
2.398601
572
from django.db import models
[ 6738, 42625, 14208, 13, 9945, 1330, 4981, 628 ]
3.75
8
#!/usr/bin/python import string import random import array from copy import copy, deepcopy import time import numpy as np import flatbuffers import eas.FloatContentType as FloatContentType import eas.ContentType as ContentType import eas.ShapeType as ShapeType import eas.Int64ContentType as Int64ContentType import eas.PredictRequest as PredictRequest import eas.DoubleContentType as DoubleContentType import eas.IntContentType as IntContentType from pb.tf_request import TFRequest from pb import tf_request_pb2 as tf_pb if __name__ == '__main__': main()
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 198, 11748, 4731, 198, 11748, 4738, 198, 11748, 7177, 198, 6738, 4866, 1330, 4866, 11, 2769, 30073, 198, 11748, 640, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 6228, 36873, 364, 198, 11748, 1396, 13, 43879, 19746, 6030, 355, 48436, 19746, 6030, 198, 11748, 1396, 13, 19746, 6030, 355, 14041, 6030, 198, 11748, 1396, 13, 33383, 6030, 355, 25959, 6030, 198, 11748, 1396, 13, 5317, 2414, 19746, 6030, 355, 2558, 2414, 19746, 6030, 198, 11748, 1396, 13, 47, 17407, 18453, 355, 49461, 18453, 198, 11748, 1396, 13, 25628, 19746, 6030, 355, 11198, 19746, 6030, 198, 11748, 1396, 13, 5317, 19746, 6030, 355, 2558, 19746, 6030, 198, 6738, 279, 65, 13, 27110, 62, 25927, 1330, 24958, 18453, 198, 6738, 279, 65, 1330, 48700, 62, 25927, 62, 40842, 17, 355, 48700, 62, 40842, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 1388, 3419, 628 ]
3.602564
156
import requests from .chunked_utils import chunked_bytes_from_object, chunked_object_from_bytes
[ 11748, 7007, 198, 6738, 764, 354, 2954, 276, 62, 26791, 1330, 16058, 276, 62, 33661, 62, 6738, 62, 15252, 11, 16058, 276, 62, 15252, 62, 6738, 62, 33661, 628 ]
3.344828
29
import torch import torch.nn as nn from utils import tools
[ 11748, 28034, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 6738, 220, 220, 3384, 4487, 1330, 4899, 628 ]
3.263158
19
from typing import Optional from uuid import UUID from pydantic import BaseModel from laa_court_data_api_app.models.hearing_events.hearing_event.result.hearing_event import HearingEvent
[ 6738, 19720, 1330, 32233, 198, 6738, 334, 27112, 1330, 471, 27586, 198, 198, 6738, 279, 5173, 5109, 1330, 7308, 17633, 198, 198, 6738, 300, 7252, 62, 22230, 62, 7890, 62, 15042, 62, 1324, 13, 27530, 13, 258, 1723, 62, 31534, 13, 258, 1723, 62, 15596, 13, 20274, 13, 258, 1723, 62, 15596, 1330, 34663, 9237, 628 ]
3.375
56
from hestia.signal_decorators import ignore_raw, ignore_updates, ignore_updates_pre from django.db.models.signals import post_save, pre_save from django.dispatch import receiver from constants.backends import NATIVE_BACKEND from db.models.experiment_groups import ExperimentGroup, GroupTypes from libs.repos.utils import assign_code_reference from lifecycles.experiment_groups import ExperimentGroupLifeCycle from schemas import SearchAlgorithms from signals.backend import set_backend from signals.names import set_name from signals.persistence import set_persistence from signals.tags import set_tags @receiver(pre_save, sender=ExperimentGroup, dispatch_uid="experiment_group_pre_save") @ignore_updates_pre @ignore_raw @receiver(post_save, sender=ExperimentGroup, dispatch_uid="experiment_group_saved") @ignore_updates @ignore_raw
[ 6738, 339, 301, 544, 13, 12683, 282, 62, 12501, 273, 2024, 1330, 8856, 62, 1831, 11, 8856, 62, 929, 19581, 11, 8856, 62, 929, 19581, 62, 3866, 198, 198, 6738, 42625, 14208, 13, 9945, 13, 27530, 13, 12683, 874, 1330, 1281, 62, 21928, 11, 662, 62, 21928, 198, 6738, 42625, 14208, 13, 6381, 17147, 1330, 9733, 198, 198, 6738, 38491, 13, 1891, 2412, 1330, 10149, 9306, 62, 31098, 10619, 198, 6738, 20613, 13, 27530, 13, 23100, 3681, 62, 24432, 1330, 29544, 13247, 11, 4912, 31431, 198, 6738, 9195, 82, 13, 260, 1930, 13, 26791, 1330, 8333, 62, 8189, 62, 35790, 198, 6738, 3868, 721, 88, 5427, 13, 23100, 3681, 62, 24432, 1330, 29544, 13247, 14662, 20418, 2375, 198, 6738, 3897, 5356, 1330, 11140, 2348, 7727, 907, 198, 6738, 10425, 13, 1891, 437, 1330, 900, 62, 1891, 437, 198, 6738, 10425, 13, 14933, 1330, 900, 62, 3672, 198, 6738, 10425, 13, 19276, 13274, 1330, 900, 62, 19276, 13274, 198, 6738, 10425, 13, 31499, 1330, 900, 62, 31499, 628, 198, 31, 260, 39729, 7, 3866, 62, 21928, 11, 29788, 28, 20468, 3681, 13247, 11, 27965, 62, 27112, 2625, 23100, 3681, 62, 8094, 62, 3866, 62, 21928, 4943, 198, 31, 46430, 62, 929, 19581, 62, 3866, 198, 31, 46430, 62, 1831, 628, 198, 31, 260, 39729, 7, 7353, 62, 21928, 11, 29788, 28, 20468, 3681, 13247, 11, 27965, 62, 27112, 2625, 23100, 3681, 62, 8094, 62, 82, 9586, 4943, 198, 31, 46430, 62, 929, 19581, 198, 31, 46430, 62, 1831, 198 ]
3.383065
248
#! /usr/bin/env python2.7 from numpy import random import time # change the seed random.seed(int(time.time())) class MCMC(object): ''' MCMC implements Markov-Chain-Monte-Carlo algorithms. ''' def __init__(self, Density, Proposal, Drawing_func, initial): ''' Initialize an MCMC algorithm. Parameters ---------- Density : density function whose normalization constant is not known Proposal: proposal function Drawing_func: a function that draws sample from Proposal initial: the initial sample of the MCMC algorithm ''' self.density = Density self.proposal = Proposal self.sample_proposal = Drawing_func self.initial = initial self.density_samples = [] self.prob_density_samples = [] self.num_proposals = 0 # stats are used to check how many # proposals are accepted and rejected. self.stats = { "accepted": 0, "rejected": 0, } def run(self, max_iter = 2000, burning=200, jupyter=False): '''run MCMC. Parameters ---------- max_iter: int maximum number of iterations on this call burning: int ignores the initial samples upto the given number in the Markov Chain. ''' if jupyter: from tqdm import tqdm_notebook as tqdm else: from tqdm import tqdm if len(self.density_samples)>0: x_old = self.density_samples[-1] burning = 0 else: x_old = self.initial for it in tqdm(range(max_iter)): # draw from proposal x_prop = self.sample_proposal(x_old) # compute alpha !!! assumption: symmetric proposal try: alpha = min(1.0, self.density(x_prop)/self.density(x_old) ) except: print ("error in MCMC.run:") print (self.density(x_prop), x_prop) print (self.density(x_old), x_old) alpha = 0.0 if ( alpha > random.uniform(0.0,1.0) ): x_old = x_prop if (it > burning): self.density_samples.append(x_prop) self.prob_density_samples.append(self.density(x_prop)) self.stats["accepted"] += 1 else: if (it > burning): self.stats["rejected"] += 1 self.num_proposals += 1 def write(self, filename, write_prob=False): ''' write the samples into the file. Parameters ----------- filename: str write_prob: bool determines whether to write the probabilities in the last column or not. ''' with open(filename, "w") as output: for idx, sample in enumerate(self.density_samples): for coef in sample[:-1]: output.write(str(coef)+",") output.write(str(sample[-1])) if write_prob==True: output.write(","+str(self.prob_density_samples[idx])+"\n") else: output.write("\n")
[ 2, 0, 1220, 14629, 14, 8800, 14, 24330, 21015, 17, 13, 22, 198, 198, 6738, 299, 32152, 1330, 4738, 198, 11748, 640, 198, 198, 2, 1487, 262, 9403, 198, 25120, 13, 28826, 7, 600, 7, 2435, 13, 2435, 3419, 4008, 198, 198, 4871, 13122, 9655, 7, 15252, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 13122, 9655, 23986, 2940, 709, 12, 35491, 12, 9069, 660, 12, 9914, 5439, 16113, 13, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 360, 6377, 11, 1041, 40007, 11, 40027, 62, 20786, 11, 4238, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 20768, 1096, 281, 13122, 9655, 11862, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 360, 6377, 1058, 12109, 2163, 3025, 3487, 1634, 6937, 318, 407, 1900, 628, 220, 220, 220, 220, 220, 220, 220, 1041, 40007, 25, 6961, 2163, 628, 220, 220, 220, 220, 220, 220, 220, 40027, 62, 20786, 25, 257, 2163, 326, 14293, 6291, 422, 1041, 40007, 628, 220, 220, 220, 220, 220, 220, 220, 4238, 25, 262, 4238, 6291, 286, 262, 13122, 9655, 11862, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 43337, 796, 360, 6377, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1676, 40007, 796, 1041, 40007, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 39873, 62, 1676, 40007, 796, 40027, 62, 20786, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 36733, 796, 4238, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 43337, 62, 82, 12629, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1676, 65, 62, 43337, 62, 82, 12629, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22510, 62, 1676, 1930, 874, 796, 657, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 9756, 389, 973, 284, 2198, 703, 867, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 11628, 389, 6292, 290, 8606, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34242, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 13635, 276, 1298, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 260, 35408, 1298, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 825, 1057, 7, 944, 11, 3509, 62, 2676, 796, 4751, 11, 9482, 28, 2167, 11, 474, 929, 88, 353, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 5143, 13122, 9655, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 628, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 2676, 25, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 5415, 1271, 286, 34820, 319, 428, 869, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 9482, 25, 493, 220, 628, 220, 220, 220, 220, 220, 220, 220, 24245, 262, 4238, 8405, 18529, 78, 262, 1813, 1271, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 2940, 709, 21853, 13, 628, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 220, 220, 220, 220, 611, 474, 929, 88, 353, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 256, 80, 36020, 1330, 256, 80, 36020, 62, 11295, 2070, 355, 256, 80, 36020, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 256, 80, 36020, 1330, 256, 80, 36020, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 944, 13, 43337, 62, 82, 12629, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 727, 796, 2116, 13, 43337, 62, 82, 12629, 58, 12, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9482, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 727, 796, 2116, 13, 36733, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 329, 340, 287, 256, 80, 36020, 7, 9521, 7, 9806, 62, 2676, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3197, 422, 6961, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 22930, 796, 2116, 13, 39873, 62, 1676, 40007, 7, 87, 62, 727, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 24061, 17130, 220, 10185, 13196, 25, 23606, 19482, 6961, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17130, 796, 949, 7, 16, 13, 15, 11, 2116, 13, 43337, 7, 87, 62, 22930, 20679, 944, 13, 43337, 7, 87, 62, 727, 8, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 5855, 18224, 287, 13122, 9655, 13, 5143, 25, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 357, 944, 13, 43337, 7, 87, 62, 22930, 828, 2124, 62, 22930, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 357, 944, 13, 43337, 7, 87, 62, 727, 828, 2124, 62, 727, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17130, 796, 657, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 17130, 1875, 4738, 13, 403, 6933, 7, 15, 13, 15, 11, 16, 13, 15, 8, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 727, 796, 2124, 62, 22930, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 270, 1875, 9482, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 43337, 62, 82, 12629, 13, 33295, 7, 87, 62, 22930, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1676, 65, 62, 43337, 62, 82, 12629, 13, 33295, 7, 944, 13, 43337, 7, 87, 62, 22930, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34242, 14692, 13635, 276, 8973, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 270, 1875, 9482, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34242, 14692, 260, 35408, 8973, 15853, 352, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22510, 62, 1676, 1930, 874, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 825, 3551, 7, 944, 11, 29472, 11, 3551, 62, 1676, 65, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 3551, 262, 8405, 656, 262, 2393, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 6329, 628, 220, 220, 220, 220, 220, 220, 220, 29472, 25, 965, 628, 220, 220, 220, 220, 220, 220, 220, 3551, 62, 1676, 65, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 15947, 1771, 284, 3551, 262, 39522, 287, 262, 938, 5721, 393, 407, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 34345, 11, 366, 86, 4943, 355, 5072, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 4686, 87, 11, 6291, 287, 27056, 378, 7, 944, 13, 43337, 62, 82, 12629, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 763, 891, 287, 6291, 58, 21912, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 13, 13564, 7, 2536, 7, 1073, 891, 47762, 2430, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 13, 13564, 7, 2536, 7, 39873, 58, 12, 16, 60, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3551, 62, 1676, 65, 855, 17821, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 13, 13564, 7, 2430, 10, 2536, 7, 944, 13, 1676, 65, 62, 43337, 62, 82, 12629, 58, 312, 87, 12962, 10, 1, 59, 77, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 13, 13564, 7203, 59, 77, 4943, 198, 220, 220, 220, 220, 198 ]
1.951163
1,720
# -*- coding: utf-8 -*- ''' WikiLinkPlus Extension for Python-Markdown =========================================== Converts [[WikiLinks]] to relative links. See <https://github.com/neurobin/mdx_wikilink_plus> for documentation. Copyright Md. Jahidul Hamid <[email protected]> License: [BSD](http://www.opensource.org/licenses/bsd-license.php) ''' from __future__ import absolute_import from __future__ import unicode_literals try: from urllib.parse import urlparse from urllib.parse import urlunparse except ImportError: from urlparse import urlparse from urlparse import urlunparse import markdown from markdown.util import etree import re import os from . import version __version__ = version.__version__ MARKDOWN_MAJOR = markdown.version_info[0] WIKILINK_PLUS_RE = r'\[\[\s*(?P<target>[^][|]+?)(\s*\|\s*(?P<label>[^][]+))?\s*\]\]' def build_url(urlo, base, end, url_whitespace, url_case): """ Build and return a valid url. Parameters ---------- urlo A ParseResult object returned by urlparse base base_url from config end end_url from config url_whitespace url_whitespace from config url_case url_case from config Returns ------- URL string """ if not urlo.netloc: if not end: clean_target = re.sub(r'\s+', url_whitespace, urlo.path) else: clean_target = re.sub(r'\s+', url_whitespace, urlo.path.rstrip('/')) if clean_target.endswith(end): end = '' if base.endswith('/'): path = "%s%s%s" % (base, clean_target.lstrip('/'), end) elif base and not clean_target.startswith('/'): path = "%s/%s%s" % (base, clean_target, end) else: path = "%s%s%s" % (base, clean_target, end) if url_case == 'lowercase': urlo = urlo._replace(path=path.lower() ) elif url_case == 'uppercase': urlo = urlo._replace(path=path.upper() ) else: urlo = urlo._replace(path=path) return urlunparse(urlo) def title(subject): """Return title cased version of the given subject string""" exceptions = ['a', 'an', 'the', 'v', 'vs', 'am', 'at', 'and', 'as', 'but','by', 'en', 'for', 'if', 'be', 'in', 'of', 'on', 'or', 'to', 'via',] slst = list(filter(None, re.split(r'[ \t]+', subject))) res = [] c = 0 for s in slst: if re.match(r'^[^a-z]+$', s) or (s in exceptions and c != 0): res.append(s) else: res.append(s.title()) c = c + 1 return ' '.join(res) class WikiLinkPlusExtension(markdown.Extension): """WikiLinkPlus Extension class for markdown""" if __name__ == "__main__": import doctest doctest.testmod()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 7061, 6, 198, 32603, 11280, 17860, 27995, 329, 11361, 12, 9704, 2902, 198, 10052, 2559, 18604, 198, 198, 3103, 24040, 16410, 32603, 31815, 11907, 284, 3585, 6117, 13, 198, 198, 6214, 1279, 5450, 1378, 12567, 13, 785, 14, 710, 1434, 8800, 14, 9132, 87, 62, 20763, 346, 676, 62, 9541, 29, 329, 10314, 13, 198, 198, 15269, 39762, 13, 48984, 312, 377, 4345, 312, 1279, 31558, 312, 377, 2763, 312, 31, 40774, 13, 785, 29, 198, 198, 34156, 25, 685, 21800, 16151, 4023, 1378, 2503, 13, 44813, 1668, 13, 2398, 14, 677, 4541, 14, 1443, 67, 12, 43085, 13, 10121, 8, 198, 198, 7061, 6, 198, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 6738, 11593, 37443, 834, 1330, 28000, 1098, 62, 17201, 874, 198, 28311, 25, 198, 220, 220, 220, 422, 2956, 297, 571, 13, 29572, 1330, 19016, 29572, 198, 220, 220, 220, 422, 2956, 297, 571, 13, 29572, 1330, 19016, 403, 29572, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 422, 19016, 29572, 1330, 19016, 29572, 198, 220, 220, 220, 422, 19016, 29572, 1330, 19016, 403, 29572, 198, 11748, 1317, 2902, 198, 6738, 1317, 2902, 13, 22602, 1330, 2123, 631, 198, 11748, 302, 198, 11748, 28686, 198, 6738, 764, 1330, 2196, 198, 198, 834, 9641, 834, 796, 2196, 13, 834, 9641, 834, 198, 198, 44, 14175, 41925, 62, 5673, 41, 1581, 796, 1317, 2902, 13, 9641, 62, 10951, 58, 15, 60, 198, 198, 54, 18694, 4146, 17248, 62, 6489, 2937, 62, 2200, 796, 374, 6, 59, 58, 59, 58, 59, 82, 9, 7, 30, 47, 27, 16793, 36937, 61, 7131, 91, 48688, 30, 5769, 59, 82, 9, 59, 91, 59, 82, 9, 7, 30, 47, 27, 18242, 36937, 61, 7131, 48688, 4008, 30, 59, 82, 9, 59, 60, 59, 49946, 198, 198, 4299, 1382, 62, 6371, 7, 333, 5439, 11, 2779, 11, 886, 11, 19016, 62, 1929, 2737, 10223, 11, 19016, 62, 7442, 2599, 198, 220, 220, 220, 37227, 10934, 290, 1441, 257, 4938, 19016, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2956, 5439, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 2547, 325, 23004, 2134, 4504, 416, 19016, 29572, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2779, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2779, 62, 6371, 422, 4566, 198, 220, 220, 220, 220, 198, 220, 220, 220, 886, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 62, 6371, 422, 4566, 198, 220, 220, 220, 220, 198, 220, 220, 220, 19016, 62, 1929, 2737, 10223, 220, 19016, 62, 1929, 2737, 10223, 422, 4566, 198, 220, 220, 220, 220, 198, 220, 220, 220, 19016, 62, 7442, 220, 220, 220, 220, 220, 220, 220, 19016, 62, 7442, 422, 4566, 198, 220, 220, 220, 220, 198, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 198, 220, 220, 220, 10289, 4731, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 2956, 5439, 13, 3262, 17946, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 886, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3424, 62, 16793, 796, 302, 13, 7266, 7, 81, 6, 59, 82, 10, 3256, 19016, 62, 1929, 2737, 10223, 11, 2956, 5439, 13, 6978, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3424, 62, 16793, 796, 302, 13, 7266, 7, 81, 6, 59, 82, 10, 3256, 19016, 62, 1929, 2737, 10223, 11, 2956, 5439, 13, 6978, 13, 81, 36311, 10786, 14, 6, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3424, 62, 16793, 13, 437, 2032, 342, 7, 437, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 796, 10148, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2779, 13, 437, 2032, 342, 10786, 14, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 36521, 82, 4, 82, 4, 82, 1, 4064, 357, 8692, 11, 3424, 62, 16793, 13, 75, 36311, 10786, 14, 33809, 886, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2779, 290, 407, 3424, 62, 16793, 13, 9688, 2032, 342, 10786, 14, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 36521, 82, 14, 4, 82, 4, 82, 1, 4064, 357, 8692, 11, 3424, 62, 16793, 11, 886, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 36521, 82, 4, 82, 4, 82, 1, 4064, 357, 8692, 11, 3424, 62, 16793, 11, 886, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 19016, 62, 7442, 6624, 705, 21037, 7442, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2956, 5439, 796, 2956, 5439, 13557, 33491, 7, 6978, 28, 6978, 13, 21037, 3419, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 19016, 62, 7442, 6624, 705, 7211, 2798, 589, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2956, 5439, 796, 2956, 5439, 13557, 33491, 7, 6978, 28, 6978, 13, 45828, 3419, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2956, 5439, 796, 2956, 5439, 13557, 33491, 7, 6978, 28, 6978, 8, 198, 220, 220, 220, 1441, 19016, 403, 29572, 7, 333, 5439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 198, 4299, 3670, 7, 32796, 2599, 198, 220, 220, 220, 37227, 13615, 3670, 269, 839, 2196, 286, 262, 1813, 2426, 4731, 37811, 198, 220, 220, 220, 13269, 796, 37250, 64, 3256, 705, 272, 3256, 705, 1169, 3256, 705, 85, 3256, 705, 14259, 3256, 705, 321, 3256, 705, 265, 3256, 705, 392, 3256, 705, 292, 3256, 705, 4360, 41707, 1525, 3256, 705, 268, 3256, 705, 1640, 3256, 705, 361, 3256, 705, 1350, 3256, 705, 259, 3256, 705, 1659, 3256, 705, 261, 3256, 705, 273, 3256, 705, 1462, 3256, 705, 8869, 3256, 60, 198, 220, 220, 220, 1017, 301, 796, 1351, 7, 24455, 7, 14202, 11, 302, 13, 35312, 7, 81, 6, 58, 3467, 83, 48688, 3256, 2426, 22305, 198, 220, 220, 220, 581, 796, 17635, 198, 220, 220, 220, 269, 796, 657, 198, 220, 220, 220, 329, 264, 287, 1017, 301, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 302, 13, 15699, 7, 81, 6, 61, 58, 61, 64, 12, 89, 48688, 3, 3256, 264, 8, 393, 357, 82, 287, 13269, 290, 269, 14512, 657, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 13, 33295, 7, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 13, 33295, 7, 82, 13, 7839, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 269, 796, 269, 1343, 352, 198, 220, 220, 220, 1441, 705, 45302, 22179, 7, 411, 8, 198, 198, 4871, 13078, 11280, 17860, 11627, 3004, 7, 4102, 2902, 13, 11627, 3004, 2599, 198, 220, 220, 220, 37227, 32603, 11280, 17860, 27995, 1398, 329, 1317, 2902, 37811, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1330, 10412, 395, 198, 220, 220, 220, 10412, 395, 13, 9288, 4666, 3419, 198 ]
2.201083
1,293
""" self.all_things = { "room_1": { "room": { "look": ( "You can see a bed and a desk with a phone resting on top. " "There's nothing else." ), "pickup": "Don't be ridiculous.", "approach": "You're already in the room, man. No need.", "hit": "You kick and hit around the room. Nothing happens.", "synonyms": { "floor", "wall", "walls", "ceiling", "space", "area", "environment", }, }, "phone": { "look": "A small cheap phone. It appears to be ringing.", "pickup": ( "You have taken the phone. It is still ringing. Enter " "'i' or 'inventory' at any time to bring up your inventory." ), "approach": "You have approached the phone.", "answer": ( "You answer it, the voice on the other line says 'You find " "yourself in a room.' As the voice speaks, the room around you" " starts to shift. You are now in a completely different room." ), "hit": "You hit the phone. Nothing happens.", "synonyms": {"device", "cellphone"}, }, "desk": { "look": "A flimsy wooden desk.", "pickup": ( "Please. This desk is too heavy to pick up and take with you." ), "approach": "You have approached the desk.", "hit": "You hit the desk. That was pointless.", "synonyms": {"table"}, }, "bed": { "look": "The bed you woke up from. Not sure how you got here.", "pickup": "The bed's too big for that.", "approach": "You have approached the bed.", "sleep": "But you've just woke up. Get your head in the game, man!", "hit": "You attack and hit the bed mercilessly. Nothing happens.", "jump": ( "You jump on the bed for a bit, smiling and having a grand 'ol " "time. Wow that was fun." ), "synonyms": {"mattress", "sheets", "pillow"}, }, }, "room_2": { "room": { "look": ( "Behind you is a whiteboard. To the left of you is a " "door.\nWritten on the floor are markings that read 'THREE " "BLANKS FOR THREE NUMBERS. THERE IS NO ROOM FOR FOUR.'" ), "pickup": "Don't be ridiculous.", "approach": "You're already in the room, man. No need.", "synonyms": { "floor", "wall", "walls", "ceiling", "space", "area", "environment", }, }, "whiteboard": { "look": ( "A large whiteboard. It has this written on it:\n\n__ / __ = " "__\n\n(Type and enter 'write' at any time if you wish to fill " "in the blanks.)" ), "pickup": "Lol. You can't pick up the whiteboard, silly.", "approach": "You approach the whiteboard.", "synonyms": {"board", "canvas"}, }, "cone": { "look": "Some paper cones.", "pickup": "You pick up the cone and toss it aside.", "approach": "You approach the cone.", "synonyms": {"cones"}, }, "door": { "look": "A normal door.", "pickup": ( "You are physically unable to pick up and take a door with you " "unfortunately." ), "approach": "You approach the door.", "open": "You have opened the door and walked in.", "synonyms": {"gate"}, }, "key": { "look": "A pretty key.", "pickup": "You have picked up the key.", "approach": "You approach the key.", "synonyms": {"keys"}, }, }, "room_3": { "room": { "look": ( "Except for a piece of chalk you see rested on the center of " "the floor, this room is completely bare." ), "pickup": "Don't be ridiculous.", "approach": "You're already in the room, man. No need.", "synonyms": { "floor", "wall", "walls", "ceiling", "space", "area", "environment", }, }, "chalk": { "look": ( "A normal piece of chalk. There is a sticky note attached to " "it." ), "pickup": "You have picked up the chalk.", "approach": "You have approached the chalk.", "synonyms": {"chalks", "chlak"}, }, "note": { "look": ( "A sticky note with a message written on it:\nYOU HAVE FOUND " "THE KEY.\nNOW FIND THE DOOR." ), "approach": "You're already in the room, man. No need.", "read": "YOU HAVE FOUND THE KEY.\nNOW FIND THE DOOR.", "synonyms": { "paper", "message", "writing", "writings", "markings", "marks", "sticky", }, }, "door": { "look": ( "Some chalk markings that have created the appearance of a " "door." ), "pickup": "Don't be ridiculous.", "approach": "You have approached the door.", "draw": "You draw the door.", "open": "You open the door and walk in.", "synonyms": {"gate"}, }, }, "room_4": { "room": { "look": ( "The north wall that's facing me has some strange " "writings/marks on it. There is a billiards table in the center" " of the room in front of you." ), "pickup": "Don't be ridiculous.", "approach": "You're already in the room, man. No need.", "synonyms": { "floor", "wall", "walls", "ceiling", "space", "area", "environment", }, }, "wall": { "look": " 3 -> 1 -> 4", "pickup": "Don't be ridiculous.", "approach": "You have approached the wall.", "hit": "You hit the wall. Completely useless.", "read": "3 -> 1 -> 4", "synonyms": { "walls", "marks", "markings", "writing", "writings", "drawing", "drawings", "symbol", "hint", "numbers", }, }, "table": { "look": ( "A billiards table. No balls or any functionality to speak of. " "It would probably be an ideal location to PLACE objects here." ), "pickup": "Don't be silly.", "approach": "You have approached the table.", "read": "insert symbol here", "synonyms": {"desk"}, }, "rack": { "look": "A large triangle rack used to play pool.", "pickup": "You picked up the large triangle rack.", "approach": "You have approached the large triangle rack.", "place": ( "You have placed the large triangle rack down on the table." ), "synonyms": {"triangle"}, }, "clock": { "look": "A medium-sized circular clock.", "pickup": "You picked up the medium-sized clock.", "approach": "You have approached the clock.", "place": ( "You have placed the medium-sized clock down on the table." ), "synonyms": {"circle", "circular"}, }, "cube": { "look": ( "A small rubix cube. Unfortunately doesn't work anymore and " "might as well be a paperweight." ), "pickup": "You picked up the small rubix cube.", "approach": "You have approached the small rubix cube.", "place": "You have placed the small rubix cube down on the table.", "synonyms": {"rubix", "square"}, }, "end sequence": { "end text": ( "A small rumbling starts to occur and the floor falls.\nYou " "land clumsily.\n\nYou are no longer in a room. You are " "outside.\n\nTHE END." ) }, }, } """
[ 198, 198, 37811, 198, 944, 13, 439, 62, 27971, 796, 1391, 198, 220, 220, 220, 366, 3823, 62, 16, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 3823, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1639, 460, 766, 257, 3996, 290, 257, 6915, 351, 257, 3072, 19186, 319, 1353, 13, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1858, 338, 2147, 2073, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 3987, 470, 307, 11441, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 821, 1541, 287, 262, 2119, 11, 582, 13, 1400, 761, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 17945, 1298, 366, 1639, 4829, 290, 2277, 1088, 262, 2119, 13, 10528, 4325, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28300, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11930, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 86, 5691, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 344, 4386, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 13200, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20337, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 38986, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 4862, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 366, 32, 1402, 7026, 3072, 13, 632, 3568, 284, 307, 32333, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1639, 423, 2077, 262, 3072, 13, 632, 318, 991, 32333, 13, 6062, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24018, 72, 6, 393, 705, 24807, 6, 379, 597, 640, 284, 2222, 510, 534, 13184, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 423, 10448, 262, 3072, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 41484, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1639, 3280, 340, 11, 262, 3809, 319, 262, 584, 1627, 1139, 705, 1639, 1064, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 14108, 944, 287, 257, 2119, 2637, 1081, 262, 3809, 9209, 11, 262, 2119, 1088, 345, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4940, 284, 6482, 13, 921, 389, 783, 287, 257, 3190, 1180, 2119, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 17945, 1298, 366, 1639, 2277, 262, 3072, 13, 10528, 4325, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 19779, 25202, 1600, 366, 3846, 4862, 25719, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 8906, 74, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 366, 32, 781, 48295, 13510, 6915, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5492, 13, 770, 6915, 318, 1165, 4334, 284, 2298, 510, 290, 1011, 351, 345, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 423, 10448, 262, 6915, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 17945, 1298, 366, 1639, 2277, 262, 6915, 13, 1320, 373, 27158, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 19779, 11487, 25719, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 3077, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 366, 464, 3996, 345, 19092, 510, 422, 13, 1892, 1654, 703, 345, 1392, 994, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 464, 3996, 338, 1165, 1263, 329, 326, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 423, 10448, 262, 3996, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 42832, 1298, 366, 1537, 345, 1053, 655, 19092, 510, 13, 3497, 534, 1182, 287, 262, 983, 11, 582, 40754, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 17945, 1298, 366, 1639, 1368, 290, 2277, 262, 3996, 40618, 306, 13, 10528, 4325, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 43327, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1639, 4391, 319, 262, 3996, 329, 257, 1643, 11, 16755, 290, 1719, 257, 4490, 705, 349, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2435, 13, 24755, 326, 373, 1257, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 19779, 76, 1078, 601, 1600, 366, 42011, 1600, 366, 27215, 322, 25719, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 8964, 198, 220, 220, 220, 366, 3823, 62, 17, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 3823, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 34163, 345, 318, 257, 2330, 3526, 13, 1675, 262, 1364, 286, 345, 318, 257, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9424, 13, 59, 77, 25354, 319, 262, 4314, 389, 30390, 326, 1100, 705, 4221, 11587, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9148, 15154, 50, 7473, 48697, 36871, 33, 4877, 13, 34702, 3180, 8005, 15107, 2662, 7473, 376, 11698, 11496, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 3987, 470, 307, 11441, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 821, 1541, 287, 262, 2119, 11, 582, 13, 1400, 761, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28300, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11930, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 86, 5691, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 344, 4386, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 13200, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20337, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 38986, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 11186, 3526, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 32, 1588, 2330, 3526, 13, 632, 468, 428, 3194, 319, 340, 7479, 77, 59, 77, 834, 1220, 11593, 796, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 834, 59, 77, 59, 77, 7, 6030, 290, 3802, 705, 13564, 6, 379, 597, 640, 611, 345, 4601, 284, 6070, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 259, 262, 698, 2283, 2014, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 43, 349, 13, 921, 460, 470, 2298, 510, 262, 2330, 3526, 11, 14397, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 3164, 262, 2330, 3526, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 19779, 3526, 1600, 366, 5171, 11017, 25719, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 49180, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 366, 4366, 3348, 47314, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 1639, 2298, 510, 262, 27763, 290, 12153, 340, 7263, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 3164, 262, 27763, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 19779, 1102, 274, 25719, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 9424, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 366, 32, 3487, 3420, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1639, 389, 10170, 5906, 284, 2298, 510, 290, 1011, 257, 3420, 351, 345, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 403, 6668, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 3164, 262, 3420, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9654, 1298, 366, 1639, 423, 4721, 262, 3420, 290, 6807, 287, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 19779, 10494, 25719, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 2539, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 366, 32, 2495, 1994, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 1639, 423, 6497, 510, 262, 1994, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 3164, 262, 1994, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 19779, 13083, 25719, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 8964, 198, 220, 220, 220, 366, 3823, 62, 18, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 3823, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30313, 329, 257, 3704, 286, 30860, 345, 766, 29263, 319, 262, 3641, 286, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1169, 4314, 11, 428, 2119, 318, 3190, 6247, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 3987, 470, 307, 11441, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 821, 1541, 287, 262, 2119, 11, 582, 13, 1400, 761, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28300, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11930, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 86, 5691, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 344, 4386, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 13200, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20337, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 38986, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 354, 971, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 32, 3487, 3704, 286, 30860, 13, 1318, 318, 257, 23408, 3465, 7223, 284, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 270, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 1639, 423, 6497, 510, 262, 30860, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 423, 10448, 262, 30860, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 19779, 354, 23833, 1600, 366, 354, 75, 461, 25719, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 11295, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 32, 23408, 3465, 351, 257, 3275, 3194, 319, 340, 7479, 77, 36981, 21515, 376, 15919, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10970, 35374, 13, 59, 77, 45669, 376, 12115, 3336, 8410, 1581, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 821, 1541, 287, 262, 2119, 11, 582, 13, 1400, 761, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 961, 1298, 366, 36981, 21515, 376, 15919, 3336, 35374, 13, 59, 77, 45669, 376, 12115, 3336, 8410, 1581, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20189, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20500, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16502, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8933, 654, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4102, 654, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 14306, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 13915, 88, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 9424, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4366, 30860, 30390, 326, 423, 2727, 262, 5585, 286, 257, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9424, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 3987, 470, 307, 11441, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 423, 10448, 262, 3420, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 19334, 1298, 366, 1639, 3197, 262, 3420, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9654, 1298, 366, 1639, 1280, 262, 3420, 290, 2513, 287, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 19779, 10494, 25719, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 8964, 198, 220, 220, 220, 366, 3823, 62, 19, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 3823, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 464, 5093, 3355, 326, 338, 6476, 502, 468, 617, 6283, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8933, 654, 14, 14306, 319, 340, 13, 1318, 318, 257, 2855, 72, 1371, 3084, 287, 262, 3641, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 286, 262, 2119, 287, 2166, 286, 345, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 3987, 470, 307, 11441, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 821, 1541, 287, 262, 2119, 11, 582, 13, 1400, 761, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28300, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11930, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 86, 5691, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 344, 4386, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 13200, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20337, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 38986, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 11930, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 366, 220, 220, 220, 220, 220, 220, 220, 513, 4613, 352, 4613, 604, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 3987, 470, 307, 11441, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 423, 10448, 262, 3355, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 17945, 1298, 366, 1639, 2277, 262, 3355, 13, 13248, 306, 13894, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 961, 1298, 366, 18, 4613, 352, 4613, 604, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 86, 5691, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 14306, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4102, 654, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16502, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8933, 654, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 19334, 278, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 19334, 654, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1837, 23650, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 71, 600, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 77, 17024, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 11487, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 32, 2855, 72, 1371, 3084, 13, 1400, 11333, 393, 597, 11244, 284, 2740, 286, 13, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1026, 561, 2192, 307, 281, 7306, 4067, 284, 9297, 11598, 5563, 994, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 3987, 470, 307, 14397, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 423, 10448, 262, 3084, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 961, 1298, 366, 28463, 6194, 994, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 19779, 8906, 74, 25719, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 39638, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 366, 32, 1588, 22950, 19127, 973, 284, 711, 5933, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 1639, 6497, 510, 262, 1588, 22950, 19127, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 423, 10448, 262, 1588, 22950, 19127, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5372, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1639, 423, 4624, 262, 1588, 22950, 19127, 866, 319, 262, 3084, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 19779, 28461, 9248, 25719, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15750, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 366, 32, 7090, 12, 13982, 18620, 8801, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 1639, 6497, 510, 262, 7090, 12, 13982, 8801, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 423, 10448, 262, 8801, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5372, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1639, 423, 4624, 262, 7090, 12, 13982, 8801, 866, 319, 262, 3084, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 19779, 45597, 1600, 366, 21170, 934, 25719, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 40296, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5460, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 32, 1402, 6437, 844, 23441, 13, 8989, 1595, 470, 670, 7471, 290, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 44092, 355, 880, 307, 257, 3348, 6551, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27729, 929, 1298, 366, 1639, 6497, 510, 262, 1402, 6437, 844, 23441, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21064, 620, 1298, 366, 1639, 423, 10448, 262, 1402, 6437, 844, 23441, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5372, 1298, 366, 1639, 423, 4624, 262, 1402, 6437, 844, 23441, 866, 319, 262, 3084, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28869, 43612, 1298, 19779, 25089, 844, 1600, 366, 23415, 25719, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 437, 8379, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 437, 2420, 1298, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 32, 1402, 374, 14739, 4940, 284, 3051, 290, 262, 4314, 8953, 13, 59, 77, 1639, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1044, 537, 5700, 813, 13, 59, 77, 59, 77, 1639, 389, 645, 2392, 287, 257, 2119, 13, 921, 389, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 43435, 13, 59, 77, 59, 77, 10970, 23578, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 8964, 198, 92, 198, 37811 ]
1.868145
4,869
# -*- coding: utf-8 -*- """Defines the output module for the MySQL database used by 4n6time.""" from __future__ import unicode_literals try: import MySQLdb except ImportError: MySQLdb = None from plaso.output import logger from plaso.output import manager from plaso.output import shared_4n6time class MySQL4n6TimeOutputModule(shared_4n6time.Shared4n6TimeOutputModule): """Class defining the MySQL database output module for 4n6time.""" NAME = '4n6time_mysql' DESCRIPTION = 'MySQL database output for the 4n6time tool.' _META_FIELDS = frozenset([ 'sourcetype', 'source', 'user', 'host', 'MACB', 'type', 'record_number']) _CREATE_TABLE_QUERY = ( 'CREATE TABLE IF NOT EXISTS log2timeline (' 'rowid INT NOT NULL AUTO_INCREMENT, timezone VARCHAR(256), ' 'MACB VARCHAR(256), source VARCHAR(256), sourcetype VARCHAR(256), ' 'type VARCHAR(256), user VARCHAR(256), host VARCHAR(256), ' 'description TEXT, filename VARCHAR(256), inode VARCHAR(256), ' 'notes VARCHAR(256), format VARCHAR(256), ' 'extra TEXT, datetime datetime, reportnotes VARCHAR(256), ' 'inreport VARCHAR(256), tag VARCHAR(256), offset INT, ' 'vss_store_number INT, URL TEXT, record_number VARCHAR(256), ' 'event_identifier VARCHAR(256), event_type VARCHAR(256), ' 'source_name VARCHAR(256), user_sid VARCHAR(256), ' 'computer_name VARCHAR(256), evidence VARCHAR(256), ' 'PRIMARY KEY (rowid)) ENGINE=InnoDB ROW_FORMAT=COMPRESSED') _INSERT_QUERY = ( 'INSERT INTO log2timeline(timezone, MACB, source, ' 'sourcetype, type, user, host, description, filename, ' 'inode, notes, format, extra, datetime, reportnotes, inreport, ' 'tag, offset, vss_store_number, URL, record_number, ' 'event_identifier, event_type, source_name, user_sid, computer_name, ' 'evidence) ' 'VALUES (:timezone, :MACB, :source, :sourcetype, :type, :user, :host, ' ':description, :filename, :inode, :notes, :format, :extra, :datetime, ' ':reportnotes, :inreport, :tag, :offset, :vss_store_number, :URL, ' ':record_number, :event_identifier, :event_type, :source_name, ' ':user_sid, :computer_name, :evidence)') def __init__(self, output_mediator): """Initializes the output module object. Args: output_mediator (OutputMediator): mediates interactions between output modules and other components, such as storage and dfvfs. """ super(MySQL4n6TimeOutputModule, self).__init__(output_mediator) self._connection = None self._count = None self._cursor = None self._dbname = 'log2timeline' self._host = 'localhost' self._password = 'forensic' self._port = None self._user = 'root' def _GetTags(self): """Retrieves tags from the database. Returns: list[str]: tags. """ all_tags = [] self._cursor.execute('SELECT DISTINCT tag FROM log2timeline') # This cleans up the messy SQL return. tag_row = self._cursor.fetchone() while tag_row: tag_string = tag_row[0] if tag_string: tags = tag_string.split(',') for tag in tags: if tag not in all_tags: all_tags.append(tag) tag_row = self._cursor.fetchone() # TODO: make this method an iterator. return all_tags def _GetUniqueValues(self, field_name): """Retrieves the unique values of a specific field from the database. Args: field_name (str): name of the field. Returns: dict[str, int]: number of instances of the field value per field name. """ self._cursor.execute( 'SELECT {0:s}, COUNT({0:s}) FROM log2timeline GROUP BY {0:s}'.format( field_name)) result = {} row = self._cursor.fetchone() while row: if row[0]: result[row[0]] = row[1] row = self._cursor.fetchone() return result def Close(self): """Disconnects from the database. This method will create the necessary indices and commit outstanding transactions before disconnecting. """ # Build up indices for the fields specified in the args. # It will commit the inserts automatically before creating index. if not self._append: for field_name in self._fields: query = 'CREATE INDEX {0:s}_idx ON log2timeline ({0:s})'.format( field_name) self._cursor.execute(query) if self._set_status: self._set_status('Created index: {0:s}'.format(field_name)) # Get meta info and save into their tables. if self._set_status: self._set_status('Creating metadata...') for field in self._META_FIELDS: values = self._GetUniqueValues(field) self._cursor.execute('DELETE FROM l2t_{0:s}s'.format(field)) for name, frequency in iter(values.items()): self._cursor.execute(( 'INSERT INTO l2t_{0:s}s ({0:s}s, frequency) ' 'VALUES("{1:s}", {2:d}) ').format(field, name, frequency)) self._cursor.execute('DELETE FROM l2t_tags') for tag in self._GetTags(): self._cursor.execute( 'INSERT INTO l2t_tags (tag) VALUES ("{0:s}")'.format(tag)) if self._set_status: self._set_status('Database created.') self._connection.commit() self._cursor.close() self._connection.close() self._cursor = None self._connection = None def Open(self): """Connects to the database and creates the required tables. Raises: IOError: if the 4n6time tables cannot be created or data not inserted in the database. OSError: if the 4n6time tables cannot be created or data not inserted in the database. ValueError: if no database name given. """ if not self._dbname: raise ValueError('Missing database name.') try: if self._append: self._connection = MySQLdb.connect( self._host, self._user, self._password, self._dbname) self._cursor = self._connection.cursor() self._connection.set_character_set('utf8') self._cursor.execute('SET NAMES utf8') self._cursor.execute('SET CHARACTER SET utf8') self._cursor.execute('SET character_set_connection=utf8') self._cursor.execute('SET GLOBAL innodb_large_prefix=ON') self._cursor.execute('SET GLOBAL innodb_file_format=barracuda') self._cursor.execute('SET GLOBAL innodb_file_per_table=ON') self._cursor.execute( 'CREATE DATABASE IF NOT EXISTS {0:s}'.format(self._dbname)) self._cursor.execute('USE {0:s}'.format(self._dbname)) # Create tables. self._cursor.execute(self._CREATE_TABLE_QUERY) if self._set_status: self._set_status('Created table: log2timeline') for field in self._META_FIELDS: self._cursor.execute( 'CREATE TABLE IF NOT EXISTS l2t_{0}s ({0}s TEXT, frequency INT) ' 'ENGINE=InnoDB ROW_FORMAT=COMPRESSED'.format(field)) if self._set_status: self._set_status('Created table: l2t_{0:s}'.format(field)) self._cursor.execute( 'CREATE TABLE IF NOT EXISTS l2t_tags (tag TEXT) ' 'ENGINE=InnoDB ROW_FORMAT=COMPRESSED') if self._set_status: self._set_status('Created table: l2t_tags') self._cursor.execute( 'CREATE TABLE IF NOT EXISTS l2t_saved_query (' 'name TEXT, query TEXT) ' 'ENGINE=InnoDB ROW_FORMAT=COMPRESSED') if self._set_status: self._set_status('Created table: l2t_saved_query') self._cursor.execute( 'CREATE TABLE IF NOT EXISTS l2t_disk (' 'disk_type INT, mount_path TEXT, ' 'dd_path TEXT, dd_offset TEXT, ' 'storage_file TEXT, export_path TEXT) ' 'ENGINE=InnoDB ROW_FORMAT=COMPRESSED') self._cursor.execute( 'INSERT INTO l2t_disk (' 'disk_type, mount_path, dd_path, ' 'dd_offset, storage_file, ' 'export_path) VALUES ' '(0, "", "", "", "", "")') if self._set_status: self._set_status('Created table: l2t_disk') except MySQLdb.Error as exception: raise IOError('Unable to insert into database with error: {0!s}'.format( exception)) self._count = 0 def SetCredentials(self, password=None, username=None): """Sets the database credentials. Args: password (Optional[str]): password to access the database. username (Optional[str]): username to access the database. """ if password: self._password = password if username: self._user = username def SetDatabaseName(self, name): """Sets the database name. Args: name (str): name of the database. """ self._dbname = name def SetServerInformation(self, server, port): """Sets the server information. Args: server (str): hostname or IP address of the database server. port (int): port number of the database server. """ self._host = server self._port = port def WriteEventBody(self, event): """Writes the body of an event object to the output. Args: event (EventObject): event. """ if not hasattr(event, 'timestamp'): return row = self._GetSanitizedEventValues(event) try: self._cursor.execute(self._INSERT_QUERY, row) except MySQLdb.Error as exception: logger.warning( 'Unable to insert into database with error: {0!s}.'.format( exception)) self._count += 1 # TODO: Experiment if committing the current transaction # every 10000 inserts is the optimal approach. if self._count % 10000 == 0: self._connection.commit() if self._set_status: self._set_status('Inserting event: {0:d}'.format(self._count)) manager.OutputManager.RegisterOutput( MySQL4n6TimeOutputModule, disabled=MySQLdb is None)
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 7469, 1127, 262, 5072, 8265, 329, 262, 33476, 6831, 973, 416, 604, 77, 21, 2435, 526, 15931, 198, 198, 6738, 11593, 37443, 834, 1330, 28000, 1098, 62, 17201, 874, 198, 198, 28311, 25, 198, 220, 1330, 33476, 9945, 198, 16341, 17267, 12331, 25, 198, 220, 33476, 9945, 796, 6045, 198, 198, 6738, 458, 292, 78, 13, 22915, 1330, 49706, 198, 6738, 458, 292, 78, 13, 22915, 1330, 4706, 198, 6738, 458, 292, 78, 13, 22915, 1330, 4888, 62, 19, 77, 21, 2435, 628, 198, 4871, 33476, 19, 77, 21, 7575, 26410, 26796, 7, 28710, 62, 19, 77, 21, 2435, 13, 2484, 1144, 19, 77, 21, 7575, 26410, 26796, 2599, 198, 220, 37227, 9487, 16215, 262, 33476, 6831, 5072, 8265, 329, 604, 77, 21, 2435, 526, 15931, 628, 220, 36751, 796, 705, 19, 77, 21, 2435, 62, 28744, 13976, 6, 198, 220, 22196, 40165, 796, 705, 3666, 17861, 6831, 5072, 329, 262, 604, 77, 21, 2435, 2891, 2637, 628, 220, 4808, 44, 20892, 62, 11674, 3698, 5258, 796, 8400, 8247, 316, 26933, 198, 220, 220, 220, 220, 220, 705, 82, 454, 66, 2963, 431, 3256, 705, 10459, 3256, 705, 7220, 3256, 705, 4774, 3256, 705, 44721, 33, 3256, 705, 4906, 3256, 198, 220, 220, 220, 220, 220, 705, 22105, 62, 17618, 6, 12962, 628, 220, 4808, 43387, 6158, 62, 38148, 62, 10917, 19664, 796, 357, 198, 220, 220, 220, 220, 220, 705, 43387, 6158, 43679, 16876, 5626, 7788, 1797, 4694, 2604, 17, 16514, 4470, 19203, 198, 220, 220, 220, 220, 220, 705, 808, 312, 17828, 5626, 15697, 47044, 46, 62, 30158, 2200, 10979, 11, 640, 11340, 569, 31315, 1503, 7, 11645, 828, 705, 198, 220, 220, 220, 220, 220, 705, 44721, 33, 569, 31315, 1503, 7, 11645, 828, 2723, 569, 31315, 1503, 7, 11645, 828, 11348, 66, 2963, 431, 569, 31315, 1503, 7, 11645, 828, 705, 198, 220, 220, 220, 220, 220, 705, 4906, 569, 31315, 1503, 7, 11645, 828, 2836, 569, 31315, 1503, 7, 11645, 828, 2583, 569, 31315, 1503, 7, 11645, 828, 705, 198, 220, 220, 220, 220, 220, 705, 11213, 40383, 11, 29472, 569, 31315, 1503, 7, 11645, 828, 287, 1098, 569, 31315, 1503, 7, 11645, 828, 705, 198, 220, 220, 220, 220, 220, 705, 17815, 569, 31315, 1503, 7, 11645, 828, 5794, 569, 31315, 1503, 7, 11645, 828, 705, 198, 220, 220, 220, 220, 220, 705, 26086, 40383, 11, 4818, 8079, 4818, 8079, 11, 989, 17815, 569, 31315, 1503, 7, 11645, 828, 705, 198, 220, 220, 220, 220, 220, 705, 259, 13116, 569, 31315, 1503, 7, 11645, 828, 7621, 569, 31315, 1503, 7, 11645, 828, 11677, 17828, 11, 705, 198, 220, 220, 220, 220, 220, 705, 85, 824, 62, 8095, 62, 17618, 17828, 11, 10289, 40383, 11, 1700, 62, 17618, 569, 31315, 1503, 7, 11645, 828, 705, 198, 220, 220, 220, 220, 220, 705, 15596, 62, 738, 7483, 569, 31315, 1503, 7, 11645, 828, 1785, 62, 4906, 569, 31315, 1503, 7, 11645, 828, 705, 198, 220, 220, 220, 220, 220, 705, 10459, 62, 3672, 569, 31315, 1503, 7, 11645, 828, 2836, 62, 30255, 569, 31315, 1503, 7, 11645, 828, 705, 198, 220, 220, 220, 220, 220, 705, 33215, 62, 3672, 569, 31315, 1503, 7, 11645, 828, 2370, 569, 31315, 1503, 7, 11645, 828, 705, 198, 220, 220, 220, 220, 220, 705, 4805, 3955, 13153, 35374, 357, 808, 312, 4008, 36924, 8881, 28, 818, 3919, 11012, 371, 3913, 62, 21389, 1404, 28, 9858, 32761, 1961, 11537, 628, 220, 4808, 20913, 17395, 62, 10917, 19664, 796, 357, 198, 220, 220, 220, 220, 220, 705, 20913, 17395, 39319, 2604, 17, 16514, 4470, 7, 2435, 11340, 11, 20582, 33, 11, 2723, 11, 705, 198, 220, 220, 220, 220, 220, 705, 82, 454, 66, 2963, 431, 11, 2099, 11, 2836, 11, 2583, 11, 6764, 11, 29472, 11, 705, 198, 220, 220, 220, 220, 220, 705, 259, 1098, 11, 4710, 11, 5794, 11, 3131, 11, 4818, 8079, 11, 989, 17815, 11, 287, 13116, 11, 705, 198, 220, 220, 220, 220, 220, 705, 12985, 11, 11677, 11, 410, 824, 62, 8095, 62, 17618, 11, 10289, 11, 1700, 62, 17618, 11, 705, 198, 220, 220, 220, 220, 220, 705, 15596, 62, 738, 7483, 11, 1785, 62, 4906, 11, 2723, 62, 3672, 11, 2836, 62, 30255, 11, 3644, 62, 3672, 11, 705, 198, 220, 220, 220, 220, 220, 705, 46817, 8, 705, 198, 220, 220, 220, 220, 220, 705, 23428, 35409, 357, 25, 2435, 11340, 11, 1058, 44721, 33, 11, 1058, 10459, 11, 1058, 82, 454, 66, 2963, 431, 11, 1058, 4906, 11, 1058, 7220, 11, 1058, 4774, 11, 705, 198, 220, 220, 220, 220, 220, 705, 25, 11213, 11, 1058, 34345, 11, 1058, 259, 1098, 11, 1058, 17815, 11, 1058, 18982, 11, 1058, 26086, 11, 1058, 19608, 8079, 11, 705, 198, 220, 220, 220, 220, 220, 705, 25, 13116, 17815, 11, 1058, 259, 13116, 11, 1058, 12985, 11, 1058, 28968, 11, 1058, 85, 824, 62, 8095, 62, 17618, 11, 1058, 21886, 11, 705, 198, 220, 220, 220, 220, 220, 705, 25, 22105, 62, 17618, 11, 1058, 15596, 62, 738, 7483, 11, 1058, 15596, 62, 4906, 11, 1058, 10459, 62, 3672, 11, 705, 198, 220, 220, 220, 220, 220, 705, 25, 7220, 62, 30255, 11, 1058, 33215, 62, 3672, 11, 1058, 46817, 8, 11537, 628, 220, 825, 11593, 15003, 834, 7, 944, 11, 5072, 62, 2379, 1352, 2599, 198, 220, 220, 220, 37227, 24243, 4340, 262, 5072, 8265, 2134, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 5072, 62, 2379, 1352, 357, 26410, 9921, 38585, 2599, 16957, 689, 12213, 1022, 5072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13103, 290, 584, 6805, 11, 884, 355, 6143, 290, 47764, 85, 9501, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2208, 7, 3666, 17861, 19, 77, 21, 7575, 26410, 26796, 11, 2116, 737, 834, 15003, 834, 7, 22915, 62, 2379, 1352, 8, 198, 220, 220, 220, 2116, 13557, 38659, 796, 6045, 198, 220, 220, 220, 2116, 13557, 9127, 796, 6045, 198, 220, 220, 220, 2116, 13557, 66, 21471, 796, 6045, 198, 220, 220, 220, 2116, 13557, 9945, 3672, 796, 705, 6404, 17, 16514, 4470, 6, 198, 220, 220, 220, 2116, 13557, 4774, 796, 705, 36750, 6, 198, 220, 220, 220, 2116, 13557, 28712, 796, 705, 754, 19364, 6, 198, 220, 220, 220, 2116, 13557, 634, 796, 6045, 198, 220, 220, 220, 2116, 13557, 7220, 796, 705, 15763, 6, 628, 220, 825, 4808, 3855, 36142, 7, 944, 2599, 198, 220, 220, 220, 37227, 9781, 5034, 1158, 15940, 422, 262, 6831, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 1351, 58, 2536, 5974, 15940, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 477, 62, 31499, 796, 17635, 198, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 10786, 46506, 360, 8808, 1268, 4177, 7621, 16034, 2604, 17, 16514, 4470, 11537, 628, 220, 220, 220, 1303, 770, 20658, 510, 262, 24097, 16363, 1441, 13, 198, 220, 220, 220, 7621, 62, 808, 796, 2116, 13557, 66, 21471, 13, 69, 7569, 505, 3419, 198, 220, 220, 220, 981, 7621, 62, 808, 25, 198, 220, 220, 220, 220, 220, 7621, 62, 8841, 796, 7621, 62, 808, 58, 15, 60, 198, 220, 220, 220, 220, 220, 611, 7621, 62, 8841, 25, 198, 220, 220, 220, 220, 220, 220, 220, 15940, 796, 7621, 62, 8841, 13, 35312, 7, 3256, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 329, 7621, 287, 15940, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 7621, 407, 287, 477, 62, 31499, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 31499, 13, 33295, 7, 12985, 8, 198, 220, 220, 220, 220, 220, 7621, 62, 808, 796, 2116, 13557, 66, 21471, 13, 69, 7569, 505, 3419, 628, 220, 220, 220, 1303, 16926, 46, 25, 787, 428, 2446, 281, 41313, 13, 198, 220, 220, 220, 1441, 477, 62, 31499, 628, 220, 825, 4808, 3855, 40257, 40161, 7, 944, 11, 2214, 62, 3672, 2599, 198, 220, 220, 220, 37227, 9781, 5034, 1158, 262, 3748, 3815, 286, 257, 2176, 2214, 422, 262, 6831, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 2214, 62, 3672, 357, 2536, 2599, 1438, 286, 262, 2214, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 8633, 58, 2536, 11, 493, 5974, 1271, 286, 10245, 286, 262, 2214, 1988, 583, 2214, 1438, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 7, 198, 220, 220, 220, 220, 220, 220, 220, 705, 46506, 1391, 15, 25, 82, 5512, 327, 28270, 15090, 15, 25, 82, 30072, 16034, 2604, 17, 16514, 4470, 44441, 11050, 1391, 15, 25, 82, 92, 4458, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 3672, 4008, 628, 220, 220, 220, 1255, 796, 23884, 198, 220, 220, 220, 5752, 796, 2116, 13557, 66, 21471, 13, 69, 7569, 505, 3419, 198, 220, 220, 220, 981, 5752, 25, 198, 220, 220, 220, 220, 220, 611, 5752, 58, 15, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 58, 808, 58, 15, 11907, 796, 5752, 58, 16, 60, 628, 220, 220, 220, 220, 220, 5752, 796, 2116, 13557, 66, 21471, 13, 69, 7569, 505, 3419, 628, 220, 220, 220, 1441, 1255, 628, 220, 825, 13872, 7, 944, 2599, 198, 220, 220, 220, 37227, 7279, 8443, 82, 422, 262, 6831, 13, 628, 220, 220, 220, 770, 2446, 481, 2251, 262, 3306, 36525, 290, 4589, 11660, 198, 220, 220, 220, 8945, 878, 22837, 278, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 10934, 510, 36525, 329, 262, 7032, 7368, 287, 262, 26498, 13, 198, 220, 220, 220, 1303, 632, 481, 4589, 262, 42220, 6338, 878, 4441, 6376, 13, 198, 220, 220, 220, 611, 407, 2116, 13557, 33295, 25, 198, 220, 220, 220, 220, 220, 329, 2214, 62, 3672, 287, 2116, 13557, 25747, 25, 198, 220, 220, 220, 220, 220, 220, 220, 12405, 796, 705, 43387, 6158, 24413, 6369, 1391, 15, 25, 82, 92, 62, 312, 87, 6177, 2604, 17, 16514, 4470, 37913, 15, 25, 82, 30072, 4458, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 7, 22766, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 2617, 62, 13376, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 2617, 62, 13376, 10786, 41972, 6376, 25, 1391, 15, 25, 82, 92, 4458, 18982, 7, 3245, 62, 3672, 4008, 628, 220, 220, 220, 1303, 3497, 13634, 7508, 290, 3613, 656, 511, 8893, 13, 198, 220, 220, 220, 611, 2116, 13557, 2617, 62, 13376, 25, 198, 220, 220, 220, 220, 220, 2116, 13557, 2617, 62, 13376, 10786, 32071, 20150, 986, 11537, 628, 220, 220, 220, 329, 2214, 287, 2116, 13557, 44, 20892, 62, 11674, 3698, 5258, 25, 198, 220, 220, 220, 220, 220, 3815, 796, 2116, 13557, 3855, 40257, 40161, 7, 3245, 8, 198, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 10786, 7206, 2538, 9328, 16034, 300, 17, 83, 23330, 15, 25, 82, 92, 82, 4458, 18982, 7, 3245, 4008, 198, 220, 220, 220, 220, 220, 329, 1438, 11, 8373, 287, 11629, 7, 27160, 13, 23814, 3419, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 19510, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20913, 17395, 39319, 300, 17, 83, 23330, 15, 25, 82, 92, 82, 37913, 15, 25, 82, 92, 82, 11, 8373, 8, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 23428, 35409, 7203, 90, 16, 25, 82, 92, 1600, 1391, 17, 25, 67, 30072, 705, 737, 18982, 7, 3245, 11, 1438, 11, 8373, 4008, 628, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 10786, 7206, 2538, 9328, 16034, 300, 17, 83, 62, 31499, 11537, 198, 220, 220, 220, 329, 7621, 287, 2116, 13557, 3855, 36142, 33529, 198, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20913, 17395, 39319, 300, 17, 83, 62, 31499, 357, 12985, 8, 26173, 35409, 5855, 90, 15, 25, 82, 92, 4943, 4458, 18982, 7, 12985, 4008, 628, 220, 220, 220, 611, 2116, 13557, 2617, 62, 13376, 25, 198, 220, 220, 220, 220, 220, 2116, 13557, 2617, 62, 13376, 10786, 38105, 2727, 2637, 8, 628, 220, 220, 220, 2116, 13557, 38659, 13, 41509, 3419, 198, 220, 220, 220, 2116, 13557, 66, 21471, 13, 19836, 3419, 198, 220, 220, 220, 2116, 13557, 38659, 13, 19836, 3419, 628, 220, 220, 220, 2116, 13557, 66, 21471, 796, 6045, 198, 220, 220, 220, 2116, 13557, 38659, 796, 6045, 628, 220, 825, 4946, 7, 944, 2599, 198, 220, 220, 220, 37227, 13313, 82, 284, 262, 6831, 290, 8075, 262, 2672, 8893, 13, 628, 220, 220, 220, 7567, 2696, 25, 198, 220, 220, 220, 220, 220, 24418, 12331, 25, 611, 262, 604, 77, 21, 2435, 8893, 2314, 307, 2727, 393, 1366, 407, 18846, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 262, 6831, 13, 198, 220, 220, 220, 220, 220, 440, 5188, 81, 1472, 25, 611, 262, 604, 77, 21, 2435, 8893, 2314, 307, 2727, 393, 1366, 407, 18846, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 262, 6831, 13, 198, 220, 220, 220, 220, 220, 11052, 12331, 25, 611, 645, 6831, 1438, 1813, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 2116, 13557, 9945, 3672, 25, 198, 220, 220, 220, 220, 220, 5298, 11052, 12331, 10786, 43730, 6831, 1438, 2637, 8, 628, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 611, 2116, 13557, 33295, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 38659, 796, 33476, 9945, 13, 8443, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 4774, 11, 2116, 13557, 7220, 11, 2116, 13557, 28712, 11, 2116, 13557, 9945, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 796, 2116, 13557, 38659, 13, 66, 21471, 3419, 628, 220, 220, 220, 220, 220, 2116, 13557, 38659, 13, 2617, 62, 22769, 62, 2617, 10786, 40477, 23, 11537, 198, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 10786, 28480, 399, 29559, 3384, 69, 23, 11537, 198, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 10786, 28480, 28521, 2246, 5781, 25823, 3384, 69, 23, 11537, 198, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 10786, 28480, 2095, 62, 2617, 62, 38659, 28, 40477, 23, 11537, 198, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 10786, 28480, 10188, 9864, 1847, 3527, 375, 65, 62, 11664, 62, 40290, 28, 1340, 11537, 198, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 10786, 28480, 10188, 9864, 1847, 3527, 375, 65, 62, 7753, 62, 18982, 28, 65, 3258, 330, 15339, 11537, 198, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 10786, 28480, 10188, 9864, 1847, 3527, 375, 65, 62, 7753, 62, 525, 62, 11487, 28, 1340, 11537, 198, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43387, 6158, 360, 1404, 6242, 11159, 16876, 5626, 7788, 1797, 4694, 1391, 15, 25, 82, 92, 4458, 18982, 7, 944, 13557, 9945, 3672, 4008, 198, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 10786, 19108, 1391, 15, 25, 82, 92, 4458, 18982, 7, 944, 13557, 9945, 3672, 4008, 198, 220, 220, 220, 220, 220, 1303, 13610, 8893, 13, 198, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 7, 944, 13557, 43387, 6158, 62, 38148, 62, 10917, 19664, 8, 198, 220, 220, 220, 220, 220, 611, 2116, 13557, 2617, 62, 13376, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 2617, 62, 13376, 10786, 41972, 3084, 25, 2604, 17, 16514, 4470, 11537, 628, 220, 220, 220, 220, 220, 329, 2214, 287, 2116, 13557, 44, 20892, 62, 11674, 3698, 5258, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43387, 6158, 43679, 16876, 5626, 7788, 1797, 4694, 300, 17, 83, 23330, 15, 92, 82, 37913, 15, 92, 82, 40383, 11, 8373, 17828, 8, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 26808, 8881, 28, 818, 3919, 11012, 371, 3913, 62, 21389, 1404, 28, 9858, 32761, 1961, 4458, 18982, 7, 3245, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 2617, 62, 13376, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 2617, 62, 13376, 10786, 41972, 3084, 25, 300, 17, 83, 23330, 15, 25, 82, 92, 4458, 18982, 7, 3245, 4008, 628, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43387, 6158, 43679, 16876, 5626, 7788, 1797, 4694, 300, 17, 83, 62, 31499, 357, 12985, 40383, 8, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 26808, 8881, 28, 818, 3919, 11012, 371, 3913, 62, 21389, 1404, 28, 9858, 32761, 1961, 11537, 198, 220, 220, 220, 220, 220, 611, 2116, 13557, 2617, 62, 13376, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 2617, 62, 13376, 10786, 41972, 3084, 25, 300, 17, 83, 62, 31499, 11537, 628, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43387, 6158, 43679, 16876, 5626, 7788, 1797, 4694, 300, 17, 83, 62, 82, 9586, 62, 22766, 19203, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3672, 40383, 11, 12405, 40383, 8, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 26808, 8881, 28, 818, 3919, 11012, 371, 3913, 62, 21389, 1404, 28, 9858, 32761, 1961, 11537, 198, 220, 220, 220, 220, 220, 611, 2116, 13557, 2617, 62, 13376, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 2617, 62, 13376, 10786, 41972, 3084, 25, 300, 17, 83, 62, 82, 9586, 62, 22766, 11537, 628, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43387, 6158, 43679, 16876, 5626, 7788, 1797, 4694, 300, 17, 83, 62, 39531, 19203, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 39531, 62, 4906, 17828, 11, 3817, 62, 6978, 40383, 11, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1860, 62, 6978, 40383, 11, 49427, 62, 28968, 40383, 11, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 35350, 62, 7753, 40383, 11, 10784, 62, 6978, 40383, 8, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 26808, 8881, 28, 818, 3919, 11012, 371, 3913, 62, 21389, 1404, 28, 9858, 32761, 1961, 11537, 198, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20913, 17395, 39319, 300, 17, 83, 62, 39531, 19203, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 39531, 62, 4906, 11, 3817, 62, 6978, 11, 49427, 62, 6978, 11, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1860, 62, 28968, 11, 6143, 62, 7753, 11, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 39344, 62, 6978, 8, 26173, 35409, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29513, 15, 11, 366, 1600, 366, 1600, 366, 1600, 366, 1600, 366, 4943, 11537, 198, 220, 220, 220, 220, 220, 611, 2116, 13557, 2617, 62, 13376, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 2617, 62, 13376, 10786, 41972, 3084, 25, 300, 17, 83, 62, 39531, 11537, 198, 220, 220, 220, 2845, 33476, 9945, 13, 12331, 355, 6631, 25, 198, 220, 220, 220, 220, 220, 5298, 24418, 12331, 10786, 3118, 540, 284, 7550, 656, 6831, 351, 4049, 25, 1391, 15, 0, 82, 92, 4458, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6631, 4008, 628, 220, 220, 220, 2116, 13557, 9127, 796, 657, 628, 220, 825, 5345, 34, 445, 14817, 7, 944, 11, 9206, 28, 14202, 11, 20579, 28, 14202, 2599, 198, 220, 220, 220, 37227, 50, 1039, 262, 6831, 18031, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 9206, 357, 30719, 58, 2536, 60, 2599, 9206, 284, 1895, 262, 6831, 13, 198, 220, 220, 220, 220, 220, 20579, 357, 30719, 58, 2536, 60, 2599, 20579, 284, 1895, 262, 6831, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 9206, 25, 198, 220, 220, 220, 220, 220, 2116, 13557, 28712, 796, 9206, 198, 220, 220, 220, 611, 20579, 25, 198, 220, 220, 220, 220, 220, 2116, 13557, 7220, 796, 20579, 628, 220, 825, 5345, 38105, 5376, 7, 944, 11, 1438, 2599, 198, 220, 220, 220, 37227, 50, 1039, 262, 6831, 1438, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 1438, 357, 2536, 2599, 1438, 286, 262, 6831, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2116, 13557, 9945, 3672, 796, 1438, 628, 220, 825, 5345, 10697, 21918, 7, 944, 11, 4382, 11, 2493, 2599, 198, 220, 220, 220, 37227, 50, 1039, 262, 4382, 1321, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 4382, 357, 2536, 2599, 2583, 3672, 393, 6101, 2209, 286, 262, 6831, 4382, 13, 198, 220, 220, 220, 220, 220, 2493, 357, 600, 2599, 2493, 1271, 286, 262, 6831, 4382, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2116, 13557, 4774, 796, 4382, 198, 220, 220, 220, 2116, 13557, 634, 796, 2493, 628, 220, 825, 19430, 9237, 25842, 7, 944, 11, 1785, 2599, 198, 220, 220, 220, 37227, 20257, 274, 262, 1767, 286, 281, 1785, 2134, 284, 262, 5072, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 1785, 357, 9237, 10267, 2599, 1785, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 468, 35226, 7, 15596, 11, 705, 16514, 27823, 6, 2599, 198, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 5752, 796, 2116, 13557, 3855, 15017, 36951, 9237, 40161, 7, 15596, 8, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 2116, 13557, 66, 21471, 13, 41049, 7, 944, 13557, 20913, 17395, 62, 10917, 19664, 11, 5752, 8, 198, 220, 220, 220, 2845, 33476, 9945, 13, 12331, 355, 6631, 25, 198, 220, 220, 220, 220, 220, 49706, 13, 43917, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3118, 540, 284, 7550, 656, 6831, 351, 4049, 25, 1391, 15, 0, 82, 92, 2637, 13, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6631, 4008, 628, 220, 220, 220, 2116, 13557, 9127, 15853, 352, 628, 220, 220, 220, 1303, 16926, 46, 25, 29544, 611, 17222, 262, 1459, 8611, 198, 220, 220, 220, 1303, 790, 33028, 42220, 318, 262, 16586, 3164, 13, 198, 220, 220, 220, 611, 2116, 13557, 9127, 4064, 33028, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 2116, 13557, 38659, 13, 41509, 3419, 198, 220, 220, 220, 220, 220, 611, 2116, 13557, 2617, 62, 13376, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 2617, 62, 13376, 10786, 44402, 278, 1785, 25, 1391, 15, 25, 67, 92, 4458, 18982, 7, 944, 13557, 9127, 4008, 628, 198, 37153, 13, 26410, 13511, 13, 38804, 26410, 7, 198, 220, 220, 220, 33476, 19, 77, 21, 7575, 26410, 26796, 11, 10058, 28, 3666, 17861, 9945, 318, 6045, 8, 198 ]
2.452553
4,015
#!/usr/bin/env python # Author: David Kovar [dkovar <at> gmail [dot] com] # Name: analyzeMFT.py # # Copyright (c) 2010 David Kovar. All rights reserved. # This software is distributed under the Common Public License 1.0 # # Date: May 2013 # import sys import os import struct import mbr_parser from analyzemft import mft from analyzemft import mftsession VERSION = "v0.0.1" # BIOS parameter block - http://www.ntfs.com/ntfs-partition-boot-sector.htm
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 2, 6434, 25, 3271, 43326, 283, 685, 67, 21862, 283, 1279, 265, 29, 308, 4529, 685, 26518, 60, 401, 60, 198, 2, 6530, 25, 16602, 44, 9792, 13, 9078, 198, 2, 198, 2, 15069, 357, 66, 8, 3050, 3271, 43326, 283, 13, 1439, 2489, 10395, 13, 198, 2, 770, 3788, 318, 9387, 739, 262, 8070, 5094, 13789, 352, 13, 15, 198, 2, 198, 2, 7536, 25, 1737, 2211, 198, 2, 198, 198, 11748, 25064, 198, 11748, 28686, 198, 11748, 2878, 198, 198, 11748, 285, 1671, 62, 48610, 198, 6738, 4284, 89, 368, 701, 1330, 285, 701, 198, 6738, 4284, 89, 368, 701, 1330, 285, 701, 29891, 198, 198, 43717, 796, 366, 85, 15, 13, 15, 13, 16, 1, 628, 220, 220, 220, 1303, 27553, 11507, 2512, 532, 2638, 1378, 2503, 13, 429, 9501, 13, 785, 14, 429, 9501, 12, 3911, 653, 12, 18769, 12, 34914, 13, 19211, 198, 220, 220, 220, 220 ]
2.858025
162
# Databricks notebook source # MAGIC %md # MAGIC **PROBLEM STATEMENT** # MAGIC <br/>Predict the Active Covid cases of 2021 depending on 2020 statewise data in India. # MAGIC <br/>Get Sample data from Source- https://www.kaggle.com/aritranandi23/covid-19-analysis-and-prediction/data # MAGIC <br/> # MAGIC <br/>**COLUMN DEFINITION** # MAGIC <br/>Date:string # MAGIC <br/>Time:string # MAGIC <br/>State/UnionTerritory:string # MAGIC <br/>ConfirmedIndianNational:string # MAGIC <br/>ConfirmedForeignNational:string # MAGIC <br/>Cured:integer # MAGIC <br/>Deaths:integer # MAGIC <br/>Confirmed:integer # MAGIC # MAGIC <br/>**STEPS IN MODELLING** # MAGIC <br/>1.Data Acquisation # MAGIC <br/>2.Data understanding # MAGIC <br/>3.Data visualisation/EDA # MAGIC <br/>4.Data cleaning/missing imputation/typecasting # MAGIC <br/>5.Sampling/ bias removal # MAGIC <br/>6.Anomaly detection # MAGIC <br/>7.Feature selection/importance # MAGIC <br/>8.Azure ML Model trigger # MAGIC <br/>9.Model Interpretation # MAGIC <br/>10.Telemetry # MAGIC <br/> # MAGIC <br/> # MAGIC <br/>**FEATURE ENGINEERING** # MAGIC <br/>1.Get Death rates, Discharge rates, Active cases rates from Confirmed, Cured, Death cases # MAGIC <br/>2.In TS Forecasting each group must provide atleast 3 datapoints to obtain frequency, remove the records where frequency<=3 for the train set i.e. data from the year 2020 # COMMAND ---------- # MAGIC %md # MAGIC ## Import functions from Master Notebook: # MAGIC Import the Functions and dependencies from the Master notebook to be used in the Trigger Notebook # COMMAND ---------- # MAGIC %run /Users/.../AMLMasterNotebook # COMMAND ---------- # MAGIC %md # MAGIC ## 1.Data Acquisition # MAGIC 1.Acquisition of data from datasource ADLS path in CSV/Parquet/JSON etc format. # MAGIC <br/>2.Logical Transformations in data. # MAGIC <br/>3.Transforming columns into required datatypes, converting to pandas df, persisiting actual dataset, intoducing a column 'Index' to assign a unique identifier to each dataset row so that this canm be used to retrieve back the original form after any data manupulations. # COMMAND ---------- # DBTITLE 1,Read Data from Lake # MAGIC %scala # MAGIC //<USER INPUT FILEPATH PARQUET OR CSV> # MAGIC # MAGIC val filepath1= "adl://<Your ADLS name>.azuredatalakestore.net/Temp/ML-PJC/covid_19_india.csv" # MAGIC var df1=spark.read.format("com.databricks.spark.csv").option("inferSchema", "true").option("header", "true").option("delimiter", ",").load(filepath1) # MAGIC df1.createOrReplaceTempView("CovidIndia") # MAGIC # MAGIC # MAGIC # MAGIC val filepath2= "adl://<Your ADLS name>.azuredatalakestore.net/Temp/ML-PJC/covid_vaccine_statewise.csv" # MAGIC var df2=spark.read.format("com.databricks.spark.csv").option("inferSchema", "true").option("header", "true").option("delimiter", ",").load(filepath2) # MAGIC df2.createOrReplaceTempView("Vaccine") # MAGIC # MAGIC val filepath3= "adl://<Your ADLS name>.azuredatalakestore.net/Temp/ML-PJC/StatewiseTestingDetails.csv" # MAGIC var df3=spark.read.format("com.databricks.spark.csv").option("inferSchema", "true").option("header", "true").option("delimiter", ",").load(filepath3) # MAGIC df3.createOrReplaceTempView("Testing") # COMMAND ---------- # MAGIC %sql # MAGIC with CTE1 as # MAGIC (select # MAGIC MAX(date_format(Date, 'MMMM')) AS Month # MAGIC ,MAX(Year(Date)) AS Year # MAGIC ,CONCAT(Year(Date),'-',RIGHT(CONCAT('00',MONTH(Date)),2),'-','01') AS Date # MAGIC ,`State/UnionTerritory` as State # MAGIC ,SUM(Cured) as Cured # MAGIC ,SUM(Deaths) as Deaths # MAGIC ,SUM(Confirmed) as Confirmed # MAGIC ,((SUM(Confirmed)-SUM(Deaths)-SUM(Cured))/SUM(Confirmed) * 100) as ActiveCasesRate # MAGIC ,(SUM(Cured)/SUM(Confirmed) * 100) AS DischargeRate # MAGIC ,(SUM(Deaths)/SUM(Confirmed) * 100) as DeathsRate # MAGIC from CovidIndia C # MAGIC group by # MAGIC CONCAT(Year(Date),'-',RIGHT(CONCAT('00',MONTH(Date)),2),'-','01') # MAGIC ,`State/UnionTerritory` # MAGIC ) # MAGIC # MAGIC --select distinct state from CTE1 group by State having count(*)<=3 # MAGIC select * from CTE1 where State not in (select distinct state from CTE1 group by State having count(*)<=3) # MAGIC and Year=2021 # COMMAND ---------- # DBTITLE 1,Logical transformation of data df= spark.sql(""" with CTE1 as (select MAX(date_format(Date, 'MMMM')) AS Month ,MAX(Year(Date)) AS Year ,CONCAT(Year(Date),'-',RIGHT(CONCAT('00',MONTH(Date)),2),'-','01') AS Date ,`State/UnionTerritory` as State ,SUM(Cured) as Cured ,SUM(Deaths) as Deaths ,SUM(Confirmed) as Confirmed ,((SUM(Confirmed)-SUM(Deaths)-SUM(Cured))/SUM(Confirmed) * 100) as ActiveCasesRate ,(SUM(Cured)/SUM(Confirmed) * 100) AS DischargeRate ,(SUM(Deaths)/SUM(Confirmed) * 100) as DeathsRate from CovidIndia C group by CONCAT(Year(Date),'-',RIGHT(CONCAT('00',MONTH(Date)),2),'-','01') ,`State/UnionTerritory` ) select * from CTE1 where State not like 'Lakshadweep' and --Low Frequency for train as only one month dec in 2020 train State not in (select distinct state from CTE1 group by State having count(*)<=3) --low frequency for train as atleast three months required """) # COMMAND ---------- # DBTITLE 1,Data columns and structural transformation import pandas as pd import numpy as np from pyspark.sql.functions import col ##df.select(*(col(c).cast("float").alias(c) for c in df.columns)) #cols=df.columns #cols.remove('Index') #for col_name in cols: # df = df.withColumn(col_name, col(col_name).cast('float')) #for col_name in ['Index']: # df = df.withColumn(col_name, col(col_name).cast('Int')) # <USER INPUT COLUMN NAMES WITH DATAYPES IN RESPECTIVE BUCKET> cols_all=[ 'Month' ,'Year' ,'Date' ,'State' ,'Cured' ,'Deaths' ,'Confirmed' ,'ActiveCasesRate' ,'DischargeRate' ,'DeathsRate' ] cols_string=[ 'Month' ,'Year' ,'Date' ,'State' ] cols_int=[ 'Cured' ,'Deaths' ,'Confirmed' ] cols_bool=[] cols_Float=[ 'ActiveCasesRate' ,'DischargeRate' ,'DeathsRate' ] for col_name in cols_int: df = df.withColumn(col_name, col(col_name).cast('Int')) for col_name in cols_Float: df = df.withColumn(col_name, col(col_name).cast('float')) for col_name in cols_bool: df = df.withColumn(col_name, col(col_name).cast('bool')) input_dataframe = df.toPandas() input_dataframe['Index'] = np.arange(len(input_dataframe)) outdir = '/dbfs/FileStore/Covid.csv' input_dataframe.to_csv(outdir, index=False) #input_dataframe = pd.read_csv("/dbfs/FileStore/Dataframe.csv", header='infer') # COMMAND ---------- # MAGIC %md # MAGIC ## 2.Data Exploration # MAGIC 1.Exploratory Data Analysis (EDA)- To understand the overall data at hand, analysing each feature independently for its' statistics, the correlation and interraction between variables, data sample etc. # MAGIC <br/>2.Data Profiling Plots- To analyse the Categorical and Numerical columns separately for any trend in data, biasness in data etc. # COMMAND ---------- # DBTITLE 1,EDA input_dataframe = pd.read_csv("/dbfs/FileStore/Covid.csv", header='infer') p=Data_Profiling_viaPandasProfiling(input_dataframe,'RealEstate','EDA') displayHTML(p) # COMMAND ---------- # DBTITLE 1,Data Profiling Plots input_dataframe = pd.read_csv("/dbfs/FileStore/Covid.csv", header='infer') #User Inputs cols_all=[ 'Month' ,'Year' ,'Date' ,'State' ,'Cured' ,'Deaths' ,'Confirmed' ,'ActiveCasesRate' ,'DischargeRate' ,'DeathsRate' ] Categorical_cols=['Month' ,'Year' ,'Date' ,'State' ] Numeric_cols=['Cured' ,'Deaths' ,'Confirmed' ,'ActiveCasesRate' ,'DischargeRate' ,'DeathsRate' ] Label_col='ActiveCasesRate' #Data_Profiling_Plots(input_dataframe,Categorical_cols,Numeric_cols,Label_col) Data_Profiling_Plots(input_dataframe,Categorical_cols,Numeric_cols,Label_col) # COMMAND ---------- # MAGIC %md # MAGIC ## 4.Cleansing # MAGIC To clean the data from NULL values, fix structural errors in columns, drop empty columns, encode the categorical values, normalise the data to bring to the same scale. We also check the Data Distribution via Correlation heatmap of original input dataset v/s the Cleansed dataset to validate whether or not the transformations hampered the original data trend/density. # COMMAND ---------- # DBTITLE 1,Auto Cleanser subsample_final = pd.read_csv("/dbfs/FileStore/Covid.csv", header='infer') #subsample_final=subsample_final.drop(['Index'], axis = 1) # Index is highest variability column hence always imp along PC but has no business value. You can append columns to be dropped by your choice here in the list inputdf_new=autodatacleaner(subsample_final,"/dbfs/FileStore/Covid.csv","Covid","Data Cleanser") print("Total rows in the new pandas dataframe:",len(inputdf_new.index)) #persist cleansed data sets filepath1 = '/dbfs/FileStore/Cleansed_Covid.csv' inputdf_new.to_csv(filepath1, index=False) # COMMAND ---------- # DBTITLE 1,Data profiling(Heatmap correlation)- User input dataframe subsample_final = pd.read_csv("/dbfs/FileStore/Covid.csv", header='infer') display(Data_Profiling_Fin(subsample_final)) # COMMAND ---------- # DBTITLE 1,Data profiling(Heatmap correlation)- Cleansed dataframe Cleansed=pd.read_csv("/dbfs/FileStore/Cleansed_Covid.csv", header='infer') display(Data_Profiling_Fin(Cleansed)) # COMMAND ---------- # MAGIC %md # MAGIC ## 5.Anomaly Detection # MAGIC Iterate data over various Anomaly-detection techniques and estimate the number of Inliers and Outliers for each. # COMMAND ---------- import pandas as pd import numpy as np from scipy import stats import matplotlib.pyplot as plt %matplotlib inline import matplotlib.font_manager from pyod.models.abod import ABOD from pyod.models.knn import KNN from pyod.utils.data import generate_data, get_outliers_inliers from pyod.models.cblof import CBLOF #from pyod.models.feature_bagging import FeatureBagging from pyod.models.hbos import HBOS from pyod.models.iforest import IForest from pyod.models.lof import LOF from sklearn.preprocessing import MinMaxScaler import warnings from io import BytesIO from pyspark.sql.functions import base64 from pyspark.sql.functions import unbase64 warnings.filterwarnings("ignore") outliers_fraction = 0.05 #df = pd.read_csv("/kaggle/input/house-prices-advanced-regression-techniques/train.csv") #target_variable = 'SalePrice' #variables_to_analyze = '1stFlrSF' output_path = '/dbfs/FileStore/AnomalyDetection_HTML' #df.plot.scatter('1stFlrSF','SalePrice') # COMMAND ---------- # DBTITLE 0,Anomaly Detection #Calling the Anamoly Detection Function for identifying outliers outliers_fraction = 0.05 df =pd.read_csv("/dbfs/FileStore/Cleansed_Covid.csv", header='infer') target_variable = 'ActiveCasesRate' variables_to_analyze='Confirmed' AnomalyDetection(df,target_variable,variables_to_analyze,outliers_fraction,'anomaly_test','test') # COMMAND ---------- # MAGIC %md # MAGIC ## 6.Feature Selection # MAGIC Perform feature selection on the basis of Feature Importance ranking, correlation values, variance within the column. # MAGIC Choose features with High Importance value score, drop one of the two highly correlated features, drop features which offer zero variability to data and thus do not increase the entropy of dataset. # COMMAND ---------- df =pd.read_csv("/dbfs/FileStore/Cleansed_Covid.csv", header='infer') FeatureSelection(df,'ActiveCasesRate','Continuous',"/dbfs/FileStore/Cleansed_Covid.csv",'Covid','FeatureSelection') # COMMAND ---------- # MAGIC %pip install azureml-train-automl-runtime # MAGIC %pip install azureml-automl-runtime # MAGIC %pip install azureml-widgets # MAGIC %pip install azureml-sdk[automl] # MAGIC %pip install ipywidgets # MAGIC %pip install pandas-profiling # MAGIC %pip install pyod # MAGIC %pip install azureml-sdk # MAGIC %pip install azureml-explain-model # MAGIC %pip install imbalanced-learn # MAGIC %pip install pyod # MAGIC %pip install skfeature-chappers # MAGIC %pip install raiwidgets # MAGIC # MAGIC %pip install ruamel.yaml==0.16.10 # MAGIC %pip install azure-core==1.8.0 # MAGIC %pip install liac-arff==2.4.0 # MAGIC %pip install msal==1.4.3 # MAGIC %pip install msrest==0.6.18 # MAGIC %pip install ruamel.yaml.clib==0.2.0 # MAGIC %pip install tqdm==4.49.0 # MAGIC %pip install zipp==3.2.0 # MAGIC %pip install interpret-community==0.15.0 # MAGIC %pip install azure-identity==1.4.0 # MAGIC %pip install dotnetcore2==2.1.16 # MAGIC %pip install jinja2==2.11.2 # MAGIC %pip install azure-core==1.15.0 # MAGIC %pip install azure-mgmt-containerregistry==8.0.0 # MAGIC %pip install azure-mgmt-core==1.2.2 # MAGIC %pip install distro==1.5.0 # MAGIC %pip install google-api-core==1.30.0 # MAGIC %pip install google-auth==1.32.1 # MAGIC %pip install importlib-metadata==4.6.0 # MAGIC %pip install msal==1.12.0 # MAGIC %pip install packaging==20.9 # MAGIC %pip install pathspec==0.8.1 # MAGIC %pip install requests==2.25.1 # MAGIC %pip install ruamel.yaml.clib==0.2.4 # MAGIC %pip install tqdm==4.61.1 # MAGIC %pip install zipp==3.4.1 # MAGIC %pip install scipy==1.5.2 # MAGIC %pip install charset-normalizer==2.0.3 # MAGIC %pip install websocket-client==1.1.0 # MAGIC %pip install scikit-learn==0.22.1 # MAGIC %pip install interpret-community==0.19.0 # MAGIC %pip install cryptography==3.4.7 # MAGIC %pip install llvmlite==0.36.0 # MAGIC %pip install numba==0.53.1 # COMMAND ---------- # MAGIC %md # MAGIC ## 7.Auto ML Trigger - after preprocessing # MAGIC Trigger Azure auto ML, pick the best model so obtained and use it to predict the label column. Calculate the Weighted Absolute Accuracy amd push to telemetry. also obtain the data back in original format by using the unique identifier of each row 'Index' and report Actual v/s Predicted Columns. We also provide the direct link to the azure Portal Run for the current experiment for users to follow. # COMMAND ---------- # DBTITLE 1,Train-Test Split ##df has just index,y actual, y predicted cols, as rest all cols are encoded after manipulation import pandas as pd df =pd.read_csv("/dbfs/FileStore/Cleansed_Covid.csv", header='infer') for col in df.columns: if col not in ["Index"]: df.drop([col], axis=1, inplace=True) #dataframe is the actual input dataset dataframe = pd.read_csv("/dbfs/FileStore/Covid.csv", header='infer') #Merging Actual Input dataframe with AML output df using Index column dataframe_fin = pd.merge(left=dataframe, right=df, left_on='Index', right_on='Index') #dataframe_fin #train-test split train_data=dataframe_fin[dataframe_fin['Year']==2020] test_data=dataframe_fin[dataframe_fin['Year']==2021] label='DeathsRate'#'ActiveCasesRate' test_labels = test_data.pop(label).values train_data # COMMAND ---------- #train_date duplicate check train_data[train_data.duplicated(['State','Date'])] # COMMAND ---------- #frequency <=3 check df_new= train_data.groupby(['State']).count() freq = df_new[(df_new['Index'] <= 3)] freq # COMMAND ---------- ##2 removed lakshdweep #frequency <=3 check df_new= train_data.groupby(['State']).count() freq = df_new[(df_new['Index'] <= 3)] freq # COMMAND ---------- # DBTITLE 1,Auto ML Run time_series_settings = { "time_column_name": "Date", "grain_column_names": ["State"], "max_horizon": 2, "target_lags": 2, "target_rolling_window_size": 2, "featurization": "auto", "short_series_handling_configuration":'auto', "freq": 'MS', "short_series_handling_config": "auto" } from azureml.core.workspace import Workspace from azureml.core.experiment import Experiment from azureml.train.automl import AutoMLConfig import logging from azureml.core.compute import ComputeTarget, AmlCompute from azureml.core.compute_target import ComputeTargetException from azureml.core.experiment import Experiment from azureml.core import Workspace from azureml.core.authentication import ServicePrincipalAuthentication from azureml.core.dataset import Dataset from azureml.widgets import RunDetails from azureml.core import Dataset, Datastore from azureml.data.datapath import DataPath from sklearn.metrics import confusion_matrix from sklearn.metrics import accuracy_score from sklearn.metrics import classification_report import os import warnings from sklearn.metrics import mean_squared_error from math import sqrt warnings.filterwarnings('ignore') automl_config = AutoMLConfig(task='forecasting', primary_metric='normalized_root_mean_squared_error', iterations= 1, experiment_timeout_minutes=15, enable_early_stopping=True, n_cross_validations=2, training_data=train_data, label_column_name=label, enable_ensembling=False, verbosity=logging.INFO, **time_series_settings) ws = Workspace(subscription_id = '<subscription_id>', resource_group = '<resource_group>', workspace_name = '<workspace_name>') #ws = Workspace.from_config() # Verify that cluster does not exist already compute_config = AmlCompute.provisioning_configuration(vm_size='STANDARD_D12_V2', max_nodes=100) compute_target = ComputeTarget.create(ws, amlcompute_cluster_name, compute_config) compute_target.wait_for_completion(show_output=True) datastore = ws.get_default_datastore() train_dataset = Dataset.Tabular.register_pandas_dataframe(train_data,datastore,'Covid') test_dataset = Dataset.Tabular.register_pandas_dataframe(test_data,datastore,'Covid') experiment = Experiment(ws, "TS_forecasting") remote_run = experiment.submit(automl_config, show_output=True) remote_run.wait_for_completion() best_run, fitted_model = remote_run.get_output() # COMMAND ---------- # DBTITLE 1,Forecasting for Test set y_predictions, X_trans = fitted_model.forecast(test_data) y_predictions # COMMAND ---------- # DBTITLE 1,Data Actuals v/s Predicted result = test_data y_predictions, X_trans = fitted_model.forecast(test_data) result['Values_pred']=y_predictions result['Values_actual']=test_labels result['Error']=result['Values_actual']-result['Values_pred'] result['Percentage_change'] = ((result['Values_actual']-result['Values_pred']) / result['Values_actual'] )* 100 result=result.reset_index(drop=True) result # COMMAND ---------- # DBTITLE 1,Accuracy Calculation y_actual = test_labels sum_actuals = sum_errors = 0 for actual_val, predict_val in zip(y_actual, y_predictions): abs_error = actual_val - predict_val if abs_error < 0: abs_error = abs_error * -1 sum_errors = sum_errors + abs_error sum_actuals = sum_actuals + actual_val mean_abs_percent_error = sum_errors / sum_actuals Accuracy_score = 1 - mean_abs_percent_error print(Accuracy_score)
[ 2, 16092, 397, 23706, 20922, 2723, 198, 2, 28263, 2149, 4064, 9132, 198, 2, 28263, 2149, 12429, 4805, 9864, 2538, 44, 15486, 12529, 1174, 198, 2, 28263, 2149, 1279, 1671, 15913, 47, 17407, 262, 14199, 39751, 312, 2663, 286, 33448, 6906, 319, 12131, 1181, 3083, 1366, 287, 3794, 13, 220, 198, 2, 28263, 2149, 1279, 1671, 15913, 3855, 27565, 1366, 422, 8090, 12, 3740, 1378, 2503, 13, 74, 9460, 293, 13, 785, 14, 283, 270, 2596, 26800, 1954, 14, 66, 709, 312, 12, 1129, 12, 20930, 12, 392, 12, 28764, 2867, 14, 7890, 198, 2, 28263, 2149, 1279, 1671, 15913, 198, 2, 28263, 2149, 1279, 1671, 15913, 1174, 25154, 5883, 45, 5550, 20032, 17941, 1174, 198, 2, 28263, 2149, 1279, 1671, 15913, 10430, 25, 8841, 198, 2, 28263, 2149, 1279, 1671, 15913, 7575, 25, 8841, 198, 2, 28263, 2149, 1279, 1671, 15913, 9012, 14, 38176, 15156, 799, 652, 25, 8841, 198, 2, 28263, 2149, 1279, 1671, 15913, 18546, 15491, 30821, 16186, 25, 8841, 198, 2, 28263, 2149, 1279, 1671, 15913, 18546, 15491, 33616, 16186, 25, 8841, 198, 2, 28263, 2149, 1279, 1671, 15913, 34, 1522, 25, 41433, 198, 2, 28263, 2149, 1279, 1671, 15913, 20148, 82, 25, 41433, 198, 2, 28263, 2149, 1279, 1671, 15913, 18546, 15491, 25, 41433, 198, 2, 28263, 2149, 220, 198, 2, 28263, 2149, 1279, 1671, 15913, 1174, 30516, 3705, 3268, 337, 16820, 3069, 2751, 1174, 198, 2, 28263, 2149, 1279, 1671, 15913, 16, 13, 6601, 24939, 5612, 198, 2, 28263, 2149, 1279, 1671, 15913, 17, 13, 6601, 4547, 198, 2, 28263, 2149, 1279, 1671, 15913, 18, 13, 6601, 5874, 5612, 14, 1961, 32, 198, 2, 28263, 2149, 1279, 1671, 15913, 19, 13, 6601, 12724, 14, 45688, 848, 7094, 14, 4906, 19913, 198, 2, 28263, 2149, 1279, 1671, 15913, 20, 13, 16305, 11347, 14, 10690, 9934, 198, 2, 28263, 2149, 1279, 1671, 15913, 21, 13, 2025, 24335, 13326, 198, 2, 28263, 2149, 1279, 1671, 15913, 22, 13, 38816, 6356, 14, 11748, 590, 198, 2, 28263, 2149, 1279, 1671, 15913, 23, 13, 26903, 495, 10373, 9104, 7616, 198, 2, 28263, 2149, 1279, 1671, 15913, 24, 13, 17633, 48907, 341, 198, 2, 28263, 2149, 1279, 1671, 15913, 940, 13, 31709, 41935, 198, 2, 28263, 2149, 1279, 1671, 15913, 198, 2, 28263, 2149, 1279, 1671, 15913, 198, 2, 28263, 2149, 1279, 1671, 15913, 1174, 15112, 40086, 36924, 8881, 1137, 2751, 1174, 198, 2, 28263, 2149, 1279, 1671, 15913, 16, 13, 3855, 5830, 3965, 11, 3167, 10136, 3965, 11, 14199, 2663, 3965, 422, 7326, 15491, 11, 327, 1522, 11, 5830, 2663, 220, 198, 2, 28263, 2149, 1279, 1671, 15913, 17, 13, 818, 26136, 4558, 19913, 1123, 1448, 1276, 2148, 379, 293, 459, 513, 4818, 499, 1563, 82, 284, 7330, 8373, 11, 4781, 262, 4406, 810, 8373, 27, 28, 18, 329, 262, 4512, 900, 1312, 13, 68, 13, 1366, 422, 262, 614, 12131, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 28263, 2149, 4064, 9132, 198, 2, 28263, 2149, 22492, 17267, 5499, 422, 5599, 5740, 2070, 25, 198, 2, 28263, 2149, 17267, 262, 40480, 290, 20086, 422, 262, 5599, 20922, 284, 307, 973, 287, 262, 24593, 5740, 2070, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 28263, 2149, 4064, 5143, 1220, 14490, 14, 986, 14, 2390, 43, 18254, 6425, 2070, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 28263, 2149, 4064, 9132, 198, 2, 28263, 2149, 22492, 352, 13, 6601, 44564, 198, 2, 28263, 2149, 352, 13, 12832, 421, 10027, 286, 1366, 422, 19395, 1668, 5984, 6561, 3108, 287, 44189, 14, 10044, 21108, 14, 40386, 3503, 5794, 13, 198, 2, 28263, 2149, 1279, 1671, 15913, 17, 13, 11187, 605, 26981, 602, 287, 1366, 13, 220, 198, 2, 28263, 2149, 1279, 1671, 15913, 18, 13, 8291, 15464, 15180, 656, 2672, 4818, 265, 9497, 11, 23202, 284, 19798, 292, 47764, 11, 2774, 271, 1780, 4036, 27039, 11, 493, 375, 25648, 257, 5721, 705, 15732, 6, 284, 8333, 257, 3748, 27421, 284, 1123, 27039, 5752, 523, 326, 428, 460, 76, 307, 973, 284, 19818, 736, 262, 2656, 1296, 706, 597, 1366, 582, 929, 5768, 13, 220, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 352, 11, 5569, 6060, 422, 6233, 198, 2, 28263, 2149, 4064, 1416, 6081, 198, 2, 28263, 2149, 3373, 27, 29904, 3268, 30076, 45811, 34219, 29463, 10917, 2767, 6375, 44189, 29, 198, 2, 28263, 2149, 220, 198, 2, 28263, 2149, 1188, 2393, 6978, 16, 28, 366, 324, 75, 1378, 27, 7120, 5984, 6561, 1438, 28401, 1031, 1522, 10254, 461, 395, 382, 13, 3262, 14, 30782, 14, 5805, 12, 47, 34382, 14, 66, 709, 312, 62, 1129, 62, 521, 544, 13, 40664, 1, 198, 2, 28263, 2149, 1401, 47764, 16, 28, 2777, 668, 13, 961, 13, 18982, 7203, 785, 13, 19608, 397, 23706, 13, 2777, 668, 13, 40664, 11074, 18076, 7203, 259, 2232, 27054, 2611, 1600, 366, 7942, 11074, 18076, 7203, 25677, 1600, 366, 7942, 11074, 18076, 7203, 12381, 320, 2676, 1600, 366, 553, 737, 2220, 7, 7753, 6978, 16, 8, 198, 2, 28263, 2149, 47764, 16, 13, 17953, 5574, 3041, 5372, 30782, 7680, 7203, 34, 709, 312, 21569, 4943, 198, 2, 28263, 2149, 220, 198, 2, 28263, 2149, 220, 198, 2, 28263, 2149, 220, 198, 2, 28263, 2149, 1188, 2393, 6978, 17, 28, 366, 324, 75, 1378, 27, 7120, 5984, 6561, 1438, 28401, 1031, 1522, 10254, 461, 395, 382, 13, 3262, 14, 30782, 14, 5805, 12, 47, 34382, 14, 66, 709, 312, 62, 37839, 500, 62, 5219, 3083, 13, 40664, 1, 198, 2, 28263, 2149, 1401, 47764, 17, 28, 2777, 668, 13, 961, 13, 18982, 7203, 785, 13, 19608, 397, 23706, 13, 2777, 668, 13, 40664, 11074, 18076, 7203, 259, 2232, 27054, 2611, 1600, 366, 7942, 11074, 18076, 7203, 25677, 1600, 366, 7942, 11074, 18076, 7203, 12381, 320, 2676, 1600, 366, 553, 737, 2220, 7, 7753, 6978, 17, 8, 198, 2, 28263, 2149, 47764, 17, 13, 17953, 5574, 3041, 5372, 30782, 7680, 7203, 53, 4134, 500, 4943, 198, 2, 28263, 2149, 220, 198, 2, 28263, 2149, 1188, 2393, 6978, 18, 28, 366, 324, 75, 1378, 27, 7120, 5984, 6561, 1438, 28401, 1031, 1522, 10254, 461, 395, 382, 13, 3262, 14, 30782, 14, 5805, 12, 47, 34382, 14, 9012, 3083, 44154, 24259, 13, 40664, 1, 198, 2, 28263, 2149, 1401, 47764, 18, 28, 2777, 668, 13, 961, 13, 18982, 7203, 785, 13, 19608, 397, 23706, 13, 2777, 668, 13, 40664, 11074, 18076, 7203, 259, 2232, 27054, 2611, 1600, 366, 7942, 11074, 18076, 7203, 25677, 1600, 366, 7942, 11074, 18076, 7203, 12381, 320, 2676, 1600, 366, 553, 737, 2220, 7, 7753, 6978, 18, 8, 198, 2, 28263, 2149, 47764, 18, 13, 17953, 5574, 3041, 5372, 30782, 7680, 7203, 44154, 4943, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 28263, 2149, 4064, 25410, 198, 2, 28263, 2149, 351, 327, 9328, 16, 355, 198, 2, 28263, 2149, 357, 19738, 198, 2, 28263, 2149, 25882, 7, 4475, 62, 18982, 7, 10430, 11, 705, 12038, 12038, 6, 4008, 7054, 16061, 198, 2, 28263, 2149, 837, 22921, 7, 17688, 7, 10430, 4008, 7054, 6280, 198, 2, 28263, 2149, 837, 10943, 34, 1404, 7, 17688, 7, 10430, 828, 29001, 3256, 49, 9947, 7, 10943, 34, 1404, 10786, 405, 3256, 27857, 4221, 7, 10430, 36911, 17, 828, 29001, 41707, 486, 11537, 7054, 7536, 198, 2, 28263, 2149, 837, 63, 9012, 14, 38176, 15156, 799, 652, 63, 355, 1812, 198, 2, 28263, 2149, 837, 50, 5883, 7, 34, 1522, 8, 355, 327, 1522, 198, 2, 28263, 2149, 837, 50, 5883, 7, 20148, 82, 8, 355, 37044, 198, 2, 28263, 2149, 837, 50, 5883, 7, 18546, 15491, 8, 355, 7326, 15491, 198, 2, 28263, 2149, 837, 19510, 50, 5883, 7, 18546, 15491, 13219, 50, 5883, 7, 20148, 82, 13219, 50, 5883, 7, 34, 1522, 4008, 14, 50, 5883, 7, 18546, 15491, 8, 1635, 1802, 8, 355, 14199, 34, 1386, 32184, 198, 2, 28263, 2149, 837, 7, 50, 5883, 7, 34, 1522, 20679, 50, 5883, 7, 18546, 15491, 8, 1635, 1802, 8, 7054, 3167, 10136, 32184, 198, 2, 28263, 2149, 837, 7, 50, 5883, 7, 20148, 82, 20679, 50, 5883, 7, 18546, 15491, 8, 1635, 1802, 8, 355, 37044, 32184, 198, 2, 28263, 2149, 422, 39751, 312, 21569, 327, 198, 2, 28263, 2149, 1448, 416, 220, 198, 2, 28263, 2149, 39962, 1404, 7, 17688, 7, 10430, 828, 29001, 3256, 49, 9947, 7, 10943, 34, 1404, 10786, 405, 3256, 27857, 4221, 7, 10430, 36911, 17, 828, 29001, 41707, 486, 11537, 198, 2, 28263, 2149, 837, 63, 9012, 14, 38176, 15156, 799, 652, 63, 198, 2, 28263, 2149, 1267, 198, 2, 28263, 2149, 220, 198, 2, 28263, 2149, 1377, 19738, 7310, 1181, 422, 327, 9328, 16, 1448, 416, 1812, 1719, 954, 7, 28104, 27, 28, 18, 198, 2, 28263, 2149, 2922, 1635, 422, 327, 9328, 16, 810, 1812, 407, 287, 357, 19738, 7310, 1181, 422, 327, 9328, 16, 1448, 416, 1812, 1719, 954, 7, 28104, 27, 28, 18, 8, 198, 2, 28263, 2149, 290, 6280, 28, 1238, 2481, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 352, 11, 11187, 605, 13389, 286, 1366, 198, 7568, 28, 9009, 13, 25410, 7203, 15931, 198, 4480, 327, 9328, 16, 355, 198, 7, 19738, 198, 22921, 7, 4475, 62, 18982, 7, 10430, 11, 705, 12038, 12038, 6, 4008, 7054, 16061, 198, 11, 22921, 7, 17688, 7, 10430, 4008, 7054, 6280, 198, 11, 10943, 34, 1404, 7, 17688, 7, 10430, 828, 29001, 3256, 49, 9947, 7, 10943, 34, 1404, 10786, 405, 3256, 27857, 4221, 7, 10430, 36911, 17, 828, 29001, 41707, 486, 11537, 7054, 7536, 198, 11, 63, 9012, 14, 38176, 15156, 799, 652, 63, 355, 1812, 198, 11, 50, 5883, 7, 34, 1522, 8, 355, 327, 1522, 198, 11, 50, 5883, 7, 20148, 82, 8, 355, 37044, 198, 11, 50, 5883, 7, 18546, 15491, 8, 355, 7326, 15491, 198, 11, 19510, 50, 5883, 7, 18546, 15491, 13219, 50, 5883, 7, 20148, 82, 13219, 50, 5883, 7, 34, 1522, 4008, 14, 50, 5883, 7, 18546, 15491, 8, 1635, 1802, 8, 355, 14199, 34, 1386, 32184, 198, 11, 7, 50, 5883, 7, 34, 1522, 20679, 50, 5883, 7, 18546, 15491, 8, 1635, 1802, 8, 7054, 3167, 10136, 32184, 198, 11, 7, 50, 5883, 7, 20148, 82, 20679, 50, 5883, 7, 18546, 15491, 8, 1635, 1802, 8, 355, 37044, 32184, 198, 6738, 39751, 312, 21569, 327, 198, 8094, 416, 220, 198, 10943, 34, 1404, 7, 17688, 7, 10430, 828, 29001, 3256, 49, 9947, 7, 10943, 34, 1404, 10786, 405, 3256, 27857, 4221, 7, 10430, 36911, 17, 828, 29001, 41707, 486, 11537, 198, 11, 63, 9012, 14, 38176, 15156, 799, 652, 63, 198, 8, 198, 198, 19738, 1635, 422, 327, 9328, 16, 220, 198, 3003, 1812, 407, 588, 705, 43, 461, 1477, 324, 732, 538, 6, 290, 1377, 20535, 31902, 329, 4512, 355, 691, 530, 1227, 875, 287, 12131, 4512, 198, 9012, 407, 287, 357, 19738, 7310, 1181, 422, 327, 9328, 16, 1448, 416, 1812, 1719, 954, 7, 28104, 27, 28, 18, 8, 1377, 9319, 8373, 329, 4512, 355, 379, 293, 459, 1115, 1933, 2672, 13538, 4943, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 352, 11, 6601, 15180, 290, 13204, 13389, 198, 11748, 19798, 292, 355, 279, 67, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 279, 893, 20928, 13, 25410, 13, 12543, 2733, 1330, 951, 198, 2235, 7568, 13, 19738, 46491, 7, 4033, 7, 66, 737, 2701, 7203, 22468, 11074, 26011, 7, 66, 8, 329, 269, 287, 47764, 13, 28665, 82, 4008, 198, 2, 4033, 82, 28, 7568, 13, 28665, 82, 198, 2, 4033, 82, 13, 28956, 10786, 15732, 11537, 198, 2, 1640, 951, 62, 3672, 287, 951, 82, 25, 198, 2, 220, 220, 220, 47764, 796, 47764, 13, 4480, 39470, 7, 4033, 62, 3672, 11, 951, 7, 4033, 62, 3672, 737, 2701, 10786, 22468, 6, 4008, 198, 2, 1640, 951, 62, 3672, 287, 37250, 15732, 6, 5974, 198, 2, 220, 220, 220, 47764, 796, 47764, 13, 4480, 39470, 7, 4033, 62, 3672, 11, 951, 7, 4033, 62, 3672, 737, 2701, 10786, 5317, 6, 4008, 220, 220, 220, 198, 198, 2, 1279, 29904, 3268, 30076, 20444, 5883, 45, 399, 29559, 13315, 360, 1404, 4792, 47, 1546, 3268, 47203, 9782, 9306, 347, 16696, 2767, 29, 198, 4033, 82, 62, 439, 41888, 198, 6, 31948, 6, 198, 4032, 17688, 6, 198, 4032, 10430, 6, 198, 4032, 9012, 6, 198, 4032, 34, 1522, 6, 198, 4032, 20148, 82, 6, 198, 4032, 18546, 15491, 6, 198, 4032, 13739, 34, 1386, 32184, 6, 198, 4032, 7279, 10136, 32184, 6, 198, 4032, 20148, 82, 32184, 6, 198, 60, 198, 4033, 82, 62, 8841, 41888, 198, 6, 31948, 6, 198, 4032, 17688, 6, 198, 4032, 10430, 6, 198, 4032, 9012, 6, 198, 60, 198, 4033, 82, 62, 600, 41888, 198, 6, 34, 1522, 6, 198, 4032, 20148, 82, 6, 198, 4032, 18546, 15491, 6, 198, 60, 198, 4033, 82, 62, 30388, 28, 21737, 198, 4033, 82, 62, 43879, 41888, 198, 6, 13739, 34, 1386, 32184, 6, 198, 4032, 7279, 10136, 32184, 6, 198, 4032, 20148, 82, 32184, 6, 198, 60, 198, 1640, 951, 62, 3672, 287, 951, 82, 62, 600, 25, 198, 220, 220, 220, 47764, 796, 47764, 13, 4480, 39470, 7, 4033, 62, 3672, 11, 951, 7, 4033, 62, 3672, 737, 2701, 10786, 5317, 6, 4008, 220, 220, 198, 1640, 951, 62, 3672, 287, 951, 82, 62, 43879, 25, 198, 220, 220, 220, 47764, 796, 47764, 13, 4480, 39470, 7, 4033, 62, 3672, 11, 951, 7, 4033, 62, 3672, 737, 2701, 10786, 22468, 6, 4008, 220, 198, 1640, 951, 62, 3672, 287, 951, 82, 62, 30388, 25, 198, 220, 220, 220, 47764, 796, 47764, 13, 4480, 39470, 7, 4033, 62, 3672, 11, 951, 7, 4033, 62, 3672, 737, 2701, 10786, 30388, 6, 4008, 220, 198, 220, 220, 220, 220, 198, 15414, 62, 7890, 14535, 796, 47764, 13, 1462, 47206, 292, 3419, 198, 15414, 62, 7890, 14535, 17816, 15732, 20520, 796, 45941, 13, 283, 858, 7, 11925, 7, 15414, 62, 7890, 14535, 4008, 198, 448, 15908, 796, 31051, 9945, 9501, 14, 8979, 22658, 14, 34, 709, 312, 13, 40664, 6, 198, 15414, 62, 7890, 14535, 13, 1462, 62, 40664, 7, 448, 15908, 11, 6376, 28, 25101, 8, 198, 2, 15414, 62, 7890, 14535, 796, 279, 67, 13, 961, 62, 40664, 7203, 14, 9945, 9501, 14, 8979, 22658, 14, 6601, 14535, 13, 40664, 1600, 13639, 11639, 259, 2232, 11537, 628, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 28263, 2149, 4064, 9132, 198, 2, 28263, 2149, 22492, 362, 13, 6601, 36806, 198, 2, 28263, 2149, 352, 13, 18438, 273, 2870, 6060, 14691, 357, 1961, 32, 13219, 1675, 1833, 262, 4045, 1366, 379, 1021, 11, 11090, 278, 1123, 3895, 14799, 329, 663, 6, 7869, 11, 262, 16096, 290, 987, 7861, 1022, 9633, 11, 1366, 6291, 3503, 13, 220, 198, 2, 28263, 2149, 1279, 1671, 15913, 17, 13, 6601, 4415, 4386, 1345, 1747, 12, 1675, 39552, 262, 327, 2397, 12409, 290, 399, 6975, 605, 15180, 13869, 329, 597, 5182, 287, 1366, 11, 10690, 1108, 287, 1366, 3503, 13, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 352, 11, 1961, 32, 198, 15414, 62, 7890, 14535, 796, 279, 67, 13, 961, 62, 40664, 7203, 14, 9945, 9501, 14, 8979, 22658, 14, 34, 709, 312, 13, 40664, 1600, 13639, 11639, 259, 2232, 11537, 198, 198, 79, 28, 6601, 62, 15404, 4386, 62, 8869, 47206, 292, 15404, 4386, 7, 15414, 62, 7890, 14535, 4032, 15633, 36, 5219, 41707, 1961, 32, 11537, 198, 13812, 28656, 7, 79, 8, 628, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 352, 11, 6601, 4415, 4386, 1345, 1747, 198, 15414, 62, 7890, 14535, 796, 279, 67, 13, 961, 62, 40664, 7203, 14, 9945, 9501, 14, 8979, 22658, 14, 34, 709, 312, 13, 40664, 1600, 13639, 11639, 259, 2232, 11537, 198, 198, 2, 12982, 23412, 82, 198, 4033, 82, 62, 439, 41888, 198, 6, 31948, 6, 198, 4032, 17688, 6, 198, 4032, 10430, 6, 198, 4032, 9012, 6, 198, 4032, 34, 1522, 6, 198, 4032, 20148, 82, 6, 198, 4032, 18546, 15491, 6, 198, 4032, 13739, 34, 1386, 32184, 6, 198, 4032, 7279, 10136, 32184, 6, 198, 4032, 20148, 82, 32184, 6, 198, 60, 198, 34, 2397, 12409, 62, 4033, 82, 28, 17816, 31948, 6, 198, 4032, 17688, 6, 198, 4032, 10430, 6, 198, 4032, 9012, 6, 198, 60, 198, 45, 39223, 62, 4033, 82, 28, 17816, 34, 1522, 6, 198, 4032, 20148, 82, 6, 198, 4032, 18546, 15491, 6, 198, 4032, 13739, 34, 1386, 32184, 6, 198, 4032, 7279, 10136, 32184, 6, 198, 4032, 20148, 82, 32184, 6, 198, 60, 198, 33986, 62, 4033, 11639, 13739, 34, 1386, 32184, 6, 198, 198, 2, 6601, 62, 15404, 4386, 62, 3646, 1747, 7, 15414, 62, 7890, 14535, 11, 34, 2397, 12409, 62, 4033, 82, 11, 45, 39223, 62, 4033, 82, 11, 33986, 62, 4033, 8, 198, 6601, 62, 15404, 4386, 62, 3646, 1747, 7, 15414, 62, 7890, 14535, 11, 34, 2397, 12409, 62, 4033, 82, 11, 45, 39223, 62, 4033, 82, 11, 33986, 62, 4033, 8, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 28263, 2149, 4064, 9132, 198, 2, 28263, 2149, 22492, 604, 13, 34, 11861, 278, 198, 2, 28263, 2149, 1675, 3424, 262, 1366, 422, 15697, 3815, 11, 4259, 13204, 8563, 287, 15180, 11, 4268, 6565, 15180, 11, 37773, 262, 4253, 12409, 3815, 11, 3487, 786, 262, 1366, 284, 2222, 284, 262, 976, 5046, 13, 775, 635, 2198, 262, 6060, 27484, 2884, 2744, 49501, 4894, 8899, 286, 2656, 5128, 27039, 410, 14, 82, 262, 3779, 504, 276, 27039, 284, 26571, 1771, 393, 407, 262, 38226, 42629, 262, 2656, 1366, 5182, 14, 43337, 13, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 352, 11, 27722, 3779, 504, 263, 220, 198, 7266, 39873, 62, 20311, 796, 279, 67, 13, 961, 62, 40664, 7203, 14, 9945, 9501, 14, 8979, 22658, 14, 34, 709, 312, 13, 40664, 1600, 13639, 11639, 259, 2232, 11537, 198, 2, 7266, 39873, 62, 20311, 28, 7266, 39873, 62, 20311, 13, 14781, 7, 17816, 15732, 6, 4357, 16488, 796, 352, 8, 1303, 12901, 318, 4511, 25364, 5721, 12891, 1464, 848, 1863, 4217, 475, 468, 645, 1597, 1988, 13, 921, 460, 24443, 15180, 284, 307, 5710, 416, 534, 3572, 994, 287, 262, 1351, 198, 198, 15414, 7568, 62, 3605, 28, 2306, 375, 265, 6008, 272, 263, 7, 7266, 39873, 62, 20311, 553, 14, 9945, 9501, 14, 8979, 22658, 14, 34, 709, 312, 13, 40664, 2430, 34, 709, 312, 2430, 6601, 3779, 504, 263, 4943, 198, 4798, 7203, 14957, 15274, 287, 262, 649, 19798, 292, 1366, 14535, 25, 1600, 11925, 7, 15414, 7568, 62, 3605, 13, 9630, 4008, 198, 198, 2, 19276, 396, 20658, 276, 1366, 5621, 220, 198, 7753, 6978, 16, 796, 31051, 9945, 9501, 14, 8979, 22658, 14, 34, 11861, 276, 62, 34, 709, 312, 13, 40664, 6, 198, 15414, 7568, 62, 3605, 13, 1462, 62, 40664, 7, 7753, 6978, 16, 11, 6376, 28, 25101, 8, 628, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 352, 11, 6601, 31582, 7, 39596, 8899, 16096, 13219, 11787, 5128, 1366, 14535, 198, 7266, 39873, 62, 20311, 796, 279, 67, 13, 961, 62, 40664, 7203, 14, 9945, 9501, 14, 8979, 22658, 14, 34, 709, 312, 13, 40664, 1600, 13639, 11639, 259, 2232, 11537, 198, 198, 13812, 7, 6601, 62, 15404, 4386, 62, 18467, 7, 7266, 39873, 62, 20311, 4008, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 352, 11, 6601, 31582, 7, 39596, 8899, 16096, 13219, 3779, 504, 276, 1366, 14535, 198, 34, 11861, 276, 28, 30094, 13, 961, 62, 40664, 7203, 14, 9945, 9501, 14, 8979, 22658, 14, 34, 11861, 276, 62, 34, 709, 312, 13, 40664, 1600, 13639, 11639, 259, 2232, 11537, 198, 198, 13812, 7, 6601, 62, 15404, 4386, 62, 18467, 7, 34, 11861, 276, 4008, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 28263, 2149, 4064, 9132, 198, 2, 28263, 2149, 22492, 642, 13, 2025, 24335, 46254, 198, 2, 28263, 2149, 40806, 378, 1366, 625, 2972, 1052, 24335, 12, 15255, 3213, 7605, 290, 8636, 262, 1271, 286, 554, 75, 3183, 290, 3806, 75, 3183, 329, 1123, 13, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 11748, 19798, 292, 355, 279, 67, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 629, 541, 88, 1330, 9756, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 4, 6759, 29487, 8019, 26098, 198, 11748, 2603, 29487, 8019, 13, 10331, 62, 37153, 198, 6738, 12972, 375, 13, 27530, 13, 397, 375, 1330, 9564, 3727, 198, 6738, 12972, 375, 13, 27530, 13, 15418, 77, 1330, 509, 6144, 198, 6738, 12972, 375, 13, 26791, 13, 7890, 1330, 7716, 62, 7890, 11, 651, 62, 448, 75, 3183, 62, 259, 75, 3183, 198, 6738, 12972, 375, 13, 27530, 13, 66, 2436, 1659, 1330, 327, 9148, 19238, 198, 2, 6738, 12972, 375, 13, 27530, 13, 30053, 62, 65, 16406, 1330, 27018, 33, 16406, 198, 6738, 12972, 375, 13, 27530, 13, 71, 39565, 1330, 25997, 2640, 198, 6738, 12972, 375, 13, 27530, 13, 361, 26522, 1330, 314, 34605, 198, 6738, 12972, 375, 13, 27530, 13, 75, 1659, 1330, 17579, 37, 198, 6738, 1341, 35720, 13, 3866, 36948, 1330, 1855, 11518, 3351, 36213, 198, 11748, 14601, 198, 6738, 33245, 1330, 2750, 4879, 9399, 198, 6738, 279, 893, 20928, 13, 25410, 13, 12543, 2733, 1330, 2779, 2414, 198, 6738, 279, 893, 20928, 13, 25410, 13, 12543, 2733, 1330, 555, 8692, 2414, 198, 40539, 654, 13, 24455, 40539, 654, 7203, 46430, 4943, 198, 448, 75, 3183, 62, 69, 7861, 796, 657, 13, 2713, 198, 2, 7568, 796, 279, 67, 13, 961, 62, 40664, 7203, 14, 74, 9460, 293, 14, 15414, 14, 4803, 12, 1050, 1063, 12, 32225, 2903, 12, 2301, 2234, 12, 23873, 6368, 14, 27432, 13, 40664, 4943, 198, 2, 16793, 62, 45286, 796, 705, 50, 1000, 18124, 6, 198, 2, 25641, 2977, 62, 1462, 62, 38200, 2736, 796, 705, 16, 301, 7414, 81, 20802, 6, 198, 22915, 62, 6978, 796, 31051, 9945, 9501, 14, 8979, 22658, 14, 2025, 24335, 11242, 3213, 62, 28656, 6, 198, 2, 7568, 13, 29487, 13, 1416, 1436, 10786, 16, 301, 7414, 81, 20802, 41707, 50, 1000, 18124, 11537, 628, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 657, 11, 2025, 24335, 46254, 198, 2, 48593, 262, 1052, 321, 3366, 46254, 15553, 329, 13720, 41528, 3183, 220, 198, 448, 75, 3183, 62, 69, 7861, 796, 657, 13, 2713, 198, 7568, 796, 30094, 13, 961, 62, 40664, 7203, 14, 9945, 9501, 14, 8979, 22658, 14, 34, 11861, 276, 62, 34, 709, 312, 13, 40664, 1600, 13639, 11639, 259, 2232, 11537, 198, 16793, 62, 45286, 796, 705, 13739, 34, 1386, 32184, 6, 198, 25641, 2977, 62, 1462, 62, 38200, 2736, 11639, 18546, 15491, 6, 198, 198, 2025, 24335, 11242, 3213, 7, 7568, 11, 16793, 62, 45286, 11, 25641, 2977, 62, 1462, 62, 38200, 2736, 11, 448, 75, 3183, 62, 69, 7861, 4032, 272, 24335, 62, 9288, 41707, 9288, 11537, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 28263, 2149, 4064, 9132, 198, 2, 28263, 2149, 22492, 718, 13, 38816, 29538, 198, 2, 28263, 2149, 35006, 3895, 6356, 319, 262, 4308, 286, 27018, 17267, 590, 12759, 11, 16096, 3815, 11, 24198, 1626, 262, 5721, 13, 198, 2, 28263, 2149, 17489, 3033, 351, 3334, 17267, 590, 1988, 4776, 11, 4268, 530, 286, 262, 734, 4047, 23551, 3033, 11, 4268, 3033, 543, 2897, 6632, 25364, 284, 1366, 290, 4145, 466, 407, 2620, 262, 40709, 286, 27039, 13, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 7568, 796, 30094, 13, 961, 62, 40664, 7203, 14, 9945, 9501, 14, 8979, 22658, 14, 34, 11861, 276, 62, 34, 709, 312, 13, 40664, 1600, 13639, 11639, 259, 2232, 11537, 198, 38816, 4653, 1564, 7, 7568, 4032, 13739, 34, 1386, 32184, 41707, 17875, 5623, 40264, 14, 9945, 9501, 14, 8979, 22658, 14, 34, 11861, 276, 62, 34, 709, 312, 13, 40664, 1600, 6, 34, 709, 312, 41707, 38816, 4653, 1564, 11537, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 35560, 495, 4029, 12, 27432, 12, 2306, 296, 75, 12, 43282, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 35560, 495, 4029, 12, 2306, 296, 75, 12, 43282, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 35560, 495, 4029, 12, 28029, 11407, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 35560, 495, 4029, 12, 21282, 74, 58, 2306, 296, 75, 60, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 20966, 88, 28029, 11407, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 19798, 292, 12, 5577, 4386, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 12972, 375, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 35560, 495, 4029, 12, 21282, 74, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 35560, 495, 4029, 12, 20676, 391, 12, 19849, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 545, 27753, 12, 35720, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 12972, 375, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 1341, 30053, 12, 354, 46629, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 374, 1872, 28029, 11407, 220, 198, 2, 28263, 2149, 220, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 7422, 17983, 13, 88, 43695, 855, 15, 13, 1433, 13, 940, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 35560, 495, 12, 7295, 855, 16, 13, 23, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 7649, 330, 12, 283, 487, 855, 17, 13, 19, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 13845, 282, 855, 16, 13, 19, 13, 18, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 13845, 2118, 855, 15, 13, 21, 13, 1507, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 7422, 17983, 13, 88, 43695, 13, 565, 571, 855, 15, 13, 17, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 256, 80, 36020, 855, 19, 13, 2920, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 1976, 3974, 855, 18, 13, 17, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 6179, 12, 28158, 855, 15, 13, 1314, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 35560, 495, 12, 738, 414, 855, 16, 13, 19, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 16605, 3262, 7295, 17, 855, 17, 13, 16, 13, 1433, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 474, 259, 6592, 17, 855, 17, 13, 1157, 13, 17, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 35560, 495, 12, 7295, 855, 16, 13, 1314, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 35560, 495, 12, 11296, 16762, 12, 34924, 2301, 4592, 855, 23, 13, 15, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 35560, 495, 12, 11296, 16762, 12, 7295, 855, 16, 13, 17, 13, 17, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 1233, 305, 855, 16, 13, 20, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 23645, 12, 15042, 12, 7295, 855, 16, 13, 1270, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 23645, 12, 18439, 855, 16, 13, 2624, 13, 16, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 1330, 8019, 12, 38993, 855, 19, 13, 21, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 13845, 282, 855, 16, 13, 1065, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 16846, 855, 1238, 13, 24, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 3108, 16684, 855, 15, 13, 23, 13, 16, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 7007, 855, 17, 13, 1495, 13, 16, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 7422, 17983, 13, 88, 43695, 13, 565, 571, 855, 15, 13, 17, 13, 19, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 256, 80, 36020, 855, 19, 13, 5333, 13, 16, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 1976, 3974, 855, 18, 13, 19, 13, 16, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 629, 541, 88, 855, 16, 13, 20, 13, 17, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 34534, 316, 12, 11265, 7509, 855, 17, 13, 15, 13, 18, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 2639, 5459, 12, 16366, 855, 16, 13, 16, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 629, 1134, 270, 12, 35720, 855, 15, 13, 1828, 13, 16, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 6179, 12, 28158, 855, 15, 13, 1129, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 45898, 855, 18, 13, 19, 13, 22, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 32660, 85, 4029, 578, 855, 15, 13, 2623, 13, 15, 198, 2, 28263, 2149, 4064, 79, 541, 2721, 997, 7012, 855, 15, 13, 4310, 13, 16, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 28263, 2149, 4064, 9132, 198, 2, 28263, 2149, 22492, 767, 13, 27722, 10373, 24593, 532, 706, 662, 36948, 198, 2, 28263, 2149, 24593, 22134, 8295, 10373, 11, 2298, 262, 1266, 2746, 523, 6492, 290, 779, 340, 284, 4331, 262, 6167, 5721, 13, 27131, 378, 262, 14331, 276, 36532, 33222, 39971, 4574, 284, 5735, 41935, 13, 635, 7330, 262, 1366, 736, 287, 2656, 5794, 416, 1262, 262, 3748, 27421, 286, 1123, 5752, 705, 15732, 6, 290, 989, 33520, 410, 14, 82, 14322, 5722, 29201, 82, 13, 775, 635, 2148, 262, 1277, 2792, 284, 262, 35560, 495, 25663, 5660, 329, 262, 1459, 6306, 329, 2985, 284, 1061, 13, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 352, 11, 44077, 12, 14402, 27758, 198, 2235, 7568, 468, 655, 6376, 11, 88, 4036, 11, 331, 11001, 951, 82, 11, 355, 1334, 477, 951, 82, 389, 30240, 706, 17512, 198, 11748, 19798, 292, 355, 279, 67, 198, 7568, 796, 30094, 13, 961, 62, 40664, 7203, 14, 9945, 9501, 14, 8979, 22658, 14, 34, 11861, 276, 62, 34, 709, 312, 13, 40664, 1600, 13639, 11639, 259, 2232, 11537, 198, 1640, 951, 287, 47764, 13, 28665, 82, 25, 198, 220, 611, 951, 407, 287, 14631, 15732, 1, 5974, 220, 198, 220, 220, 220, 47764, 13, 14781, 26933, 4033, 4357, 16488, 28, 16, 11, 287, 5372, 28, 17821, 8, 198, 220, 220, 220, 220, 198, 2, 7890, 14535, 318, 262, 4036, 5128, 27039, 220, 220, 220, 220, 220, 198, 7890, 14535, 796, 279, 67, 13, 961, 62, 40664, 7203, 14, 9945, 9501, 14, 8979, 22658, 14, 34, 709, 312, 13, 40664, 1600, 13639, 11639, 259, 2232, 11537, 198, 198, 2, 13102, 2667, 33520, 23412, 1366, 14535, 351, 3001, 43, 5072, 47764, 1262, 12901, 5721, 198, 7890, 14535, 62, 15643, 796, 279, 67, 13, 647, 469, 7, 9464, 28, 7890, 14535, 11, 826, 28, 7568, 11, 1364, 62, 261, 11639, 15732, 3256, 826, 62, 261, 11639, 15732, 11537, 198, 2, 7890, 14535, 62, 15643, 198, 198, 2, 27432, 12, 9288, 6626, 198, 27432, 62, 7890, 28, 7890, 14535, 62, 15643, 58, 7890, 14535, 62, 15643, 17816, 17688, 20520, 855, 42334, 60, 198, 9288, 62, 7890, 28, 7890, 14535, 62, 15643, 58, 7890, 14535, 62, 15643, 17816, 17688, 20520, 855, 1238, 2481, 60, 198, 18242, 11639, 20148, 82, 32184, 6, 2, 6, 13739, 34, 1386, 32184, 6, 198, 9288, 62, 23912, 1424, 796, 1332, 62, 7890, 13, 12924, 7, 18242, 737, 27160, 198, 27432, 62, 7890, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 27432, 62, 4475, 23418, 2198, 198, 27432, 62, 7890, 58, 27432, 62, 7890, 13, 646, 489, 3474, 7, 17816, 9012, 41707, 10430, 6, 12962, 60, 628, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 35324, 19841, 18, 2198, 198, 7568, 62, 3605, 28, 4512, 62, 7890, 13, 8094, 1525, 7, 17816, 9012, 20520, 737, 9127, 3419, 198, 19503, 80, 796, 47764, 62, 3605, 58, 7, 7568, 62, 3605, 17816, 15732, 20520, 19841, 513, 15437, 198, 19503, 80, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2235, 17, 4615, 300, 461, 1477, 67, 732, 538, 198, 2, 35324, 19841, 18, 2198, 198, 7568, 62, 3605, 28, 4512, 62, 7890, 13, 8094, 1525, 7, 17816, 9012, 20520, 737, 9127, 3419, 198, 19503, 80, 796, 47764, 62, 3605, 58, 7, 7568, 62, 3605, 17816, 15732, 20520, 19841, 513, 15437, 198, 19503, 80, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 352, 11, 27722, 10373, 5660, 198, 2435, 62, 25076, 62, 33692, 796, 1391, 198, 220, 220, 220, 366, 2435, 62, 28665, 62, 3672, 1298, 366, 10430, 1600, 198, 220, 220, 220, 366, 48270, 62, 28665, 62, 14933, 1298, 14631, 9012, 33116, 198, 220, 220, 220, 366, 9806, 62, 17899, 8637, 1298, 362, 11, 198, 220, 220, 220, 366, 16793, 62, 75, 3775, 1298, 362, 11, 198, 220, 220, 220, 366, 16793, 62, 18886, 62, 17497, 62, 7857, 1298, 362, 11, 198, 220, 220, 220, 366, 5036, 2541, 1634, 1298, 366, 23736, 1600, 198, 220, 220, 220, 366, 19509, 62, 25076, 62, 4993, 1359, 62, 11250, 3924, 1298, 6, 23736, 3256, 198, 220, 220, 220, 366, 19503, 80, 1298, 705, 5653, 3256, 198, 220, 220, 220, 366, 19509, 62, 25076, 62, 4993, 1359, 62, 11250, 1298, 366, 23736, 1, 198, 92, 198, 198, 6738, 35560, 495, 4029, 13, 7295, 13, 5225, 10223, 1330, 10933, 10223, 198, 6738, 35560, 495, 4029, 13, 7295, 13, 23100, 3681, 1330, 29544, 198, 6738, 35560, 495, 4029, 13, 27432, 13, 2306, 296, 75, 1330, 11160, 5805, 16934, 198, 11748, 18931, 198, 6738, 35560, 495, 4029, 13, 7295, 13, 5589, 1133, 1330, 3082, 1133, 21745, 11, 1703, 75, 7293, 1133, 198, 6738, 35560, 495, 4029, 13, 7295, 13, 5589, 1133, 62, 16793, 1330, 3082, 1133, 21745, 16922, 198, 6738, 35560, 495, 4029, 13, 7295, 13, 23100, 3681, 1330, 29544, 198, 6738, 35560, 495, 4029, 13, 7295, 1330, 10933, 10223, 198, 6738, 35560, 495, 4029, 13, 7295, 13, 41299, 3299, 1330, 4809, 42904, 8521, 47649, 3299, 198, 6738, 35560, 495, 4029, 13, 7295, 13, 19608, 292, 316, 1330, 16092, 292, 316, 198, 6738, 35560, 495, 4029, 13, 28029, 11407, 1330, 5660, 24259, 198, 6738, 35560, 495, 4029, 13, 7295, 1330, 16092, 292, 316, 11, 16092, 459, 382, 198, 6738, 35560, 495, 4029, 13, 7890, 13, 19608, 499, 776, 1330, 6060, 15235, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 10802, 62, 6759, 8609, 220, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 9922, 62, 26675, 220, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 17923, 62, 13116, 198, 11748, 28686, 198, 11748, 14601, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 1612, 62, 16485, 1144, 62, 18224, 198, 6738, 10688, 1330, 19862, 17034, 198, 40539, 654, 13, 24455, 40539, 654, 10786, 46430, 11537, 198, 198, 2306, 296, 75, 62, 11250, 796, 11160, 5805, 16934, 7, 35943, 11639, 754, 19913, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4165, 62, 4164, 1173, 11639, 11265, 1143, 62, 15763, 62, 32604, 62, 16485, 1144, 62, 18224, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 34820, 28, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6306, 62, 48678, 62, 1084, 1769, 28, 1314, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7139, 62, 11458, 62, 301, 33307, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 62, 19692, 62, 12102, 602, 28, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3047, 62, 7890, 28, 27432, 62, 7890, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 28665, 62, 3672, 28, 18242, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7139, 62, 1072, 2022, 1359, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15942, 16579, 28, 6404, 2667, 13, 10778, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12429, 2435, 62, 25076, 62, 33692, 8, 628, 198, 18504, 796, 10933, 10223, 7, 7266, 33584, 62, 312, 796, 705, 27, 7266, 33584, 62, 312, 29, 3256, 8271, 62, 8094, 796, 705, 27, 31092, 62, 8094, 29, 3256, 44573, 62, 3672, 796, 705, 27, 5225, 10223, 62, 3672, 29, 11537, 198, 2, 18504, 796, 10933, 10223, 13, 6738, 62, 11250, 3419, 198, 198, 2, 49899, 326, 13946, 857, 407, 2152, 1541, 198, 5589, 1133, 62, 11250, 796, 1703, 75, 7293, 1133, 13, 1676, 10178, 278, 62, 11250, 3924, 7, 14761, 62, 7857, 11639, 2257, 6981, 9795, 62, 35, 1065, 62, 53, 17, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 77, 4147, 28, 3064, 8, 198, 5589, 1133, 62, 16793, 796, 3082, 1133, 21745, 13, 17953, 7, 18504, 11, 716, 75, 5589, 1133, 62, 565, 5819, 62, 3672, 11, 24061, 62, 11250, 8, 198, 5589, 1133, 62, 16793, 13, 17077, 62, 1640, 62, 785, 24547, 7, 12860, 62, 22915, 28, 17821, 8, 198, 220, 220, 198, 19608, 459, 382, 796, 266, 82, 13, 1136, 62, 12286, 62, 19608, 459, 382, 3419, 198, 27432, 62, 19608, 292, 316, 796, 16092, 292, 316, 13, 33349, 934, 13, 30238, 62, 79, 392, 292, 62, 7890, 14535, 7, 27432, 62, 7890, 11, 19608, 459, 382, 4032, 34, 709, 312, 11537, 198, 9288, 62, 19608, 292, 316, 796, 16092, 292, 316, 13, 33349, 934, 13, 30238, 62, 79, 392, 292, 62, 7890, 14535, 7, 9288, 62, 7890, 11, 19608, 459, 382, 4032, 34, 709, 312, 11537, 198, 220, 220, 198, 23100, 3681, 796, 29544, 7, 18504, 11, 366, 4694, 62, 754, 19913, 4943, 198, 47960, 62, 5143, 796, 6306, 13, 46002, 7, 2306, 296, 75, 62, 11250, 11, 905, 62, 22915, 28, 17821, 8, 198, 47960, 62, 5143, 13, 17077, 62, 1640, 62, 785, 24547, 3419, 198, 13466, 62, 5143, 11, 18235, 62, 19849, 796, 6569, 62, 5143, 13, 1136, 62, 22915, 3419, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 352, 11, 16351, 19913, 329, 6208, 900, 198, 88, 62, 28764, 9278, 11, 1395, 62, 7645, 796, 18235, 62, 19849, 13, 754, 2701, 7, 9288, 62, 7890, 8, 198, 88, 62, 28764, 9278, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 352, 11, 6601, 33520, 82, 410, 14, 82, 14322, 5722, 198, 20274, 796, 1332, 62, 7890, 198, 88, 62, 28764, 9278, 11, 1395, 62, 7645, 796, 18235, 62, 19849, 13, 754, 2701, 7, 9288, 62, 7890, 8, 198, 20274, 17816, 40161, 62, 28764, 20520, 28, 88, 62, 28764, 9278, 198, 20274, 17816, 40161, 62, 50039, 20520, 28, 9288, 62, 23912, 1424, 198, 20274, 17816, 12331, 20520, 28, 20274, 17816, 40161, 62, 50039, 20520, 12, 20274, 17816, 40161, 62, 28764, 20520, 198, 20274, 17816, 31905, 496, 62, 3803, 20520, 796, 14808, 20274, 17816, 40161, 62, 50039, 20520, 12, 20274, 17816, 40161, 62, 28764, 6, 12962, 1220, 1255, 17816, 40161, 62, 50039, 20520, 1267, 9, 1802, 198, 20274, 28, 20274, 13, 42503, 62, 9630, 7, 14781, 28, 17821, 8, 198, 20274, 198, 198, 2, 22240, 6981, 24200, 438, 198, 198, 2, 360, 19313, 2043, 2538, 352, 11, 17320, 23843, 2199, 14902, 198, 88, 62, 50039, 796, 1332, 62, 23912, 1424, 198, 16345, 62, 50039, 82, 796, 2160, 62, 48277, 796, 657, 198, 1640, 4036, 62, 2100, 11, 4331, 62, 2100, 287, 19974, 7, 88, 62, 50039, 11, 331, 62, 28764, 9278, 2599, 198, 220, 2352, 62, 18224, 796, 4036, 62, 2100, 532, 4331, 62, 2100, 198, 220, 611, 2352, 62, 18224, 1279, 657, 25, 198, 220, 220, 220, 2352, 62, 18224, 796, 2352, 62, 18224, 1635, 532, 16, 198, 220, 220, 220, 2160, 62, 48277, 796, 2160, 62, 48277, 1343, 2352, 62, 18224, 198, 220, 220, 220, 2160, 62, 50039, 82, 796, 2160, 62, 50039, 82, 1343, 4036, 62, 2100, 198, 198, 32604, 62, 8937, 62, 25067, 62, 18224, 796, 2160, 62, 48277, 1220, 2160, 62, 50039, 82, 198, 17320, 23843, 62, 26675, 796, 352, 532, 1612, 62, 8937, 62, 25067, 62, 18224, 198, 4798, 7, 17320, 23843, 62, 26675, 8, 198 ]
2.714369
6,883
from django.contrib.auth.base_user import BaseUserManager from django.utils.translation import ugettext_lazy as _ from django.db import models from website.utils import log
[ 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 8692, 62, 7220, 1330, 7308, 12982, 13511, 198, 6738, 42625, 14208, 13, 26791, 13, 41519, 1330, 334, 1136, 5239, 62, 75, 12582, 355, 4808, 198, 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 6738, 3052, 13, 26791, 1330, 2604, 628 ]
3.55102
49
# @Author: riener # @Date: 2018-12-19T17:30:53+01:00 # @Filename: gp_plus.py # @Last modified by: riener # @Last modified time: 2019-04-08T10:20:37+02:00 import itertools import sys import numpy as np import lmfit from lmfit import minimize as lmfit_minimize from lmfit import Parameters from gausspyplus.utils.determine_intervals import check_if_intervals_contain_signal from gausspyplus.utils.fit_quality_checks import determine_significance, goodness_of_fit, check_residual_for_normality from gausspyplus.utils.gaussian_functions import combined_gaussian, area_of_gaussian from gausspyplus.utils.noise_estimation import determine_peaks, mask_channels def say(message, verbose=False): """Diagnostic messages.""" if verbose is True: print(message) def split_params(params, ncomps): """Split params into amps, fwhms, offsets.""" amps = params[0:ncomps] fwhms = params[ncomps:2*ncomps] offsets = params[2*ncomps:3*ncomps] return amps, fwhms, offsets def number_of_components(params): """Compute number of Gaussian components.""" return int(len(params) / 3) def gaussian_function(peak, FWHM, mean): """Return a Gaussian function.""" sigma = FWHM / 2.354820045 # (2 * sqrt( 2 * ln(2))) return lambda x: peak * np.exp(-(x - mean)**2 / 2. / sigma**2) def func(x, *args): """Return multi-component Gaussian model F(x). Parameter vector kargs = [amp1, ..., ampN, width1, ..., widthN, mean1, ..., meanN], and therefore has len(args) = 3 x N_components. """ ncomps = number_of_components(args) yout = x * 0. for i in range(ncomps): yout = yout + gaussian_function( args[i], args[i+ncomps], args[i+2*ncomps])(x) return yout def vals_vec_from_lmfit(lmfit_params): """Return Python list of parameter values from LMFIT Parameters object.""" if (sys.version_info >= (3, 0)): vals = [value.value for value in list(lmfit_params.values())] else: vals = [value.value for value in lmfit_params.values()] return vals def errs_vec_from_lmfit(lmfit_params): """Return Python list of parameter uncertainties from LMFIT Parameters object.""" if (sys.version_info >= (3, 0)): errs = [value.stderr for value in list(lmfit_params.values())] else: errs = [value.stderr for value in lmfit_params.values()] # TODO: estimate errors via bootstrapping instead of setting them to zero errs = [0 if err is None else err for err in errs] return errs def paramvec_to_lmfit(paramvec, max_amp=None, max_fwhm=None, params_min=None, params_max=None): """Transform a Python iterable of parameters into a LMFIT Parameters object. Parameters ---------- paramvec : list Parameter vector = [amp1, ..., ampN, fwhm1, ..., fwhmN, mean1, ..., meanN]. max_amp : float Enforced maximum value for amplitude parameter. max_fwhm : float Enforced maximum value for FWHM parameter. Use with caution! Can lead to artifacts in the fitting. params_min : list List of minimum limits for parameters: [min_amp1, ..., min_ampN, min_fwhm1, ..., min_fwhmN, min_mean1, ..., min_meanN] params_max : list List of maximum limits for parameters: [max_amp1, ..., max_ampN, max_fwhm1, ..., max_fwhmN, max_mean1, ..., max_meanN] Returns ------- params: lmfit.parameter.Parameters """ ncomps = number_of_components(paramvec) params = Parameters() if params_min is None: params_min = len(paramvec)*[0.] if params_max is None: params_max = len(paramvec)*[None] if max_amp is not None: params_max[0:ncomps] = ncomps*[max_amp] if max_fwhm is not None: params_max[ncomps:2*ncomps] = ncomps*[max_fwhm] for i in range(len(paramvec)): params.add('p{}'.format(str(i + 1)), value=paramvec[i], min=params_min[i], max=params_max[i]) return params def remove_components_from_sublists(lst, remove_indices): """Remove items with indices idx1, ..., idxN from all sublists of a nested list. Parameters ---------- lst : list Nested list [sublist1, ..., sublistN]. remove_indices : list List of indices [idx1, ..., idxN] indicating the items that should be removed from the sublists. Returns ------- lst : list """ for idx, sublst in enumerate(lst): lst[idx] = [val for i, val in enumerate(sublst) if i not in remove_indices] return lst def remove_components_above_max_ncomps(amps_fit, fwhms_fit, ncomps_max, remove_indices, quality_control): """Remove all fit components above specified limit. Parameters ---------- amps_fit : list List containing amplitude values of all N fitted Gaussian components in the form [amp1, ..., ampN]. fwhms_fit : list List containing FWHM values of all N fitted Gaussian components in the form [fwhm1, ..., fwhmN]. ncomps_max : int Specified maximum number of fit components. remove_indices : list Indices of Gaussian components that should be removed from the fit solution. quality_control : list Log containing information about which in-built quality control parameters were not fulfilled (0: 'max_fwhm', 1: 'min_fwhm', 2: 'snr', 3: 'significance', 4: 'channel_range', 5: 'signal_range') Returns ------- remove_indices : list Updated list with indices of Gaussian components that should be removed from the fit solution. quality_control : list Updated log containing information about which in-built quality control parameters were not fulfilled. """ ncomps_fit = len(amps_fit) if ncomps_fit <= ncomps_max: return remove_indices, quality_control integrated_intensities = area_of_gaussian( np.array(amps_fit), np.array(fwhms_fit)) indices = np.array(range(len(integrated_intensities))) sort_indices = np.argsort(integrated_intensities) for index in indices[sort_indices]: if index in remove_indices: continue remove_indices.append(index) quality_control.append(6) remaining_ncomps = ncomps_fit - len(remove_indices) if remaining_ncomps <= ncomps_max: break return remove_indices, quality_control def check_params_fit(vel, data, errors, params_fit, params_errs, dct, quality_control, signal_ranges=None, params_min=None, params_max=None): """Perform quality checks for the fitted Gaussians components. All Gaussian components that are not satisfying the criteria are discarded from the fit. Parameters ---------- vel : numpy.ndarray Velocity channels (unitless). data : numpy.ndarray Original data of spectrum. errors : numpy.ndarray Root-mean-square noise values. params_fit : list Parameter vector in the form of [amp1, ..., ampN, fwhm1, ..., fwhmN, mean1, ..., meanN]. params_errs : list Parameter error vector in the form of [e_amp1, ..., e_ampN, e_fwhm1, ..., e_fwhmN, e_mean1, ..., e_meanN]. dct : dict Dictionary containing parameter settings for the improved fitting. rms : float Root-mean-square noise of the spectrum. signal_ranges : list Nested list containing info about ranges of the spectrum that were estimated to contain signal. The goodness-of-fit calculations are only performed for the spectral channels within these ranges. params_min : list List of minimum limits for parameters: [min_amp1, ..., min_ampN, min_fwhm1, ..., min_fwhmN, min_mean1, ..., min_meanN] params_max : list List of maximum limits for parameters: [max_amp1, ..., max_ampN, max_fwhm1, ..., max_fwhmN, max_mean1, ..., max_meanN] quality_control : list Log containing information about which in-built quality control parameters were not fulfilled (0: 'max_fwhm', 1: 'min_fwhm', 2: 'snr', 3: 'significance', 4: 'channel_range', 5: 'signal_range') Returns ------- params_fit : list Corrected version from which all Gaussian components that did not satisfy the quality criteria are removed. params_err : list Corrected version from which all Gaussian components that did not satisfy the quality criteria are removed. ncomps_fit : int Number of remaining fitted Gaussian components. params_min : list Corrected version from which all Gaussian components that did not satisfy the quality criteria are removed. params_max : list Corrected version from which all Gaussian components that did not satisfy the quality criteria are removed. quality_control : list Updated log containing information about which in-built quality control parameters were not fulfilled. refit : bool If 'True', the spectrum was refit because one or more of the Gaussian fit parameters did not satisfy the quality control parameters. """ ncomps_fit = number_of_components(params_fit) amps_fit, fwhms_fit, offsets_fit = split_params(params_fit, ncomps_fit) amps_errs, fwhms_errs, offsets_errs = split_params(params_errs, ncomps_fit) if params_min is not None: amps_min, fwhms_min, offsets_min = split_params(params_min, ncomps_fit) if params_max is not None: amps_max, fwhms_max, offsets_max = split_params(params_max, ncomps_fit) rms = errors[0] # check if Gaussian components satisfy quality criteria remove_indices = [] for i, (amp, fwhm, offset) in enumerate( zip(amps_fit, fwhms_fit, offsets_fit)): if dct['max_fwhm'] is not None: if fwhm > dct['max_fwhm']: remove_indices.append(i) quality_control.append(0) continue if dct['min_fwhm'] is not None: if fwhm < dct['min_fwhm']: remove_indices.append(i) quality_control.append(1) continue # discard the Gaussian component if its amplitude value does not satisfy the required minimum S/N value or is larger than the limit if amp < dct['snr_fit']*rms: remove_indices.append(i) quality_control.append(2) continue # if amp > dct['max_amp']: # remove_indices.append(i) # quality_control.append(3) # continue # discard the Gaussian component if it does not satisfy the significance criterion if determine_significance(amp, fwhm, rms) < dct['significance']: remove_indices.append(i) quality_control.append(3) continue # If the Gaussian component was fit outside the determined signal ranges, we check the significance of signal feature fitted by the Gaussian component. We remove the Gaussian component if the signal feature does not satisfy the significance criterion. if (offset < np.min(vel)) or (offset > np.max(vel)): remove_indices.append(i) quality_control.append(4) continue if signal_ranges: if not any(low <= offset <= upp for low, upp in signal_ranges): low = max(0, int(offset - fwhm)) upp = int(offset + fwhm) + 2 if not check_if_intervals_contain_signal( data, rms, [(low, upp)], snr=dct['snr'], significance=dct['significance']): remove_indices.append(i) quality_control.append(5) continue if dct['max_ncomps'] is not None: remove_indices, quality_control = remove_components_above_max_ncomps( amps_fit, fwhms_fit, dct['max_ncomps'], remove_indices, quality_control) remove_indices = list(set(remove_indices)) refit = False if len(remove_indices) > 0: amps_fit, fwhms_fit, offsets_fit = remove_components_from_sublists( [amps_fit, fwhms_fit, offsets_fit], remove_indices) params_fit = amps_fit + fwhms_fit + offsets_fit amps_errs, fwhms_errs, offsets_errs = remove_components_from_sublists( [amps_errs, fwhms_errs, offsets_errs], remove_indices) params_errs = amps_errs + fwhms_errs + offsets_errs if params_min is not None: amps_min, fwhms_min, offsets_min = remove_components_from_sublists( [amps_min, fwhms_min, offsets_min], remove_indices) params_min = amps_min + fwhms_min + offsets_min if params_max is not None: amps_max, fwhms_max, offsets_max = remove_components_from_sublists( [amps_max, fwhms_max, offsets_max], remove_indices) params_max = amps_max + fwhms_max + offsets_max params_fit, params_errs, ncomps_fit = perform_least_squares_fit( vel, data, errors, params_fit, dct, params_min=params_min, params_max=params_max) refit = True return params_fit, params_errs, ncomps_fit, params_min, params_max, quality_control, refit def check_which_gaussian_contains_feature(idx_low, idx_upp, fwhms_fit, offsets_fit): """Return index of Gaussian component contained within a range in the spectrum. The FWHM interval (mean - FWHM, mean + FWHM ) of the Gaussian component has to be fully contained in the range of the spectrum. If no Gaussians satisfy this criterion 'None' is returned. In case multiple Gaussians satisfy this criterion, the Gaussian with the highest FWHM parameter is selected. Parameters ---------- idx_low : int Index of the first channel of the range in the spectrum. idx_upp : int Index of the last channel of the range in the spectrum. fwhms_fit : list List containing FWHM values of all N fitted Gaussian components in the form [fwhm1, ..., fwhmN]. offsets_fit : list List containing mean position values of all N fitted Gaussian components in the form [mean1, ..., meanN]. Returns ------- index : int or None Index of Gaussian component contained within the spectral range. """ lower = [int(offset - fwhm) for fwhm, offset in zip(fwhms_fit, offsets_fit)] lower = np.array([0 if x < 0 else x for x in lower]) upper = np.array([int(offset + fwhm) + 2 for fwhm, offset in zip(fwhms_fit, offsets_fit)]) indices = np.arange(len(fwhms_fit)) conditions = np.logical_and(lower <= idx_low, upper >= idx_upp) if np.count_nonzero(conditions) == 0: return None elif np.count_nonzero(conditions) == 1: return int(indices[conditions]) else: remaining_indices = indices[conditions] select = np.argmax(np.array(fwhms_fit)[remaining_indices]) return int(remaining_indices[select]) def replace_gaussian_with_two_new_ones(data, vel, rms, snr, significance, params_fit, exclude_idx, offset): """Replace broad Gaussian fit component with initial guesses for two narrower components. Parameters ---------- data : numpy.ndarray Original data of spectrum. vel : numpy.ndarray Velocity channels (unitless). rms : float Root-mean-square noise of the spectrum. snr : float Required minimum signal-to-noise ratio for data peak. significance : float Required minimum value for significance criterion. params_fit : list Parameter vector in the form of [amp1, ..., ampN, fwhm1, ..., fwhmN, mean1, ..., meanN]. exclude_idx : int Index of the broad Gaussian fit component that will be removed from params_fit. offset : type Mean position of the broad Gaussian fit component that will be removed. Returns ------- params_fit : list Updated list from which the parameters of the broad Gaussian fit components were removed and the parameters of the two narrower components were added. """ ncomps_fit = number_of_components(params_fit) amps_fit, fwhms_fit, offsets_fit = split_params(params_fit, ncomps_fit) # TODO: check if this is still necessary? if exclude_idx is None: return params_fit # remove the broad Gaussian component from the fit parameter list and determine new residual idx_low_residual = max(0, int( offsets_fit[exclude_idx] - fwhms_fit[exclude_idx])) idx_upp_residual = int( offsets_fit[exclude_idx] + fwhms_fit[exclude_idx]) + 2 mask = np.arange(len(amps_fit)) == exclude_idx amps_fit = np.array(amps_fit)[~mask] fwhms_fit = np.array(fwhms_fit)[~mask] offsets_fit = np.array(offsets_fit)[~mask] residual = data - combined_gaussian(amps_fit, fwhms_fit, offsets_fit, vel) # search for residual peaks in new residual for low, upp in zip([idx_low_residual, int(offset)], [int(offset), idx_upp_residual]): amp_guess, fwhm_guess, offset_guess = get_initial_guesses( residual[low:upp], rms, snr, significance, peak='positive', maximum=True) if amp_guess.size == 0: continue amps_fit, fwhms_fit, offsets_fit = list(amps_fit), list(fwhms_fit), list(offsets_fit) amps_fit.append(amp_guess) fwhms_fit.append(fwhm_guess) offsets_fit.append(offset_guess + low) params_fit = amps_fit + fwhms_fit + offsets_fit return params_fit def get_initial_guesses(residual, rms, snr, significance, peak='positive', maximum=False, baseline_shift_snr=0): """Get initial guesses of Gaussian fit parameters for residual peaks. Parameters ---------- residual : numpy.ndarray Residual of the spectrum in which we search for unfit peaks. rms : float Root-mean-square noise of the spectrum. snr : float Required minimum signal-to-noise ratio for data peak. significance : float Required minimum value for significance criterion. peak : str ('positive', 'negative') Whether to search for positive (default) or negative peaks in the residual. maximum : bool Default is 'False'. If set to 'True', only the input parameter guesses for a single Gaussian fit component -- the one with the highest guessed amplitude value -- are returned. baseline_shift_snr : float Experimental feature that shifts the baseline of the residual before searching for peaks. Returns ------- amp_guesses : numpy.array or None Initial guesses for amplitude values of Gaussian fit parameters for residual peaks. fwhm_guesses : numpy.array or None Initial guesses for FWHM values of Gaussian fit parameters for residual peaks. offset_guesses : numpy.array or None Initial guesses for mean positions of Gaussian fit parameters for residual peaks. """ # amp_guesses, ranges = determine_peaks( # residual, peak=peak, amp_threshold=snr*rms) amp_guesses, ranges = determine_peaks( residual - baseline_shift_snr*rms, peak=peak, amp_threshold=(snr - baseline_shift_snr)*rms) if amp_guesses.size == 0: return np.array([]), np.array([]), np.array([]) amp_guesses = amp_guesses + baseline_shift_snr*rms sort = np.argsort(ranges[:, 0]) amp_guesses = amp_guesses[sort] ranges = ranges[sort] # determine whether identified residual peaks satisfy the significance criterion for signal peaks keep_indices = np.array([]) significance_vals = np.array([]) for i, (lower, upper) in enumerate(ranges): significance_val = np.sum( np.abs(residual[lower:upper])) / (np.sqrt(upper - lower)*rms) significance_vals = np.append(significance_vals, significance_val) if significance_val > significance: keep_indices = np.append(keep_indices, i) keep_indices = keep_indices.astype('int') amp_guesses = amp_guesses[keep_indices] ranges = ranges[keep_indices] significance_vals = significance_vals[keep_indices] if amp_guesses.size == 0: return np.array([]), np.array([]), np.array([]) amp_guesses_position_mask = np.in1d(residual, amp_guesses) offset_guesses = np.where(amp_guesses_position_mask == True)[0] # we use the determined significance values to get input guesses for the FWHM values fwhm_guesses = (significance_vals*rms / (amp_guesses * 0.75269184778925247))**2 if maximum: idx_max = np.argmax(amp_guesses) amp_guesses = amp_guesses[idx_max] fwhm_guesses = fwhm_guesses[idx_max] offset_guesses = offset_guesses[idx_max] return amp_guesses, fwhm_guesses, offset_guesses def get_fully_blended_gaussians(params_fit, get_count=False, separation_factor=0.8493218002991817): """Return information about blended Gaussian fit components. A Gaussian fit component i is blended with another component if the separation of their mean positions is less than the FWHM value of the narrower component multiplied by the 'separation_factor'. The default value for the separation_factor (0.8493218002991817) is based on the minimum required separation distance to distinguish two identical Gaussian peaks (= 2*std). Parameters ---------- params_fit : list Parameter vector in the form of [amp1, ..., ampN, fwhm1, ..., fwhmN, mean1, ..., meanN]. get_count : bool Default is 'False'. If set to 'True' only the number of blended components is returned. separation_factor : float The required minimum separation between two Gaussian components (mean1, fwhm1) and (mean2, fwhm2) is determined as separation_factor * min(fwhm1, fwhm2). Returns ------- indices_blended : numpy.ndarray Indices of fitted Gaussian components that satisfy the criterion for blendedness, sorted from lowest to highest amplitude values. """ ncomps_fit = number_of_components(params_fit) amps_fit, fwhms_fit, offsets_fit = split_params(params_fit, ncomps_fit) # stddevs_fit = list(np.array(fwhms_fit) / 2.354820045) indices_blended = np.array([]) blended_pairs = [] items = list(range(ncomps_fit)) N_blended = 0 for idx1, idx2 in itertools.combinations(items, 2): min_separation = min( fwhms_fit[idx1], fwhms_fit[idx2]) * separation_factor separation = abs(offsets_fit[idx1] - offsets_fit[idx2]) if separation < min_separation: indices_blended = np.append(indices_blended, np.array([idx1, idx2])) blended_pairs.append([idx1, idx2]) N_blended += 1 if get_count: return N_blended indices_blended = np.unique(indices_blended).astype('int') # sort the identified blended components from lowest to highest amplitude value sort = np.argsort(np.array(amps_fit)[indices_blended]) return indices_blended[sort] def remove_components(params_fit, remove_indices): """Remove parameters of Gaussian fit components. Parameters ---------- params_fit : list Parameter vector in the form of [amp1, ..., ampN, fwhm1, ..., fwhmN, mean1, ..., meanN]. remove_indices : int, list, np.ndarray Indices of Gaussian fit components, whose parameters should be removed from params_fit. Returns ------- params_fit : list Updated list from which the parameters of the selected Gaussian fit components were removed. """ ncomps_fit = number_of_components(params_fit) amps_fit, fwhms_fit, offsets_fit = split_params(params_fit, ncomps_fit) if isinstance(remove_indices, np.ndarray): remove_indices = list(remove_indices) elif not isinstance(remove_indices, list): remove_indices = [remove_indices] amps_fit = list(np.delete(np.array(amps_fit), remove_indices)) fwhms_fit = list(np.delete(np.array(fwhms_fit), remove_indices)) offsets_fit = list(np.delete(np.array(offsets_fit), remove_indices)) params_fit = amps_fit + fwhms_fit + offsets_fit return params_fit def get_best_fit(vel, data, errors, params_fit, dct, first=False, best_fit_list=None, signal_ranges=None, signal_mask=None, force_accept=False, params_min=None, params_max=None, noise_spike_mask=None): """Determine new best fit for spectrum. If this is the first fit iteration for the spectrum a new best fit is assigned and its parameters are returned in best_fit_list. If it is not the first fit iteration, the new fit is compared to the current best fit supplied in best_fit_list. If the new fit is preferred (decided via the AICc criterion), the parameters of the new fit are returned in best_fit_list. Otherwise, the old best_fit_list is returned. Parameters ---------- vel : numpy.ndarray Velocity channels (unitless). data : numpy.ndarray Original data of spectrum. errors : numpy.ndarray Root-mean-square noise values. params_fit : list Parameter vector in the form of [amp1, ..., ampN, fwhm1, ..., fwhmN, mean1, ..., meanN]. dct : dict Dictionary containing parameter settings for the improved fitting. first : bool Default is 'False'. If set to 'True', the new fit will be assigned as best fit and returned in best_fit_list. best_fit_list : list List containing parameters of the current best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] signal_ranges : list Nested list containing info about ranges of the spectrum that were estimated to contain signal. The goodness-of-fit calculations are only performed for the spectral channels within these ranges. signal_mask : numpy.ndarray Boolean array containing the information of signal_ranges. force_accept : bool Experimental feature. Default is 'False'. If set to 'True', the new fit will be forced to become the best fit. params_min : list List of minimum limits for parameters: [min_amp1, ..., min_ampN, min_fwhm1, ..., min_fwhmN, min_mean1, ..., min_meanN] params_max : list List of maximum limits for parameters: [max_amp1, ..., max_ampN, max_fwhm1, ..., max_fwhmN, max_mean1, ..., max_meanN] Returns ------- best_fit_list : list List containing parameters of the chosen best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] """ if not first: best_fit_list[7] = False quality_control = best_fit_list[11] else: quality_control = [] ncomps_fit = number_of_components(params_fit) params_fit, params_errs, ncomps_fit = perform_least_squares_fit( vel, data, errors, params_fit, dct, params_min=params_min, params_max=params_max) # check if fit components satisfy mandatory criteria if ncomps_fit > 0: refit = True while refit: params_fit, params_errs, ncomps_fit, params_min, params_max, quality_control, refit = check_params_fit( vel, data, errors, params_fit, params_errs, dct, quality_control, signal_ranges=signal_ranges) best_fit = func(vel, *params_fit).ravel() else: best_fit = data * 0 rchi2, aicc = goodness_of_fit( data, best_fit, errors, ncomps_fit, mask=signal_mask, get_aicc=True) residual = data - best_fit pvalue = check_residual_for_normality(residual, errors, mask=signal_mask, noise_spike_mask=noise_spike_mask) # return the list of best fit results if there was no old list of best fit results for comparison if first: new_fit = True return [params_fit, params_errs, ncomps_fit, best_fit, residual, rchi2, aicc, new_fit, params_min, params_max, pvalue, quality_control] # return new best_fit_list if the AICc value is smaller aicc_old = best_fit_list[6] if ((aicc < aicc_old) and not np.isclose(aicc, aicc_old, atol=1e-1)) or force_accept: new_fit = True return [params_fit, params_errs, ncomps_fit, best_fit, residual, rchi2, aicc, new_fit, params_min, params_max, pvalue, quality_control] # return old best_fit_list if the aicc value is higher best_fit_list[7] = False return best_fit_list def check_for_negative_residual(vel, data, errors, best_fit_list, dct, signal_ranges=None, signal_mask=None, force_accept=False, get_count=False, get_idx=False, noise_spike_mask=None): """Check for negative residual features and try to refit them. We define negative residual features as negative peaks in the residual that were introduced by the fit. These negative peaks have to have a minimum negative signal-to-noise ratio of dct['snr_negative']. In case of a negative residual feature, we try to replace the Gaussian fit component that is causing the feature with two narrower components. We only accept this solution if it yields a better fit as determined by the AICc value. Parameters ---------- vel : numpy.ndarray Velocity channels (unitless). data : numpy.ndarray Original data of spectrum. errors : numpy.ndarray Root-mean-square noise values. best_fit_list : list List containing parameters of the current best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] dct : dict Dictionary containing parameter settings for the improved fitting. signal_ranges : list Nested list containing info about ranges of the spectrum that were estimated to contain signal. The goodness-of-fit calculations are only performed for the spectral channels within these ranges. signal_mask : numpy.ndarray Boolean array containing the information of signal_ranges. force_accept : bool Experimental feature. Default is 'False'. If set to 'True', the new fit will be forced to become the best fit. get_count : bool Default is 'False'. If set to 'True', only the number of occurring negative residual features will be returned. get_idx : bool Default is 'False'. If set to 'True', the index of the Gaussian fit component causing the negative residual feature is returned. In case of multiple negative residual features, only the index of one of them is returned. Returns ------- best_fit_list : list List containing parameters of the chosen best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] """ params_fit = best_fit_list[0] ncomps_fit = best_fit_list[2] # in case a single rms value is given instead of an array if not isinstance(errors, np.ndarray): errors = np.ones(len(data)) * errors if ncomps_fit == 0: if get_count: return 0 return best_fit_list residual = best_fit_list[4] amps_fit, fwhms_fit, offsets_fit = split_params(params_fit, ncomps_fit) amp_guesses, fwhm_guesses, offset_guesses = get_initial_guesses( residual, errors[0], dct['snr_negative'], dct['significance'], peak='negative') # check if negative residual feature was already present in the data remove_indices = [] for i, offset in enumerate(offset_guesses): if residual[offset] > (data[offset] - dct['snr']*errors[0]): remove_indices.append(i) if len(remove_indices) > 0: amp_guesses, fwhm_guesses, offset_guesses = remove_components_from_sublists( [amp_guesses, fwhm_guesses, offset_guesses], remove_indices) if get_count: return (len(amp_guesses)) if len(amp_guesses) == 0: return best_fit_list # in case of multiple negative residual features, sort them in order of increasing amplitude values sort = np.argsort(amp_guesses) amp_guesses = np.array(amp_guesses)[sort] fwhm_guesses = np.array(fwhm_guesses)[sort] offset_guesses = np.array(offset_guesses)[sort] for amp, fwhm, offset in zip(amp_guesses, fwhm_guesses, offset_guesses): idx_low = max(0, int(offset - fwhm)) idx_upp = int(offset + fwhm) + 2 exclude_idx = check_which_gaussian_contains_feature( idx_low, idx_upp, fwhms_fit, offsets_fit) if get_idx: return exclude_idx if exclude_idx is None: continue params_fit = replace_gaussian_with_two_new_ones( data, vel, errors[0], dct['snr'], dct['significance'], params_fit, exclude_idx, offset) best_fit_list = get_best_fit( vel, data, errors, params_fit, dct, first=False, best_fit_list=best_fit_list, signal_ranges=signal_ranges, signal_mask=signal_mask, force_accept=force_accept, noise_spike_mask=noise_spike_mask) params_fit = best_fit_list[0] ncomps_fit = best_fit_list[2] amps_fit, fwhms_fit, offsets_fit = split_params(params_fit, ncomps_fit) return best_fit_list def try_fit_with_new_components(vel, data, errors, best_fit_list, dct, exclude_idx, signal_ranges=None, signal_mask=None, force_accept=False, baseline_shift_snr=0, noise_spike_mask=None): """Exclude Gaussian fit component and try fit with new initial guesses. First we try a new refit by just removing the component (i) and adding no new components. If this does not work we determine guesses for additional fit components from the residual that is produced if the component (i) is discarded and try a new fit. We only accept the new fit solution if it yields a better fit as determined by the AICc value. Parameters ---------- vel : numpy.ndarray Velocity channels (unitless). data : numpy.ndarray Original data of spectrum. errors : numpy.ndarray Root-mean-square noise values. best_fit_list : list List containing parameters of the current best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] dct : dict Dictionary containing parameter settings for the improved fitting. exclude_idx : int Index of Gaussian fit component that will be removed. signal_ranges : list Nested list containing info about ranges of the spectrum that were estimated to contain signal. The goodness-of-fit calculations are only performed for the spectral channels within these ranges. signal_mask : numpy.ndarray Boolean array containing the information of signal_ranges. force_accept : bool Experimental feature. Default is 'False'. If set to 'True', the new fit will be forced to become the best fit. baseline_shift_snr : float Experimental feature that shifts the baseline of the residual before searching for peaks. Returns ------- best_fit_list : list List containing parameters of the chosen best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] """ params_fit = best_fit_list[0] ncomps_fit = best_fit_list[2] aicc_old = best_fit_list[6] amps_fit, fwhms_fit, offsets_fit = split_params(params_fit, ncomps_fit) # idx_low_residual = max( # 0, int(offsets_fit[exclude_idx] - fwhms_fit[exclude_idx]/2)) # idx_upp_residual = int( # offsets_fit[exclude_idx] + fwhms_fit[exclude_idx]/2) + 2 # exclude component from parameter list of components params_fit_new = remove_components(params_fit, exclude_idx) # produce new best fit with excluded components best_fit_list_new = get_best_fit( vel, data, errors, params_fit_new, dct, first=True, best_fit_list=None, signal_ranges=signal_ranges, signal_mask=signal_mask, force_accept=force_accept, noise_spike_mask=noise_spike_mask) # return new best fit with excluded component if its AICc value is lower aicc = best_fit_list_new[6] if ((aicc < aicc_old) and not np.isclose(aicc, aicc_old, atol=1e-1)): return best_fit_list_new # search for new positive residual peaks params_fit = best_fit_list_new[0] ncomps_fit = best_fit_list_new[2] amps_fit, fwhms_fit, offsets_fit = split_params(params_fit, ncomps_fit) residual = data - combined_gaussian(amps_fit, fwhms_fit, offsets_fit, vel) # amp_guesses, fwhm_guesses, offset_guesses = get_initial_guesses( # residual[idx_low_residual:idx_upp_residual], errors[0], # dct['snr'], dct['significance'], peak='positive', # baseline_shift_snr=baseline_shift_snr) # offset_guesses = offset_guesses + idx_low_residual amp_guesses, fwhm_guesses, offset_guesses = get_initial_guesses( residual, errors[0], dct['snr'], dct['significance'], peak='positive', baseline_shift_snr=baseline_shift_snr) # return original best fit list if there are no guesses for new components to fit in the residual if amp_guesses.size == 0: return best_fit_list # get new best fit with additional components guessed from the residual amps_fit = list(amps_fit) + list(amp_guesses) fwhms_fit = list(fwhms_fit) + list(fwhm_guesses) offsets_fit = list(offsets_fit) + list(offset_guesses) params_fit_new = amps_fit + fwhms_fit + offsets_fit best_fit_list_new = get_best_fit( vel, data, errors, params_fit_new, dct, first=False, best_fit_list=best_fit_list_new, signal_ranges=signal_ranges, signal_mask=signal_mask, force_accept=force_accept, noise_spike_mask=noise_spike_mask) # return new best fit if its AICc value is lower aicc = best_fit_list_new[6] if ((aicc < aicc_old) and not np.isclose(aicc, aicc_old, atol=1e-1)): return best_fit_list_new return best_fit_list def check_for_broad_feature(vel, data, errors, best_fit_list, dct, signal_ranges=None, signal_mask=None, force_accept=False, noise_spike_mask=None): """Check for broad features and try to refit them. We define broad fit components as having a FWHM value that is bigger by a factor of dct['fwhm_factor'] than the second broadest component in the spectrum. In case of a broad fit component, we first try to replace it with two narrower components. If this does not work we determine guesses for additional fit components from the residual that is produced if the component (i) is discarded and try a new fit. We only accept a new fit solution if it yields a better fit as determined by the AICc value. If there is only one fit component in the spectrum, this check is not performed. Parameters ---------- vel : numpy.ndarray Velocity channels (unitless). data : numpy.ndarray Original data of spectrum. errors : numpy.ndarray Root-mean-square noise values. best_fit_list : list List containing parameters of the current best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] dct : dict Dictionary containing parameter settings for the improved fitting. signal_ranges : list Nested list containing info about ranges of the spectrum that were estimated to contain signal. The goodness-of-fit calculations are only performed for the spectral channels within these ranges. signal_mask : numpy.ndarray Boolean array containing the information of signal_ranges. force_accept : bool Experimental feature. Default is 'False'. If set to 'True', the new fit will be forced to become the best fit. Returns ------- best_fit_list : list List containing parameters of the chosen best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] """ best_fit_list[7] = False params_fit = best_fit_list[0] ncomps_fit = best_fit_list[2] if ncomps_fit < 2 and dct['fwhm_factor'] > 0: return best_fit_list amps_fit, fwhms_fit, offsets_fit = split_params(params_fit, ncomps_fit) fwhms_sorted = sorted(fwhms_fit) if (fwhms_sorted[-1] < dct['fwhm_factor'] * fwhms_sorted[-2]): return best_fit_list exclude_idx = np.argmax(np.array(fwhms_fit)) params_fit = replace_gaussian_with_two_new_ones( data, vel, errors[0], dct['snr'], dct['significance'], params_fit, exclude_idx, offsets_fit[exclude_idx]) if len(params_fit) > 0: best_fit_list = get_best_fit( vel, data, errors, params_fit, dct, first=False, best_fit_list=best_fit_list, signal_ranges=signal_ranges, signal_mask=signal_mask, force_accept=force_accept, noise_spike_mask=noise_spike_mask) if best_fit_list[7]: return best_fit_list params_fit = best_fit_list[0] ncomps_fit = best_fit_list[2] if ncomps_fit == 0: return best_fit_list amps_fit, fwhms_fit, offsets_fit = split_params(params_fit, ncomps_fit) exclude_idx = np.argmax(np.array(fwhms_fit)) # for baseline_shift_snr in range(int(dct['snr'])): # best_fit_list = try_fit_with_new_components( # vel, data, errors, best_fit_list, dct, exclude_idx, # signal_ranges=signal_ranges, signal_mask=signal_mask, # force_accept=force_accept, baseline_shift_snr=baseline_shift_snr) # if best_fit_list[7]: # break best_fit_list = try_fit_with_new_components( vel, data, errors, best_fit_list, dct, exclude_idx, signal_ranges=signal_ranges, signal_mask=signal_mask, force_accept=force_accept, noise_spike_mask=noise_spike_mask) return best_fit_list def check_for_blended_feature(vel, data, errors, best_fit_list, dct, signal_ranges=None, signal_mask=None, force_accept=False, noise_spike_mask=None): """Check for blended features and try to refit them. We define two fit components as blended if the mean position of one fit component is contained within the standard deviation interval (mean - std, mean + std) of another fit component. In case of blended fit components, we try to determine guesses for new fit components from the residual that is produced if one of the components is discarded and try a new fit. We start by excluding the fit component with the lowest amplitude value. We only accept a new fit solution if it yields a better fit as determined by the AICc value. Parameters ---------- vel : numpy.ndarray Velocity channels (unitless). data : numpy.ndarray Original data of spectrum. errors : numpy.ndarray Root-mean-square noise values. best_fit_list : list List containing parameters of the current best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] dct : dict Dictionary containing parameter settings for the improved fitting. signal_ranges : list Nested list containing info about ranges of the spectrum that were estimated to contain signal. The goodness-of-fit calculations are only performed for the spectral channels within these ranges. signal_mask : numpy.ndarray Boolean array containing the information of signal_ranges. force_accept : bool Experimental feature. Default is 'False'. If set to 'True', the new fit will be forced to become the best fit. Returns ------- best_fit_list : list List containing parameters of the chosen best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] """ params_fit = best_fit_list[0] ncomps_fit = best_fit_list[2] if ncomps_fit < 2: return best_fit_list exclude_indices = get_fully_blended_gaussians( params_fit, separation_factor=dct['separation_factor']) # skip if there are no blended features if exclude_indices.size == 0: return best_fit_list for exclude_idx in exclude_indices: best_fit_list = try_fit_with_new_components( vel, data, errors, best_fit_list, dct, exclude_idx, signal_ranges=signal_ranges, signal_mask=signal_mask, force_accept=force_accept, noise_spike_mask=noise_spike_mask) if best_fit_list[7]: break # for baseline_shift_snr in range(int(dct['snr'])): # best_fit_list = try_fit_with_new_components( # vel, data, errors, best_fit_list, dct, exclude_idx, # signal_ranges=signal_ranges, signal_mask=signal_mask, # force_accept=force_accept, baseline_shift_snr=baseline_shift_snr) # if best_fit_list[7]: # return best_fit_list return best_fit_list def quality_check(vel, data, errors, params_fit, ncomps_fit, dct, signal_ranges=None, signal_mask=None, params_min=None, params_max=None, noise_spike_mask=None): """Quality check for GaussPy best fit results. All Gaussian fit components that are not satisfying the mandatory quality criteria get discarded from the fit. Parameters ---------- vel : numpy.ndarray Velocity channels (unitless). data : numpy.ndarray Original data of spectrum. errors : numpy.ndarray Root-mean-square noise values. params_fit : list Parameter vector in the form of [amp1, ..., ampN, fwhm1, ..., fwhmN, mean1, ..., meanN]. ncomps_fit : int Number of fitted Gaussian components. dct : dict Dictionary containing parameter settings for the improved fitting. signal_ranges : list Nested list containing info about ranges of the spectrum that were estimated to contain signal. The goodness-of-fit calculations are only performed for the spectral channels within these ranges. signal_mask : numpy.ndarray Boolean array containing the information of signal_ranges. params_min : list List of minimum limits for parameters: [min_amp1, ..., min_ampN, min_fwhm1, ..., min_fwhmN, min_mean1, ..., min_meanN] params_max : list List of maximum limits for parameters: [max_amp1, ..., max_ampN, max_fwhm1, ..., max_fwhmN, max_mean1, ..., max_meanN] Returns ------- best_fit_list : list List containing parameters of the chosen best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] """ if ncomps_fit == 0: new_fit = False best_fit_final = data*0 residual = data params_fit, params_errs = [], [] rchi2, aicc = goodness_of_fit( data, best_fit_final, errors, ncomps_fit, mask=signal_mask, get_aicc=True) pvalue = check_residual_for_normality( data, errors, mask=signal_mask, noise_spike_mask=noise_spike_mask) quality_control = [] best_fit_list = [params_fit, params_errs, ncomps_fit, best_fit_final, residual, rchi2, aicc, new_fit, params_min, params_max, pvalue, quality_control] return best_fit_list best_fit_list = get_best_fit( vel, data, errors, params_fit, dct, first=True, best_fit_list=None, signal_ranges=signal_ranges, signal_mask=signal_mask, noise_spike_mask=noise_spike_mask) return best_fit_list def check_for_peaks_in_residual(vel, data, errors, best_fit_list, dct, fitted_residual_peaks, signal_ranges=None, signal_mask=None, force_accept=False, params_min=None, params_max=None, noise_spike_mask=None): """Try fit by adding new components, whose initial parameters were determined from residual peaks. Parameters ---------- vel : numpy.ndarray Velocity channels (unitless). data : numpy.ndarray Original data of spectrum. errors : numpy.ndarray Root-mean-square noise values. best_fit_list : list List containing parameters of the current best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] dct : dict Dictionary containing parameter settings for the improved fitting. fitted_residual_peaks : list List of initial mean position guesses for new fit components determined from residual peaks that were already tried in previous iterations. signal_ranges : list Nested list containing info about ranges of the spectrum that were estimated to contain signal. The goodness-of-fit calculations are only performed for the spectral channels within these ranges. signal_mask : numpy.ndarray Boolean array containing the information of signal_ranges. force_accept : bool Experimental feature. Default is 'False'. If set to 'True', the new fit will be forced to become the best fit. params_min : list List of minimum limits for parameters: [min_amp1, ..., min_ampN, min_fwhm1, ..., min_fwhmN, min_mean1, ..., min_meanN] params_max : list List of maximum limits for parameters: [max_amp1, ..., max_ampN, max_fwhm1, ..., max_fwhmN, max_mean1, ..., max_meanN] Returns ------- best_fit_list : list List containing parameters of the chosen best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] fitted_residual_peaks : list Updated list of initial mean position guesses for new fit components determined from residual peaks. """ # TODO: remove params_min and params_max keywords params_fit = best_fit_list[0] ncomps_fit = best_fit_list[2] residual = best_fit_list[4] amps_fit, fwhms_fit, offsets_fit = split_params(params_fit, ncomps_fit) amp_guesses, fwhm_guesses, offset_guesses = get_initial_guesses( residual, errors[0], dct['snr'], dct['significance'], peak='positive') if amp_guesses.size == 0: best_fit_list[7] = False return best_fit_list, fitted_residual_peaks if list(offset_guesses) in fitted_residual_peaks: best_fit_list[7] = False return best_fit_list, fitted_residual_peaks fitted_residual_peaks.append(list(offset_guesses)) amps_fit = list(amps_fit) + list(amp_guesses) fwhms_fit = list(fwhms_fit) + list(fwhm_guesses) offsets_fit = list(offsets_fit) + list(offset_guesses) params_fit = amps_fit + fwhms_fit + offsets_fit best_fit_list = get_best_fit( vel, data, errors, params_fit, dct, first=False, best_fit_list=best_fit_list, signal_ranges=signal_ranges, signal_mask=signal_mask, force_accept=force_accept, params_min=params_min, params_max=params_max, noise_spike_mask=noise_spike_mask) return best_fit_list, fitted_residual_peaks def log_new_fit(new_fit, log_gplus, mode='residual'): """Log the successful refits of a spectrum. Parameters ---------- new_fit : bool If 'True', the spectrum was successfully refit. log_gplus : list Log of all previous successful refits of the spectrum. mode : str ('positive_residual_peak', 'negative_residual_peak', 'broad', 'blended') Specifies the feature that was refit or used for a new successful refit. Returns ------- log_gplus : list Updated log of successful refits of the spectrum. """ if not new_fit: return log_gplus modes = {'positive_residual_peak': 1, 'negative_residual_peak': 2, 'broad': 3, 'blended': 4} log_gplus.append(modes[mode]) return log_gplus def try_to_improve_fitting(vel, data, errors, params_fit, ncomps_fit, dct, signal_ranges=None, noise_spike_ranges=None): """Short summary. Parameters ---------- vel : numpy.ndarray Velocity channels (unitless). data : numpy.ndarray Original data of spectrum. errors : numpy.ndarray Root-mean-square noise values. params_fit : list Parameter vector in the form of [amp1, ..., ampN, fwhm1, ..., fwhmN, mean1, ..., meanN]. Corresponds to the final best fit results of the GaussPy decomposition. ncomps_fit : int Number of fitted Gaussian components. dct : dict Dictionary containing parameter settings for the improved fitting. signal_ranges : list Nested list containing info about ranges of the spectrum that were estimated to contain signal. The goodness-of-fit calculations are only performed for the spectral channels within these ranges. noise_spike_ranges : list Nested list containing info about ranges of the spectrum that were estimated to contain noise spike features. These will get masked out from goodness-of-fit calculations. Returns ------- best_fit_list : list List containing parameters of the chosen best fit for the spectrum. It is of the form [{0} params_fit, {1} params_errs, {2} ncomps_fit, {3} best_fit, {4} residual, {5} rchi2, {6} aicc, {7} new_fit, {8} params_min, {9} params_max, {10} pvalue] N_neg_res_peak : int Number of negative residual features that occur in the best fit of the spectrum. N_blended : int Number of blended Gaussian components that occur in the best fit of the spectrum. log_gplus : list Log of all successful refits of the spectrum. """ n_channels = len(data) if signal_ranges: signal_mask = mask_channels(n_channels, signal_ranges, remove_intervals=noise_spike_ranges) else: signal_mask = None if noise_spike_ranges: noise_spike_mask = mask_channels(n_channels, [[0, n_channels]], remove_intervals=noise_spike_ranges) else: noise_spike_mask = None # Check the quality of the final fit from GaussPy best_fit_list = quality_check( vel, data, errors, params_fit, ncomps_fit, dct, signal_ranges=signal_ranges, signal_mask=signal_mask, noise_spike_mask=noise_spike_mask) params_fit, params_errs, ncomps_fit, best_fit_final, residual,\ rchi2, aicc, new_fit, params_min, params_max, pvalue, quality_control = best_fit_list # Try to improve fit by searching for peaks in the residual first_run = True fitted_residual_peaks = [] log_gplus = [] # while (rchi2 > dct['rchi2_limit']) or first_run: while (best_fit_list[10] < dct['min_pvalue']) or first_run: new_fit = True new_peaks = False count_old = len(fitted_residual_peaks) while new_fit: best_fit_list[7] = False best_fit_list, fitted_residual_peaks = check_for_peaks_in_residual( vel, data, errors, best_fit_list, dct, fitted_residual_peaks, signal_ranges=signal_ranges, signal_mask=signal_mask, noise_spike_mask=noise_spike_mask) new_fit = best_fit_list[7] log_gplus = log_new_fit(new_fit, log_gplus, mode='positive_residual_peak') count_new = len(fitted_residual_peaks) if count_old != count_new: new_peaks = True # stop refitting loop if no new peaks were fit from the residual if (not first_run and not new_peaks) or (best_fit_list[2] == 0): break # try to refit negative residual feature if dct['neg_res_peak']: best_fit_list = check_for_negative_residual( vel, data, errors, best_fit_list, dct, signal_ranges=signal_ranges, signal_mask=signal_mask, noise_spike_mask=noise_spike_mask) new_fit = best_fit_list[7] log_gplus = log_new_fit(new_fit, log_gplus, mode='negative_residual_peak') # try to refit broad Gaussian components if dct['broad']: new_fit = True while new_fit: best_fit_list[7] = False best_fit_list = check_for_broad_feature( vel, data, errors, best_fit_list, dct, signal_ranges=signal_ranges, signal_mask=signal_mask, noise_spike_mask=noise_spike_mask) new_fit = best_fit_list[7] log_gplus = log_new_fit(new_fit, log_gplus, mode='broad') # try to refit blended Gaussian components if dct['blended']: new_fit = True while new_fit: best_fit_list[7] = False best_fit_list = check_for_blended_feature( vel, data, errors, best_fit_list, dct, signal_ranges=signal_ranges, signal_mask=signal_mask, noise_spike_mask=noise_spike_mask) new_fit = best_fit_list[7] log_gplus = log_new_fit(new_fit, log_gplus, mode='blended') if not first_run: break first_run = False N_neg_res_peak = check_for_negative_residual( vel, data, errors, best_fit_list, dct, signal_ranges=signal_ranges, signal_mask=signal_mask, get_count=True) params_fit = best_fit_list[0] N_blended = get_fully_blended_gaussians( params_fit, get_count=True, separation_factor=dct['separation_factor']) return best_fit_list, N_neg_res_peak, N_blended, log_gplus
[ 2, 2488, 13838, 25, 374, 72, 877, 198, 2, 2488, 10430, 25, 220, 220, 2864, 12, 1065, 12, 1129, 51, 1558, 25, 1270, 25, 4310, 10, 486, 25, 405, 198, 2, 2488, 35063, 25, 27809, 62, 9541, 13, 9078, 198, 2, 2488, 5956, 9518, 416, 25, 220, 220, 374, 72, 877, 198, 2, 2488, 5956, 9518, 640, 25, 13130, 12, 3023, 12, 2919, 51, 940, 25, 1238, 25, 2718, 10, 2999, 25, 405, 198, 198, 11748, 340, 861, 10141, 198, 11748, 25064, 198, 11748, 299, 32152, 355, 45941, 198, 198, 11748, 300, 76, 11147, 198, 6738, 300, 76, 11147, 1330, 17775, 355, 300, 76, 11147, 62, 1084, 48439, 198, 6738, 300, 76, 11147, 1330, 40117, 198, 198, 6738, 31986, 1046, 9078, 9541, 13, 26791, 13, 67, 2357, 3810, 62, 3849, 12786, 1330, 2198, 62, 361, 62, 3849, 12786, 62, 3642, 391, 62, 12683, 282, 198, 6738, 31986, 1046, 9078, 9541, 13, 26791, 13, 11147, 62, 13237, 62, 42116, 1330, 5004, 62, 12683, 811, 590, 11, 20437, 62, 1659, 62, 11147, 11, 2198, 62, 411, 312, 723, 62, 1640, 62, 27237, 1483, 198, 6738, 31986, 1046, 9078, 9541, 13, 26791, 13, 4908, 31562, 62, 12543, 2733, 1330, 5929, 62, 4908, 31562, 11, 1989, 62, 1659, 62, 4908, 31562, 198, 6738, 31986, 1046, 9078, 9541, 13, 26791, 13, 3919, 786, 62, 395, 18991, 1330, 5004, 62, 431, 4730, 11, 9335, 62, 354, 8961, 628, 198, 4299, 910, 7, 20500, 11, 15942, 577, 28, 25101, 2599, 198, 220, 220, 220, 37227, 18683, 4660, 15132, 6218, 526, 15931, 198, 220, 220, 220, 611, 15942, 577, 318, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 20500, 8, 628, 198, 4299, 6626, 62, 37266, 7, 37266, 11, 299, 785, 862, 2599, 198, 220, 220, 220, 37227, 41205, 42287, 656, 45796, 11, 277, 1929, 907, 11, 49005, 526, 15931, 198, 220, 220, 220, 45796, 796, 42287, 58, 15, 25, 77, 785, 862, 60, 198, 220, 220, 220, 277, 1929, 907, 796, 42287, 58, 77, 785, 862, 25, 17, 9, 77, 785, 862, 60, 198, 220, 220, 220, 49005, 796, 42287, 58, 17, 9, 77, 785, 862, 25, 18, 9, 77, 785, 862, 60, 198, 220, 220, 220, 1441, 45796, 11, 277, 1929, 907, 11, 49005, 628, 198, 4299, 1271, 62, 1659, 62, 5589, 3906, 7, 37266, 2599, 198, 220, 220, 220, 37227, 7293, 1133, 1271, 286, 12822, 31562, 6805, 526, 15931, 198, 220, 220, 220, 1441, 493, 7, 11925, 7, 37266, 8, 1220, 513, 8, 628, 198, 4299, 31986, 31562, 62, 8818, 7, 36729, 11, 376, 12418, 44, 11, 1612, 2599, 198, 220, 220, 220, 37227, 13615, 257, 12822, 31562, 2163, 526, 15931, 198, 220, 220, 220, 264, 13495, 796, 376, 12418, 44, 1220, 362, 13, 2327, 2780, 2167, 2231, 220, 1303, 357, 17, 1635, 19862, 17034, 7, 362, 1635, 300, 77, 7, 17, 22305, 198, 220, 220, 220, 1441, 37456, 2124, 25, 9103, 1635, 45941, 13, 11201, 7, 30420, 87, 532, 1612, 8, 1174, 17, 1220, 362, 13, 1220, 264, 13495, 1174, 17, 8, 628, 198, 4299, 25439, 7, 87, 11, 1635, 22046, 2599, 198, 220, 220, 220, 37227, 13615, 5021, 12, 42895, 12822, 31562, 2746, 376, 7, 87, 737, 628, 220, 220, 220, 25139, 2357, 15879, 479, 22046, 796, 685, 696, 16, 11, 2644, 11, 20766, 45, 11, 9647, 16, 11, 2644, 11, 9647, 45, 11, 1612, 16, 11, 2644, 11, 1612, 45, 4357, 198, 220, 220, 220, 290, 4361, 468, 18896, 7, 22046, 8, 796, 513, 2124, 399, 62, 5589, 3906, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 299, 785, 862, 796, 1271, 62, 1659, 62, 5589, 3906, 7, 22046, 8, 198, 220, 220, 220, 345, 83, 796, 2124, 1635, 657, 13, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 77, 785, 862, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 345, 83, 796, 345, 83, 1343, 31986, 31562, 62, 8818, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26498, 58, 72, 4357, 26498, 58, 72, 10, 77, 785, 862, 4357, 26498, 58, 72, 10, 17, 9, 77, 785, 862, 60, 5769, 87, 8, 198, 220, 220, 220, 1441, 345, 83, 628, 198, 4299, 410, 874, 62, 35138, 62, 6738, 62, 75, 76, 11147, 7, 75, 76, 11147, 62, 37266, 2599, 198, 220, 220, 220, 37227, 13615, 11361, 1351, 286, 11507, 3815, 422, 37125, 37, 2043, 40117, 2134, 526, 15931, 198, 220, 220, 220, 611, 357, 17597, 13, 9641, 62, 10951, 18189, 357, 18, 11, 657, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 410, 874, 796, 685, 8367, 13, 8367, 329, 1988, 287, 1351, 7, 75, 76, 11147, 62, 37266, 13, 27160, 3419, 15437, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 410, 874, 796, 685, 8367, 13, 8367, 329, 1988, 287, 300, 76, 11147, 62, 37266, 13, 27160, 3419, 60, 198, 220, 220, 220, 1441, 410, 874, 628, 198, 4299, 1931, 3808, 62, 35138, 62, 6738, 62, 75, 76, 11147, 7, 75, 76, 11147, 62, 37266, 2599, 198, 220, 220, 220, 37227, 13615, 11361, 1351, 286, 11507, 36553, 422, 37125, 37, 2043, 40117, 2134, 526, 15931, 198, 220, 220, 220, 611, 357, 17597, 13, 9641, 62, 10951, 18189, 357, 18, 11, 657, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1931, 3808, 796, 685, 8367, 13, 301, 1082, 81, 329, 1988, 287, 1351, 7, 75, 76, 11147, 62, 37266, 13, 27160, 3419, 15437, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1931, 3808, 796, 685, 8367, 13, 301, 1082, 81, 329, 1988, 287, 300, 76, 11147, 62, 37266, 13, 27160, 3419, 60, 198, 220, 220, 220, 1303, 16926, 46, 25, 8636, 8563, 2884, 6297, 12044, 2105, 2427, 286, 4634, 606, 284, 6632, 198, 220, 220, 220, 1931, 3808, 796, 685, 15, 611, 11454, 318, 6045, 2073, 11454, 329, 11454, 287, 1931, 3808, 60, 198, 220, 220, 220, 1441, 1931, 3808, 628, 198, 4299, 5772, 35138, 62, 1462, 62, 75, 76, 11147, 7, 17143, 35138, 11, 3509, 62, 696, 28, 14202, 11, 3509, 62, 69, 1929, 76, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 1084, 28, 14202, 11, 42287, 62, 9806, 28, 14202, 2599, 198, 220, 220, 220, 37227, 41762, 257, 11361, 11629, 540, 286, 10007, 656, 257, 37125, 37, 2043, 40117, 2134, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 5772, 35138, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 25139, 2357, 15879, 796, 685, 696, 16, 11, 2644, 11, 20766, 45, 11, 277, 1929, 76, 16, 11, 2644, 11, 277, 1929, 76, 45, 11, 1612, 16, 11, 2644, 11, 1612, 45, 4083, 198, 220, 220, 220, 3509, 62, 696, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 2039, 12072, 5415, 1988, 329, 37188, 11507, 13, 198, 220, 220, 220, 3509, 62, 69, 1929, 76, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 2039, 12072, 5415, 1988, 329, 376, 12418, 44, 11507, 13, 5765, 351, 13041, 0, 1680, 1085, 284, 20316, 287, 262, 15830, 13, 198, 220, 220, 220, 42287, 62, 1084, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 5288, 7095, 329, 10007, 25, 685, 1084, 62, 696, 16, 11, 2644, 11, 949, 62, 696, 45, 11, 949, 62, 69, 1929, 76, 16, 11, 2644, 11, 949, 62, 69, 1929, 76, 45, 11, 949, 62, 32604, 16, 11, 2644, 11, 949, 62, 32604, 45, 60, 198, 220, 220, 220, 42287, 62, 9806, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 5415, 7095, 329, 10007, 25, 685, 9806, 62, 696, 16, 11, 2644, 11, 3509, 62, 696, 45, 11, 3509, 62, 69, 1929, 76, 16, 11, 2644, 11, 3509, 62, 69, 1929, 76, 45, 11, 3509, 62, 32604, 16, 11, 2644, 11, 3509, 62, 32604, 45, 60, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 42287, 25, 300, 76, 11147, 13, 17143, 2357, 13, 48944, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 299, 785, 862, 796, 1271, 62, 1659, 62, 5589, 3906, 7, 17143, 35138, 8, 198, 220, 220, 220, 42287, 796, 40117, 3419, 628, 220, 220, 220, 611, 42287, 62, 1084, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 1084, 796, 18896, 7, 17143, 35138, 27493, 58, 15, 8183, 628, 220, 220, 220, 611, 42287, 62, 9806, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 9806, 796, 18896, 7, 17143, 35138, 27493, 58, 14202, 60, 628, 220, 220, 220, 220, 220, 220, 220, 611, 3509, 62, 696, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 9806, 58, 15, 25, 77, 785, 862, 60, 796, 299, 785, 862, 9, 58, 9806, 62, 696, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3509, 62, 69, 1929, 76, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 9806, 58, 77, 785, 862, 25, 17, 9, 77, 785, 862, 60, 796, 299, 785, 862, 9, 58, 9806, 62, 69, 1929, 76, 60, 628, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 17143, 35138, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 13, 2860, 10786, 79, 90, 92, 4458, 18982, 7, 2536, 7, 72, 1343, 352, 36911, 1988, 28, 17143, 35138, 58, 72, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 949, 28, 37266, 62, 1084, 58, 72, 4357, 3509, 28, 37266, 62, 9806, 58, 72, 12962, 198, 220, 220, 220, 1441, 42287, 628, 198, 198, 4299, 4781, 62, 5589, 3906, 62, 6738, 62, 7266, 20713, 7, 75, 301, 11, 4781, 62, 521, 1063, 2599, 198, 220, 220, 220, 37227, 27914, 3709, 351, 36525, 4686, 87, 16, 11, 2644, 11, 4686, 87, 45, 422, 477, 850, 20713, 286, 257, 28376, 1351, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 300, 301, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 399, 7287, 1351, 685, 7266, 4868, 16, 11, 2644, 11, 850, 4868, 45, 4083, 198, 220, 220, 220, 4781, 62, 521, 1063, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 36525, 685, 312, 87, 16, 11, 2644, 11, 4686, 87, 45, 60, 12739, 262, 3709, 326, 815, 307, 4615, 422, 262, 850, 20713, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 300, 301, 1058, 1351, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 329, 4686, 87, 11, 850, 75, 301, 287, 27056, 378, 7, 75, 301, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 300, 301, 58, 312, 87, 60, 796, 685, 2100, 329, 1312, 11, 1188, 287, 27056, 378, 7, 7266, 75, 301, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 407, 287, 4781, 62, 521, 1063, 60, 198, 220, 220, 220, 1441, 300, 301, 628, 198, 4299, 4781, 62, 5589, 3906, 62, 29370, 62, 9806, 62, 77, 785, 862, 7, 9430, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 299, 785, 862, 62, 9806, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 521, 1063, 11, 3081, 62, 13716, 2599, 198, 220, 220, 220, 37227, 27914, 477, 4197, 6805, 2029, 7368, 4179, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 45796, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 37188, 3815, 286, 477, 399, 18235, 12822, 31562, 6805, 287, 262, 1296, 685, 696, 16, 11, 2644, 11, 20766, 45, 4083, 198, 220, 220, 220, 277, 1929, 907, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 376, 12418, 44, 3815, 286, 477, 399, 18235, 12822, 31562, 6805, 287, 262, 1296, 685, 69, 1929, 76, 16, 11, 2644, 11, 277, 1929, 76, 45, 4083, 198, 220, 220, 220, 299, 785, 862, 62, 9806, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 18291, 1431, 5415, 1271, 286, 4197, 6805, 13, 198, 220, 220, 220, 4781, 62, 521, 1063, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 1423, 1063, 286, 12822, 31562, 6805, 326, 815, 307, 4615, 422, 262, 4197, 4610, 13, 198, 220, 220, 220, 3081, 62, 13716, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 5972, 7268, 1321, 546, 543, 287, 12, 18780, 3081, 1630, 10007, 547, 407, 23085, 357, 15, 25, 705, 9806, 62, 69, 1929, 76, 3256, 352, 25, 705, 1084, 62, 69, 1929, 76, 3256, 362, 25, 705, 16184, 81, 3256, 513, 25, 705, 12683, 811, 590, 3256, 604, 25, 705, 17620, 62, 9521, 3256, 642, 25, 705, 12683, 282, 62, 9521, 11537, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 4781, 62, 521, 1063, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 19433, 1351, 351, 36525, 286, 12822, 31562, 6805, 326, 815, 307, 4615, 422, 262, 4197, 4610, 13, 198, 220, 220, 220, 3081, 62, 13716, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 19433, 2604, 7268, 1321, 546, 543, 287, 12, 18780, 3081, 1630, 10007, 547, 407, 23085, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 18896, 7, 9430, 62, 11147, 8, 198, 220, 220, 220, 611, 299, 785, 862, 62, 11147, 19841, 299, 785, 862, 62, 9806, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4781, 62, 521, 1063, 11, 3081, 62, 13716, 198, 220, 220, 220, 11521, 62, 600, 641, 871, 796, 1989, 62, 1659, 62, 4908, 31562, 7, 198, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 18747, 7, 9430, 62, 11147, 828, 45941, 13, 18747, 7, 69, 1929, 907, 62, 11147, 4008, 198, 220, 220, 220, 36525, 796, 45941, 13, 18747, 7, 9521, 7, 11925, 7, 18908, 4111, 62, 600, 641, 871, 22305, 198, 220, 220, 220, 3297, 62, 521, 1063, 796, 45941, 13, 22046, 419, 7, 18908, 4111, 62, 600, 641, 871, 8, 628, 220, 220, 220, 329, 6376, 287, 36525, 58, 30619, 62, 521, 1063, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 611, 6376, 287, 4781, 62, 521, 1063, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 521, 1063, 13, 33295, 7, 9630, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3081, 62, 13716, 13, 33295, 7, 21, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5637, 62, 77, 785, 862, 796, 299, 785, 862, 62, 11147, 532, 18896, 7, 28956, 62, 521, 1063, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5637, 62, 77, 785, 862, 19841, 299, 785, 862, 62, 9806, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 1441, 4781, 62, 521, 1063, 11, 3081, 62, 13716, 628, 198, 4299, 2198, 62, 37266, 62, 11147, 7, 626, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 11, 42287, 62, 263, 3808, 11, 288, 310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3081, 62, 13716, 11, 6737, 62, 81, 6231, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 1084, 28, 14202, 11, 42287, 62, 9806, 28, 14202, 2599, 198, 220, 220, 220, 37227, 5990, 687, 3081, 8794, 329, 262, 18235, 12822, 1046, 1547, 6805, 13, 628, 220, 220, 220, 1439, 12822, 31562, 6805, 326, 389, 407, 19201, 262, 9987, 389, 25148, 422, 262, 4197, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 11555, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 43137, 9619, 357, 20850, 1203, 737, 198, 220, 220, 220, 1366, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 13745, 1366, 286, 10958, 13, 198, 220, 220, 220, 8563, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 20410, 12, 32604, 12, 23415, 7838, 3815, 13, 198, 220, 220, 220, 42287, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 25139, 2357, 15879, 287, 262, 1296, 286, 685, 696, 16, 11, 2644, 11, 20766, 45, 11, 277, 1929, 76, 16, 11, 2644, 11, 277, 1929, 76, 45, 11, 1612, 16, 11, 2644, 11, 1612, 45, 4083, 198, 220, 220, 220, 42287, 62, 263, 3808, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 25139, 2357, 4049, 15879, 287, 262, 1296, 286, 685, 68, 62, 696, 16, 11, 2644, 11, 304, 62, 696, 45, 11, 304, 62, 69, 1929, 76, 16, 11, 2644, 11, 304, 62, 69, 1929, 76, 45, 11, 304, 62, 32604, 16, 11, 2644, 11, 304, 62, 32604, 45, 4083, 198, 220, 220, 220, 288, 310, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 28261, 7268, 11507, 6460, 329, 262, 6596, 15830, 13, 198, 220, 220, 220, 374, 907, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 20410, 12, 32604, 12, 23415, 7838, 286, 262, 10958, 13, 198, 220, 220, 220, 6737, 62, 81, 6231, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 399, 7287, 1351, 7268, 7508, 546, 16069, 286, 262, 10958, 326, 547, 6108, 284, 3994, 6737, 13, 383, 20437, 12, 1659, 12, 11147, 16765, 389, 691, 6157, 329, 262, 37410, 9619, 1626, 777, 16069, 13, 198, 220, 220, 220, 42287, 62, 1084, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 5288, 7095, 329, 10007, 25, 685, 1084, 62, 696, 16, 11, 2644, 11, 949, 62, 696, 45, 11, 949, 62, 69, 1929, 76, 16, 11, 2644, 11, 949, 62, 69, 1929, 76, 45, 11, 949, 62, 32604, 16, 11, 2644, 11, 949, 62, 32604, 45, 60, 198, 220, 220, 220, 42287, 62, 9806, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 5415, 7095, 329, 10007, 25, 685, 9806, 62, 696, 16, 11, 2644, 11, 3509, 62, 696, 45, 11, 3509, 62, 69, 1929, 76, 16, 11, 2644, 11, 3509, 62, 69, 1929, 76, 45, 11, 3509, 62, 32604, 16, 11, 2644, 11, 3509, 62, 32604, 45, 60, 198, 220, 220, 220, 3081, 62, 13716, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 5972, 7268, 1321, 546, 543, 287, 12, 18780, 3081, 1630, 10007, 547, 407, 23085, 357, 15, 25, 705, 9806, 62, 69, 1929, 76, 3256, 352, 25, 705, 1084, 62, 69, 1929, 76, 3256, 362, 25, 705, 16184, 81, 3256, 513, 25, 705, 12683, 811, 590, 3256, 604, 25, 705, 17620, 62, 9521, 3256, 642, 25, 705, 12683, 282, 62, 9521, 11537, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 42287, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 22941, 276, 2196, 422, 543, 477, 12822, 31562, 6805, 326, 750, 407, 15959, 262, 3081, 9987, 389, 4615, 13, 198, 220, 220, 220, 42287, 62, 8056, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 22941, 276, 2196, 422, 543, 477, 12822, 31562, 6805, 326, 750, 407, 15959, 262, 3081, 9987, 389, 4615, 13, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 5637, 18235, 12822, 31562, 6805, 13, 198, 220, 220, 220, 42287, 62, 1084, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 22941, 276, 2196, 422, 543, 477, 12822, 31562, 6805, 326, 750, 407, 15959, 262, 3081, 9987, 389, 4615, 13, 198, 220, 220, 220, 42287, 62, 9806, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 22941, 276, 2196, 422, 543, 477, 12822, 31562, 6805, 326, 750, 407, 15959, 262, 3081, 9987, 389, 4615, 13, 198, 220, 220, 220, 3081, 62, 13716, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 19433, 2604, 7268, 1321, 546, 543, 287, 12, 18780, 3081, 1630, 10007, 547, 407, 23085, 13, 198, 220, 220, 220, 1006, 270, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 705, 17821, 3256, 262, 10958, 373, 1006, 270, 780, 530, 393, 517, 286, 262, 12822, 31562, 4197, 10007, 750, 407, 15959, 262, 3081, 1630, 10007, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 1271, 62, 1659, 62, 5589, 3906, 7, 37266, 62, 11147, 8, 628, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 796, 6626, 62, 37266, 7, 37266, 62, 11147, 11, 299, 785, 862, 62, 11147, 8, 198, 220, 220, 220, 45796, 62, 263, 3808, 11, 277, 1929, 907, 62, 263, 3808, 11, 49005, 62, 263, 3808, 796, 6626, 62, 37266, 7, 37266, 62, 263, 3808, 11, 299, 785, 862, 62, 11147, 8, 198, 220, 220, 220, 611, 42287, 62, 1084, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 45796, 62, 1084, 11, 277, 1929, 907, 62, 1084, 11, 49005, 62, 1084, 796, 6626, 62, 37266, 7, 37266, 62, 1084, 11, 299, 785, 862, 62, 11147, 8, 198, 220, 220, 220, 611, 42287, 62, 9806, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 45796, 62, 9806, 11, 277, 1929, 907, 62, 9806, 11, 49005, 62, 9806, 796, 6626, 62, 37266, 7, 37266, 62, 9806, 11, 299, 785, 862, 62, 11147, 8, 628, 220, 220, 220, 374, 907, 796, 8563, 58, 15, 60, 628, 220, 220, 220, 1303, 220, 2198, 611, 12822, 31562, 6805, 15959, 3081, 9987, 628, 220, 220, 220, 4781, 62, 521, 1063, 796, 17635, 198, 220, 220, 220, 329, 1312, 11, 357, 696, 11, 277, 1929, 76, 11, 11677, 8, 287, 27056, 378, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19974, 7, 9430, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 288, 310, 17816, 9806, 62, 69, 1929, 76, 20520, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 277, 1929, 76, 1875, 288, 310, 17816, 9806, 62, 69, 1929, 76, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 521, 1063, 13, 33295, 7, 72, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3081, 62, 13716, 13, 33295, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 611, 288, 310, 17816, 1084, 62, 69, 1929, 76, 20520, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 277, 1929, 76, 1279, 288, 310, 17816, 1084, 62, 69, 1929, 76, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 521, 1063, 13, 33295, 7, 72, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3081, 62, 13716, 13, 33295, 7, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 27537, 262, 12822, 31562, 7515, 611, 663, 37188, 1988, 857, 407, 15959, 262, 2672, 5288, 311, 14, 45, 1988, 393, 318, 4025, 621, 262, 4179, 198, 220, 220, 220, 220, 220, 220, 220, 611, 20766, 1279, 288, 310, 17816, 16184, 81, 62, 11147, 20520, 9, 81, 907, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 521, 1063, 13, 33295, 7, 72, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3081, 62, 13716, 13, 33295, 7, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 20766, 1875, 288, 310, 17816, 9806, 62, 696, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 4781, 62, 521, 1063, 13, 33295, 7, 72, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 3081, 62, 13716, 13, 33295, 7, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 27537, 262, 12822, 31562, 7515, 611, 340, 857, 407, 15959, 262, 12085, 34054, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5004, 62, 12683, 811, 590, 7, 696, 11, 277, 1929, 76, 11, 374, 907, 8, 1279, 288, 310, 17816, 12683, 811, 590, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 521, 1063, 13, 33295, 7, 72, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3081, 62, 13716, 13, 33295, 7, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 1002, 262, 12822, 31562, 7515, 373, 4197, 2354, 262, 5295, 6737, 16069, 11, 356, 2198, 262, 12085, 286, 6737, 3895, 18235, 416, 262, 12822, 31562, 7515, 13, 775, 4781, 262, 12822, 31562, 7515, 611, 262, 6737, 3895, 857, 407, 15959, 262, 12085, 34054, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 357, 28968, 1279, 45941, 13, 1084, 7, 626, 4008, 393, 357, 28968, 1875, 45941, 13, 9806, 7, 626, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 521, 1063, 13, 33295, 7, 72, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3081, 62, 13716, 13, 33295, 7, 19, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 611, 6737, 62, 81, 6231, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 597, 7, 9319, 19841, 11677, 19841, 334, 381, 329, 1877, 11, 334, 381, 287, 6737, 62, 81, 6231, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1877, 796, 3509, 7, 15, 11, 493, 7, 28968, 532, 277, 1929, 76, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 381, 796, 493, 7, 28968, 1343, 277, 1929, 76, 8, 1343, 362, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2198, 62, 361, 62, 3849, 12786, 62, 3642, 391, 62, 12683, 282, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 11, 374, 907, 11, 47527, 9319, 11, 334, 381, 8, 4357, 3013, 81, 28, 67, 310, 17816, 16184, 81, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12085, 28, 67, 310, 17816, 12683, 811, 590, 20520, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 521, 1063, 13, 33295, 7, 72, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3081, 62, 13716, 13, 33295, 7, 20, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 611, 288, 310, 17816, 9806, 62, 77, 785, 862, 20520, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 521, 1063, 11, 3081, 62, 13716, 796, 4781, 62, 5589, 3906, 62, 29370, 62, 9806, 62, 77, 785, 862, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 288, 310, 17816, 9806, 62, 77, 785, 862, 6, 4357, 4781, 62, 521, 1063, 11, 3081, 62, 13716, 8, 628, 220, 220, 220, 4781, 62, 521, 1063, 796, 1351, 7, 2617, 7, 28956, 62, 521, 1063, 4008, 628, 220, 220, 220, 1006, 270, 796, 10352, 628, 220, 220, 220, 611, 18896, 7, 28956, 62, 521, 1063, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 796, 4781, 62, 5589, 3906, 62, 6738, 62, 7266, 20713, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 9430, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 4357, 4781, 62, 521, 1063, 8, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 11147, 796, 45796, 62, 11147, 1343, 277, 1929, 907, 62, 11147, 1343, 49005, 62, 11147, 628, 220, 220, 220, 220, 220, 220, 220, 45796, 62, 263, 3808, 11, 277, 1929, 907, 62, 263, 3808, 11, 49005, 62, 263, 3808, 796, 4781, 62, 5589, 3906, 62, 6738, 62, 7266, 20713, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 9430, 62, 263, 3808, 11, 277, 1929, 907, 62, 263, 3808, 11, 49005, 62, 263, 3808, 4357, 4781, 62, 521, 1063, 8, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 263, 3808, 796, 45796, 62, 263, 3808, 1343, 277, 1929, 907, 62, 263, 3808, 1343, 49005, 62, 263, 3808, 628, 220, 220, 220, 220, 220, 220, 220, 611, 42287, 62, 1084, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45796, 62, 1084, 11, 277, 1929, 907, 62, 1084, 11, 49005, 62, 1084, 796, 4781, 62, 5589, 3906, 62, 6738, 62, 7266, 20713, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 9430, 62, 1084, 11, 277, 1929, 907, 62, 1084, 11, 49005, 62, 1084, 4357, 4781, 62, 521, 1063, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 1084, 796, 45796, 62, 1084, 1343, 277, 1929, 907, 62, 1084, 1343, 49005, 62, 1084, 628, 220, 220, 220, 220, 220, 220, 220, 611, 42287, 62, 9806, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45796, 62, 9806, 11, 277, 1929, 907, 62, 9806, 11, 49005, 62, 9806, 796, 4781, 62, 5589, 3906, 62, 6738, 62, 7266, 20713, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 9430, 62, 9806, 11, 277, 1929, 907, 62, 9806, 11, 49005, 62, 9806, 4357, 4781, 62, 521, 1063, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 9806, 796, 45796, 62, 9806, 1343, 277, 1929, 907, 62, 9806, 1343, 49005, 62, 9806, 628, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 11147, 11, 42287, 62, 263, 3808, 11, 299, 785, 862, 62, 11147, 796, 1620, 62, 293, 459, 62, 16485, 3565, 62, 11147, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 11, 288, 310, 11, 42287, 62, 1084, 28, 37266, 62, 1084, 11, 42287, 62, 9806, 28, 37266, 62, 9806, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1006, 270, 796, 6407, 628, 220, 220, 220, 1441, 42287, 62, 11147, 11, 42287, 62, 263, 3808, 11, 299, 785, 862, 62, 11147, 11, 42287, 62, 1084, 11, 42287, 62, 9806, 11, 3081, 62, 13716, 11, 1006, 270, 628, 198, 4299, 2198, 62, 4758, 62, 4908, 31562, 62, 3642, 1299, 62, 30053, 7, 312, 87, 62, 9319, 11, 4686, 87, 62, 7211, 11, 277, 1929, 907, 62, 11147, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49005, 62, 11147, 2599, 198, 220, 220, 220, 37227, 13615, 6376, 286, 12822, 31562, 7515, 7763, 1626, 257, 2837, 287, 262, 10958, 13, 628, 220, 220, 220, 383, 376, 12418, 44, 16654, 357, 32604, 532, 376, 12418, 44, 11, 1612, 1343, 376, 12418, 44, 1267, 286, 262, 12822, 31562, 7515, 468, 284, 307, 3938, 7763, 287, 262, 2837, 286, 262, 10958, 13, 1002, 645, 12822, 1046, 1547, 15959, 428, 34054, 705, 14202, 6, 318, 4504, 13, 554, 1339, 3294, 12822, 1046, 1547, 15959, 428, 34054, 11, 262, 12822, 31562, 351, 262, 4511, 376, 12418, 44, 11507, 318, 6163, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 4686, 87, 62, 9319, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 12901, 286, 262, 717, 6518, 286, 262, 2837, 287, 262, 10958, 13, 198, 220, 220, 220, 4686, 87, 62, 7211, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 12901, 286, 262, 938, 6518, 286, 262, 2837, 287, 262, 10958, 13, 198, 220, 220, 220, 277, 1929, 907, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 376, 12418, 44, 3815, 286, 477, 399, 18235, 12822, 31562, 6805, 287, 262, 1296, 685, 69, 1929, 76, 16, 11, 2644, 11, 277, 1929, 76, 45, 4083, 198, 220, 220, 220, 49005, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 1612, 2292, 3815, 286, 477, 399, 18235, 12822, 31562, 6805, 287, 262, 1296, 685, 32604, 16, 11, 2644, 11, 1612, 45, 4083, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 6376, 1058, 493, 393, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 12901, 286, 12822, 31562, 7515, 7763, 1626, 262, 37410, 2837, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 2793, 796, 685, 600, 7, 28968, 532, 277, 1929, 76, 8, 329, 277, 1929, 76, 11, 11677, 287, 19974, 7, 69, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 15437, 198, 220, 220, 220, 2793, 796, 45941, 13, 18747, 26933, 15, 611, 2124, 1279, 657, 2073, 2124, 329, 2124, 287, 2793, 12962, 198, 220, 220, 220, 6727, 796, 45941, 13, 18747, 26933, 600, 7, 28968, 1343, 277, 1929, 76, 8, 1343, 362, 329, 277, 1929, 76, 11, 11677, 287, 19974, 7, 69, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 8, 12962, 628, 220, 220, 220, 36525, 796, 45941, 13, 283, 858, 7, 11925, 7, 69, 1929, 907, 62, 11147, 4008, 198, 220, 220, 220, 3403, 796, 45941, 13, 6404, 605, 62, 392, 7, 21037, 19841, 4686, 87, 62, 9319, 11, 6727, 18189, 4686, 87, 62, 7211, 8, 628, 220, 220, 220, 611, 45941, 13, 9127, 62, 13159, 22570, 7, 17561, 1756, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 198, 220, 220, 220, 1288, 361, 45941, 13, 9127, 62, 13159, 22570, 7, 17561, 1756, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 493, 7, 521, 1063, 58, 17561, 1756, 12962, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5637, 62, 521, 1063, 796, 36525, 58, 17561, 1756, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2922, 796, 45941, 13, 853, 9806, 7, 37659, 13, 18747, 7, 69, 1929, 907, 62, 11147, 38381, 2787, 1397, 62, 521, 1063, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 493, 7, 2787, 1397, 62, 521, 1063, 58, 19738, 12962, 628, 198, 4299, 6330, 62, 4908, 31562, 62, 4480, 62, 11545, 62, 3605, 62, 1952, 7, 7890, 11, 11555, 11, 374, 907, 11, 3013, 81, 11, 12085, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 11147, 11, 19607, 62, 312, 87, 11, 11677, 2599, 198, 220, 220, 220, 37227, 3041, 5372, 3154, 12822, 31562, 4197, 7515, 351, 4238, 44774, 329, 734, 40369, 6805, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 1366, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 13745, 1366, 286, 10958, 13, 198, 220, 220, 220, 11555, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 43137, 9619, 357, 20850, 1203, 737, 198, 220, 220, 220, 374, 907, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 20410, 12, 32604, 12, 23415, 7838, 286, 262, 10958, 13, 198, 220, 220, 220, 3013, 81, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 20906, 5288, 6737, 12, 1462, 12, 3919, 786, 8064, 329, 1366, 9103, 13, 198, 220, 220, 220, 12085, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 20906, 5288, 1988, 329, 12085, 34054, 13, 198, 220, 220, 220, 42287, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 25139, 2357, 15879, 287, 262, 1296, 286, 685, 696, 16, 11, 2644, 11, 20766, 45, 11, 277, 1929, 76, 16, 11, 2644, 11, 277, 1929, 76, 45, 11, 1612, 16, 11, 2644, 11, 1612, 45, 4083, 198, 220, 220, 220, 19607, 62, 312, 87, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 12901, 286, 262, 3154, 12822, 31562, 4197, 7515, 326, 481, 307, 4615, 422, 42287, 62, 11147, 13, 198, 220, 220, 220, 11677, 1058, 2099, 198, 220, 220, 220, 220, 220, 220, 220, 22728, 2292, 286, 262, 3154, 12822, 31562, 4197, 7515, 326, 481, 307, 4615, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 42287, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 19433, 1351, 422, 543, 262, 10007, 286, 262, 3154, 12822, 31562, 4197, 6805, 547, 4615, 290, 262, 10007, 286, 262, 734, 40369, 6805, 547, 2087, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 1271, 62, 1659, 62, 5589, 3906, 7, 37266, 62, 11147, 8, 198, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 796, 6626, 62, 37266, 7, 37266, 62, 11147, 11, 299, 785, 862, 62, 11147, 8, 628, 220, 220, 220, 1303, 16926, 46, 25, 2198, 611, 428, 318, 991, 3306, 30, 198, 220, 220, 220, 611, 19607, 62, 312, 87, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 42287, 62, 11147, 628, 220, 220, 220, 1303, 220, 4781, 262, 3154, 12822, 31562, 7515, 422, 262, 4197, 11507, 1351, 290, 5004, 649, 29598, 628, 220, 220, 220, 4686, 87, 62, 9319, 62, 411, 312, 723, 796, 3509, 7, 15, 11, 493, 7, 198, 220, 220, 220, 220, 220, 220, 220, 49005, 62, 11147, 58, 1069, 9152, 62, 312, 87, 60, 532, 277, 1929, 907, 62, 11147, 58, 1069, 9152, 62, 312, 87, 60, 4008, 198, 220, 220, 220, 4686, 87, 62, 7211, 62, 411, 312, 723, 796, 493, 7, 198, 220, 220, 220, 220, 220, 220, 220, 49005, 62, 11147, 58, 1069, 9152, 62, 312, 87, 60, 1343, 277, 1929, 907, 62, 11147, 58, 1069, 9152, 62, 312, 87, 12962, 1343, 362, 628, 220, 220, 220, 9335, 796, 45941, 13, 283, 858, 7, 11925, 7, 9430, 62, 11147, 4008, 6624, 19607, 62, 312, 87, 198, 220, 220, 220, 45796, 62, 11147, 796, 45941, 13, 18747, 7, 9430, 62, 11147, 38381, 93, 27932, 60, 198, 220, 220, 220, 277, 1929, 907, 62, 11147, 796, 45941, 13, 18747, 7, 69, 1929, 907, 62, 11147, 38381, 93, 27932, 60, 198, 220, 220, 220, 49005, 62, 11147, 796, 45941, 13, 18747, 7, 8210, 1039, 62, 11147, 38381, 93, 27932, 60, 628, 220, 220, 220, 29598, 796, 1366, 532, 5929, 62, 4908, 31562, 7, 9430, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 11, 11555, 8, 628, 220, 220, 220, 1303, 220, 2989, 329, 29598, 25740, 287, 649, 29598, 628, 220, 220, 220, 329, 1877, 11, 334, 381, 287, 19974, 26933, 312, 87, 62, 9319, 62, 411, 312, 723, 11, 493, 7, 28968, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 600, 7, 28968, 828, 4686, 87, 62, 7211, 62, 411, 312, 723, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 20766, 62, 5162, 408, 11, 277, 1929, 76, 62, 5162, 408, 11, 11677, 62, 5162, 408, 796, 651, 62, 36733, 62, 5162, 44667, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29598, 58, 9319, 25, 7211, 4357, 374, 907, 11, 3013, 81, 11, 12085, 11, 9103, 11639, 24561, 3256, 5415, 28, 17821, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 20766, 62, 5162, 408, 13, 7857, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 796, 1351, 7, 9430, 62, 11147, 828, 1351, 7, 69, 1929, 907, 62, 11147, 828, 1351, 7, 8210, 1039, 62, 11147, 8, 628, 220, 220, 220, 220, 220, 220, 220, 45796, 62, 11147, 13, 33295, 7, 696, 62, 5162, 408, 8, 198, 220, 220, 220, 220, 220, 220, 220, 277, 1929, 907, 62, 11147, 13, 33295, 7, 69, 1929, 76, 62, 5162, 408, 8, 198, 220, 220, 220, 220, 220, 220, 220, 49005, 62, 11147, 13, 33295, 7, 28968, 62, 5162, 408, 1343, 1877, 8, 628, 220, 220, 220, 42287, 62, 11147, 796, 45796, 62, 11147, 1343, 277, 1929, 907, 62, 11147, 1343, 49005, 62, 11147, 628, 220, 220, 220, 1441, 42287, 62, 11147, 628, 198, 4299, 651, 62, 36733, 62, 5162, 44667, 7, 411, 312, 723, 11, 374, 907, 11, 3013, 81, 11, 12085, 11, 9103, 11639, 24561, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5415, 28, 25101, 11, 14805, 62, 30846, 62, 16184, 81, 28, 15, 2599, 198, 220, 220, 220, 37227, 3855, 4238, 44774, 286, 12822, 31562, 4197, 10007, 329, 29598, 25740, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 29598, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 1874, 312, 723, 286, 262, 10958, 287, 543, 356, 2989, 329, 39053, 25740, 13, 198, 220, 220, 220, 374, 907, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 20410, 12, 32604, 12, 23415, 7838, 286, 262, 10958, 13, 198, 220, 220, 220, 3013, 81, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 20906, 5288, 6737, 12, 1462, 12, 3919, 786, 8064, 329, 1366, 9103, 13, 198, 220, 220, 220, 12085, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 20906, 5288, 1988, 329, 12085, 34054, 13, 198, 220, 220, 220, 9103, 1058, 965, 19203, 24561, 3256, 705, 31591, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 10127, 284, 2989, 329, 3967, 357, 12286, 8, 393, 4633, 25740, 287, 262, 29598, 13, 198, 220, 220, 220, 5415, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 15161, 318, 705, 25101, 4458, 1002, 900, 284, 705, 17821, 3256, 691, 262, 5128, 11507, 44774, 329, 257, 2060, 12822, 31562, 4197, 7515, 1377, 262, 530, 351, 262, 4511, 25183, 37188, 1988, 1377, 389, 4504, 13, 198, 220, 220, 220, 14805, 62, 30846, 62, 16184, 81, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 32286, 3895, 326, 15381, 262, 14805, 286, 262, 29598, 878, 10342, 329, 25740, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 20766, 62, 5162, 44667, 1058, 299, 32152, 13, 18747, 393, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 20768, 44774, 329, 37188, 3815, 286, 12822, 31562, 4197, 10007, 329, 29598, 25740, 13, 198, 220, 220, 220, 277, 1929, 76, 62, 5162, 44667, 1058, 299, 32152, 13, 18747, 393, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 20768, 44774, 329, 376, 12418, 44, 3815, 286, 12822, 31562, 4197, 10007, 329, 29598, 25740, 13, 198, 220, 220, 220, 11677, 62, 5162, 44667, 1058, 299, 32152, 13, 18747, 393, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 20768, 44774, 329, 1612, 6116, 286, 12822, 31562, 4197, 10007, 329, 29598, 25740, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 20766, 62, 5162, 44667, 11, 16069, 796, 5004, 62, 431, 4730, 7, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 29598, 11, 9103, 28, 36729, 11, 20766, 62, 400, 10126, 28, 16184, 81, 9, 81, 907, 8, 198, 220, 220, 220, 20766, 62, 5162, 44667, 11, 16069, 796, 5004, 62, 431, 4730, 7, 198, 220, 220, 220, 220, 220, 220, 220, 29598, 532, 14805, 62, 30846, 62, 16184, 81, 9, 81, 907, 11, 9103, 28, 36729, 11, 198, 220, 220, 220, 220, 220, 220, 220, 20766, 62, 400, 10126, 16193, 16184, 81, 532, 14805, 62, 30846, 62, 16184, 81, 27493, 81, 907, 8, 628, 220, 220, 220, 611, 20766, 62, 5162, 44667, 13, 7857, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 45941, 13, 18747, 7, 21737, 828, 45941, 13, 18747, 7, 21737, 828, 45941, 13, 18747, 26933, 12962, 628, 220, 220, 220, 20766, 62, 5162, 44667, 796, 20766, 62, 5162, 44667, 1343, 14805, 62, 30846, 62, 16184, 81, 9, 81, 907, 628, 220, 220, 220, 3297, 796, 45941, 13, 22046, 419, 7, 81, 6231, 58, 45299, 657, 12962, 198, 220, 220, 220, 20766, 62, 5162, 44667, 796, 20766, 62, 5162, 44667, 58, 30619, 60, 198, 220, 220, 220, 16069, 796, 16069, 58, 30619, 60, 628, 220, 220, 220, 1303, 220, 5004, 1771, 5174, 29598, 25740, 15959, 262, 12085, 34054, 329, 6737, 25740, 198, 220, 220, 220, 1394, 62, 521, 1063, 796, 45941, 13, 18747, 26933, 12962, 198, 220, 220, 220, 12085, 62, 12786, 796, 45941, 13, 18747, 26933, 12962, 198, 220, 220, 220, 329, 1312, 11, 357, 21037, 11, 6727, 8, 287, 27056, 378, 7, 81, 6231, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 12085, 62, 2100, 796, 45941, 13, 16345, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 8937, 7, 411, 312, 723, 58, 21037, 25, 45828, 60, 4008, 1220, 357, 37659, 13, 31166, 17034, 7, 45828, 532, 2793, 27493, 81, 907, 8, 198, 220, 220, 220, 220, 220, 220, 220, 12085, 62, 12786, 796, 45941, 13, 33295, 7, 12683, 811, 590, 62, 12786, 11, 12085, 62, 2100, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 12085, 62, 2100, 1875, 12085, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1394, 62, 521, 1063, 796, 45941, 13, 33295, 7, 14894, 62, 521, 1063, 11, 1312, 8, 628, 220, 220, 220, 1394, 62, 521, 1063, 796, 1394, 62, 521, 1063, 13, 459, 2981, 10786, 600, 11537, 198, 220, 220, 220, 20766, 62, 5162, 44667, 796, 20766, 62, 5162, 44667, 58, 14894, 62, 521, 1063, 60, 198, 220, 220, 220, 16069, 796, 16069, 58, 14894, 62, 521, 1063, 60, 198, 220, 220, 220, 12085, 62, 12786, 796, 12085, 62, 12786, 58, 14894, 62, 521, 1063, 60, 628, 220, 220, 220, 611, 20766, 62, 5162, 44667, 13, 7857, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 45941, 13, 18747, 7, 21737, 828, 45941, 13, 18747, 7, 21737, 828, 45941, 13, 18747, 26933, 12962, 628, 220, 220, 220, 20766, 62, 5162, 44667, 62, 9150, 62, 27932, 796, 45941, 13, 259, 16, 67, 7, 411, 312, 723, 11, 20766, 62, 5162, 44667, 8, 198, 220, 220, 220, 11677, 62, 5162, 44667, 796, 45941, 13, 3003, 7, 696, 62, 5162, 44667, 62, 9150, 62, 27932, 6624, 6407, 38381, 15, 60, 628, 220, 220, 220, 1303, 220, 356, 779, 262, 5295, 12085, 3815, 284, 651, 5128, 44774, 329, 262, 376, 12418, 44, 3815, 198, 220, 220, 220, 277, 1929, 76, 62, 5162, 44667, 796, 357, 12683, 811, 590, 62, 12786, 9, 81, 907, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1220, 357, 696, 62, 5162, 44667, 1635, 657, 13, 2425, 26276, 1507, 2857, 40401, 1495, 23753, 4008, 1174, 17, 628, 220, 220, 220, 611, 5415, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 62, 9806, 796, 45941, 13, 853, 9806, 7, 696, 62, 5162, 44667, 8, 198, 220, 220, 220, 220, 220, 220, 220, 20766, 62, 5162, 44667, 796, 20766, 62, 5162, 44667, 58, 312, 87, 62, 9806, 60, 198, 220, 220, 220, 220, 220, 220, 220, 277, 1929, 76, 62, 5162, 44667, 796, 277, 1929, 76, 62, 5162, 44667, 58, 312, 87, 62, 9806, 60, 198, 220, 220, 220, 220, 220, 220, 220, 11677, 62, 5162, 44667, 796, 11677, 62, 5162, 44667, 58, 312, 87, 62, 9806, 60, 628, 220, 220, 220, 1441, 20766, 62, 5162, 44667, 11, 277, 1929, 76, 62, 5162, 44667, 11, 11677, 62, 5162, 44667, 628, 198, 4299, 651, 62, 2759, 62, 2436, 1631, 62, 4908, 1046, 1547, 7, 37266, 62, 11147, 11, 651, 62, 9127, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14139, 62, 31412, 28, 15, 13, 23, 2920, 2624, 39188, 22579, 1507, 1558, 2599, 198, 220, 220, 220, 37227, 13615, 1321, 546, 32063, 12822, 31562, 4197, 6805, 13, 628, 220, 220, 220, 317, 12822, 31562, 4197, 7515, 1312, 318, 32063, 351, 1194, 7515, 611, 262, 14139, 286, 511, 1612, 6116, 318, 1342, 621, 262, 376, 12418, 44, 1988, 286, 262, 40369, 7515, 33096, 416, 262, 705, 25512, 341, 62, 31412, 4458, 628, 220, 220, 220, 383, 4277, 1988, 329, 262, 14139, 62, 31412, 357, 15, 13, 23, 2920, 2624, 39188, 22579, 1507, 1558, 8, 318, 1912, 319, 262, 5288, 2672, 14139, 5253, 284, 15714, 734, 10411, 12822, 31562, 25740, 46121, 362, 9, 19282, 737, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 42287, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 25139, 2357, 15879, 287, 262, 1296, 286, 685, 696, 16, 11, 2644, 11, 20766, 45, 11, 277, 1929, 76, 16, 11, 2644, 11, 277, 1929, 76, 45, 11, 1612, 16, 11, 2644, 11, 1612, 45, 4083, 198, 220, 220, 220, 651, 62, 9127, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 15161, 318, 705, 25101, 4458, 1002, 900, 284, 705, 17821, 6, 691, 262, 1271, 286, 32063, 6805, 318, 4504, 13, 198, 220, 220, 220, 14139, 62, 31412, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 383, 2672, 5288, 14139, 1022, 734, 12822, 31562, 6805, 357, 32604, 16, 11, 277, 1929, 76, 16, 8, 290, 357, 32604, 17, 11, 277, 1929, 76, 17, 8, 318, 5295, 355, 14139, 62, 31412, 1635, 949, 7, 69, 1929, 76, 16, 11, 277, 1929, 76, 17, 737, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 36525, 62, 2436, 1631, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 1423, 1063, 286, 18235, 12822, 31562, 6805, 326, 15959, 262, 34054, 329, 32063, 1108, 11, 23243, 422, 9016, 284, 4511, 37188, 3815, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 1271, 62, 1659, 62, 5589, 3906, 7, 37266, 62, 11147, 8, 198, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 796, 6626, 62, 37266, 7, 37266, 62, 11147, 11, 299, 785, 862, 62, 11147, 8, 198, 220, 220, 220, 1303, 336, 1860, 1990, 82, 62, 11147, 796, 1351, 7, 37659, 13, 18747, 7, 69, 1929, 907, 62, 11147, 8, 1220, 362, 13, 2327, 2780, 2167, 2231, 8, 198, 220, 220, 220, 36525, 62, 2436, 1631, 796, 45941, 13, 18747, 26933, 12962, 198, 220, 220, 220, 32063, 62, 79, 3468, 796, 17635, 198, 220, 220, 220, 3709, 796, 1351, 7, 9521, 7, 77, 785, 862, 62, 11147, 4008, 628, 220, 220, 220, 399, 62, 2436, 1631, 796, 657, 628, 220, 220, 220, 329, 4686, 87, 16, 11, 4686, 87, 17, 287, 340, 861, 10141, 13, 24011, 7352, 7, 23814, 11, 362, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 949, 62, 25512, 341, 796, 949, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1929, 907, 62, 11147, 58, 312, 87, 16, 4357, 277, 1929, 907, 62, 11147, 58, 312, 87, 17, 12962, 1635, 14139, 62, 31412, 198, 220, 220, 220, 220, 220, 220, 220, 14139, 796, 2352, 7, 8210, 1039, 62, 11147, 58, 312, 87, 16, 60, 532, 49005, 62, 11147, 58, 312, 87, 17, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 611, 14139, 1279, 949, 62, 25512, 341, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36525, 62, 2436, 1631, 796, 45941, 13, 33295, 7, 521, 1063, 62, 2436, 1631, 11, 45941, 13, 18747, 26933, 312, 87, 16, 11, 4686, 87, 17, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32063, 62, 79, 3468, 13, 33295, 26933, 312, 87, 16, 11, 4686, 87, 17, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 399, 62, 2436, 1631, 15853, 352, 628, 220, 220, 220, 611, 651, 62, 9127, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 399, 62, 2436, 1631, 628, 220, 220, 220, 36525, 62, 2436, 1631, 796, 45941, 13, 34642, 7, 521, 1063, 62, 2436, 1631, 737, 459, 2981, 10786, 600, 11537, 198, 220, 220, 220, 1303, 220, 3297, 262, 5174, 32063, 6805, 422, 9016, 284, 4511, 37188, 1988, 198, 220, 220, 220, 3297, 796, 45941, 13, 22046, 419, 7, 37659, 13, 18747, 7, 9430, 62, 11147, 38381, 521, 1063, 62, 2436, 1631, 12962, 628, 220, 220, 220, 1441, 36525, 62, 2436, 1631, 58, 30619, 60, 628, 198, 4299, 4781, 62, 5589, 3906, 7, 37266, 62, 11147, 11, 4781, 62, 521, 1063, 2599, 198, 220, 220, 220, 37227, 27914, 10007, 286, 12822, 31562, 4197, 6805, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 42287, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 25139, 2357, 15879, 287, 262, 1296, 286, 685, 696, 16, 11, 2644, 11, 20766, 45, 11, 277, 1929, 76, 16, 11, 2644, 11, 277, 1929, 76, 45, 11, 1612, 16, 11, 2644, 11, 1612, 45, 4083, 198, 220, 220, 220, 4781, 62, 521, 1063, 1058, 493, 11, 1351, 11, 45941, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 1423, 1063, 286, 12822, 31562, 4197, 6805, 11, 3025, 10007, 815, 307, 4615, 422, 42287, 62, 11147, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 42287, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 19433, 1351, 422, 543, 262, 10007, 286, 262, 6163, 12822, 31562, 4197, 6805, 547, 4615, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 1271, 62, 1659, 62, 5589, 3906, 7, 37266, 62, 11147, 8, 198, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 796, 6626, 62, 37266, 7, 37266, 62, 11147, 11, 299, 785, 862, 62, 11147, 8, 628, 220, 220, 220, 611, 318, 39098, 7, 28956, 62, 521, 1063, 11, 45941, 13, 358, 18747, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 521, 1063, 796, 1351, 7, 28956, 62, 521, 1063, 8, 198, 220, 220, 220, 1288, 361, 407, 318, 39098, 7, 28956, 62, 521, 1063, 11, 1351, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 521, 1063, 796, 685, 28956, 62, 521, 1063, 60, 628, 220, 220, 220, 45796, 62, 11147, 796, 1351, 7, 37659, 13, 33678, 7, 37659, 13, 18747, 7, 9430, 62, 11147, 828, 4781, 62, 521, 1063, 4008, 198, 220, 220, 220, 277, 1929, 907, 62, 11147, 796, 1351, 7, 37659, 13, 33678, 7, 37659, 13, 18747, 7, 69, 1929, 907, 62, 11147, 828, 4781, 62, 521, 1063, 4008, 198, 220, 220, 220, 49005, 62, 11147, 796, 1351, 7, 37659, 13, 33678, 7, 37659, 13, 18747, 7, 8210, 1039, 62, 11147, 828, 4781, 62, 521, 1063, 4008, 628, 220, 220, 220, 42287, 62, 11147, 796, 45796, 62, 11147, 1343, 277, 1929, 907, 62, 11147, 1343, 49005, 62, 11147, 628, 220, 220, 220, 1441, 42287, 62, 11147, 628, 198, 4299, 651, 62, 13466, 62, 11147, 7, 626, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 11, 288, 310, 11, 717, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 28, 14202, 11, 6737, 62, 81, 6231, 28, 14202, 11, 6737, 62, 27932, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2700, 62, 13635, 28, 25101, 11, 42287, 62, 1084, 28, 14202, 11, 42287, 62, 9806, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 28, 14202, 2599, 198, 220, 220, 220, 37227, 35, 2357, 3810, 649, 1266, 4197, 329, 10958, 13, 628, 220, 220, 220, 1002, 428, 318, 262, 717, 4197, 24415, 329, 262, 10958, 257, 649, 1266, 4197, 318, 8686, 290, 663, 10007, 389, 4504, 287, 1266, 62, 11147, 62, 4868, 13, 628, 220, 220, 220, 1002, 340, 318, 407, 262, 717, 4197, 24415, 11, 262, 649, 4197, 318, 3688, 284, 262, 1459, 1266, 4197, 14275, 287, 1266, 62, 11147, 62, 4868, 13, 1002, 262, 649, 4197, 318, 9871, 357, 12501, 1384, 2884, 262, 317, 2149, 66, 34054, 828, 262, 10007, 286, 262, 649, 4197, 389, 4504, 287, 1266, 62, 11147, 62, 4868, 13, 15323, 11, 262, 1468, 1266, 62, 11147, 62, 4868, 318, 4504, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 11555, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 43137, 9619, 357, 20850, 1203, 737, 198, 220, 220, 220, 1366, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 13745, 1366, 286, 10958, 13, 198, 220, 220, 220, 8563, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 20410, 12, 32604, 12, 23415, 7838, 3815, 13, 198, 220, 220, 220, 42287, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 25139, 2357, 15879, 287, 262, 1296, 286, 685, 696, 16, 11, 2644, 11, 20766, 45, 11, 277, 1929, 76, 16, 11, 2644, 11, 277, 1929, 76, 45, 11, 1612, 16, 11, 2644, 11, 1612, 45, 4083, 198, 220, 220, 220, 288, 310, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 28261, 7268, 11507, 6460, 329, 262, 6596, 15830, 13, 198, 220, 220, 220, 717, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 15161, 318, 705, 25101, 4458, 1002, 900, 284, 705, 17821, 3256, 262, 649, 4197, 481, 307, 8686, 355, 1266, 4197, 290, 4504, 287, 1266, 62, 11147, 62, 4868, 13, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 1459, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 198, 220, 220, 220, 6737, 62, 81, 6231, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 399, 7287, 1351, 7268, 7508, 546, 16069, 286, 262, 10958, 326, 547, 6108, 284, 3994, 6737, 13, 383, 20437, 12, 1659, 12, 11147, 16765, 389, 691, 6157, 329, 262, 37410, 9619, 1626, 777, 16069, 13, 198, 220, 220, 220, 6737, 62, 27932, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 41146, 7177, 7268, 262, 1321, 286, 6737, 62, 81, 6231, 13, 198, 220, 220, 220, 2700, 62, 13635, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 32286, 3895, 13, 15161, 318, 705, 25101, 4458, 1002, 900, 284, 705, 17821, 3256, 262, 649, 4197, 481, 307, 4137, 284, 1716, 262, 1266, 4197, 13, 198, 220, 220, 220, 42287, 62, 1084, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 5288, 7095, 329, 10007, 25, 685, 1084, 62, 696, 16, 11, 2644, 11, 949, 62, 696, 45, 11, 949, 62, 69, 1929, 76, 16, 11, 2644, 11, 949, 62, 69, 1929, 76, 45, 11, 949, 62, 32604, 16, 11, 2644, 11, 949, 62, 32604, 45, 60, 198, 220, 220, 220, 42287, 62, 9806, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 5415, 7095, 329, 10007, 25, 685, 9806, 62, 696, 16, 11, 2644, 11, 3509, 62, 696, 45, 11, 3509, 62, 69, 1929, 76, 16, 11, 2644, 11, 3509, 62, 69, 1929, 76, 45, 11, 3509, 62, 32604, 16, 11, 2644, 11, 3509, 62, 32604, 45, 60, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 7147, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 717, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 58, 22, 60, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 3081, 62, 13716, 796, 1266, 62, 11147, 62, 4868, 58, 1157, 60, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3081, 62, 13716, 796, 17635, 628, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 1271, 62, 1659, 62, 5589, 3906, 7, 37266, 62, 11147, 8, 628, 220, 220, 220, 42287, 62, 11147, 11, 42287, 62, 263, 3808, 11, 299, 785, 862, 62, 11147, 796, 1620, 62, 293, 459, 62, 16485, 3565, 62, 11147, 7, 198, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 11, 288, 310, 11, 42287, 62, 1084, 28, 37266, 62, 1084, 11, 42287, 62, 9806, 28, 37266, 62, 9806, 8, 628, 220, 220, 220, 1303, 220, 2198, 611, 4197, 6805, 15959, 13677, 9987, 198, 220, 220, 220, 611, 299, 785, 862, 62, 11147, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1006, 270, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 981, 1006, 270, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 11147, 11, 42287, 62, 263, 3808, 11, 299, 785, 862, 62, 11147, 11, 42287, 62, 1084, 11, 42287, 62, 9806, 11, 3081, 62, 13716, 11, 1006, 270, 796, 2198, 62, 37266, 62, 11147, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 11, 42287, 62, 263, 3808, 11, 288, 310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3081, 62, 13716, 11, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 796, 25439, 7, 626, 11, 1635, 37266, 62, 11147, 737, 25843, 3419, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 796, 1366, 1635, 657, 628, 220, 220, 220, 374, 11072, 17, 11, 257, 44240, 796, 20437, 62, 1659, 62, 11147, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 11, 1266, 62, 11147, 11, 8563, 11, 299, 785, 862, 62, 11147, 11, 9335, 28, 12683, 282, 62, 27932, 11, 651, 62, 18452, 66, 28, 17821, 8, 628, 220, 220, 220, 29598, 796, 1366, 532, 1266, 62, 11147, 628, 220, 220, 220, 279, 8367, 796, 2198, 62, 411, 312, 723, 62, 1640, 62, 27237, 1483, 7, 411, 312, 723, 11, 8563, 11, 9335, 28, 12683, 282, 62, 27932, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 628, 220, 220, 220, 1303, 220, 1441, 262, 1351, 286, 1266, 4197, 2482, 611, 612, 373, 645, 1468, 1351, 286, 1266, 4197, 2482, 329, 7208, 198, 220, 220, 220, 611, 717, 25, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 11147, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 37266, 62, 11147, 11, 42287, 62, 263, 3808, 11, 299, 785, 862, 62, 11147, 11, 1266, 62, 11147, 11, 29598, 11, 374, 11072, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 44240, 11, 649, 62, 11147, 11, 42287, 62, 1084, 11, 42287, 62, 9806, 11, 279, 8367, 11, 3081, 62, 13716, 60, 628, 220, 220, 220, 1303, 220, 1441, 649, 1266, 62, 11147, 62, 4868, 611, 262, 317, 2149, 66, 1988, 318, 4833, 198, 220, 220, 220, 257, 44240, 62, 727, 796, 1266, 62, 11147, 62, 4868, 58, 21, 60, 198, 220, 220, 220, 611, 14808, 18452, 66, 1279, 257, 44240, 62, 727, 8, 290, 407, 45941, 13, 271, 19836, 7, 18452, 66, 11, 257, 44240, 62, 727, 11, 379, 349, 28, 16, 68, 12, 16, 4008, 393, 2700, 62, 13635, 25, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 11147, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 37266, 62, 11147, 11, 42287, 62, 263, 3808, 11, 299, 785, 862, 62, 11147, 11, 1266, 62, 11147, 11, 29598, 11, 374, 11072, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 44240, 11, 649, 62, 11147, 11, 42287, 62, 1084, 11, 42287, 62, 9806, 11, 279, 8367, 11, 3081, 62, 13716, 60, 628, 220, 220, 220, 1303, 220, 1441, 1468, 1266, 62, 11147, 62, 4868, 611, 262, 257, 44240, 1988, 318, 2440, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 58, 22, 60, 796, 10352, 198, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 198, 4299, 2198, 62, 1640, 62, 31591, 62, 411, 312, 723, 7, 626, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 14202, 11, 6737, 62, 27932, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2700, 62, 13635, 28, 25101, 11, 651, 62, 9127, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 651, 62, 312, 87, 28, 25101, 11, 7838, 62, 2777, 522, 62, 27932, 28, 14202, 2599, 198, 220, 220, 220, 37227, 9787, 329, 4633, 29598, 3033, 290, 1949, 284, 1006, 270, 606, 13, 628, 220, 220, 220, 775, 8160, 4633, 29598, 3033, 355, 4633, 25740, 287, 262, 29598, 326, 547, 5495, 416, 262, 4197, 13, 2312, 4633, 25740, 423, 284, 423, 257, 5288, 4633, 6737, 12, 1462, 12, 3919, 786, 8064, 286, 288, 310, 17816, 16184, 81, 62, 31591, 6, 4083, 628, 220, 220, 220, 554, 1339, 286, 257, 4633, 29598, 3895, 11, 356, 1949, 284, 6330, 262, 12822, 31562, 4197, 7515, 326, 318, 6666, 262, 3895, 351, 734, 40369, 6805, 13, 775, 691, 2453, 428, 4610, 611, 340, 19299, 257, 1365, 4197, 355, 5295, 416, 262, 317, 2149, 66, 1988, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 11555, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 43137, 9619, 357, 20850, 1203, 737, 198, 220, 220, 220, 1366, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 13745, 1366, 286, 10958, 13, 198, 220, 220, 220, 8563, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 20410, 12, 32604, 12, 23415, 7838, 3815, 13, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 1459, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 198, 220, 220, 220, 288, 310, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 28261, 7268, 11507, 6460, 329, 262, 6596, 15830, 13, 198, 220, 220, 220, 6737, 62, 81, 6231, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 399, 7287, 1351, 7268, 7508, 546, 16069, 286, 262, 10958, 326, 547, 6108, 284, 3994, 6737, 13, 383, 20437, 12, 1659, 12, 11147, 16765, 389, 691, 6157, 329, 262, 37410, 9619, 1626, 777, 16069, 13, 198, 220, 220, 220, 6737, 62, 27932, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 41146, 7177, 7268, 262, 1321, 286, 6737, 62, 81, 6231, 13, 198, 220, 220, 220, 2700, 62, 13635, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 32286, 3895, 13, 15161, 318, 705, 25101, 4458, 1002, 900, 284, 705, 17821, 3256, 262, 649, 4197, 481, 307, 4137, 284, 1716, 262, 1266, 4197, 13, 198, 220, 220, 220, 651, 62, 9127, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 15161, 318, 705, 25101, 4458, 1002, 900, 284, 705, 17821, 3256, 691, 262, 1271, 286, 14963, 4633, 29598, 3033, 481, 307, 4504, 13, 198, 220, 220, 220, 651, 62, 312, 87, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 15161, 318, 705, 25101, 4458, 1002, 900, 284, 705, 17821, 3256, 262, 6376, 286, 262, 12822, 31562, 4197, 7515, 6666, 262, 4633, 29598, 3895, 318, 4504, 13, 554, 1339, 286, 3294, 4633, 29598, 3033, 11, 691, 262, 6376, 286, 530, 286, 606, 318, 4504, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 7147, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 42287, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 15, 60, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 17, 60, 628, 220, 220, 220, 1303, 220, 287, 1339, 257, 2060, 374, 907, 1988, 318, 1813, 2427, 286, 281, 7177, 198, 220, 220, 220, 611, 407, 318, 39098, 7, 48277, 11, 45941, 13, 358, 18747, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 8563, 796, 45941, 13, 1952, 7, 11925, 7, 7890, 4008, 1635, 8563, 628, 220, 220, 220, 611, 299, 785, 862, 62, 11147, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 651, 62, 9127, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 657, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 220, 220, 220, 29598, 796, 1266, 62, 11147, 62, 4868, 58, 19, 60, 628, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 796, 6626, 62, 37266, 7, 37266, 62, 11147, 11, 299, 785, 862, 62, 11147, 8, 628, 220, 220, 220, 20766, 62, 5162, 44667, 11, 277, 1929, 76, 62, 5162, 44667, 11, 11677, 62, 5162, 44667, 796, 651, 62, 36733, 62, 5162, 44667, 7, 198, 220, 220, 220, 220, 220, 220, 220, 29598, 11, 8563, 58, 15, 4357, 288, 310, 17816, 16184, 81, 62, 31591, 6, 4357, 288, 310, 17816, 12683, 811, 590, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 9103, 11639, 31591, 11537, 628, 220, 220, 220, 1303, 220, 2198, 611, 4633, 29598, 3895, 373, 1541, 1944, 287, 262, 1366, 198, 220, 220, 220, 4781, 62, 521, 1063, 796, 17635, 198, 220, 220, 220, 329, 1312, 11, 11677, 287, 27056, 378, 7, 28968, 62, 5162, 44667, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 29598, 58, 28968, 60, 1875, 357, 7890, 58, 28968, 60, 532, 288, 310, 17816, 16184, 81, 20520, 9, 48277, 58, 15, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 521, 1063, 13, 33295, 7, 72, 8, 628, 220, 220, 220, 611, 18896, 7, 28956, 62, 521, 1063, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 20766, 62, 5162, 44667, 11, 277, 1929, 76, 62, 5162, 44667, 11, 11677, 62, 5162, 44667, 796, 4781, 62, 5589, 3906, 62, 6738, 62, 7266, 20713, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 696, 62, 5162, 44667, 11, 277, 1929, 76, 62, 5162, 44667, 11, 11677, 62, 5162, 44667, 4357, 4781, 62, 521, 1063, 8, 628, 220, 220, 220, 611, 651, 62, 9127, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 357, 11925, 7, 696, 62, 5162, 44667, 4008, 628, 220, 220, 220, 611, 18896, 7, 696, 62, 5162, 44667, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 220, 220, 220, 1303, 220, 287, 1339, 286, 3294, 4633, 29598, 3033, 11, 3297, 606, 287, 1502, 286, 3649, 37188, 3815, 198, 220, 220, 220, 3297, 796, 45941, 13, 22046, 419, 7, 696, 62, 5162, 44667, 8, 198, 220, 220, 220, 20766, 62, 5162, 44667, 796, 45941, 13, 18747, 7, 696, 62, 5162, 44667, 38381, 30619, 60, 198, 220, 220, 220, 277, 1929, 76, 62, 5162, 44667, 796, 45941, 13, 18747, 7, 69, 1929, 76, 62, 5162, 44667, 38381, 30619, 60, 198, 220, 220, 220, 11677, 62, 5162, 44667, 796, 45941, 13, 18747, 7, 28968, 62, 5162, 44667, 38381, 30619, 60, 628, 220, 220, 220, 329, 20766, 11, 277, 1929, 76, 11, 11677, 287, 19974, 7, 696, 62, 5162, 44667, 11, 277, 1929, 76, 62, 5162, 44667, 11, 11677, 62, 5162, 44667, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 62, 9319, 796, 3509, 7, 15, 11, 493, 7, 28968, 532, 277, 1929, 76, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 62, 7211, 796, 493, 7, 28968, 1343, 277, 1929, 76, 8, 1343, 362, 198, 220, 220, 220, 220, 220, 220, 220, 19607, 62, 312, 87, 796, 2198, 62, 4758, 62, 4908, 31562, 62, 3642, 1299, 62, 30053, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 62, 9319, 11, 4686, 87, 62, 7211, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 651, 62, 312, 87, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 19607, 62, 312, 87, 198, 220, 220, 220, 220, 220, 220, 220, 611, 19607, 62, 312, 87, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 11147, 796, 6330, 62, 4908, 31562, 62, 4480, 62, 11545, 62, 3605, 62, 1952, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 11, 11555, 11, 8563, 58, 15, 4357, 288, 310, 17816, 16184, 81, 6, 4357, 288, 310, 17816, 12683, 811, 590, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 11147, 11, 19607, 62, 312, 87, 11, 11677, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 796, 651, 62, 13466, 62, 11147, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 11, 288, 310, 11, 717, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 28, 13466, 62, 11147, 62, 4868, 11, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 2700, 62, 13635, 28, 3174, 62, 13635, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 628, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 17, 60, 198, 220, 220, 220, 220, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 796, 6626, 62, 37266, 7, 37266, 62, 11147, 11, 299, 785, 862, 62, 11147, 8, 198, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 198, 4299, 1949, 62, 11147, 62, 4480, 62, 3605, 62, 5589, 3906, 7, 626, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19607, 62, 312, 87, 11, 6737, 62, 81, 6231, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 27932, 28, 14202, 11, 2700, 62, 13635, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14805, 62, 30846, 62, 16184, 81, 28, 15, 11, 7838, 62, 2777, 522, 62, 27932, 28, 14202, 2599, 198, 220, 220, 220, 37227, 3109, 9152, 12822, 31562, 4197, 7515, 290, 1949, 4197, 351, 649, 4238, 44774, 13, 628, 220, 220, 220, 3274, 356, 1949, 257, 649, 1006, 270, 416, 655, 10829, 262, 7515, 357, 72, 8, 290, 4375, 645, 649, 6805, 13, 1002, 428, 857, 407, 670, 356, 5004, 44774, 329, 3224, 4197, 6805, 422, 262, 29598, 326, 318, 4635, 611, 262, 7515, 357, 72, 8, 318, 25148, 290, 1949, 257, 649, 4197, 13, 775, 691, 2453, 262, 649, 4197, 4610, 611, 340, 19299, 257, 1365, 4197, 355, 5295, 416, 262, 317, 2149, 66, 1988, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 11555, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 43137, 9619, 357, 20850, 1203, 737, 198, 220, 220, 220, 1366, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 13745, 1366, 286, 10958, 13, 198, 220, 220, 220, 8563, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 20410, 12, 32604, 12, 23415, 7838, 3815, 13, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 1459, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 198, 220, 220, 220, 288, 310, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 28261, 7268, 11507, 6460, 329, 262, 6596, 15830, 13, 198, 220, 220, 220, 19607, 62, 312, 87, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 12901, 286, 12822, 31562, 4197, 7515, 326, 481, 307, 4615, 13, 198, 220, 220, 220, 6737, 62, 81, 6231, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 399, 7287, 1351, 7268, 7508, 546, 16069, 286, 262, 10958, 326, 547, 6108, 284, 3994, 6737, 13, 383, 20437, 12, 1659, 12, 11147, 16765, 389, 691, 6157, 329, 262, 37410, 9619, 1626, 777, 16069, 13, 198, 220, 220, 220, 6737, 62, 27932, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 41146, 7177, 7268, 262, 1321, 286, 6737, 62, 81, 6231, 13, 198, 220, 220, 220, 2700, 62, 13635, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 32286, 3895, 13, 15161, 318, 705, 25101, 4458, 1002, 900, 284, 705, 17821, 3256, 262, 649, 4197, 481, 307, 4137, 284, 1716, 262, 1266, 4197, 13, 198, 220, 220, 220, 14805, 62, 30846, 62, 16184, 81, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 32286, 3895, 326, 15381, 262, 14805, 286, 262, 29598, 878, 10342, 329, 25740, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 7147, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 42287, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 15, 60, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 17, 60, 198, 220, 220, 220, 257, 44240, 62, 727, 796, 1266, 62, 11147, 62, 4868, 58, 21, 60, 198, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 796, 6626, 62, 37266, 7, 37266, 62, 11147, 11, 299, 785, 862, 62, 11147, 8, 628, 220, 220, 220, 1303, 4686, 87, 62, 9319, 62, 411, 312, 723, 796, 3509, 7, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 657, 11, 493, 7, 8210, 1039, 62, 11147, 58, 1069, 9152, 62, 312, 87, 60, 532, 277, 1929, 907, 62, 11147, 58, 1069, 9152, 62, 312, 87, 60, 14, 17, 4008, 198, 220, 220, 220, 1303, 4686, 87, 62, 7211, 62, 411, 312, 723, 796, 493, 7, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 49005, 62, 11147, 58, 1069, 9152, 62, 312, 87, 60, 1343, 277, 1929, 907, 62, 11147, 58, 1069, 9152, 62, 312, 87, 60, 14, 17, 8, 1343, 362, 628, 220, 220, 220, 1303, 220, 19607, 7515, 422, 11507, 1351, 286, 6805, 198, 220, 220, 220, 42287, 62, 11147, 62, 3605, 796, 4781, 62, 5589, 3906, 7, 37266, 62, 11147, 11, 19607, 62, 312, 87, 8, 628, 220, 220, 220, 1303, 220, 4439, 649, 1266, 4197, 351, 15009, 6805, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 62, 3605, 796, 651, 62, 13466, 62, 11147, 7, 198, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 62, 3605, 11, 288, 310, 11, 717, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 28, 14202, 11, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 2700, 62, 13635, 28, 3174, 62, 13635, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 628, 220, 220, 220, 1303, 220, 1441, 649, 1266, 4197, 351, 15009, 7515, 611, 663, 317, 2149, 66, 1988, 318, 2793, 198, 220, 220, 220, 257, 44240, 796, 1266, 62, 11147, 62, 4868, 62, 3605, 58, 21, 60, 198, 220, 220, 220, 611, 14808, 18452, 66, 1279, 257, 44240, 62, 727, 8, 290, 407, 45941, 13, 271, 19836, 7, 18452, 66, 11, 257, 44240, 62, 727, 11, 379, 349, 28, 16, 68, 12, 16, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 62, 3605, 628, 220, 220, 220, 1303, 220, 2989, 329, 649, 3967, 29598, 25740, 198, 220, 220, 220, 42287, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 62, 3605, 58, 15, 60, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 62, 3605, 58, 17, 60, 628, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 796, 6626, 62, 37266, 7, 37266, 62, 11147, 11, 299, 785, 862, 62, 11147, 8, 628, 220, 220, 220, 29598, 796, 1366, 532, 5929, 62, 4908, 31562, 7, 9430, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 11, 11555, 8, 628, 220, 220, 220, 1303, 20766, 62, 5162, 44667, 11, 277, 1929, 76, 62, 5162, 44667, 11, 11677, 62, 5162, 44667, 796, 651, 62, 36733, 62, 5162, 44667, 7, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 29598, 58, 312, 87, 62, 9319, 62, 411, 312, 723, 25, 312, 87, 62, 7211, 62, 411, 312, 723, 4357, 8563, 58, 15, 4357, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 288, 310, 17816, 16184, 81, 6, 4357, 288, 310, 17816, 12683, 811, 590, 6, 4357, 9103, 11639, 24561, 3256, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 14805, 62, 30846, 62, 16184, 81, 28, 12093, 4470, 62, 30846, 62, 16184, 81, 8, 198, 220, 220, 220, 1303, 11677, 62, 5162, 44667, 796, 11677, 62, 5162, 44667, 1343, 4686, 87, 62, 9319, 62, 411, 312, 723, 198, 220, 220, 220, 20766, 62, 5162, 44667, 11, 277, 1929, 76, 62, 5162, 44667, 11, 11677, 62, 5162, 44667, 796, 651, 62, 36733, 62, 5162, 44667, 7, 198, 220, 220, 220, 220, 220, 220, 220, 29598, 11, 8563, 58, 15, 4357, 288, 310, 17816, 16184, 81, 6, 4357, 288, 310, 17816, 12683, 811, 590, 6, 4357, 9103, 11639, 24561, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14805, 62, 30846, 62, 16184, 81, 28, 12093, 4470, 62, 30846, 62, 16184, 81, 8, 628, 220, 220, 220, 1303, 220, 1441, 2656, 1266, 4197, 1351, 611, 612, 389, 645, 44774, 329, 649, 6805, 284, 4197, 287, 262, 29598, 198, 220, 220, 220, 611, 20766, 62, 5162, 44667, 13, 7857, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 220, 220, 220, 1303, 220, 651, 649, 1266, 4197, 351, 3224, 6805, 25183, 422, 262, 29598, 198, 220, 220, 220, 45796, 62, 11147, 796, 1351, 7, 9430, 62, 11147, 8, 1343, 1351, 7, 696, 62, 5162, 44667, 8, 198, 220, 220, 220, 277, 1929, 907, 62, 11147, 796, 1351, 7, 69, 1929, 907, 62, 11147, 8, 1343, 1351, 7, 69, 1929, 76, 62, 5162, 44667, 8, 198, 220, 220, 220, 49005, 62, 11147, 796, 1351, 7, 8210, 1039, 62, 11147, 8, 1343, 1351, 7, 28968, 62, 5162, 44667, 8, 628, 220, 220, 220, 42287, 62, 11147, 62, 3605, 796, 45796, 62, 11147, 1343, 277, 1929, 907, 62, 11147, 1343, 49005, 62, 11147, 628, 220, 220, 220, 1266, 62, 11147, 62, 4868, 62, 3605, 796, 651, 62, 13466, 62, 11147, 7, 198, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 62, 3605, 11, 288, 310, 11, 717, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 28, 13466, 62, 11147, 62, 4868, 62, 3605, 11, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 2700, 62, 13635, 28, 3174, 62, 13635, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 628, 220, 220, 220, 1303, 220, 1441, 649, 1266, 4197, 611, 663, 317, 2149, 66, 1988, 318, 2793, 198, 220, 220, 220, 257, 44240, 796, 1266, 62, 11147, 62, 4868, 62, 3605, 58, 21, 60, 198, 220, 220, 220, 611, 14808, 18452, 66, 1279, 257, 44240, 62, 727, 8, 290, 407, 45941, 13, 271, 19836, 7, 18452, 66, 11, 257, 44240, 62, 727, 11, 379, 349, 28, 16, 68, 12, 16, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 62, 3605, 628, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 198, 4299, 2198, 62, 1640, 62, 36654, 62, 30053, 7, 626, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 14202, 11, 6737, 62, 27932, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2700, 62, 13635, 28, 25101, 11, 7838, 62, 2777, 522, 62, 27932, 28, 14202, 2599, 198, 220, 220, 220, 37227, 9787, 329, 3154, 3033, 290, 1949, 284, 1006, 270, 606, 13, 628, 220, 220, 220, 775, 8160, 3154, 4197, 6805, 355, 1719, 257, 376, 12418, 44, 1988, 326, 318, 5749, 416, 257, 5766, 286, 288, 310, 17816, 69, 1929, 76, 62, 31412, 20520, 621, 262, 1218, 3154, 395, 7515, 287, 262, 10958, 13, 628, 220, 220, 220, 554, 1339, 286, 257, 3154, 4197, 7515, 11, 356, 717, 1949, 284, 6330, 340, 351, 734, 40369, 6805, 13, 1002, 428, 857, 407, 670, 356, 5004, 44774, 329, 3224, 4197, 6805, 422, 262, 29598, 326, 318, 4635, 611, 262, 7515, 357, 72, 8, 318, 25148, 290, 1949, 257, 649, 4197, 13, 628, 220, 220, 220, 775, 691, 2453, 257, 649, 4197, 4610, 611, 340, 19299, 257, 1365, 4197, 355, 5295, 416, 262, 317, 2149, 66, 1988, 13, 628, 220, 220, 220, 1002, 612, 318, 691, 530, 4197, 7515, 287, 262, 10958, 11, 428, 2198, 318, 407, 6157, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 11555, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 43137, 9619, 357, 20850, 1203, 737, 198, 220, 220, 220, 1366, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 13745, 1366, 286, 10958, 13, 198, 220, 220, 220, 8563, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 20410, 12, 32604, 12, 23415, 7838, 3815, 13, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 1459, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 198, 220, 220, 220, 288, 310, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 28261, 7268, 11507, 6460, 329, 262, 6596, 15830, 13, 198, 220, 220, 220, 6737, 62, 81, 6231, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 399, 7287, 1351, 7268, 7508, 546, 16069, 286, 262, 10958, 326, 547, 6108, 284, 3994, 6737, 13, 383, 20437, 12, 1659, 12, 11147, 16765, 389, 691, 6157, 329, 262, 37410, 9619, 1626, 777, 16069, 13, 198, 220, 220, 220, 6737, 62, 27932, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 41146, 7177, 7268, 262, 1321, 286, 6737, 62, 81, 6231, 13, 198, 220, 220, 220, 2700, 62, 13635, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 32286, 3895, 13, 15161, 318, 705, 25101, 4458, 1002, 900, 284, 705, 17821, 3256, 262, 649, 4197, 481, 307, 4137, 284, 1716, 262, 1266, 4197, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 7147, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 58, 22, 60, 796, 10352, 628, 220, 220, 220, 42287, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 15, 60, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 17, 60, 198, 220, 220, 220, 611, 299, 785, 862, 62, 11147, 1279, 362, 290, 288, 310, 17816, 69, 1929, 76, 62, 31412, 20520, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 796, 6626, 62, 37266, 7, 37266, 62, 11147, 11, 299, 785, 862, 62, 11147, 8, 628, 220, 220, 220, 277, 1929, 907, 62, 82, 9741, 796, 23243, 7, 69, 1929, 907, 62, 11147, 8, 198, 220, 220, 220, 611, 357, 69, 1929, 907, 62, 82, 9741, 58, 12, 16, 60, 1279, 288, 310, 17816, 69, 1929, 76, 62, 31412, 20520, 1635, 277, 1929, 907, 62, 82, 9741, 58, 12, 17, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 220, 220, 220, 19607, 62, 312, 87, 796, 45941, 13, 853, 9806, 7, 37659, 13, 18747, 7, 69, 1929, 907, 62, 11147, 4008, 628, 220, 220, 220, 42287, 62, 11147, 796, 6330, 62, 4908, 31562, 62, 4480, 62, 11545, 62, 3605, 62, 1952, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 11, 11555, 11, 8563, 58, 15, 4357, 288, 310, 17816, 16184, 81, 6, 4357, 288, 310, 17816, 12683, 811, 590, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 11147, 11, 19607, 62, 312, 87, 11, 49005, 62, 11147, 58, 1069, 9152, 62, 312, 87, 12962, 628, 220, 220, 220, 611, 18896, 7, 37266, 62, 11147, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 796, 651, 62, 13466, 62, 11147, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 11, 288, 310, 11, 717, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 28, 13466, 62, 11147, 62, 4868, 11, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 2700, 62, 13635, 28, 3174, 62, 13635, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 628, 220, 220, 220, 611, 1266, 62, 11147, 62, 4868, 58, 22, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 220, 220, 220, 42287, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 15, 60, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 17, 60, 198, 220, 220, 220, 611, 299, 785, 862, 62, 11147, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 796, 6626, 62, 37266, 7, 37266, 62, 11147, 11, 299, 785, 862, 62, 11147, 8, 628, 220, 220, 220, 19607, 62, 312, 87, 796, 45941, 13, 853, 9806, 7, 37659, 13, 18747, 7, 69, 1929, 907, 62, 11147, 4008, 628, 220, 220, 220, 1303, 329, 14805, 62, 30846, 62, 16184, 81, 287, 2837, 7, 600, 7, 67, 310, 17816, 16184, 81, 6, 12962, 2599, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 796, 1949, 62, 11147, 62, 4480, 62, 3605, 62, 5589, 3906, 7, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 19607, 62, 312, 87, 11, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 2700, 62, 13635, 28, 3174, 62, 13635, 11, 14805, 62, 30846, 62, 16184, 81, 28, 12093, 4470, 62, 30846, 62, 16184, 81, 8, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 611, 1266, 62, 11147, 62, 4868, 58, 22, 5974, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 796, 1949, 62, 11147, 62, 4480, 62, 3605, 62, 5589, 3906, 7, 198, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 19607, 62, 312, 87, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2700, 62, 13635, 28, 3174, 62, 13635, 11, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 628, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 198, 4299, 2198, 62, 1640, 62, 2436, 1631, 62, 30053, 7, 626, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 14202, 11, 6737, 62, 27932, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2700, 62, 13635, 28, 25101, 11, 7838, 62, 2777, 522, 62, 27932, 28, 14202, 2599, 198, 220, 220, 220, 37227, 9787, 329, 32063, 3033, 290, 1949, 284, 1006, 270, 606, 13, 628, 220, 220, 220, 775, 8160, 734, 4197, 6805, 355, 32063, 611, 262, 1612, 2292, 286, 530, 4197, 7515, 318, 7763, 1626, 262, 3210, 28833, 16654, 357, 32604, 532, 14367, 11, 1612, 1343, 14367, 8, 286, 1194, 4197, 7515, 13, 628, 220, 220, 220, 554, 1339, 286, 32063, 4197, 6805, 11, 356, 1949, 284, 5004, 44774, 329, 649, 4197, 6805, 422, 262, 29598, 326, 318, 4635, 611, 530, 286, 262, 6805, 318, 25148, 290, 1949, 257, 649, 4197, 13, 775, 923, 416, 23494, 262, 4197, 7515, 351, 262, 9016, 37188, 1988, 13, 628, 220, 220, 220, 775, 691, 2453, 257, 649, 4197, 4610, 611, 340, 19299, 257, 1365, 4197, 355, 5295, 416, 262, 317, 2149, 66, 1988, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 11555, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 43137, 9619, 357, 20850, 1203, 737, 198, 220, 220, 220, 1366, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 13745, 1366, 286, 10958, 13, 198, 220, 220, 220, 8563, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 20410, 12, 32604, 12, 23415, 7838, 3815, 13, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 1459, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 198, 220, 220, 220, 288, 310, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 28261, 7268, 11507, 6460, 329, 262, 6596, 15830, 13, 198, 220, 220, 220, 6737, 62, 81, 6231, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 399, 7287, 1351, 7268, 7508, 546, 16069, 286, 262, 10958, 326, 547, 6108, 284, 3994, 6737, 13, 383, 20437, 12, 1659, 12, 11147, 16765, 389, 691, 6157, 329, 262, 37410, 9619, 1626, 777, 16069, 13, 198, 220, 220, 220, 6737, 62, 27932, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 41146, 7177, 7268, 262, 1321, 286, 6737, 62, 81, 6231, 13, 198, 220, 220, 220, 2700, 62, 13635, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 32286, 3895, 13, 15161, 318, 705, 25101, 4458, 1002, 900, 284, 705, 17821, 3256, 262, 649, 4197, 481, 307, 4137, 284, 1716, 262, 1266, 4197, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 7147, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 42287, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 15, 60, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 17, 60, 198, 220, 220, 220, 611, 299, 785, 862, 62, 11147, 1279, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 220, 220, 220, 19607, 62, 521, 1063, 796, 651, 62, 2759, 62, 2436, 1631, 62, 4908, 1046, 1547, 7, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 11147, 11, 14139, 62, 31412, 28, 67, 310, 17816, 25512, 341, 62, 31412, 6, 12962, 628, 220, 220, 220, 1303, 220, 14267, 611, 612, 389, 645, 32063, 3033, 198, 220, 220, 220, 611, 19607, 62, 521, 1063, 13, 7857, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 220, 220, 220, 329, 19607, 62, 312, 87, 287, 19607, 62, 521, 1063, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 796, 1949, 62, 11147, 62, 4480, 62, 3605, 62, 5589, 3906, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 19607, 62, 312, 87, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2700, 62, 13635, 28, 3174, 62, 13635, 11, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1266, 62, 11147, 62, 4868, 58, 22, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 329, 14805, 62, 30846, 62, 16184, 81, 287, 2837, 7, 600, 7, 67, 310, 17816, 16184, 81, 6, 12962, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 796, 1949, 62, 11147, 62, 4480, 62, 3605, 62, 5589, 3906, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 19607, 62, 312, 87, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 2700, 62, 13635, 28, 3174, 62, 13635, 11, 14805, 62, 30846, 62, 16184, 81, 28, 12093, 4470, 62, 30846, 62, 16184, 81, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 611, 1266, 62, 11147, 62, 4868, 58, 22, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 198, 4299, 3081, 62, 9122, 7, 626, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 11, 299, 785, 862, 62, 11147, 11, 288, 310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 14202, 11, 6737, 62, 27932, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 1084, 28, 14202, 11, 42287, 62, 9806, 28, 14202, 11, 7838, 62, 2777, 522, 62, 27932, 28, 14202, 2599, 198, 220, 220, 220, 37227, 35013, 2198, 329, 12822, 1046, 20519, 1266, 4197, 2482, 13, 628, 220, 220, 220, 1439, 12822, 31562, 4197, 6805, 326, 389, 407, 19201, 262, 13677, 3081, 9987, 651, 25148, 422, 262, 4197, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 11555, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 43137, 9619, 357, 20850, 1203, 737, 198, 220, 220, 220, 1366, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 13745, 1366, 286, 10958, 13, 198, 220, 220, 220, 8563, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 20410, 12, 32604, 12, 23415, 7838, 3815, 13, 198, 220, 220, 220, 42287, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 25139, 2357, 15879, 287, 262, 1296, 286, 685, 696, 16, 11, 2644, 11, 20766, 45, 11, 277, 1929, 76, 16, 11, 2644, 11, 277, 1929, 76, 45, 11, 1612, 16, 11, 2644, 11, 1612, 45, 4083, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 18235, 12822, 31562, 6805, 13, 198, 220, 220, 220, 288, 310, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 28261, 7268, 11507, 6460, 329, 262, 6596, 15830, 13, 198, 220, 220, 220, 6737, 62, 81, 6231, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 399, 7287, 1351, 7268, 7508, 546, 16069, 286, 262, 10958, 326, 547, 6108, 284, 3994, 6737, 13, 383, 20437, 12, 1659, 12, 11147, 16765, 389, 691, 6157, 329, 262, 37410, 9619, 1626, 777, 16069, 13, 198, 220, 220, 220, 6737, 62, 27932, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 41146, 7177, 7268, 262, 1321, 286, 6737, 62, 81, 6231, 13, 198, 220, 220, 220, 42287, 62, 1084, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 5288, 7095, 329, 10007, 25, 685, 1084, 62, 696, 16, 11, 2644, 11, 949, 62, 696, 45, 11, 949, 62, 69, 1929, 76, 16, 11, 2644, 11, 949, 62, 69, 1929, 76, 45, 11, 949, 62, 32604, 16, 11, 2644, 11, 949, 62, 32604, 45, 60, 198, 220, 220, 220, 42287, 62, 9806, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 5415, 7095, 329, 10007, 25, 685, 9806, 62, 696, 16, 11, 2644, 11, 3509, 62, 696, 45, 11, 3509, 62, 69, 1929, 76, 16, 11, 2644, 11, 3509, 62, 69, 1929, 76, 45, 11, 3509, 62, 32604, 16, 11, 2644, 11, 3509, 62, 32604, 45, 60, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 7147, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 299, 785, 862, 62, 11147, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 11147, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 20311, 796, 1366, 9, 15, 198, 220, 220, 220, 220, 220, 220, 220, 29598, 796, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 11147, 11, 42287, 62, 263, 3808, 796, 685, 4357, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 374, 11072, 17, 11, 257, 44240, 796, 20437, 62, 1659, 62, 11147, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 11, 1266, 62, 11147, 62, 20311, 11, 8563, 11, 299, 785, 862, 62, 11147, 11, 9335, 28, 12683, 282, 62, 27932, 11, 651, 62, 18452, 66, 28, 17821, 8, 628, 220, 220, 220, 220, 220, 220, 220, 279, 8367, 796, 2198, 62, 411, 312, 723, 62, 1640, 62, 27237, 1483, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 11, 8563, 11, 9335, 28, 12683, 282, 62, 27932, 11, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 628, 220, 220, 220, 220, 220, 220, 220, 3081, 62, 13716, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 796, 685, 37266, 62, 11147, 11, 42287, 62, 263, 3808, 11, 299, 785, 862, 62, 11147, 11, 1266, 62, 11147, 62, 20311, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29598, 11, 374, 11072, 17, 11, 257, 44240, 11, 649, 62, 11147, 11, 42287, 62, 1084, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 9806, 11, 279, 8367, 11, 3081, 62, 13716, 60, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 220, 220, 220, 1266, 62, 11147, 62, 4868, 796, 651, 62, 13466, 62, 11147, 7, 198, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 11, 288, 310, 11, 717, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 28, 14202, 11, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 628, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 628, 198, 4299, 2198, 62, 1640, 62, 431, 4730, 62, 259, 62, 411, 312, 723, 7, 626, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18235, 62, 411, 312, 723, 62, 431, 4730, 11, 6737, 62, 81, 6231, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 27932, 28, 14202, 11, 2700, 62, 13635, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 1084, 28, 14202, 11, 42287, 62, 9806, 28, 14202, 11, 7838, 62, 2777, 522, 62, 27932, 28, 14202, 2599, 198, 220, 220, 220, 37227, 23433, 4197, 416, 4375, 649, 6805, 11, 3025, 4238, 10007, 547, 5295, 422, 29598, 25740, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 11555, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 43137, 9619, 357, 20850, 1203, 737, 198, 220, 220, 220, 1366, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 13745, 1366, 286, 10958, 13, 198, 220, 220, 220, 8563, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 20410, 12, 32604, 12, 23415, 7838, 3815, 13, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 1459, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 198, 220, 220, 220, 288, 310, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 28261, 7268, 11507, 6460, 329, 262, 6596, 15830, 13, 198, 220, 220, 220, 18235, 62, 411, 312, 723, 62, 431, 4730, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 4238, 1612, 2292, 44774, 329, 649, 4197, 6805, 5295, 422, 29598, 25740, 326, 547, 1541, 3088, 287, 2180, 34820, 13, 198, 220, 220, 220, 6737, 62, 81, 6231, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 399, 7287, 1351, 7268, 7508, 546, 16069, 286, 262, 10958, 326, 547, 6108, 284, 3994, 6737, 13, 383, 20437, 12, 1659, 12, 11147, 16765, 389, 691, 6157, 329, 262, 37410, 9619, 1626, 777, 16069, 13, 198, 220, 220, 220, 6737, 62, 27932, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 41146, 7177, 7268, 262, 1321, 286, 6737, 62, 81, 6231, 13, 198, 220, 220, 220, 2700, 62, 13635, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 32286, 3895, 13, 15161, 318, 705, 25101, 4458, 1002, 900, 284, 705, 17821, 3256, 262, 649, 4197, 481, 307, 4137, 284, 1716, 262, 1266, 4197, 13, 198, 220, 220, 220, 42287, 62, 1084, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 5288, 7095, 329, 10007, 25, 685, 1084, 62, 696, 16, 11, 2644, 11, 949, 62, 696, 45, 11, 949, 62, 69, 1929, 76, 16, 11, 2644, 11, 949, 62, 69, 1929, 76, 45, 11, 949, 62, 32604, 16, 11, 2644, 11, 949, 62, 32604, 45, 60, 198, 220, 220, 220, 42287, 62, 9806, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 5415, 7095, 329, 10007, 25, 685, 9806, 62, 696, 16, 11, 2644, 11, 3509, 62, 696, 45, 11, 3509, 62, 69, 1929, 76, 16, 11, 2644, 11, 3509, 62, 69, 1929, 76, 45, 11, 3509, 62, 32604, 16, 11, 2644, 11, 3509, 62, 32604, 45, 60, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 7147, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 198, 220, 220, 220, 18235, 62, 411, 312, 723, 62, 431, 4730, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 19433, 1351, 286, 4238, 1612, 2292, 44774, 329, 649, 4197, 6805, 5295, 422, 29598, 25740, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 220, 16926, 46, 25, 4781, 42287, 62, 1084, 290, 42287, 62, 9806, 26286, 198, 220, 220, 220, 42287, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 15, 60, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 17, 60, 198, 220, 220, 220, 29598, 796, 1266, 62, 11147, 62, 4868, 58, 19, 60, 198, 220, 220, 220, 45796, 62, 11147, 11, 277, 1929, 907, 62, 11147, 11, 49005, 62, 11147, 796, 6626, 62, 37266, 7, 37266, 62, 11147, 11, 299, 785, 862, 62, 11147, 8, 628, 220, 220, 220, 20766, 62, 5162, 44667, 11, 277, 1929, 76, 62, 5162, 44667, 11, 11677, 62, 5162, 44667, 796, 651, 62, 36733, 62, 5162, 44667, 7, 198, 220, 220, 220, 220, 220, 220, 220, 29598, 11, 8563, 58, 15, 4357, 288, 310, 17816, 16184, 81, 6, 4357, 288, 310, 17816, 12683, 811, 590, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 9103, 11639, 24561, 11537, 628, 220, 220, 220, 611, 20766, 62, 5162, 44667, 13, 7857, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 58, 22, 60, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 11, 18235, 62, 411, 312, 723, 62, 431, 4730, 198, 220, 220, 220, 611, 1351, 7, 28968, 62, 5162, 44667, 8, 287, 18235, 62, 411, 312, 723, 62, 431, 4730, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 58, 22, 60, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 11, 18235, 62, 411, 312, 723, 62, 431, 4730, 628, 220, 220, 220, 18235, 62, 411, 312, 723, 62, 431, 4730, 13, 33295, 7, 4868, 7, 28968, 62, 5162, 44667, 4008, 628, 220, 220, 220, 45796, 62, 11147, 796, 1351, 7, 9430, 62, 11147, 8, 1343, 1351, 7, 696, 62, 5162, 44667, 8, 198, 220, 220, 220, 277, 1929, 907, 62, 11147, 796, 1351, 7, 69, 1929, 907, 62, 11147, 8, 1343, 1351, 7, 69, 1929, 76, 62, 5162, 44667, 8, 198, 220, 220, 220, 49005, 62, 11147, 796, 1351, 7, 8210, 1039, 62, 11147, 8, 1343, 1351, 7, 28968, 62, 5162, 44667, 8, 628, 220, 220, 220, 42287, 62, 11147, 796, 45796, 62, 11147, 1343, 277, 1929, 907, 62, 11147, 1343, 49005, 62, 11147, 628, 220, 220, 220, 1266, 62, 11147, 62, 4868, 796, 651, 62, 13466, 62, 11147, 7, 198, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 11, 288, 310, 11, 717, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 28, 13466, 62, 11147, 62, 4868, 11, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 2700, 62, 13635, 28, 3174, 62, 13635, 11, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 1084, 28, 37266, 62, 1084, 11, 42287, 62, 9806, 28, 37266, 62, 9806, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 628, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 11, 18235, 62, 411, 312, 723, 62, 431, 4730, 628, 198, 4299, 2604, 62, 3605, 62, 11147, 7, 3605, 62, 11147, 11, 2604, 62, 70, 9541, 11, 4235, 11639, 411, 312, 723, 6, 2599, 198, 220, 220, 220, 37227, 11187, 262, 4388, 1006, 896, 286, 257, 10958, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 649, 62, 11147, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 705, 17821, 3256, 262, 10958, 373, 7675, 1006, 270, 13, 198, 220, 220, 220, 2604, 62, 70, 9541, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 5972, 286, 477, 2180, 4388, 1006, 896, 286, 262, 10958, 13, 198, 220, 220, 220, 4235, 1058, 965, 19203, 24561, 62, 411, 312, 723, 62, 36729, 3256, 705, 31591, 62, 411, 312, 723, 62, 36729, 3256, 705, 36654, 3256, 705, 2436, 1631, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 18291, 6945, 262, 3895, 326, 373, 1006, 270, 393, 973, 329, 257, 649, 4388, 1006, 270, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 2604, 62, 70, 9541, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 19433, 2604, 286, 4388, 1006, 896, 286, 262, 10958, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 649, 62, 11147, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2604, 62, 70, 9541, 628, 220, 220, 220, 12881, 796, 1391, 6, 24561, 62, 411, 312, 723, 62, 36729, 10354, 352, 11, 705, 31591, 62, 411, 312, 723, 62, 36729, 10354, 362, 11, 705, 36654, 10354, 513, 11, 705, 2436, 1631, 10354, 604, 92, 198, 220, 220, 220, 2604, 62, 70, 9541, 13, 33295, 7, 76, 4147, 58, 14171, 12962, 198, 220, 220, 220, 1441, 2604, 62, 70, 9541, 628, 198, 4299, 1949, 62, 1462, 62, 49453, 62, 32232, 7, 626, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 11, 299, 785, 862, 62, 11147, 11, 288, 310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 14202, 11, 7838, 62, 2777, 522, 62, 81, 6231, 28, 14202, 2599, 198, 220, 220, 220, 37227, 16438, 10638, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 11555, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 43137, 9619, 357, 20850, 1203, 737, 198, 220, 220, 220, 1366, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 13745, 1366, 286, 10958, 13, 198, 220, 220, 220, 8563, 1058, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 20410, 12, 32604, 12, 23415, 7838, 3815, 13, 198, 220, 220, 220, 42287, 62, 11147, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 25139, 2357, 15879, 287, 262, 1296, 286, 685, 696, 16, 11, 2644, 11, 20766, 45, 11, 277, 1929, 76, 16, 11, 2644, 11, 277, 1929, 76, 45, 11, 1612, 16, 11, 2644, 11, 1612, 45, 4083, 34428, 82, 284, 262, 2457, 1266, 4197, 2482, 286, 262, 12822, 1046, 20519, 26969, 9150, 13, 198, 220, 220, 220, 299, 785, 862, 62, 11147, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 18235, 12822, 31562, 6805, 13, 198, 220, 220, 220, 288, 310, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 28261, 7268, 11507, 6460, 329, 262, 6596, 15830, 13, 198, 220, 220, 220, 6737, 62, 81, 6231, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 399, 7287, 1351, 7268, 7508, 546, 16069, 286, 262, 10958, 326, 547, 6108, 284, 3994, 6737, 13, 383, 20437, 12, 1659, 12, 11147, 16765, 389, 691, 6157, 329, 262, 37410, 9619, 1626, 777, 16069, 13, 198, 220, 220, 220, 7838, 62, 2777, 522, 62, 81, 6231, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 399, 7287, 1351, 7268, 7508, 546, 16069, 286, 262, 10958, 326, 547, 6108, 284, 3994, 7838, 20240, 3033, 13, 2312, 481, 651, 29229, 503, 422, 20437, 12, 1659, 12, 11147, 16765, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 10007, 286, 262, 7147, 1266, 4197, 329, 262, 10958, 13, 632, 318, 286, 262, 1296, 685, 90, 15, 92, 42287, 62, 11147, 11, 1391, 16, 92, 42287, 62, 263, 3808, 11, 1391, 17, 92, 299, 785, 862, 62, 11147, 11, 1391, 18, 92, 1266, 62, 11147, 11, 1391, 19, 92, 29598, 11, 1391, 20, 92, 374, 11072, 17, 11, 1391, 21, 92, 257, 44240, 11, 1391, 22, 92, 649, 62, 11147, 11, 1391, 23, 92, 42287, 62, 1084, 11, 1391, 24, 92, 42287, 62, 9806, 11, 1391, 940, 92, 279, 8367, 60, 198, 220, 220, 220, 399, 62, 12480, 62, 411, 62, 36729, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 4633, 29598, 3033, 326, 3051, 287, 262, 1266, 4197, 286, 262, 10958, 13, 198, 220, 220, 220, 399, 62, 2436, 1631, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 32063, 12822, 31562, 6805, 326, 3051, 287, 262, 1266, 4197, 286, 262, 10958, 13, 198, 220, 220, 220, 2604, 62, 70, 9541, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 5972, 286, 477, 4388, 1006, 896, 286, 262, 10958, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 299, 62, 354, 8961, 796, 18896, 7, 7890, 8, 198, 220, 220, 220, 611, 6737, 62, 81, 6231, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 27932, 796, 9335, 62, 354, 8961, 7, 77, 62, 354, 8961, 11, 6737, 62, 81, 6231, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 3849, 12786, 28, 3919, 786, 62, 2777, 522, 62, 81, 6231, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 27932, 796, 6045, 628, 220, 220, 220, 611, 7838, 62, 2777, 522, 62, 81, 6231, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 796, 9335, 62, 354, 8961, 7, 77, 62, 354, 8961, 11, 16410, 15, 11, 299, 62, 354, 8961, 60, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4781, 62, 3849, 12786, 28, 3919, 786, 62, 2777, 522, 62, 81, 6231, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 796, 6045, 628, 220, 220, 220, 1303, 220, 6822, 262, 3081, 286, 262, 2457, 4197, 422, 12822, 1046, 20519, 198, 220, 220, 220, 1266, 62, 11147, 62, 4868, 796, 3081, 62, 9122, 7, 198, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 42287, 62, 11147, 11, 299, 785, 862, 62, 11147, 11, 288, 310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 628, 220, 220, 220, 42287, 62, 11147, 11, 42287, 62, 263, 3808, 11, 299, 785, 862, 62, 11147, 11, 1266, 62, 11147, 62, 20311, 11, 29598, 11, 59, 198, 220, 220, 220, 220, 220, 220, 220, 374, 11072, 17, 11, 257, 44240, 11, 649, 62, 11147, 11, 42287, 62, 1084, 11, 42287, 62, 9806, 11, 279, 8367, 11, 3081, 62, 13716, 796, 1266, 62, 11147, 62, 4868, 628, 220, 220, 220, 1303, 220, 9993, 284, 2987, 4197, 416, 10342, 329, 25740, 287, 262, 29598, 198, 220, 220, 220, 717, 62, 5143, 796, 6407, 198, 220, 220, 220, 18235, 62, 411, 312, 723, 62, 431, 4730, 796, 17635, 198, 220, 220, 220, 2604, 62, 70, 9541, 796, 17635, 628, 220, 220, 220, 1303, 981, 357, 81, 11072, 17, 1875, 288, 310, 17816, 81, 11072, 17, 62, 32374, 6, 12962, 393, 717, 62, 5143, 25, 198, 220, 220, 220, 981, 357, 13466, 62, 11147, 62, 4868, 58, 940, 60, 1279, 288, 310, 17816, 1084, 62, 79, 8367, 6, 12962, 393, 717, 62, 5143, 25, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 11147, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 431, 4730, 796, 10352, 628, 220, 220, 220, 220, 220, 220, 220, 954, 62, 727, 796, 18896, 7, 38631, 62, 411, 312, 723, 62, 431, 4730, 8, 198, 220, 220, 220, 220, 220, 220, 220, 981, 649, 62, 11147, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 58, 22, 60, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 11, 18235, 62, 411, 312, 723, 62, 431, 4730, 796, 2198, 62, 1640, 62, 431, 4730, 62, 259, 62, 411, 312, 723, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 18235, 62, 411, 312, 723, 62, 431, 4730, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 22, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 62, 70, 9541, 796, 2604, 62, 3605, 62, 11147, 7, 3605, 62, 11147, 11, 2604, 62, 70, 9541, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4235, 11639, 24561, 62, 411, 312, 723, 62, 36729, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 954, 62, 3605, 796, 18896, 7, 38631, 62, 411, 312, 723, 62, 431, 4730, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 954, 62, 727, 14512, 954, 62, 3605, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 431, 4730, 796, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 2245, 1006, 2535, 9052, 611, 645, 649, 25740, 547, 4197, 422, 262, 29598, 198, 220, 220, 220, 220, 220, 220, 220, 611, 357, 1662, 717, 62, 5143, 290, 407, 649, 62, 431, 4730, 8, 393, 357, 13466, 62, 11147, 62, 4868, 58, 17, 60, 6624, 657, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 1949, 284, 1006, 270, 4633, 29598, 3895, 198, 220, 220, 220, 220, 220, 220, 220, 611, 288, 310, 17816, 12480, 62, 411, 62, 36729, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 796, 2198, 62, 1640, 62, 31591, 62, 411, 312, 723, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 22, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 62, 70, 9541, 796, 2604, 62, 3605, 62, 11147, 7, 3605, 62, 11147, 11, 2604, 62, 70, 9541, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4235, 11639, 31591, 62, 411, 312, 723, 62, 36729, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 1949, 284, 1006, 270, 3154, 12822, 31562, 6805, 198, 220, 220, 220, 220, 220, 220, 220, 611, 288, 310, 17816, 36654, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 11147, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 649, 62, 11147, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 58, 22, 60, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 796, 2198, 62, 1640, 62, 36654, 62, 30053, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 22, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 62, 70, 9541, 796, 2604, 62, 3605, 62, 11147, 7, 3605, 62, 11147, 11, 2604, 62, 70, 9541, 11, 4235, 11639, 36654, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 1949, 284, 1006, 270, 32063, 12822, 31562, 6805, 198, 220, 220, 220, 220, 220, 220, 220, 611, 288, 310, 17816, 2436, 1631, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 11147, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 649, 62, 11147, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 58, 22, 60, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 11147, 62, 4868, 796, 2198, 62, 1640, 62, 2436, 1631, 62, 30053, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7838, 62, 2777, 522, 62, 27932, 28, 3919, 786, 62, 2777, 522, 62, 27932, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 22, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 62, 70, 9541, 796, 2604, 62, 3605, 62, 11147, 7, 3605, 62, 11147, 11, 2604, 62, 70, 9541, 11, 4235, 11639, 2436, 1631, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 717, 62, 5143, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 717, 62, 5143, 796, 10352, 628, 220, 220, 220, 399, 62, 12480, 62, 411, 62, 36729, 796, 2198, 62, 1640, 62, 31591, 62, 411, 312, 723, 7, 198, 220, 220, 220, 220, 220, 220, 220, 11555, 11, 1366, 11, 8563, 11, 1266, 62, 11147, 62, 4868, 11, 288, 310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6737, 62, 81, 6231, 28, 12683, 282, 62, 81, 6231, 11, 6737, 62, 27932, 28, 12683, 282, 62, 27932, 11, 198, 220, 220, 220, 220, 220, 220, 220, 651, 62, 9127, 28, 17821, 8, 628, 220, 220, 220, 42287, 62, 11147, 796, 1266, 62, 11147, 62, 4868, 58, 15, 60, 198, 220, 220, 220, 399, 62, 2436, 1631, 796, 651, 62, 2759, 62, 2436, 1631, 62, 4908, 1046, 1547, 7, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 62, 11147, 11, 651, 62, 9127, 28, 17821, 11, 14139, 62, 31412, 28, 67, 310, 17816, 25512, 341, 62, 31412, 6, 12962, 628, 220, 220, 220, 1441, 1266, 62, 11147, 62, 4868, 11, 399, 62, 12480, 62, 411, 62, 36729, 11, 399, 62, 2436, 1631, 11, 2604, 62, 70, 9541, 198 ]
2.4881
23,782
# coding=utf-8 # Copyright 2015 Pants project contributors (see CONTRIBUTORS.md). # Licensed under the Apache License, Version 2.0 (see LICENSE). from __future__ import (absolute_import, division, generators, nested_scopes, print_function, unicode_literals, with_statement) from abc import abstractmethod from textwrap import dedent from pants.base.deprecated import deprecated_conditional from pants.base.exceptions import TestFailedTaskError from pants.util.timeout import Timeout, TimeoutReached class TestRunnerTaskMixin(object): """A mixin to combine with test runner tasks. The intent is to migrate logic over time out of JUnitRun and PytestRun, so the functionality expressed can support both languages, and any additional languages that are added to pants. """ @staticmethod @classmethod def execute(self): """Run the task.""" # Ensure that the timeout_maximum is higher than the timeout default. if (self.get_options().timeout_maximum is not None and self.get_options().timeout_default is not None and self.get_options().timeout_maximum < self.get_options().timeout_default): message = "Error: timeout-default: {} exceeds timeout-maximum: {}".format( self.get_options().timeout_maximum, self.get_options().timeout_default ) self.context.log.error(message) raise TestFailedTaskError(message) if not self.get_options().skip: test_targets = self._get_test_targets() all_targets = self._get_targets() for target in test_targets: self._validate_target(target) self._execute(all_targets) def _spawn_and_wait(self, *args, **kwargs): """Spawn the actual test runner process, and wait for it to complete.""" test_targets = self._get_test_targets() timeout = self._timeout_for_targets(test_targets) process_handler = self._spawn(*args, **kwargs) # TODO(sbrenn): We use process_handler.kill here because we want to aggressively terminate the # process. It may make sense in the future to do a multi-stage approach # where first we do process_handler.terminate to let it die gracefully, and # then do process_handler.kill if that doesn't work. It will probably require # adding poll() support to ProcessHandler. try: with Timeout(timeout, abort_handler=process_handler.kill): return process_handler.wait() except TimeoutReached as e: raise TestFailedTaskError(str(e), failed_targets=test_targets) @abstractmethod def _spawn(self, *args, **kwargs): """Spawn the actual test runner process. :rtype: ProcessHandler """ raise NotImplementedError def _timeout_for_targets(self, targets): """Calculate the total timeout based on the timeout configuration for all the targets. Because the timeout wraps all the test targets rather than individual tests, we have to somehow aggregate all the target specific timeouts into one value that will cover all the tests. If some targets have no timeout configured (or set to 0), their timeout will be set to the default timeout. If there is no default timeout, or if it is set to zero, there will be no timeout, if any of the test targets have a timeout set to 0 or no timeout configured. TODO(sbrenn): This behavior where timeout=0 is the same as timeout=None has turned out to be very confusing, and should change so that timeout=0 actually sets the timeout to 0, and only timeout=None should set the timeout to the default timeout. This will require a deprecation cycle. :param targets: list of test targets :return: timeout to cover all the targets, in seconds """ if not self.get_options().timeouts: return None timeout_default = self.get_options().timeout_default # Gather up all the timeouts. timeouts = [self._timeout_for_target(target) for target in targets] # If any target's timeout is None or 0, then set it to the default timeout. # TODO(sbrenn): Change this so that only if the timeout is None, set it to default timeout. timeouts_w_default = [timeout or timeout_default for timeout in timeouts] # Even after we've done that, there may be a 0 or None in the timeout list if the # default timeout is set to 0 or None. So if that's the case, then the timeout is # disabled. # TODO(sbrenn): Change this so that if the timeout is 0, it is actually 0. if 0 in timeouts_w_default or None in timeouts_w_default: return None else: # Sum the timeouts for all the targets, using the default timeout where one is not set. return sum(timeouts_w_default) def _get_targets(self): """This is separated out so it can be overridden for testing purposes. :return: list of targets """ return self.context.targets() def _get_test_targets(self): """Returns the targets that are relevant test targets.""" test_targets = list(filter(self._test_target_filter(), self._get_targets())) return test_targets @abstractmethod def _test_target_filter(self): """A filter to run on targets to see if they are relevant to this test task. :return: function from target->boolean """ raise NotImplementedError @abstractmethod def _validate_target(self, target): """Ensures that this target is valid. Raises TargetDefinitionException if the target is invalid. We don't need the type check here because _get_targets() combines with _test_target_type to filter the list of targets to only the targets relevant for this test task. :param target: the target to validate :raises: TargetDefinitionException """ raise NotImplementedError @abstractmethod def _execute(self, all_targets): """Actually goes ahead and runs the tests for the targets. :param targets: list of the targets whose tests are to be run """ raise NotImplementedError
[ 2, 19617, 28, 40477, 12, 23, 198, 2, 15069, 1853, 41689, 1628, 20420, 357, 3826, 27342, 9865, 3843, 20673, 13, 9132, 737, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 3826, 38559, 24290, 737, 198, 198, 6738, 11593, 37443, 834, 1330, 357, 48546, 62, 11748, 11, 7297, 11, 27298, 11, 28376, 62, 1416, 13920, 11, 3601, 62, 8818, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28000, 1098, 62, 17201, 874, 11, 351, 62, 26090, 8, 198, 198, 6738, 450, 66, 1330, 12531, 24396, 198, 6738, 2420, 37150, 1330, 4648, 298, 198, 198, 6738, 12581, 13, 8692, 13, 10378, 31023, 1330, 39224, 62, 17561, 1859, 198, 6738, 12581, 13, 8692, 13, 1069, 11755, 1330, 6208, 37, 6255, 25714, 12331, 198, 6738, 12581, 13, 22602, 13, 48678, 1330, 3862, 448, 11, 3862, 448, 3041, 2317, 628, 198, 4871, 6208, 49493, 25714, 35608, 259, 7, 15252, 2599, 198, 220, 37227, 32, 5022, 259, 284, 12082, 351, 1332, 17490, 8861, 13, 628, 220, 383, 6824, 318, 284, 32492, 9156, 625, 640, 503, 286, 449, 26453, 10987, 290, 9485, 9288, 10987, 11, 523, 262, 11244, 198, 220, 6241, 460, 1104, 1111, 8950, 11, 290, 597, 3224, 8950, 326, 389, 2087, 284, 12581, 13, 198, 220, 37227, 628, 220, 2488, 12708, 24396, 628, 220, 2488, 4871, 24396, 628, 220, 825, 12260, 7, 944, 2599, 198, 220, 220, 220, 37227, 10987, 262, 4876, 526, 15931, 628, 220, 220, 220, 1303, 48987, 326, 262, 26827, 62, 47033, 318, 2440, 621, 262, 26827, 4277, 13, 198, 220, 220, 220, 611, 357, 944, 13, 1136, 62, 25811, 22446, 48678, 62, 47033, 318, 407, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 290, 2116, 13, 1136, 62, 25811, 22446, 48678, 62, 12286, 318, 407, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 290, 2116, 13, 1136, 62, 25811, 22446, 48678, 62, 47033, 1279, 2116, 13, 1136, 62, 25811, 22446, 48678, 62, 12286, 2599, 198, 220, 220, 220, 220, 220, 3275, 796, 366, 12331, 25, 26827, 12, 12286, 25, 23884, 21695, 26827, 12, 47033, 25, 23884, 1911, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1136, 62, 25811, 22446, 48678, 62, 47033, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1136, 62, 25811, 22446, 48678, 62, 12286, 198, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 2116, 13, 22866, 13, 6404, 13, 18224, 7, 20500, 8, 198, 220, 220, 220, 220, 220, 5298, 6208, 37, 6255, 25714, 12331, 7, 20500, 8, 628, 220, 220, 220, 611, 407, 2116, 13, 1136, 62, 25811, 22446, 48267, 25, 198, 220, 220, 220, 220, 220, 1332, 62, 83, 853, 1039, 796, 2116, 13557, 1136, 62, 9288, 62, 83, 853, 1039, 3419, 198, 220, 220, 220, 220, 220, 477, 62, 83, 853, 1039, 796, 2116, 13557, 1136, 62, 83, 853, 1039, 3419, 198, 220, 220, 220, 220, 220, 329, 2496, 287, 1332, 62, 83, 853, 1039, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 12102, 378, 62, 16793, 7, 16793, 8, 628, 220, 220, 220, 220, 220, 2116, 13557, 41049, 7, 439, 62, 83, 853, 1039, 8, 628, 220, 825, 4808, 48183, 62, 392, 62, 17077, 7, 944, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 37227, 49855, 262, 4036, 1332, 17490, 1429, 11, 290, 4043, 329, 340, 284, 1844, 526, 15931, 628, 220, 220, 220, 1332, 62, 83, 853, 1039, 796, 2116, 13557, 1136, 62, 9288, 62, 83, 853, 1039, 3419, 198, 220, 220, 220, 26827, 796, 2116, 13557, 48678, 62, 1640, 62, 83, 853, 1039, 7, 9288, 62, 83, 853, 1039, 8, 628, 220, 220, 220, 1429, 62, 30281, 796, 2116, 13557, 48183, 46491, 22046, 11, 12429, 46265, 22046, 8, 628, 220, 220, 220, 1303, 16926, 46, 7, 36299, 918, 77, 2599, 775, 779, 1429, 62, 30281, 13, 12728, 994, 780, 356, 765, 284, 19855, 23654, 262, 198, 220, 220, 220, 1303, 1429, 13, 632, 743, 787, 2565, 287, 262, 2003, 284, 466, 257, 5021, 12, 14247, 3164, 198, 220, 220, 220, 1303, 810, 717, 356, 466, 1429, 62, 30281, 13, 23705, 378, 284, 1309, 340, 4656, 11542, 2759, 11, 290, 198, 220, 220, 220, 1303, 788, 466, 1429, 62, 30281, 13, 12728, 611, 326, 1595, 470, 670, 13, 632, 481, 2192, 2421, 198, 220, 220, 220, 1303, 4375, 3278, 3419, 1104, 284, 10854, 25060, 13, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 351, 3862, 448, 7, 48678, 11, 15614, 62, 30281, 28, 14681, 62, 30281, 13, 12728, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1429, 62, 30281, 13, 17077, 3419, 198, 220, 220, 220, 2845, 3862, 448, 3041, 2317, 355, 304, 25, 198, 220, 220, 220, 220, 220, 5298, 6208, 37, 6255, 25714, 12331, 7, 2536, 7, 68, 828, 4054, 62, 83, 853, 1039, 28, 9288, 62, 83, 853, 1039, 8, 628, 220, 2488, 397, 8709, 24396, 198, 220, 825, 4808, 48183, 7, 944, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 37227, 49855, 262, 4036, 1332, 17490, 1429, 13, 628, 220, 220, 220, 1058, 81, 4906, 25, 10854, 25060, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 628, 220, 825, 4808, 48678, 62, 1640, 62, 83, 853, 1039, 7, 944, 11, 6670, 2599, 198, 220, 220, 220, 37227, 9771, 3129, 378, 262, 2472, 26827, 1912, 319, 262, 26827, 8398, 329, 477, 262, 6670, 13, 628, 220, 220, 220, 4362, 262, 26827, 27521, 477, 262, 1332, 6670, 2138, 621, 1981, 5254, 11, 356, 423, 284, 7599, 198, 220, 220, 220, 19406, 477, 262, 2496, 2176, 640, 5269, 656, 530, 1988, 326, 481, 3002, 477, 262, 5254, 13, 1002, 617, 6670, 198, 220, 220, 220, 423, 645, 26827, 17839, 357, 273, 900, 284, 657, 828, 511, 26827, 481, 307, 900, 284, 262, 4277, 26827, 13, 198, 220, 220, 220, 1002, 612, 318, 645, 4277, 26827, 11, 393, 611, 340, 318, 900, 284, 6632, 11, 612, 481, 307, 645, 26827, 11, 611, 597, 286, 262, 1332, 6670, 198, 220, 220, 220, 423, 257, 26827, 900, 284, 657, 393, 645, 26827, 17839, 13, 628, 220, 220, 220, 16926, 46, 7, 36299, 918, 77, 2599, 770, 4069, 810, 26827, 28, 15, 318, 262, 976, 355, 26827, 28, 14202, 468, 2900, 503, 284, 307, 845, 15337, 11, 198, 220, 220, 220, 290, 815, 1487, 523, 326, 26827, 28, 15, 1682, 5621, 262, 26827, 284, 657, 11, 290, 691, 26827, 28, 14202, 198, 220, 220, 220, 815, 900, 262, 26827, 284, 262, 4277, 26827, 13, 770, 481, 2421, 257, 1207, 8344, 341, 6772, 13, 628, 220, 220, 220, 1058, 17143, 6670, 25, 1351, 286, 1332, 6670, 198, 220, 220, 220, 1058, 7783, 25, 26827, 284, 3002, 477, 262, 6670, 11, 287, 4201, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 611, 407, 2116, 13, 1136, 62, 25811, 22446, 2435, 5269, 25, 198, 220, 220, 220, 220, 220, 1441, 6045, 628, 220, 220, 220, 26827, 62, 12286, 796, 2116, 13, 1136, 62, 25811, 22446, 48678, 62, 12286, 628, 220, 220, 220, 1303, 402, 1032, 510, 477, 262, 640, 5269, 13, 198, 220, 220, 220, 640, 5269, 796, 685, 944, 13557, 48678, 62, 1640, 62, 16793, 7, 16793, 8, 329, 2496, 287, 6670, 60, 628, 220, 220, 220, 1303, 1002, 597, 2496, 338, 26827, 318, 6045, 393, 657, 11, 788, 900, 340, 284, 262, 4277, 26827, 13, 198, 220, 220, 220, 1303, 16926, 46, 7, 36299, 918, 77, 2599, 9794, 428, 523, 326, 691, 611, 262, 26827, 318, 6045, 11, 900, 340, 284, 4277, 26827, 13, 198, 220, 220, 220, 640, 5269, 62, 86, 62, 12286, 796, 685, 48678, 393, 26827, 62, 12286, 329, 26827, 287, 640, 5269, 60, 628, 220, 220, 220, 1303, 3412, 706, 356, 1053, 1760, 326, 11, 612, 743, 307, 257, 657, 393, 6045, 287, 262, 26827, 1351, 611, 262, 198, 220, 220, 220, 1303, 4277, 26827, 318, 900, 284, 657, 393, 6045, 13, 1406, 611, 326, 338, 262, 1339, 11, 788, 262, 26827, 318, 198, 220, 220, 220, 1303, 10058, 13, 198, 220, 220, 220, 1303, 16926, 46, 7, 36299, 918, 77, 2599, 9794, 428, 523, 326, 611, 262, 26827, 318, 657, 11, 340, 318, 1682, 657, 13, 198, 220, 220, 220, 611, 657, 287, 640, 5269, 62, 86, 62, 12286, 393, 6045, 287, 640, 5269, 62, 86, 62, 12286, 25, 198, 220, 220, 220, 220, 220, 1441, 6045, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 1303, 5060, 262, 640, 5269, 329, 477, 262, 6670, 11, 1262, 262, 4277, 26827, 810, 530, 318, 407, 900, 13, 198, 220, 220, 220, 220, 220, 1441, 2160, 7, 2435, 5269, 62, 86, 62, 12286, 8, 628, 220, 825, 4808, 1136, 62, 83, 853, 1039, 7, 944, 2599, 198, 220, 220, 220, 37227, 1212, 318, 11266, 503, 523, 340, 460, 307, 23170, 4651, 329, 4856, 4959, 13, 628, 220, 220, 220, 1058, 7783, 25, 1351, 286, 6670, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 2116, 13, 22866, 13, 83, 853, 1039, 3419, 628, 220, 825, 4808, 1136, 62, 9288, 62, 83, 853, 1039, 7, 944, 2599, 198, 220, 220, 220, 37227, 35561, 262, 6670, 326, 389, 5981, 1332, 6670, 526, 15931, 628, 220, 220, 220, 1332, 62, 83, 853, 1039, 796, 1351, 7, 24455, 7, 944, 13557, 9288, 62, 16793, 62, 24455, 22784, 2116, 13557, 1136, 62, 83, 853, 1039, 3419, 4008, 198, 220, 220, 220, 1441, 1332, 62, 83, 853, 1039, 628, 220, 2488, 397, 8709, 24396, 198, 220, 825, 4808, 9288, 62, 16793, 62, 24455, 7, 944, 2599, 198, 220, 220, 220, 37227, 32, 8106, 284, 1057, 319, 6670, 284, 766, 611, 484, 389, 5981, 284, 428, 1332, 4876, 13, 628, 220, 220, 220, 1058, 7783, 25, 2163, 422, 2496, 3784, 2127, 21052, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 628, 220, 2488, 397, 8709, 24396, 198, 220, 825, 4808, 12102, 378, 62, 16793, 7, 944, 11, 2496, 2599, 198, 220, 220, 220, 37227, 4834, 82, 942, 326, 428, 2496, 318, 4938, 13, 7567, 2696, 12744, 36621, 16922, 611, 262, 2496, 318, 12515, 13, 628, 220, 220, 220, 775, 836, 470, 761, 262, 2099, 2198, 994, 780, 4808, 1136, 62, 83, 853, 1039, 3419, 21001, 351, 4808, 9288, 62, 16793, 62, 4906, 284, 198, 220, 220, 220, 8106, 262, 1351, 286, 6670, 284, 691, 262, 6670, 5981, 329, 428, 1332, 4876, 13, 628, 220, 220, 220, 1058, 17143, 2496, 25, 262, 2496, 284, 26571, 198, 220, 220, 220, 1058, 430, 2696, 25, 12744, 36621, 16922, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 628, 220, 2488, 397, 8709, 24396, 198, 220, 825, 4808, 41049, 7, 944, 11, 477, 62, 83, 853, 1039, 2599, 198, 220, 220, 220, 37227, 26417, 2925, 4058, 290, 4539, 262, 5254, 329, 262, 6670, 13, 628, 220, 220, 220, 1058, 17143, 6670, 25, 1351, 286, 262, 6670, 3025, 5254, 389, 284, 307, 1057, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 198 ]
3.19086
1,860
import json import requests import webbrowser
[ 11748, 33918, 198, 11748, 7007, 198, 11748, 3992, 40259, 628 ]
4.7
10
import os from pathlib import Path import imageio import numpy as np import SimpleITK as sitk import h5py from pytorch3dunet.augment import transforms from pytorch3dunet.datasets.utils import ConfigDataset, calculate_stats from pytorch3dunet.unet3d.utils import get_logger, expand_as_one_hot from pytorch3dunet.datasets.hdf5 import AbstractHDF5Dataset from pytorch3dunet.datasets.visualize import visualizer from scipy import ndimage import re import yaml import ipdb import torch logger = get_logger('SXTHDataset')
[ 11748, 28686, 198, 6738, 3108, 8019, 1330, 10644, 198, 198, 11748, 2939, 952, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 17427, 2043, 42, 355, 1650, 74, 198, 11748, 289, 20, 9078, 198, 6738, 12972, 13165, 354, 18, 67, 403, 316, 13, 559, 5154, 1330, 31408, 198, 6738, 12972, 13165, 354, 18, 67, 403, 316, 13, 19608, 292, 1039, 13, 26791, 1330, 17056, 27354, 292, 316, 11, 15284, 62, 34242, 198, 6738, 12972, 13165, 354, 18, 67, 403, 316, 13, 403, 316, 18, 67, 13, 26791, 1330, 651, 62, 6404, 1362, 11, 4292, 62, 292, 62, 505, 62, 8940, 220, 198, 6738, 12972, 13165, 354, 18, 67, 403, 316, 13, 19608, 292, 1039, 13, 71, 7568, 20, 1330, 27741, 39, 8068, 20, 27354, 292, 316, 220, 220, 198, 6738, 12972, 13165, 354, 18, 67, 403, 316, 13, 19608, 292, 1039, 13, 41464, 1096, 1330, 5874, 7509, 198, 6738, 629, 541, 88, 1330, 299, 67, 9060, 198, 198, 11748, 302, 198, 11748, 331, 43695, 198, 11748, 20966, 9945, 198, 11748, 28034, 198, 198, 6404, 1362, 796, 651, 62, 6404, 1362, 10786, 50, 55, 4221, 27354, 292, 316, 11537, 628, 628, 198, 220, 220, 220, 220, 220, 220, 220, 220, 628 ]
2.693467
199
# coding=utf-8 # *** WARNING: this file was generated by the Pulumi SDK Generator. *** # *** Do not edit by hand unless you're certain you know what you are doing! *** import warnings import pulumi import pulumi.runtime from typing import Any, Mapping, Optional, Sequence, Union, overload from ... import _utilities from . import outputs from ._enums import * from ._inputs import * __all__ = ['InstanceArgs', 'Instance'] @pulumi.input_type
[ 2, 19617, 28, 40477, 12, 23, 198, 2, 17202, 39410, 25, 428, 2393, 373, 7560, 416, 262, 21624, 12994, 26144, 35986, 13, 17202, 198, 2, 17202, 2141, 407, 4370, 416, 1021, 4556, 345, 821, 1728, 345, 760, 644, 345, 389, 1804, 0, 17202, 198, 198, 11748, 14601, 198, 11748, 17472, 12994, 198, 11748, 17472, 12994, 13, 43282, 198, 6738, 19720, 1330, 4377, 11, 337, 5912, 11, 32233, 11, 45835, 11, 4479, 11, 31754, 198, 6738, 2644, 1330, 4808, 315, 2410, 198, 6738, 764, 1330, 23862, 198, 6738, 47540, 268, 5700, 1330, 1635, 198, 6738, 47540, 15414, 82, 1330, 1635, 198, 198, 834, 439, 834, 796, 37250, 33384, 42035, 3256, 705, 33384, 20520, 198, 198, 31, 79, 377, 12994, 13, 15414, 62, 4906, 628, 198 ]
3.596774
124
# -*- encoding: utf-8 -*- from __future__ import unicode_literals from itertools import izip from flask import render_template from flask.ext.babel import gettext from sqlalchemy import Text from sqlalchemy.dialects.postgresql import ARRAY from sqlalchemy.sql.expression import and_, cast, desc from pokr.models.candidacy import Candidacy from pokr.models.election import Election from pokr.models.person import Person
[ 2, 532, 9, 12, 21004, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 6738, 11593, 37443, 834, 1330, 28000, 1098, 62, 17201, 874, 198, 6738, 340, 861, 10141, 1330, 220, 528, 541, 198, 198, 6738, 42903, 1330, 8543, 62, 28243, 198, 6738, 42903, 13, 2302, 13, 65, 9608, 1330, 651, 5239, 198, 6738, 44161, 282, 26599, 1330, 8255, 198, 6738, 44161, 282, 26599, 13, 38969, 478, 82, 13, 7353, 34239, 13976, 1330, 5923, 30631, 198, 6738, 44161, 282, 26599, 13, 25410, 13, 38011, 1330, 290, 62, 11, 3350, 11, 1715, 198, 198, 6738, 279, 482, 81, 13, 27530, 13, 46188, 312, 1590, 1330, 15518, 312, 1590, 198, 6738, 279, 482, 81, 13, 27530, 13, 14300, 1330, 14219, 198, 6738, 279, 482, 81, 13, 27530, 13, 6259, 1330, 7755, 628, 198 ]
3.212121
132
from game import Game import sys if __name__ == '__main__': game = Game(sys.argv[1]) game.start()
[ 6738, 983, 1330, 3776, 198, 11748, 25064, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 983, 796, 3776, 7, 17597, 13, 853, 85, 58, 16, 12962, 198, 220, 220, 220, 983, 13, 9688, 3419, 198 ]
2.488372
43
#!/usr/bin/python # Author: Jon Trulson <[email protected]> # Copyright (c) 2015 Intel Corporation. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. import time, sys import pyupm_i2clcd as lcdObj # setup with default values lcd = lcdObj.EBOLED(); lcd.clear(); lcd.setCursor(2, 0); lcd.write("Hello"); lcd.setCursor(3, 5); lcd.write("World!"); print "Sleeping for 5 seconds..." time.sleep(5)
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 2, 6434, 25, 5966, 833, 377, 1559, 1279, 73, 2213, 377, 1559, 31, 873, 13, 785, 29, 198, 2, 15069, 357, 66, 8, 1853, 8180, 10501, 13, 198, 2, 198, 2, 2448, 3411, 318, 29376, 7520, 11, 1479, 286, 3877, 11, 284, 597, 1048, 16727, 198, 2, 257, 4866, 286, 428, 3788, 290, 3917, 10314, 3696, 357, 1169, 198, 2, 366, 25423, 12340, 284, 1730, 287, 262, 10442, 1231, 17504, 11, 1390, 198, 2, 1231, 17385, 262, 2489, 284, 779, 11, 4866, 11, 13096, 11, 20121, 11, 7715, 11, 198, 2, 14983, 11, 850, 43085, 11, 290, 14, 273, 3677, 9088, 286, 262, 10442, 11, 290, 284, 198, 2, 8749, 6506, 284, 4150, 262, 10442, 318, 30760, 284, 466, 523, 11, 2426, 284, 198, 2, 262, 1708, 3403, 25, 198, 2, 198, 2, 383, 2029, 6634, 4003, 290, 428, 7170, 4003, 2236, 307, 198, 2, 3017, 287, 477, 9088, 393, 8904, 16690, 286, 262, 10442, 13, 198, 2, 198, 2, 3336, 47466, 3180, 36592, 2389, 1961, 366, 1921, 3180, 1600, 42881, 34764, 56, 3963, 15529, 509, 12115, 11, 198, 2, 7788, 32761, 6375, 8959, 49094, 11, 47783, 2751, 21728, 5626, 40880, 5390, 3336, 34764, 11015, 3963, 198, 2, 34482, 3398, 1565, 5603, 25382, 11, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 5357, 198, 2, 44521, 1268, 10913, 2751, 12529, 13, 3268, 8005, 49261, 50163, 3336, 37195, 20673, 6375, 27975, 38162, 9947, 367, 15173, 4877, 9348, 198, 2, 43031, 19146, 7473, 15529, 47666, 3955, 11, 29506, 25552, 6375, 25401, 43031, 25382, 11, 7655, 2767, 16879, 3268, 3537, 40282, 198, 2, 3963, 27342, 10659, 11, 309, 9863, 6375, 25401, 54, 24352, 11, 5923, 1797, 2751, 16034, 11, 16289, 3963, 6375, 3268, 7102, 45, 24565, 198, 2, 13315, 3336, 47466, 6375, 3336, 23210, 6375, 25401, 5550, 1847, 20754, 3268, 3336, 47466, 13, 198, 198, 11748, 640, 11, 25064, 198, 198, 11748, 12972, 929, 76, 62, 72, 17, 565, 10210, 355, 300, 10210, 49201, 198, 198, 2, 9058, 351, 4277, 3815, 198, 75, 10210, 796, 300, 10210, 49201, 13, 30195, 3535, 1961, 9783, 198, 198, 75, 10210, 13, 20063, 9783, 198, 75, 10210, 13, 2617, 34, 21471, 7, 17, 11, 657, 1776, 198, 75, 10210, 13, 13564, 7203, 15496, 15341, 198, 75, 10210, 13, 2617, 34, 21471, 7, 18, 11, 642, 1776, 198, 75, 10210, 13, 13564, 7203, 10603, 2474, 1776, 198, 4798, 366, 50, 293, 7213, 329, 642, 4201, 9313, 198, 2435, 13, 42832, 7, 20, 8, 628, 628 ]
3.382212
416
import datetime, json from lys import L VIEW_SOURCE_URL = "/source/crxviewer.html?crx="
[ 11748, 4818, 8079, 11, 33918, 198, 198, 6738, 300, 893, 1330, 406, 198, 198, 28206, 62, 47690, 62, 21886, 796, 12813, 10459, 14, 6098, 87, 1177, 263, 13, 6494, 30, 6098, 87, 2625, 628, 628, 628, 628 ]
2.621622
37
""" A module for processing experiment references in a human readable way Three pieces of information are required to uniquely identify an experimental session: subject nickname, the date, and the sequence number (whether the session was the first, second, etc. on that date). Alyx and ONE use uuids (a.k.a. eids) to uniquely identify sessions, however these are not readable. This module converts between these uuids an readable references. References may be strings in the form yyyy-mm-dd_n_subject, which may be easily sorted, or as bunches (dicts) of the form {'subject': str, 'date': datetime.date, 'sequence', int}. """ import re import functools from pathlib import Path from typing import Union, List, Iterable as Iter from datetime import datetime from collections.abc import Iterable, Mapping from oneibl.one import ONE from brainbox.core import Bunch __all__ = [ 'ref2eid', 'ref2dict', 'ref2path', 'eid2path', 'eid2ref', 'path2ref', 'ref2dj', 'is_exp_ref' ] @recurse def ref2eid(ref: Union[Mapping, str, Iter], one=None) -> Union[str, List]: """ Returns experiment uuid, given one or more experiment references :param ref: One or more objects with keys ('subject', 'date', 'sequence'), or strings with the form yyyy-mm-dd_n_subject :param one: An instance of ONE :return: an experiment uuid string Examples: >>> base = 'https://test.alyx.internationalbrainlab.org' >>> one = ONE(username='test_user', password='TapetesBloc18', base_url=base) Connected to... >>> ref = {'date': datetime(2018, 7, 13).date(), 'sequence': 1, 'subject': 'flowers'} >>> ref2eid(ref, one=one) '4e0b3320-47b7-416e-b842-c34dc9004cf8' >>> ref2eid(['2018-07-13_1_flowers', '2019-04-11_1_KS005'], one=one) ['4e0b3320-47b7-416e-b842-c34dc9004cf8', '7dc3c44b-225f-4083-be3d-07b8562885f4'] """ if not one: one = ONE() ref = ref2dict(ref, parse=False) # Ensure dict session = one.search( subjects=ref['subject'], date_range=(str(ref['date']), str(ref['date'])), number=ref['sequence']) assert len(session) == 1, 'session not found' return session[0] @recurse @parse_values def ref2dict(ref: Union[str, Mapping, Iter]) -> Union[Bunch, List]: """ Returns a Bunch (dict-like) from a reference string (or list thereof) :param ref: One or more objects with keys ('subject', 'date', 'sequence') :return: A Bunch in with keys ('subject', 'sequence', 'date') Examples: >>> ref2dict('2018-07-13_1_flowers') {'date': datetime.date(2018, 7, 13), 'sequence': 1, 'subject': 'flowers'} >>> ref2dict('2018-07-13_001_flowers', parse=False) {'date': '2018-07-13', 'sequence': '001', 'subject': 'flowers'} >>> ref2dict(['2018-07-13_1_flowers', '2020-01-23_002_ibl_witten_01']) [{'date': datetime.date(2018, 7, 13), 'sequence': 1, 'subject': 'flowers'}, {'date': datetime.date(2020, 1, 23), 'sequence': 2, 'subject': 'ibl_witten_01'}] """ if isinstance(ref, (Bunch, dict)): return Bunch(ref) # Short circuit ref = dict(zip(['date', 'sequence', 'subject'], ref.split('_', 2))) return Bunch(ref) @recurse def ref2path(ref: Union[str, Mapping, Iter], one=None, offline: bool = False) -> Union[Path, List]: """ Convert one or more experiment references to session path(s) :param ref: One or more objects with keys ('subject', 'date', 'sequence'), or strings with the form yyyy-mm-dd_n_subject :param one: An instance of ONE :param offline: Return path without connecting to database (unimplemented) :return: a Path object for the experiment session Examples: >>> base = 'https://test.alyx.internationalbrainlab.org' >>> one = ONE(username='test_user', password='TapetesBloc18', base_url=base) Connected to... >>> ref = {'subject': 'flowers', 'date': datetime(2018, 7, 13).date(), 'sequence': 1} >>> ref2path(ref, one=one) WindowsPath('E:/FlatIron/zadorlab/Subjects/flowers/2018-07-13/001') >>> ref2path(['2018-07-13_1_flowers', '2019-04-11_1_KS005'], one=one) [WindowsPath('E:/FlatIron/zadorlab/Subjects/flowers/2018-07-13/001'), WindowsPath('E:/FlatIron/cortexlab/Subjects/KS005/2019-04-11/001')] """ if not one: one = ONE() if offline: raise NotImplementedError # Requires lab name :( # root = Path(one._get_cache_dir(None)) # path = root / ref.subject / str(ref.date) / ('%03d' % ref.sequence) else: ref = ref2dict(ref, parse=False) eid, (d,) = one.search( subjects=ref['subject'], date_range=(str(ref['date']), str(ref['date'])), number=ref['sequence'], details=True) path = d.get('local_path') if not path: root = Path(one._get_cache_dir(None)) / 'Subjects' / d['lab'] return root / d['subject'] / d['start_time'][:10] / ('%03d' % d['number']) else: return Path(path) @recurse def eid2path(eid: Union[str, Iter], one=None, offline: bool = False) -> Union[Path, List]: """ Returns a local path from an eid, regardless of whether the path exists locally :param eid: An experiment uuid :param one: An instance of ONE :param offline: If True, do not connect to database (not implemented) :return: a Path instance Examples: >>> base = 'https://test.alyx.internationalbrainlab.org' >>> one = ONE(username='test_user', password='TapetesBloc18', base_url=base) Connected to... >>> eid = '4e0b3320-47b7-416e-b842-c34dc9004cf8' >>> eid2path(eid, one=one) WindowsPath('E:/FlatIron/zadorlab/Subjects/flowers/2018-07-13/001') >>> eid2path([eid, '7dc3c44b-225f-4083-be3d-07b8562885f4'], one=one) [WindowsPath('E:/FlatIron/zadorlab/Subjects/flowers/2018-07-13/001'), WindowsPath('E:/FlatIron/cortexlab/Subjects/KS005/2019-04-11/001')] """ if not one: one = ONE() if offline: raise NotImplementedError # path = one.path_from_eid(eid, offline=True) else: d = one.get_details(eid) path = d.get('local_path') if not path: root = Path(one._get_cache_dir(None)) / d['lab'] / 'Subjects' path = root / d['subject'] / d['start_time'][:10] / ('%03d' % d['number']) return path @recurse def eid2ref(eid: Union[str, Iter], one=None, as_dict=True, parse=True) \ -> Union[str, Mapping, List]: """ Get human-readable session ref from path :param eid: The experiment uuid to find reference for :param one: An ONE instance :param as_dict: If false a string is returned in the form 'subject_sequence_yyyy-mm-dd' :param parse: If true, the reference date and sequence are parsed from strings to their respective data types :return: one or more objects with keys ('subject', 'date', 'sequence'), or strings with the form yyyy-mm-dd_n_subject Examples: >>> base = 'https://test.alyx.internationalbrainlab.org' >>> one = ONE(username='test_user', password='TapetesBloc18', base_url=base) Connected to... >>> eid = '4e0b3320-47b7-416e-b842-c34dc9004cf8' >>> eid2ref(eid, one=one) {'subject': 'flowers', 'date': datetime.date(2018, 7, 13), 'sequence': 1} >>> eid2ref(eid, parse=False, one=one) {'subject': 'flowers', 'date': '2018-07-13', 'sequence': '001'} >>> eid2ref(eid, as_dict=False, one=one) '2018-07-13_1_flowers' >>> eid2ref(eid, as_dict=False, parse=False, one=one) '2018-07-13_001_flowers' >>> eid2ref([eid, '7dc3c44b-225f-4083-be3d-07b8562885f4'], one=one) [{'subject': 'flowers', 'date': datetime.date(2018, 7, 13), 'sequence': 1}, {'subject': 'KS005', 'date': datetime.date(2019, 4, 11), 'sequence': 1}] """ if not one: one = ONE() d = one.get_details(eid) if parse: date = datetime.fromisoformat(d['start_time']).date() ref = {'subject': d['subject'], 'date': date, 'sequence': d['number']} format_str = '{date:%Y-%m-%d}_{sequence:d}_{subject:s}' else: date = d['start_time'][:10] ref = {'subject': d['subject'], 'date': date, 'sequence': '%03d' % d['number']} format_str = '{date:s}_{sequence:s}_{subject:s}' return Bunch(ref) if as_dict else format_str.format(**ref) @recurse @parse_values def path2ref(path_str: Union[str, Path, Iter]) -> Union[Bunch, List]: """ Returns a human readable experiment reference, given a session path. The path need not exist. :param path_str: A path to a given session :return: one or more objects with keys ('subject', 'date', 'sequence') Examples: >>> path_str = Path('E:/FlatIron/Subjects/zadorlab/flowers/2018-07-13/001') >>> path2ref(path_str) {'subject': 'flowers', 'date': datetime.date(2018, 7, 13), 'sequence': 1} >>> path2ref(path_str, parse=False) {'subject': 'flowers', 'date': '2018-07-13', 'sequence': '001'} >>> path_str2 = Path('E:/FlatIron/Subjects/churchlandlab/CSHL046/2020-06-20/002') >>> path2ref([path_str, path_str2]) [{'subject': 'flowers', 'date': datetime.date(2018, 7, 13), 'sequence': 1}, {'subject': 'CSHL046', 'date': datetime.date(2020, 6, 20), 'sequence': 2}] """ pattern = r'(?P<subject>[\w-]+)([\\/])(?P<date>\d{4}-\d{2}-\d{2})(\2)(?P<sequence>\d{3})' match = re.search(pattern, str(path_str)).groupdict() return Bunch(match) def ref2dj(ref: Union[str, Mapping, Iter]): """ Return an ibl-pipeline sessions table, restricted by experiment reference(s) :param ref: one or more objects with keys ('subject', 'date', 'sequence'), or strings with the form yyyy-mm-dd_n_subject :return: an acquisition.Session table Examples: >>> ref2dj('2020-06-20_2_CSHL046').fetch1() Connecting... {'subject_uuid': UUID('dffc24bc-bd97-4c2a-bef3-3e9320dc3dd7'), 'session_start_time': datetime.datetime(2020, 6, 20, 13, 31, 47), 'session_number': 2, 'session_date': datetime.date(2020, 6, 20), 'subject_nickname': 'CSHL046'} >>> len(ref2dj({'date':'2020-06-20', 'sequence':'002', 'subject':'CSHL046'})) 1 >>> len(ref2dj(['2020-06-20_2_CSHL046', '2019-11-01_1_ibl_witten_13'])) 2 """ from ibl_pipeline import subject, acquisition sessions = acquisition.Session.proj('session_number', session_date='date(session_start_time)') sessions = sessions * subject.Subject.proj('subject_nickname') ref = ref2dict(ref) # Ensure dict-like @recurse return sessions & restrict(ref) @recurse def is_exp_ref(ref: Union[str, Mapping, Iter]) -> Union[bool, List[bool]]: """ Returns True is ref is a valid experiment reference :param ref: one or more objects with keys ('subject', 'date', 'sequence'), or strings with the form yyyy-mm-dd_n_subject :return: True if ref is valid Examples: >>> ref = {'date': datetime(2018, 7, 13).date(), 'sequence': 1, 'subject': 'flowers'} >>> is_exp_ref(ref) True >>> is_exp_ref('2018-07-13_001_flowers') True >>> is_exp_ref('invalid_ref') False """ if isinstance(ref, (Bunch, dict)): if not {'subject', 'date', 'sequence'}.issubset(ref): return False ref = '{date}_{sequence}_{subject}'.format(**ref) elif not isinstance(ref, str): return False return re.compile(r'\d{4}(-\d{2}){2}_(\d{1}|\d{3})_\w+').match(ref) is not None if __name__ == "__main__": import doctest doctest.testmod(optionflags=doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS)
[ 37811, 198, 32, 8265, 329, 7587, 6306, 10288, 287, 257, 1692, 31744, 835, 198, 198, 12510, 5207, 286, 1321, 389, 2672, 284, 24139, 5911, 281, 11992, 6246, 25, 2426, 198, 17172, 3672, 11, 262, 3128, 11, 290, 262, 8379, 1271, 357, 25356, 262, 6246, 373, 262, 717, 11, 1218, 11, 198, 14784, 13, 319, 326, 3128, 737, 198, 198, 32, 306, 87, 290, 16329, 779, 334, 84, 2340, 357, 64, 13, 74, 13, 64, 13, 304, 2340, 8, 284, 24139, 5911, 10991, 11, 2158, 777, 389, 407, 198, 46155, 13, 220, 770, 8265, 26161, 1022, 777, 334, 84, 2340, 281, 31744, 10288, 13, 198, 198, 19927, 743, 307, 13042, 287, 262, 1296, 331, 22556, 88, 12, 3020, 12, 1860, 62, 77, 62, 32796, 11, 543, 743, 307, 3538, 23243, 11, 198, 273, 355, 28773, 2052, 357, 11600, 82, 8, 286, 262, 1296, 1391, 6, 32796, 10354, 965, 11, 705, 4475, 10354, 4818, 8079, 13, 4475, 11, 705, 43167, 3256, 493, 27422, 198, 37811, 198, 11748, 302, 198, 11748, 1257, 310, 10141, 198, 6738, 3108, 8019, 1330, 10644, 198, 6738, 19720, 1330, 4479, 11, 7343, 11, 40806, 540, 355, 40806, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 17268, 13, 39305, 1330, 40806, 540, 11, 337, 5912, 198, 198, 6738, 530, 10506, 13, 505, 1330, 16329, 198, 6738, 3632, 3524, 13, 7295, 1330, 347, 3316, 198, 198, 834, 439, 834, 796, 685, 198, 220, 220, 220, 705, 5420, 17, 68, 312, 3256, 705, 5420, 17, 11600, 3256, 705, 5420, 17, 6978, 3256, 705, 68, 312, 17, 6978, 3256, 705, 68, 312, 17, 5420, 3256, 705, 6978, 17, 5420, 3256, 705, 5420, 17, 28241, 3256, 705, 271, 62, 11201, 62, 5420, 6, 198, 60, 628, 628, 198, 31, 8344, 12321, 198, 4299, 1006, 17, 68, 312, 7, 5420, 25, 4479, 58, 44, 5912, 11, 965, 11, 40806, 4357, 530, 28, 14202, 8, 4613, 4479, 58, 2536, 11, 7343, 5974, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16409, 6306, 334, 27112, 11, 1813, 530, 393, 517, 6306, 10288, 198, 220, 220, 220, 1058, 17143, 1006, 25, 1881, 393, 517, 5563, 351, 8251, 19203, 32796, 3256, 705, 4475, 3256, 705, 43167, 33809, 393, 13042, 351, 262, 198, 220, 220, 220, 1296, 331, 22556, 88, 12, 3020, 12, 1860, 62, 77, 62, 32796, 198, 220, 220, 220, 1058, 17143, 530, 25, 1052, 4554, 286, 16329, 198, 220, 220, 220, 1058, 7783, 25, 281, 6306, 334, 27112, 4731, 628, 220, 220, 220, 21066, 25, 198, 220, 220, 220, 13163, 2779, 796, 705, 5450, 1378, 9288, 13, 3400, 87, 13, 45609, 27825, 23912, 13, 2398, 6, 198, 220, 220, 220, 13163, 530, 796, 16329, 7, 29460, 11639, 9288, 62, 7220, 3256, 9206, 11639, 45081, 316, 274, 3629, 420, 1507, 3256, 2779, 62, 6371, 28, 8692, 8, 198, 220, 220, 220, 8113, 276, 284, 986, 198, 220, 220, 220, 13163, 1006, 796, 1391, 6, 4475, 10354, 4818, 8079, 7, 7908, 11, 767, 11, 1511, 737, 4475, 22784, 705, 43167, 10354, 352, 11, 705, 32796, 10354, 705, 2704, 3618, 6, 92, 198, 220, 220, 220, 13163, 1006, 17, 68, 312, 7, 5420, 11, 530, 28, 505, 8, 198, 220, 220, 220, 705, 19, 68, 15, 65, 2091, 1238, 12, 2857, 65, 22, 12, 35218, 68, 12, 65, 23, 3682, 12, 66, 2682, 17896, 12865, 19, 12993, 23, 6, 198, 220, 220, 220, 13163, 1006, 17, 68, 312, 7, 17816, 7908, 12, 2998, 12, 1485, 62, 16, 62, 2704, 3618, 3256, 705, 23344, 12, 3023, 12, 1157, 62, 16, 62, 27015, 22544, 6, 4357, 530, 28, 505, 8, 198, 220, 220, 220, 37250, 19, 68, 15, 65, 2091, 1238, 12, 2857, 65, 22, 12, 35218, 68, 12, 65, 23, 3682, 12, 66, 2682, 17896, 12865, 19, 12993, 23, 3256, 198, 220, 220, 220, 220, 705, 22, 17896, 18, 66, 2598, 65, 12, 18182, 69, 12, 1821, 5999, 12, 1350, 18, 67, 12, 2998, 65, 23, 3980, 2078, 5332, 69, 19, 20520, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 530, 25, 198, 220, 220, 220, 220, 220, 220, 220, 530, 796, 16329, 3419, 198, 220, 220, 220, 1006, 796, 1006, 17, 11600, 7, 5420, 11, 21136, 28, 25101, 8, 220, 1303, 48987, 8633, 198, 220, 220, 220, 6246, 796, 530, 13, 12947, 7, 198, 220, 220, 220, 220, 220, 220, 220, 7481, 28, 5420, 17816, 32796, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 3128, 62, 9521, 16193, 2536, 7, 5420, 17816, 4475, 20520, 828, 965, 7, 5420, 17816, 4475, 6, 12962, 828, 198, 220, 220, 220, 220, 220, 220, 220, 1271, 28, 5420, 17816, 43167, 6, 12962, 198, 220, 220, 220, 6818, 18896, 7, 29891, 8, 6624, 352, 11, 705, 29891, 407, 1043, 6, 198, 220, 220, 220, 1441, 6246, 58, 15, 60, 628, 198, 31, 8344, 12321, 198, 31, 29572, 62, 27160, 198, 4299, 1006, 17, 11600, 7, 5420, 25, 4479, 58, 2536, 11, 337, 5912, 11, 40806, 12962, 4613, 4479, 58, 33, 3316, 11, 7343, 5974, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16409, 257, 347, 3316, 357, 11600, 12, 2339, 8, 422, 257, 4941, 4731, 357, 273, 1351, 15370, 8, 198, 220, 220, 220, 1058, 17143, 1006, 25, 1881, 393, 517, 5563, 351, 8251, 19203, 32796, 3256, 705, 4475, 3256, 705, 43167, 11537, 198, 220, 220, 220, 1058, 7783, 25, 317, 347, 3316, 287, 351, 8251, 19203, 32796, 3256, 705, 43167, 3256, 705, 4475, 11537, 628, 220, 220, 220, 21066, 25, 198, 220, 220, 220, 13163, 1006, 17, 11600, 10786, 7908, 12, 2998, 12, 1485, 62, 16, 62, 2704, 3618, 11537, 198, 220, 220, 220, 1391, 6, 4475, 10354, 4818, 8079, 13, 4475, 7, 7908, 11, 767, 11, 1511, 828, 705, 43167, 10354, 352, 11, 705, 32796, 10354, 705, 2704, 3618, 6, 92, 198, 220, 220, 220, 13163, 1006, 17, 11600, 10786, 7908, 12, 2998, 12, 1485, 62, 8298, 62, 2704, 3618, 3256, 21136, 28, 25101, 8, 198, 220, 220, 220, 1391, 6, 4475, 10354, 705, 7908, 12, 2998, 12, 1485, 3256, 705, 43167, 10354, 705, 8298, 3256, 705, 32796, 10354, 705, 2704, 3618, 6, 92, 198, 220, 220, 220, 13163, 1006, 17, 11600, 7, 17816, 7908, 12, 2998, 12, 1485, 62, 16, 62, 2704, 3618, 3256, 705, 42334, 12, 486, 12, 1954, 62, 21601, 62, 10506, 62, 86, 2621, 62, 486, 6, 12962, 198, 220, 220, 220, 685, 90, 6, 4475, 10354, 4818, 8079, 13, 4475, 7, 7908, 11, 767, 11, 1511, 828, 705, 43167, 10354, 352, 11, 705, 32796, 10354, 705, 2704, 3618, 6, 5512, 198, 220, 220, 220, 220, 1391, 6, 4475, 10354, 4818, 8079, 13, 4475, 7, 42334, 11, 352, 11, 2242, 828, 705, 43167, 10354, 362, 11, 705, 32796, 10354, 705, 10506, 62, 86, 2621, 62, 486, 6, 92, 60, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 318, 39098, 7, 5420, 11, 357, 33, 3316, 11, 8633, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 347, 3316, 7, 5420, 8, 220, 1303, 10073, 10349, 198, 220, 220, 220, 1006, 796, 8633, 7, 13344, 7, 17816, 4475, 3256, 705, 43167, 3256, 705, 32796, 6, 4357, 1006, 13, 35312, 10786, 62, 3256, 362, 22305, 198, 220, 220, 220, 1441, 347, 3316, 7, 5420, 8, 628, 198, 31, 8344, 12321, 198, 4299, 1006, 17, 6978, 7, 5420, 25, 4479, 58, 2536, 11, 337, 5912, 11, 40806, 4357, 530, 28, 14202, 11, 18043, 25, 20512, 796, 10352, 8, 4613, 4479, 58, 15235, 11, 7343, 5974, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 38240, 530, 393, 517, 6306, 10288, 284, 6246, 3108, 7, 82, 8, 198, 220, 220, 220, 1058, 17143, 1006, 25, 1881, 393, 517, 5563, 351, 8251, 19203, 32796, 3256, 705, 4475, 3256, 705, 43167, 33809, 393, 13042, 351, 262, 198, 220, 220, 220, 1296, 331, 22556, 88, 12, 3020, 12, 1860, 62, 77, 62, 32796, 198, 220, 220, 220, 1058, 17143, 530, 25, 1052, 4554, 286, 16329, 198, 220, 220, 220, 1058, 17143, 18043, 25, 8229, 3108, 1231, 14320, 284, 6831, 357, 403, 320, 1154, 12061, 8, 198, 220, 220, 220, 1058, 7783, 25, 257, 10644, 2134, 329, 262, 6306, 6246, 628, 220, 220, 220, 21066, 25, 198, 220, 220, 220, 13163, 2779, 796, 705, 5450, 1378, 9288, 13, 3400, 87, 13, 45609, 27825, 23912, 13, 2398, 6, 198, 220, 220, 220, 13163, 530, 796, 16329, 7, 29460, 11639, 9288, 62, 7220, 3256, 9206, 11639, 45081, 316, 274, 3629, 420, 1507, 3256, 2779, 62, 6371, 28, 8692, 8, 198, 220, 220, 220, 8113, 276, 284, 986, 198, 220, 220, 220, 13163, 1006, 796, 1391, 6, 32796, 10354, 705, 2704, 3618, 3256, 705, 4475, 10354, 4818, 8079, 7, 7908, 11, 767, 11, 1511, 737, 4475, 22784, 705, 43167, 10354, 352, 92, 198, 220, 220, 220, 13163, 1006, 17, 6978, 7, 5420, 11, 530, 28, 505, 8, 198, 220, 220, 220, 3964, 15235, 10786, 36, 14079, 7414, 265, 22797, 14, 89, 7079, 23912, 14, 19776, 82, 14, 2704, 3618, 14, 7908, 12, 2998, 12, 1485, 14, 8298, 11537, 198, 220, 220, 220, 13163, 1006, 17, 6978, 7, 17816, 7908, 12, 2998, 12, 1485, 62, 16, 62, 2704, 3618, 3256, 705, 23344, 12, 3023, 12, 1157, 62, 16, 62, 27015, 22544, 6, 4357, 530, 28, 505, 8, 198, 220, 220, 220, 685, 11209, 15235, 10786, 36, 14079, 7414, 265, 22797, 14, 89, 7079, 23912, 14, 19776, 82, 14, 2704, 3618, 14, 7908, 12, 2998, 12, 1485, 14, 8298, 33809, 198, 220, 220, 220, 220, 3964, 15235, 10786, 36, 14079, 7414, 265, 22797, 14, 66, 26158, 23912, 14, 19776, 82, 14, 27015, 22544, 14, 23344, 12, 3023, 12, 1157, 14, 8298, 11537, 60, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 530, 25, 198, 220, 220, 220, 220, 220, 220, 220, 530, 796, 16329, 3419, 198, 220, 220, 220, 611, 18043, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 220, 1303, 26848, 2248, 1438, 36147, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6808, 796, 10644, 7, 505, 13557, 1136, 62, 23870, 62, 15908, 7, 14202, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3108, 796, 6808, 1220, 1006, 13, 32796, 1220, 965, 7, 5420, 13, 4475, 8, 1220, 19203, 4, 3070, 67, 6, 4064, 1006, 13, 43167, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1006, 796, 1006, 17, 11600, 7, 5420, 11, 21136, 28, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 304, 312, 11, 357, 67, 35751, 796, 530, 13, 12947, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7481, 28, 5420, 17816, 32796, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3128, 62, 9521, 16193, 2536, 7, 5420, 17816, 4475, 20520, 828, 965, 7, 5420, 17816, 4475, 6, 12962, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1271, 28, 5420, 17816, 43167, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3307, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 288, 13, 1136, 10786, 12001, 62, 6978, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 3108, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6808, 796, 10644, 7, 505, 13557, 1136, 62, 23870, 62, 15908, 7, 14202, 4008, 1220, 705, 19776, 82, 6, 1220, 288, 17816, 23912, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6808, 1220, 288, 17816, 32796, 20520, 1220, 288, 17816, 9688, 62, 2435, 6, 7131, 25, 940, 60, 1220, 19203, 4, 3070, 67, 6, 4064, 288, 17816, 17618, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10644, 7, 6978, 8, 628, 198, 31, 8344, 12321, 198, 4299, 304, 312, 17, 6978, 7, 68, 312, 25, 4479, 58, 2536, 11, 40806, 4357, 530, 28, 14202, 11, 18043, 25, 20512, 796, 10352, 8, 4613, 4479, 58, 15235, 11, 7343, 5974, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16409, 257, 1957, 3108, 422, 281, 304, 312, 11, 7692, 286, 1771, 262, 3108, 7160, 15726, 198, 220, 220, 220, 1058, 17143, 304, 312, 25, 1052, 6306, 334, 27112, 198, 220, 220, 220, 1058, 17143, 530, 25, 1052, 4554, 286, 16329, 198, 220, 220, 220, 1058, 17143, 18043, 25, 1002, 6407, 11, 466, 407, 2018, 284, 6831, 357, 1662, 9177, 8, 198, 220, 220, 220, 1058, 7783, 25, 257, 10644, 4554, 628, 220, 220, 220, 21066, 25, 198, 220, 220, 220, 13163, 2779, 796, 705, 5450, 1378, 9288, 13, 3400, 87, 13, 45609, 27825, 23912, 13, 2398, 6, 198, 220, 220, 220, 13163, 530, 796, 16329, 7, 29460, 11639, 9288, 62, 7220, 3256, 9206, 11639, 45081, 316, 274, 3629, 420, 1507, 3256, 2779, 62, 6371, 28, 8692, 8, 198, 220, 220, 220, 8113, 276, 284, 986, 198, 220, 220, 220, 13163, 304, 312, 796, 705, 19, 68, 15, 65, 2091, 1238, 12, 2857, 65, 22, 12, 35218, 68, 12, 65, 23, 3682, 12, 66, 2682, 17896, 12865, 19, 12993, 23, 6, 198, 220, 220, 220, 13163, 304, 312, 17, 6978, 7, 68, 312, 11, 530, 28, 505, 8, 198, 220, 220, 220, 3964, 15235, 10786, 36, 14079, 7414, 265, 22797, 14, 89, 7079, 23912, 14, 19776, 82, 14, 2704, 3618, 14, 7908, 12, 2998, 12, 1485, 14, 8298, 11537, 198, 220, 220, 220, 13163, 304, 312, 17, 6978, 26933, 68, 312, 11, 705, 22, 17896, 18, 66, 2598, 65, 12, 18182, 69, 12, 1821, 5999, 12, 1350, 18, 67, 12, 2998, 65, 23, 3980, 2078, 5332, 69, 19, 6, 4357, 530, 28, 505, 8, 198, 220, 220, 220, 685, 11209, 15235, 10786, 36, 14079, 7414, 265, 22797, 14, 89, 7079, 23912, 14, 19776, 82, 14, 2704, 3618, 14, 7908, 12, 2998, 12, 1485, 14, 8298, 33809, 198, 220, 220, 220, 220, 3964, 15235, 10786, 36, 14079, 7414, 265, 22797, 14, 66, 26158, 23912, 14, 19776, 82, 14, 27015, 22544, 14, 23344, 12, 3023, 12, 1157, 14, 8298, 11537, 60, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 530, 25, 198, 220, 220, 220, 220, 220, 220, 220, 530, 796, 16329, 3419, 198, 220, 220, 220, 611, 18043, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3108, 796, 530, 13, 6978, 62, 6738, 62, 68, 312, 7, 68, 312, 11, 18043, 28, 17821, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 288, 796, 530, 13, 1136, 62, 36604, 7, 68, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 288, 13, 1136, 10786, 12001, 62, 6978, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 3108, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6808, 796, 10644, 7, 505, 13557, 1136, 62, 23870, 62, 15908, 7, 14202, 4008, 1220, 288, 17816, 23912, 20520, 1220, 705, 19776, 82, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 6808, 1220, 288, 17816, 32796, 20520, 1220, 288, 17816, 9688, 62, 2435, 6, 7131, 25, 940, 60, 1220, 19203, 4, 3070, 67, 6, 4064, 288, 17816, 17618, 6, 12962, 198, 220, 220, 220, 1441, 3108, 628, 198, 31, 8344, 12321, 198, 4299, 304, 312, 17, 5420, 7, 68, 312, 25, 4479, 58, 2536, 11, 40806, 4357, 530, 28, 14202, 11, 355, 62, 11600, 28, 17821, 11, 21136, 28, 17821, 8, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 4613, 4479, 58, 2536, 11, 337, 5912, 11, 7343, 5974, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3497, 1692, 12, 46155, 6246, 1006, 422, 3108, 198, 220, 220, 220, 1058, 17143, 304, 312, 25, 383, 6306, 334, 27112, 284, 1064, 4941, 329, 198, 220, 220, 220, 1058, 17143, 530, 25, 1052, 16329, 4554, 198, 220, 220, 220, 1058, 17143, 355, 62, 11600, 25, 1002, 3991, 257, 4731, 318, 4504, 287, 262, 1296, 705, 32796, 62, 43167, 62, 22556, 22556, 12, 3020, 12, 1860, 6, 198, 220, 220, 220, 1058, 17143, 21136, 25, 1002, 2081, 11, 262, 4941, 3128, 290, 8379, 389, 44267, 422, 13042, 284, 511, 198, 220, 220, 220, 11756, 1366, 3858, 198, 220, 220, 220, 1058, 7783, 25, 530, 393, 517, 5563, 351, 8251, 19203, 32796, 3256, 705, 4475, 3256, 705, 43167, 33809, 393, 13042, 351, 262, 198, 220, 220, 220, 1296, 331, 22556, 88, 12, 3020, 12, 1860, 62, 77, 62, 32796, 628, 220, 220, 220, 21066, 25, 198, 220, 220, 220, 13163, 2779, 796, 705, 5450, 1378, 9288, 13, 3400, 87, 13, 45609, 27825, 23912, 13, 2398, 6, 198, 220, 220, 220, 13163, 530, 796, 16329, 7, 29460, 11639, 9288, 62, 7220, 3256, 9206, 11639, 45081, 316, 274, 3629, 420, 1507, 3256, 2779, 62, 6371, 28, 8692, 8, 198, 220, 220, 220, 8113, 276, 284, 986, 198, 220, 220, 220, 13163, 304, 312, 796, 705, 19, 68, 15, 65, 2091, 1238, 12, 2857, 65, 22, 12, 35218, 68, 12, 65, 23, 3682, 12, 66, 2682, 17896, 12865, 19, 12993, 23, 6, 198, 220, 220, 220, 13163, 304, 312, 17, 5420, 7, 68, 312, 11, 530, 28, 505, 8, 198, 220, 220, 220, 1391, 6, 32796, 10354, 705, 2704, 3618, 3256, 705, 4475, 10354, 4818, 8079, 13, 4475, 7, 7908, 11, 767, 11, 1511, 828, 705, 43167, 10354, 352, 92, 198, 220, 220, 220, 13163, 304, 312, 17, 5420, 7, 68, 312, 11, 21136, 28, 25101, 11, 530, 28, 505, 8, 198, 220, 220, 220, 1391, 6, 32796, 10354, 705, 2704, 3618, 3256, 705, 4475, 10354, 705, 7908, 12, 2998, 12, 1485, 3256, 705, 43167, 10354, 705, 8298, 6, 92, 198, 220, 220, 220, 13163, 304, 312, 17, 5420, 7, 68, 312, 11, 355, 62, 11600, 28, 25101, 11, 530, 28, 505, 8, 198, 220, 220, 220, 705, 7908, 12, 2998, 12, 1485, 62, 16, 62, 2704, 3618, 6, 198, 220, 220, 220, 13163, 304, 312, 17, 5420, 7, 68, 312, 11, 355, 62, 11600, 28, 25101, 11, 21136, 28, 25101, 11, 530, 28, 505, 8, 198, 220, 220, 220, 705, 7908, 12, 2998, 12, 1485, 62, 8298, 62, 2704, 3618, 6, 198, 220, 220, 220, 13163, 304, 312, 17, 5420, 26933, 68, 312, 11, 705, 22, 17896, 18, 66, 2598, 65, 12, 18182, 69, 12, 1821, 5999, 12, 1350, 18, 67, 12, 2998, 65, 23, 3980, 2078, 5332, 69, 19, 6, 4357, 530, 28, 505, 8, 198, 220, 220, 220, 685, 90, 6, 32796, 10354, 705, 2704, 3618, 3256, 705, 4475, 10354, 4818, 8079, 13, 4475, 7, 7908, 11, 767, 11, 1511, 828, 705, 43167, 10354, 352, 5512, 198, 220, 220, 220, 220, 1391, 6, 32796, 10354, 705, 27015, 22544, 3256, 705, 4475, 10354, 4818, 8079, 13, 4475, 7, 23344, 11, 604, 11, 1367, 828, 705, 43167, 10354, 352, 92, 60, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 530, 25, 198, 220, 220, 220, 220, 220, 220, 220, 530, 796, 16329, 3419, 628, 220, 220, 220, 288, 796, 530, 13, 1136, 62, 36604, 7, 68, 312, 8, 198, 220, 220, 220, 611, 21136, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3128, 796, 4818, 8079, 13, 6738, 26786, 18982, 7, 67, 17816, 9688, 62, 2435, 20520, 737, 4475, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1006, 796, 1391, 6, 32796, 10354, 288, 17816, 32796, 6, 4357, 705, 4475, 10354, 3128, 11, 705, 43167, 10354, 288, 17816, 17618, 20520, 92, 198, 220, 220, 220, 220, 220, 220, 220, 5794, 62, 2536, 796, 705, 90, 4475, 25, 4, 56, 12, 4, 76, 12, 4, 67, 92, 23330, 43167, 25, 67, 92, 23330, 32796, 25, 82, 92, 6, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3128, 796, 288, 17816, 9688, 62, 2435, 6, 7131, 25, 940, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1006, 796, 1391, 6, 32796, 10354, 288, 17816, 32796, 6, 4357, 705, 4475, 10354, 3128, 11, 705, 43167, 10354, 705, 4, 3070, 67, 6, 4064, 288, 17816, 17618, 20520, 92, 198, 220, 220, 220, 220, 220, 220, 220, 5794, 62, 2536, 796, 705, 90, 4475, 25, 82, 92, 23330, 43167, 25, 82, 92, 23330, 32796, 25, 82, 92, 6, 198, 220, 220, 220, 1441, 347, 3316, 7, 5420, 8, 611, 355, 62, 11600, 2073, 5794, 62, 2536, 13, 18982, 7, 1174, 5420, 8, 628, 198, 31, 8344, 12321, 198, 31, 29572, 62, 27160, 198, 4299, 3108, 17, 5420, 7, 6978, 62, 2536, 25, 4479, 58, 2536, 11, 10644, 11, 40806, 12962, 4613, 4479, 58, 33, 3316, 11, 7343, 5974, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16409, 257, 1692, 31744, 6306, 4941, 11, 1813, 257, 6246, 3108, 13, 220, 383, 3108, 761, 407, 2152, 13, 198, 220, 220, 220, 1058, 17143, 3108, 62, 2536, 25, 317, 3108, 284, 257, 1813, 6246, 198, 220, 220, 220, 1058, 7783, 25, 530, 393, 517, 5563, 351, 8251, 19203, 32796, 3256, 705, 4475, 3256, 705, 43167, 11537, 628, 220, 220, 220, 21066, 25, 198, 220, 220, 220, 13163, 3108, 62, 2536, 796, 10644, 10786, 36, 14079, 7414, 265, 22797, 14, 19776, 82, 14, 89, 7079, 23912, 14, 2704, 3618, 14, 7908, 12, 2998, 12, 1485, 14, 8298, 11537, 198, 220, 220, 220, 13163, 3108, 17, 5420, 7, 6978, 62, 2536, 8, 198, 220, 220, 220, 1391, 6, 32796, 10354, 705, 2704, 3618, 3256, 705, 4475, 10354, 4818, 8079, 13, 4475, 7, 7908, 11, 767, 11, 1511, 828, 705, 43167, 10354, 352, 92, 198, 220, 220, 220, 13163, 3108, 17, 5420, 7, 6978, 62, 2536, 11, 21136, 28, 25101, 8, 198, 220, 220, 220, 1391, 6, 32796, 10354, 705, 2704, 3618, 3256, 705, 4475, 10354, 705, 7908, 12, 2998, 12, 1485, 3256, 705, 43167, 10354, 705, 8298, 6, 92, 198, 220, 220, 220, 13163, 3108, 62, 2536, 17, 796, 10644, 10786, 36, 14079, 7414, 265, 22797, 14, 19776, 82, 14, 36964, 1044, 23912, 14, 7902, 6581, 45438, 14, 42334, 12, 3312, 12, 1238, 14, 21601, 11537, 198, 220, 220, 220, 13163, 3108, 17, 5420, 26933, 6978, 62, 2536, 11, 3108, 62, 2536, 17, 12962, 198, 220, 220, 220, 685, 90, 6, 32796, 10354, 705, 2704, 3618, 3256, 705, 4475, 10354, 4818, 8079, 13, 4475, 7, 7908, 11, 767, 11, 1511, 828, 705, 43167, 10354, 352, 5512, 198, 220, 220, 220, 220, 1391, 6, 32796, 10354, 705, 7902, 6581, 45438, 3256, 705, 4475, 10354, 4818, 8079, 13, 4475, 7, 42334, 11, 718, 11, 1160, 828, 705, 43167, 10354, 362, 92, 60, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3912, 796, 374, 6, 7, 30, 47, 27, 32796, 36937, 59, 86, 12, 48688, 5769, 58, 6852, 14, 60, 5769, 30, 47, 27, 4475, 29, 59, 67, 90, 19, 92, 12, 59, 67, 90, 17, 92, 12, 59, 67, 90, 17, 92, 5769, 59, 17, 5769, 30, 47, 27, 43167, 29, 59, 67, 90, 18, 30072, 6, 198, 220, 220, 220, 2872, 796, 302, 13, 12947, 7, 33279, 11, 965, 7, 6978, 62, 2536, 29720, 8094, 11600, 3419, 198, 220, 220, 220, 1441, 347, 3316, 7, 15699, 8, 628, 198, 4299, 1006, 17, 28241, 7, 5420, 25, 4479, 58, 2536, 11, 337, 5912, 11, 40806, 60, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 8229, 281, 220, 10506, 12, 79, 541, 4470, 10991, 3084, 11, 10770, 416, 6306, 4941, 7, 82, 8, 198, 220, 220, 220, 1058, 17143, 1006, 25, 530, 393, 517, 5563, 351, 8251, 19203, 32796, 3256, 705, 4475, 3256, 705, 43167, 33809, 393, 13042, 351, 262, 198, 220, 220, 220, 1296, 331, 22556, 88, 12, 3020, 12, 1860, 62, 77, 62, 32796, 198, 220, 220, 220, 1058, 7783, 25, 281, 12673, 13, 36044, 3084, 628, 220, 220, 220, 21066, 25, 198, 220, 220, 220, 13163, 1006, 17, 28241, 10786, 42334, 12, 3312, 12, 1238, 62, 17, 62, 7902, 6581, 45438, 27691, 69, 7569, 16, 3419, 198, 220, 220, 220, 8113, 278, 986, 198, 220, 220, 220, 1391, 6, 32796, 62, 12303, 312, 10354, 471, 27586, 10786, 67, 487, 66, 1731, 15630, 12, 17457, 5607, 12, 19, 66, 17, 64, 12, 65, 891, 18, 12, 18, 68, 6052, 1238, 17896, 18, 1860, 22, 33809, 198, 220, 220, 220, 220, 705, 29891, 62, 9688, 62, 2435, 10354, 4818, 8079, 13, 19608, 8079, 7, 42334, 11, 718, 11, 1160, 11, 1511, 11, 3261, 11, 6298, 828, 198, 220, 220, 220, 220, 705, 29891, 62, 17618, 10354, 362, 11, 198, 220, 220, 220, 220, 705, 29891, 62, 4475, 10354, 4818, 8079, 13, 4475, 7, 42334, 11, 718, 11, 1160, 828, 198, 220, 220, 220, 220, 705, 32796, 62, 17172, 3672, 10354, 705, 7902, 6581, 45438, 6, 92, 198, 220, 220, 220, 13163, 18896, 7, 5420, 17, 28241, 15090, 6, 4475, 10354, 6, 42334, 12, 3312, 12, 1238, 3256, 705, 43167, 10354, 6, 21601, 3256, 705, 32796, 10354, 6, 7902, 6581, 45438, 6, 92, 4008, 198, 220, 220, 220, 352, 198, 220, 220, 220, 13163, 18896, 7, 5420, 17, 28241, 7, 17816, 42334, 12, 3312, 12, 1238, 62, 17, 62, 7902, 6581, 45438, 3256, 705, 23344, 12, 1157, 12, 486, 62, 16, 62, 10506, 62, 86, 2621, 62, 1485, 20520, 4008, 198, 220, 220, 220, 362, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 220, 10506, 62, 79, 541, 4470, 1330, 2426, 11, 12673, 198, 220, 220, 220, 10991, 796, 12673, 13, 36044, 13, 1676, 73, 10786, 29891, 62, 17618, 3256, 6246, 62, 4475, 11639, 4475, 7, 29891, 62, 9688, 62, 2435, 8, 11537, 198, 220, 220, 220, 10991, 796, 10991, 1635, 2426, 13, 19776, 13, 1676, 73, 10786, 32796, 62, 17172, 3672, 11537, 628, 220, 220, 220, 1006, 796, 1006, 17, 11600, 7, 5420, 8, 220, 1303, 48987, 8633, 12, 2339, 628, 220, 220, 220, 2488, 8344, 12321, 628, 220, 220, 220, 1441, 10991, 1222, 4239, 7, 5420, 8, 628, 198, 31, 8344, 12321, 198, 4299, 318, 62, 11201, 62, 5420, 7, 5420, 25, 4479, 58, 2536, 11, 337, 5912, 11, 40806, 12962, 4613, 4479, 58, 30388, 11, 7343, 58, 30388, 60, 5974, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16409, 6407, 318, 1006, 318, 257, 4938, 6306, 4941, 198, 220, 220, 220, 1058, 17143, 1006, 25, 530, 393, 517, 5563, 351, 8251, 19203, 32796, 3256, 705, 4475, 3256, 705, 43167, 33809, 393, 13042, 351, 262, 198, 220, 220, 220, 1296, 331, 22556, 88, 12, 3020, 12, 1860, 62, 77, 62, 32796, 198, 220, 220, 220, 1058, 7783, 25, 6407, 611, 1006, 318, 4938, 628, 220, 220, 220, 21066, 25, 198, 220, 220, 220, 13163, 1006, 796, 1391, 6, 4475, 10354, 4818, 8079, 7, 7908, 11, 767, 11, 1511, 737, 4475, 22784, 705, 43167, 10354, 352, 11, 705, 32796, 10354, 705, 2704, 3618, 6, 92, 198, 220, 220, 220, 13163, 318, 62, 11201, 62, 5420, 7, 5420, 8, 198, 220, 220, 220, 6407, 198, 220, 220, 220, 13163, 318, 62, 11201, 62, 5420, 10786, 7908, 12, 2998, 12, 1485, 62, 8298, 62, 2704, 3618, 11537, 198, 220, 220, 220, 6407, 198, 220, 220, 220, 13163, 318, 62, 11201, 62, 5420, 10786, 259, 12102, 62, 5420, 11537, 198, 220, 220, 220, 10352, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 318, 39098, 7, 5420, 11, 357, 33, 3316, 11, 8633, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1391, 6, 32796, 3256, 705, 4475, 3256, 705, 43167, 6, 27422, 747, 549, 2617, 7, 5420, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 1006, 796, 705, 90, 4475, 92, 23330, 43167, 92, 23330, 32796, 92, 4458, 18982, 7, 1174, 5420, 8, 198, 220, 220, 220, 1288, 361, 407, 318, 39098, 7, 5420, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 1441, 302, 13, 5589, 576, 7, 81, 6, 59, 67, 90, 19, 92, 32590, 59, 67, 90, 17, 92, 19953, 17, 92, 62, 38016, 67, 90, 16, 92, 91, 59, 67, 90, 18, 30072, 62, 59, 86, 10, 27691, 15699, 7, 5420, 8, 318, 407, 6045, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1330, 10412, 395, 198, 220, 220, 220, 10412, 395, 13, 9288, 4666, 7, 18076, 33152, 28, 4598, 310, 395, 13, 35510, 42126, 35400, 62, 12418, 2043, 1546, 47, 11598, 930, 10412, 395, 13, 23304, 47643, 1797, 8, 198 ]
2.436946
4,742
import pwndbg.auxv import pwndbg.commands import pwndbg.commands.telescope import pwndbg.memory import pwndbg.regs import pwndbg.search from pwndbg.color import message @pwndbg.commands.ArgparsedCommand('Print out the current stack canary.') @pwndbg.commands.OnlyWhenRunning
[ 11748, 279, 86, 358, 35904, 13, 14644, 85, 198, 11748, 279, 86, 358, 35904, 13, 9503, 1746, 198, 11748, 279, 86, 358, 35904, 13, 9503, 1746, 13, 37524, 3798, 3008, 198, 11748, 279, 86, 358, 35904, 13, 31673, 198, 11748, 279, 86, 358, 35904, 13, 2301, 82, 198, 11748, 279, 86, 358, 35904, 13, 12947, 198, 6738, 279, 86, 358, 35904, 13, 8043, 1330, 3275, 628, 198, 198, 31, 79, 86, 358, 35904, 13, 9503, 1746, 13, 28100, 79, 945, 276, 21575, 10786, 18557, 503, 262, 1459, 8931, 460, 560, 2637, 8, 198, 31, 79, 86, 358, 35904, 13, 9503, 1746, 13, 10049, 2215, 28768, 198 ]
2.622642
106
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import matplotlib.pyplot as plt from candphy.logs import log #creating the def for plotting the signals wave
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 198, 6738, 2658, 6883, 13, 6404, 82, 1330, 2604, 198, 198, 2, 20123, 278, 262, 825, 329, 29353, 262, 10425, 6769 ]
2.803571
56
'''------------------------------------------------------------------------------- Tool Name: CreateWeightTableFromECMWFRunoff Source Name: CreateWeightTableFromECMWFRunoff.py Version: ArcGIS 10.2 License: Apache 2.0 Author: Environmental Systems Research Institute Inc. Updated by: Environmental Systems Research Institute Inc. Description: Creates RAPID inflow file based on ECMWF runoff output and the weight table previously created. History: Initial coding - 10/21/2014, version 1.0 Updated: Version 1.0, 10/23/2014, modified names of tool and parameters Version 1.0, 10/28/2014, added data validation Version 1.1, 10/30/2014, added lon_index, lat_index in output weight table Version 1.1, 11/07/2014, bug fixing - enables input catchment feature class with spatial reference that is not PCS_WGS_1984. Version 2.0, 06/04/2015, integrated Update Weight Table (according to Alan Snow, US Army ERDC) -------------------------------------------------------------------------------''' import os import arcpy import netCDF4 as NET import numpy as NUM import csv
[ 7061, 6, 10097, 24305, 198, 16984, 6530, 25, 220, 220, 13610, 25844, 10962, 4863, 2943, 14326, 10913, 403, 2364, 198, 8090, 6530, 25, 13610, 25844, 10962, 4863, 2943, 14326, 10913, 403, 2364, 13, 9078, 198, 10628, 25, 220, 220, 220, 220, 10173, 38, 1797, 838, 13, 17, 198, 13789, 25, 220, 220, 220, 220, 24843, 362, 13, 15, 198, 6434, 25, 220, 220, 220, 220, 220, 13272, 11998, 4992, 5136, 3457, 13, 198, 19433, 416, 25, 220, 13272, 11998, 4992, 5136, 3457, 13, 198, 12489, 25, 7921, 274, 371, 2969, 2389, 1167, 9319, 2393, 1912, 319, 13182, 14326, 37, 37536, 5072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 262, 3463, 3084, 4271, 2727, 13, 198, 7443, 25, 220, 220, 220, 220, 20768, 19617, 532, 838, 14, 2481, 14, 4967, 11, 2196, 352, 13, 15, 198, 19433, 25, 220, 220, 220, 220, 10628, 352, 13, 15, 11, 838, 14, 1954, 14, 4967, 11, 9518, 3891, 286, 2891, 290, 10007, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10628, 352, 13, 15, 11, 838, 14, 2078, 14, 4967, 11, 2087, 1366, 21201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10628, 352, 13, 16, 11, 838, 14, 1270, 14, 4967, 11, 2087, 300, 261, 62, 9630, 11, 3042, 62, 9630, 287, 5072, 3463, 3084, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10628, 352, 13, 16, 11, 1367, 14, 2998, 14, 4967, 11, 5434, 18682, 532, 13536, 5128, 4929, 434, 3895, 1398, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 21739, 4941, 326, 318, 407, 4217, 50, 62, 54, 14313, 62, 28296, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10628, 362, 13, 15, 11, 9130, 14, 3023, 14, 4626, 11, 11521, 10133, 14331, 8655, 357, 38169, 284, 12246, 7967, 11, 1294, 5407, 13793, 9697, 8, 198, 10097, 24305, 7061, 6, 198, 11748, 28686, 198, 11748, 10389, 9078, 198, 11748, 2010, 34, 8068, 19, 355, 30502, 198, 11748, 299, 32152, 355, 36871, 198, 11748, 269, 21370, 198 ]
3.215259
367
from django.contrib import admin from django.urls import path,include urlpatterns = [ path('admin/', admin.site.urls), path('api-auth/',include('rest_framework.urls')), path('api/rest-auth/',include('rest_auth.urls')), path('api/rest-auth/registration/',include('rest_auth.registration.urls')), path('api/',include('rehber.api.urls')), ]
[ 198, 6738, 42625, 14208, 13, 3642, 822, 1330, 13169, 198, 6738, 42625, 14208, 13, 6371, 82, 1330, 3108, 11, 17256, 198, 198, 6371, 33279, 82, 796, 685, 198, 220, 220, 220, 3108, 10786, 28482, 14, 3256, 13169, 13, 15654, 13, 6371, 82, 828, 198, 220, 220, 220, 3108, 10786, 15042, 12, 18439, 14, 3256, 17256, 10786, 2118, 62, 30604, 13, 6371, 82, 11537, 828, 198, 220, 220, 220, 3108, 10786, 15042, 14, 2118, 12, 18439, 14, 3256, 17256, 10786, 2118, 62, 18439, 13, 6371, 82, 11537, 828, 220, 198, 220, 220, 220, 3108, 10786, 15042, 14, 2118, 12, 18439, 14, 2301, 33397, 14, 3256, 17256, 10786, 2118, 62, 18439, 13, 2301, 33397, 13, 6371, 82, 11537, 828, 220, 198, 220, 220, 220, 3108, 10786, 15042, 14, 3256, 17256, 10786, 260, 71, 527, 13, 15042, 13, 6371, 82, 11537, 828, 220, 198, 60, 198 ]
2.538462
143
# Copyright 2016 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Runs a daemon to update git credentials from the GCE metadata server. Only works inside a GCE with proper service accounts tagged. Example invocation: ./run.py infra.services.git_cookie_daemon """ # This file is untested, keep as little code as possible in there. import logging import sys from infra.services.git_cookie_daemon import git_cookie_daemon from infra_libs import app # https://chromium.googlesource.com/infra/infra/+/master/infra_libs/logs/README.md LOGGER = logging.getLogger(__name__) if __name__ == '__main__': GitCookieDaemon().run()
[ 2, 15069, 1584, 383, 18255, 1505, 46665, 13, 1439, 2489, 10395, 13, 198, 2, 5765, 286, 428, 2723, 2438, 318, 21825, 416, 257, 347, 10305, 12, 7635, 5964, 326, 460, 307, 198, 2, 1043, 287, 262, 38559, 24290, 2393, 13, 198, 37811, 10987, 82, 257, 33386, 284, 4296, 17606, 18031, 422, 262, 402, 5222, 20150, 4382, 13, 198, 198, 10049, 2499, 2641, 257, 402, 5222, 351, 1774, 2139, 5504, 30509, 13, 198, 198, 16281, 43219, 25, 198, 19571, 5143, 13, 9078, 1167, 430, 13, 30416, 13, 18300, 62, 44453, 62, 6814, 7966, 198, 37811, 198, 2, 770, 2393, 318, 1418, 7287, 11, 1394, 355, 1310, 2438, 355, 1744, 287, 612, 13, 198, 198, 11748, 18931, 198, 11748, 25064, 198, 198, 6738, 1167, 430, 13, 30416, 13, 18300, 62, 44453, 62, 6814, 7966, 1330, 17606, 62, 44453, 62, 6814, 7966, 198, 6738, 1167, 430, 62, 8019, 82, 1330, 598, 628, 198, 2, 3740, 1378, 28663, 1505, 13, 2188, 519, 829, 1668, 13, 785, 14, 10745, 430, 14, 10745, 430, 28404, 14, 9866, 14, 10745, 430, 62, 8019, 82, 14, 6404, 82, 14, 15675, 11682, 13, 9132, 198, 25294, 30373, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 15151, 34, 18055, 26531, 7966, 22446, 5143, 3419, 198 ]
3.26009
223
# Copyright 2016 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from __future__ import absolute_import from __future__ import division from __future__ import print_function from __future__ import unicode_literals import unittest from capirca.lib import policy_simple from absl import logging if __name__ == '__main__': unittest.main()
[ 2, 15069, 1584, 3012, 3457, 13, 1439, 6923, 33876, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 4556, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 6738, 11593, 37443, 834, 1330, 7297, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 6738, 11593, 37443, 834, 1330, 28000, 1098, 62, 17201, 874, 198, 198, 11748, 555, 715, 395, 198, 198, 6738, 1451, 1980, 64, 13, 8019, 1330, 2450, 62, 36439, 198, 6738, 2352, 75, 1330, 18931, 628, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
3.720339
236
include("common.py") streckerDegradationDicarbonyl = [a for a in streckerDegradationDicarbonylGen()]
[ 17256, 7203, 11321, 13, 9078, 4943, 198, 301, 11402, 263, 35, 1533, 6335, 341, 35, 291, 38039, 1647, 75, 796, 685, 64, 329, 257, 287, 1937, 15280, 35, 1533, 6335, 341, 35, 291, 38039, 1647, 75, 13746, 3419, 60 ]
2.564103
39
""" SQLAlchemyIO (saio): Module hack for autoloading table definitions ## Usage After ```python import saio saio.register_schema("model_draft", engine) ```` one can import table declarations easily using ```python from saio.model_draft import lis_charging_poi as LisChargingPoi ``` Note that `ipython` and Jupyter Notebook, allow using `<TAB>` to auto-complete table names. ## Implementation details `saio.register_schema` instantiates a declarative base using ```python from sqlalchemy.ext.declarative import declarative_base Base = declarative_base(bind=engine) # The Base can be imported using from saio.model_draft import Base ``` and then whenever one imports any table from `saio.model_draft`, ie. by calling `from saio.model_draft import lis_charging_poi as LisChargingPoi`, saio does approximately ```python class LisChargingPoi(Base): __tablename__ = 'lis_charging_poi' __table_args__ = {'schema': 'model_draft', 'autoload': True} ``` """ __copyright__ = "© Reiner Lemoine Institut" __license__ = "MIT" __url__ = "https://github.com/coroa/saio/blob/master/saio.py" __author__ = "coroa" import sqlalchemy as sa import sqlalchemy.ext.declarative import sqlalchemy.engine.reflection import warnings from types import ModuleType import logging logger = logging.getLogger(__name__) del ModuleType del memoize try: import pandas as pd has_pandas = True except ImportError: has_pandas = False try: import geopandas as gpd import shapely.wkb import shapely.geos has_geopandas = True except ImportError: has_geopandas = False def as_pandas(query, index_col=None, coerce_float=True, params=None, geometry='geom', crs=None, hex_encoded=True): """ Import a query into a pandas DataFrame or a geopandas GeoDataFrame Arguments --------- query : sqlalchemy.orm.query.Query index_col : string or list of strings, optional, default: None Column(s) to set as index(MultiIndex). coerce_float : boolean, default: True Attempts to convert values of non-string, non-numeric objects (like decimal.Decimal) to floating point. Useful for SQL result sets. params : list, tuple or dict, optional, default: None List of parameters to pass to execute method. The syntax used to pass parameters is database driver dependent. Check your database driver documentation for which of the five syntax styles, described in PEP 249's paramstyle, is supported. Eg. for psycopg2, uses %(name)s so use params={'name' : 'value'} geometry : string, default: "geom" Column name to convert to shapely geometries crs : dict|string|None, default: None CRS to use for the returned GeoDataFrame; if None, CRS is determined from the SRID of the first geometry. hex_encoded : bool, optional, default: True Whether the geometry is in a hex-encoded string. Default is True, standard for postGIS. Use hex_encoded=False for sqlite databases. Note ---- Adapted from geopandas' read_postgis function. Usage ----- import saio saio.register_schema("boundaries", engine) from saio.boundaries import bkg_vg250_2_lan as BkgLan df = saio.as_pandas(session.query(BkgLan.geom)) df.plot() """ assert has_pandas, "Pandas failed to import. Please check your installation!" df = pd.read_sql_query(query.statement, query.session.bind, index_col=index_col, coerce_float=coerce_float, params=params) if geometry not in df: return df if not has_geopandas: warnings.warn("GeoPandas failed to import. Geometry column is left as WKB.") return df if len(df) > 0: obj = df[geometry].iloc[0] if isinstance(obj, bytes): load_geom = lambda s: shapely.wkb.loads(s, hex=hex_encoded) else: load_geom = lambda s: shapely.wkb.loads(str(s), hex=hex_encoded) srid = getattr(obj, 'srid', -1) if srid == -1: srid = shapely.geos.lgeos.GEOSGetSRID(load_geom(obj)._geom) if crs is None and srid != 0: crs = dict(init="epsg:{}".format(srid)) df[geometry] = df[geometry].map(load_geom) return gpd.GeoDataFrame(df, crs=crs, geometry=geometry)
[ 37811, 198, 17861, 2348, 26599, 9399, 357, 11400, 952, 2599, 19937, 8156, 329, 1960, 349, 1170, 278, 3084, 17336, 198, 198, 2235, 29566, 198, 198, 3260, 628, 220, 7559, 63, 29412, 198, 220, 1330, 473, 952, 198, 220, 473, 952, 13, 30238, 62, 15952, 2611, 7203, 19849, 62, 35679, 1600, 3113, 8, 198, 220, 7559, 15506, 198, 198, 505, 460, 1330, 3084, 31713, 3538, 1262, 628, 220, 7559, 63, 29412, 198, 220, 422, 473, 952, 13, 19849, 62, 35679, 1330, 300, 271, 62, 31498, 62, 7501, 72, 355, 28546, 28316, 278, 18833, 72, 198, 220, 7559, 63, 198, 198, 6425, 326, 4600, 541, 7535, 63, 290, 449, 929, 88, 353, 5740, 2070, 11, 1249, 1262, 4600, 27, 5603, 33, 29, 63, 284, 8295, 12, 20751, 198, 11487, 3891, 13, 198, 198, 2235, 46333, 3307, 198, 198, 63, 11400, 952, 13, 30238, 62, 15952, 2611, 63, 9113, 32820, 257, 2377, 283, 876, 2779, 1262, 628, 220, 7559, 63, 29412, 198, 220, 422, 44161, 282, 26599, 13, 2302, 13, 32446, 283, 876, 1330, 2377, 283, 876, 62, 8692, 198, 220, 7308, 796, 2377, 283, 876, 62, 8692, 7, 21653, 28, 18392, 8, 198, 220, 1303, 383, 7308, 460, 307, 17392, 1262, 422, 473, 952, 13, 19849, 62, 35679, 1330, 7308, 198, 220, 7559, 63, 198, 198, 392, 788, 8797, 530, 17944, 597, 3084, 422, 4600, 11400, 952, 13, 19849, 62, 35679, 47671, 37941, 13, 416, 4585, 198, 63, 6738, 473, 952, 13, 19849, 62, 35679, 1330, 300, 271, 62, 31498, 62, 7501, 72, 355, 28546, 28316, 278, 18833, 72, 47671, 473, 952, 857, 198, 47498, 628, 220, 7559, 63, 29412, 198, 220, 1398, 28546, 28316, 278, 18833, 72, 7, 14881, 2599, 198, 220, 220, 220, 220, 220, 11593, 8658, 11925, 480, 834, 796, 220, 705, 27999, 62, 31498, 62, 7501, 72, 6, 198, 220, 220, 220, 220, 220, 11593, 11487, 62, 22046, 834, 796, 1391, 6, 15952, 2611, 10354, 705, 19849, 62, 35679, 3256, 705, 2306, 349, 1170, 10354, 6407, 92, 198, 220, 7559, 63, 198, 37811, 198, 198, 834, 22163, 4766, 834, 220, 220, 796, 366, 16224, 797, 7274, 20607, 42722, 37931, 315, 1, 198, 834, 43085, 834, 220, 220, 220, 220, 796, 366, 36393, 1, 198, 834, 6371, 834, 220, 220, 220, 220, 220, 220, 220, 220, 796, 366, 5450, 1378, 12567, 13, 785, 14, 10215, 12162, 14, 11400, 952, 14, 2436, 672, 14, 9866, 14, 11400, 952, 13, 9078, 1, 198, 834, 9800, 834, 220, 220, 220, 220, 220, 796, 366, 10215, 12162, 1, 198, 198, 11748, 44161, 282, 26599, 355, 473, 198, 11748, 44161, 282, 26599, 13, 2302, 13, 32446, 283, 876, 198, 11748, 44161, 282, 26599, 13, 18392, 13, 5420, 1564, 198, 198, 11748, 14601, 198, 6738, 3858, 1330, 19937, 6030, 198, 198, 11748, 18931, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 198, 198, 12381, 19937, 6030, 198, 12381, 16155, 1096, 198, 198, 28311, 25, 198, 220, 220, 220, 1330, 19798, 292, 355, 279, 67, 198, 220, 220, 220, 468, 62, 79, 392, 292, 796, 6407, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 468, 62, 79, 392, 292, 796, 10352, 198, 198, 28311, 25, 198, 220, 220, 220, 1330, 30324, 392, 292, 355, 27809, 67, 198, 220, 220, 220, 1330, 5485, 306, 13, 86, 32812, 198, 220, 220, 220, 1330, 5485, 306, 13, 469, 418, 198, 220, 220, 220, 468, 62, 469, 404, 392, 292, 796, 6407, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 468, 62, 469, 404, 392, 292, 796, 10352, 198, 198, 4299, 355, 62, 79, 392, 292, 7, 22766, 11, 6376, 62, 4033, 28, 14202, 11, 31255, 344, 62, 22468, 28, 17821, 11, 42287, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22939, 11639, 469, 296, 3256, 1067, 82, 28, 14202, 11, 17910, 62, 12685, 9043, 28, 17821, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 17267, 257, 12405, 656, 257, 19798, 292, 6060, 19778, 393, 257, 30324, 392, 292, 32960, 6601, 19778, 628, 220, 220, 220, 20559, 2886, 198, 220, 220, 220, 45337, 198, 220, 220, 220, 12405, 1058, 44161, 282, 26599, 13, 579, 13, 22766, 13, 20746, 628, 220, 220, 220, 6376, 62, 4033, 1058, 4731, 393, 1351, 286, 13042, 11, 11902, 11, 4277, 25, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 29201, 7, 82, 8, 284, 900, 355, 6376, 7, 29800, 15732, 737, 628, 220, 220, 220, 31255, 344, 62, 22468, 1058, 25131, 11, 4277, 25, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 25770, 82, 284, 10385, 3815, 286, 1729, 12, 8841, 11, 1729, 12, 77, 39223, 5563, 357, 2339, 198, 220, 220, 220, 220, 220, 220, 220, 32465, 13, 10707, 4402, 8, 284, 12462, 966, 13, 49511, 329, 16363, 1255, 5621, 13, 628, 220, 220, 220, 42287, 1058, 1351, 11, 46545, 393, 8633, 11, 11902, 11, 4277, 25, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 10007, 284, 1208, 284, 12260, 2446, 13, 220, 383, 15582, 973, 198, 220, 220, 220, 220, 220, 220, 220, 284, 1208, 10007, 318, 6831, 4639, 10795, 13, 6822, 534, 198, 220, 220, 220, 220, 220, 220, 220, 6831, 4639, 10314, 329, 543, 286, 262, 1936, 15582, 12186, 11, 198, 220, 220, 220, 220, 220, 220, 220, 3417, 287, 350, 8905, 34620, 338, 5772, 7635, 11, 318, 4855, 13, 198, 220, 220, 220, 220, 220, 220, 220, 36386, 13, 329, 17331, 22163, 70, 17, 11, 3544, 4064, 7, 3672, 8, 82, 523, 779, 42287, 34758, 6, 3672, 6, 1058, 705, 8367, 6, 92, 628, 220, 220, 220, 22939, 1058, 4731, 11, 4277, 25, 366, 469, 296, 1, 198, 220, 220, 220, 220, 220, 220, 220, 29201, 1438, 284, 10385, 284, 5485, 306, 4903, 908, 1678, 628, 220, 220, 220, 1067, 82, 1058, 8633, 91, 8841, 91, 14202, 11, 4277, 25, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 327, 6998, 284, 779, 329, 262, 4504, 32960, 6601, 19778, 26, 611, 6045, 11, 327, 6998, 318, 5295, 198, 220, 220, 220, 220, 220, 220, 220, 422, 262, 16808, 2389, 286, 262, 717, 22939, 13, 628, 220, 220, 220, 17910, 62, 12685, 9043, 1058, 20512, 11, 11902, 11, 4277, 25, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 10127, 262, 22939, 318, 287, 257, 17910, 12, 12685, 9043, 4731, 13, 15161, 318, 6407, 11, 198, 220, 220, 220, 220, 220, 220, 220, 3210, 329, 1281, 38, 1797, 13, 5765, 17910, 62, 12685, 9043, 28, 25101, 329, 44161, 578, 20083, 13, 628, 220, 220, 220, 5740, 198, 220, 220, 220, 13498, 198, 220, 220, 220, 30019, 276, 422, 30324, 392, 292, 6, 1100, 62, 7353, 70, 271, 2163, 13, 628, 220, 220, 220, 29566, 198, 220, 220, 220, 37404, 198, 220, 220, 220, 1330, 473, 952, 198, 220, 220, 220, 473, 952, 13, 30238, 62, 15952, 2611, 7203, 7784, 3166, 1600, 3113, 8, 198, 220, 220, 220, 422, 473, 952, 13, 7784, 3166, 1330, 275, 10025, 62, 45119, 9031, 62, 17, 62, 9620, 355, 347, 10025, 43, 272, 198, 220, 220, 220, 47764, 796, 473, 952, 13, 292, 62, 79, 392, 292, 7, 29891, 13, 22766, 7, 33, 10025, 43, 272, 13, 469, 296, 4008, 198, 220, 220, 220, 47764, 13, 29487, 3419, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6818, 468, 62, 79, 392, 292, 11, 366, 47206, 292, 4054, 284, 1330, 13, 4222, 2198, 534, 9988, 2474, 628, 220, 220, 220, 47764, 796, 279, 67, 13, 961, 62, 25410, 62, 22766, 7, 22766, 13, 26090, 11, 12405, 13, 29891, 13, 21653, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6376, 62, 4033, 28, 9630, 62, 4033, 11, 31255, 344, 62, 22468, 28, 1073, 263, 344, 62, 22468, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42287, 28, 37266, 8, 628, 220, 220, 220, 611, 22939, 407, 287, 47764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 47764, 628, 220, 220, 220, 611, 407, 468, 62, 469, 404, 392, 292, 25, 198, 220, 220, 220, 220, 220, 220, 220, 14601, 13, 40539, 7203, 10082, 78, 47206, 292, 4054, 284, 1330, 13, 2269, 15748, 5721, 318, 1364, 355, 370, 22764, 19570, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 47764, 628, 220, 220, 220, 611, 18896, 7, 7568, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 26181, 796, 47764, 58, 469, 15748, 4083, 346, 420, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 26801, 11, 9881, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3440, 62, 469, 296, 796, 37456, 264, 25, 5485, 306, 13, 86, 32812, 13, 46030, 7, 82, 11, 17910, 28, 33095, 62, 12685, 9043, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3440, 62, 469, 296, 796, 37456, 264, 25, 5485, 306, 13, 86, 32812, 13, 46030, 7, 2536, 7, 82, 828, 17910, 28, 33095, 62, 12685, 9043, 8, 628, 220, 220, 220, 220, 220, 220, 220, 264, 6058, 796, 651, 35226, 7, 26801, 11, 705, 82, 6058, 3256, 532, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 264, 6058, 6624, 532, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 6058, 796, 5485, 306, 13, 469, 418, 13, 75, 469, 418, 13, 8264, 2640, 3855, 12562, 2389, 7, 2220, 62, 469, 296, 7, 26801, 737, 62, 469, 296, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1067, 82, 318, 6045, 290, 264, 6058, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1067, 82, 796, 8633, 7, 15003, 2625, 25386, 70, 29164, 92, 1911, 18982, 7, 82, 6058, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 47764, 58, 469, 15748, 60, 796, 47764, 58, 469, 15748, 4083, 8899, 7, 2220, 62, 469, 296, 8, 628, 220, 220, 220, 1441, 27809, 67, 13, 10082, 78, 6601, 19778, 7, 7568, 11, 1067, 82, 28, 66, 3808, 11, 22939, 28, 469, 15748, 8, 198 ]
2.553105
1,723
# Librerias Django from django.contrib.auth import authenticate from django.contrib.auth.decorators import login_required from django.contrib.auth.mixins import LoginRequiredMixin from django.contrib.auth.models import User from django.shortcuts import redirect, render from django.urls import reverse, reverse_lazy from django.views.generic import DetailView, ListView from django.views.generic.edit import CreateView, DeleteView, UpdateView # Librerias en carpetas locales from ..models.stage import PyStage """ BEGIN STAGE """ STAGE_FIELDS = [ {'string': 'Nombre', 'field': 'name'}, ] STAGE_FIELDS_SHORT = ['name'] @login_required(login_url="base:login") """ END STAGE """
[ 2, 44384, 380, 292, 37770, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 1330, 8323, 5344, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 12501, 273, 2024, 1330, 17594, 62, 35827, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 19816, 1040, 1330, 23093, 37374, 35608, 259, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 27530, 1330, 11787, 198, 6738, 42625, 14208, 13, 19509, 23779, 1330, 18941, 11, 8543, 198, 6738, 42625, 14208, 13, 6371, 82, 1330, 9575, 11, 9575, 62, 75, 12582, 198, 6738, 42625, 14208, 13, 33571, 13, 41357, 1330, 42585, 7680, 11, 7343, 7680, 198, 6738, 42625, 14208, 13, 33571, 13, 41357, 13, 19312, 1330, 13610, 7680, 11, 23520, 7680, 11, 10133, 7680, 198, 198, 2, 44384, 380, 292, 551, 20710, 292, 1957, 274, 198, 6738, 11485, 27530, 13, 14247, 1330, 9485, 29391, 198, 198, 37811, 347, 43312, 3563, 11879, 37227, 198, 2257, 11879, 62, 11674, 3698, 5258, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 8841, 10354, 705, 45, 2381, 260, 3256, 705, 3245, 10354, 705, 3672, 6, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 198, 2257, 11879, 62, 11674, 3698, 5258, 62, 9693, 9863, 796, 37250, 3672, 20520, 628, 198, 198, 31, 38235, 62, 35827, 7, 38235, 62, 6371, 2625, 8692, 25, 38235, 4943, 198, 37811, 23578, 3563, 11879, 37227, 198 ]
3
234
from __future__ import absolute_import from __future__ import division from __future__ import print_function import numpy as np import matplotlib.pyplot as plt import copy from collections import defaultdict from fractions import gcd from .neurovis import NeuroVis from .. import utils from ..config import DEFAULT_POPULATION_COLORS # Defines the default colors for a PSTH plot. DEFAULT_PSTH_COLORS = ['Blues', 'Reds', 'Greens'] class PopVis(object): '''Facilitates visualization of neuron population firing activity. Args: neuron_list (list of NeuroVis objects): The list of neurons to visualize (see the NeuroVis class in :class:`spykes.plot.neurovis`). Attributes: n_neurons (int): The number of neurons in the visualization. name (str): The name of this visualization. ''' @property @property def get_all_psth(self, event=None, df=None, conditions=None, window=[-100, 500], binsize=10, conditions_names=None, plot=True, colors=DEFAULT_PSTH_COLORS): '''Iterates through all neurons and computes their PSTH's. Args: event (str): Column/key name of DataFrame/dictionary "data" which contains event times in milliseconds (e.g. stimulus/trial/ fixation onset, etc.). df (DataFrame or dictionary): The data to use. conditions (str): Column/key name of DataFrame/dictionary :data:`df` which contains the conditions by which the trials must be grouped window (list of 2 elements): Time interval to consider, in milliseconds. binsize (int): Bin size, in milliseconds. conditions_names (list of str): Legend names for conditions. Default are the unique values in :data:`df['conditions']`. plot (bool): If set, automatically plot; otherwise, don't. colors (list): List of colors for heatmap (only if plot is True). Returns: dict: With keys :data:`event`, :data:`conditions`, :data:`binsize`, :data:`window`, and :data:`data`. Each entry in :data:`psth['data']` is itself a dictionary with keys of each :data:`cond_id` that correspond to the means for that condition. ''' all_psth = { 'window': window, 'binsize': binsize, 'event': event, 'conditions': conditions, 'data': defaultdict(list), } for i, neuron in enumerate(self.neuron_list): psth = neuron.get_psth( event=event, df=df, conditions=conditions, window=window, binsize=binsize, plot=False, ) for cond_id in np.sort(list(psth['data'].keys())): all_psth['data'][cond_id].append(psth['data'][cond_id]['mean']) for cond_id in np.sort(list(all_psth['data'].keys())): all_psth['data'][cond_id] = np.stack(all_psth['data'][cond_id]) if plot is True: self.plot_heat_map( all_psth, conditions_names=conditions_names, colors=colors, ) return all_psth def plot_heat_map(self, psth_dict, cond_id=None, conditions_names=None, sortby=None, sortorder='descend', normalize=None, neuron_names=True, colors=None, show=False): '''Plots heat map for neuron population Args: psth_dict (dict): With keys :data:`event`, :data:`conditions`, :data:`binsize`, :data:`window`, and :data:`data`. Each entry in :data:`psth['data']` is itself a dictionary with keys of each :data:`cond_id` that correspond to the means for that condition. cond_id (str): Which psth to plot indicated by the key in :data:`all_psth['data']`. If None then all are plotted. conditions_names (str or list of str): Name(s) to appear in the title. sortby (str or list): If :data:`rate`, sort by firing rate. If :data:`latency`, sort by peak latency. If a list or array is provided, it must correspond to integer indices to be used as sorting indices. If no sort order is provided, the data is returned as-is. sortorder (str): The direction to sort in, either :data:`descend` or :data:`ascend`. normalize (str): If :data:`all`, divide all PSTHs by highest peak firing rate in all neurons. If :data:`each`, divide each PSTH by its own peak firing rate. If None, do not normalize. neuron_names (bool): Whether or not to list the names of neurons on the side. colors (list of str): List of colors for the heatmap (as strings). show (bool): If set, show the plot once finished. ''' if colors is None: colors = ['Blues', 'Reds', 'Greens'] window = psth_dict['window'] binsize = psth_dict['binsize'] conditions = psth_dict['conditions'] if cond_id is None: keys = np.sort(list(psth_dict['data'].keys())) else: keys = cond_id if conditions_names is None: conditions_names = keys for i, cond_id in enumerate(keys): # Sorts and norms the data. orig_data = psth_dict['data'][cond_id] normed_data = self._get_normed_data(orig_data, normalize=normalize) sort_idx = utils.get_sort_indices( normed_data, by=sortby, order=sortorder, ) data = normed_data[sort_idx, :] plt.subplot(len(keys), 1, i + 1) plt.pcolormesh(data, cmap=colors[i % len(colors)]) # Makes it visually appealing. xtic_len = gcd(abs(window[0]), window[1]) xtic_labels = range(window[0], window[1] + xtic_len, xtic_len) xtic_locs = [(j - window[0]) / binsize for j in xtic_labels] if 0 not in xtic_labels: xtic_labels.append(0) xtic_locs.append(-window[0] / binsize) plt.xticks(xtic_locs, xtic_labels) plt.axvline((-window[0]) / binsize, color='r', linestyle='--') if neuron_names: unsorted_ylabels = [neuron.name for neuron in self.neuron_list] ylabels = [unsorted_ylabels[j] for j in sort_idx] else: ylabels = ["" for neuron in self.neuron_list] plt.yticks(np.arange(data.shape[0]) + 0.5, ylabels) ax = plt.gca() ax.invert_yaxis() ax.set_frame_on(False) plt.tick_params(axis='x', which='both', top='off') plt.tick_params(axis='y', which='both', left='off', right='off') plt.xlabel('time [ms]') plt.ylabel('Neuron') plt.title("%s: %s" % (conditions, conditions_names[i])) plt.colorbar() if show: plt.show() def plot_population_psth(self, all_psth=None, event=None, df=None, conditions=None, cond_id=None, window=[-100, 500], binsize=10, conditions_names=None, event_name='event_onset', ylim=None, colors=DEFAULT_POPULATION_COLORS, show=False): '''Plots population PSTH's. This involves two steps. First, it normalizes each neuron's PSTH across the conditions. Second, it averages out and plots population PSTH. Args: all_psth (dict): With keys :data:`event`, :data:`conditions`, :data:`binsize`, :data:`window`, and :data:`data`. Each entry in :data:`psth['data']` is itself a dictionary with keys of each :data:`cond_id` that correspond to the means for that condition. event (str): Column/key name of the :data:`df` DataFrame/dictionary which contains event times in milliseconds (stimulus/trial/fixation onset, etc.). df (DataFrame or dictionary): DataFrame containing the data to plot, or a dictionary corresponding to such a DataFrame. conditions (str): Column/key name of DataFrame/dictionary :data:`df` which contains the conditions by which the trials must be grouped. cond_id (list): Which psth to plot indicated by the key in :data:`all_psth['data']``. If :data:`None` then all are plotted. window (list of 2 elements): Time interval to consider, in milliseconds. binsize (int): Bin size, in milliseconds. conditions_names (list): Legend names for conditions. Default are the unique values in :data:`df['conditions']`. event_name (string): Legend name for event. Default is the actual event name ylim (list): The minimum and maximum values for Y. colors (list): The colors to use for the plot (as strings). show (bool): If set, show the plot once it has been created. ''' # placeholder in order to use NeuroVis functionality base_neuron = NeuroVis(spiketimes=range(10), name=self.name) if all_psth is None: psth = self.get_all_psth( event=event, df=df, conditions=conditions, window=window, binsize=binsize, plot=False, ) else: psth = copy.deepcopy(all_psth) keys = np.sort(list(psth['data'].keys())) # Normalizes each neuron across all conditions. for i in range(self.n_neurons): max_rates = list() for key in keys: max_rates.append(np.amax(psth['data'][key][i, :])) norm_factor = max(max_rates) for key in keys: psth['data'][key][i, :] /= norm_factor # Averages out all the neurons and plots. for i, key in enumerate(keys): normed_data = psth['data'][key] psth['data'][key] = dict() psth['data'][key]['mean'] = np.nanmean(normed_data, axis=0) psth['data'][key]['sem'] = \ np.nanvar(normed_data, axis=0) / (len(self.neuron_list)**.5) # Plots the PSTH. base_neuron.plot_psth( psth=psth, event_name=event_name, cond_id=cond_id, conditions_names=conditions_names, ylim=ylim, colors=colors, ) # Adds the appropriate title. plt.title("%s Population PSTH: %s" % (self.name, psth['conditions'])) if show: plt.show() def _get_normed_data(self, data, normalize): '''Normalizes all PSTH data Args: data (2-D numpy array): Array with shape :data:`(n_neurons, n_bins)` normalize (str): If :data:`all`, divide all PSTHs by highest peak firing rate in all neurons. If :data:`each`, divide each PSTH by its own peak firing rate. If None, do not normalize. Returns: array: The original data array, divided such that all values fall between 0 and 1. ''' max_rates = np.amax(data, axis=1) # Computes the normalization factors. if normalize == 'all': norm_factors = np.ones([data.shape[0], 1]) * np.amax(max_rates) elif normalize == 'each': norm_factors = ( np.reshape(max_rates, (max_rates.shape[0], 1)) * np.ones((1, data.shape[1])) ) elif normalize is None: norm_factors = np.ones([data.shape[0], 1]) else: raise ValueError('Invalid norm factors: {}'.format(norm_factors)) return data / norm_factors
[ 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 6738, 11593, 37443, 834, 1330, 7297, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 4866, 198, 6738, 17268, 1330, 4277, 11600, 198, 198, 6738, 49876, 1330, 308, 10210, 198, 198, 6738, 764, 710, 1434, 4703, 1330, 13782, 15854, 198, 6738, 11485, 1330, 3384, 4487, 198, 6738, 11485, 11250, 1330, 5550, 38865, 62, 47, 3185, 6239, 6234, 62, 25154, 20673, 198, 198, 2, 2896, 1127, 262, 4277, 7577, 329, 257, 28220, 39, 7110, 13, 198, 7206, 38865, 62, 47, 2257, 39, 62, 25154, 20673, 796, 37250, 3629, 947, 3256, 705, 49, 5379, 3256, 705, 38, 5681, 20520, 628, 198, 4871, 8099, 15854, 7, 15252, 2599, 198, 220, 220, 220, 705, 7061, 47522, 6392, 689, 32704, 286, 43164, 3265, 9645, 3842, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 43164, 62, 4868, 357, 4868, 286, 13782, 15854, 5563, 2599, 383, 1351, 286, 16890, 284, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 38350, 357, 3826, 262, 13782, 15854, 1398, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 4871, 25, 63, 2777, 88, 5209, 13, 29487, 13, 710, 1434, 4703, 63, 737, 628, 220, 220, 220, 49213, 25, 198, 220, 220, 220, 220, 220, 220, 220, 299, 62, 710, 333, 684, 357, 600, 2599, 383, 1271, 286, 16890, 287, 262, 32704, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 357, 2536, 2599, 383, 1438, 286, 428, 32704, 13, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 825, 651, 62, 439, 62, 79, 48476, 7, 944, 11, 1785, 28, 14202, 11, 47764, 28, 14202, 11, 3403, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4324, 41888, 12, 3064, 11, 5323, 4357, 41701, 1096, 28, 940, 11, 3403, 62, 14933, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7110, 28, 17821, 11, 7577, 28, 7206, 38865, 62, 47, 2257, 39, 62, 25154, 20673, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 29993, 689, 832, 477, 16890, 290, 552, 1769, 511, 28220, 39, 338, 13, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 357, 2536, 2599, 29201, 14, 2539, 1438, 286, 6060, 19778, 14, 67, 14188, 366, 7890, 1, 543, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 1785, 1661, 287, 38694, 357, 68, 13, 70, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19819, 14, 45994, 14, 48785, 21228, 11, 3503, 15729, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47764, 357, 6601, 19778, 393, 22155, 2599, 383, 1366, 284, 779, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3403, 357, 2536, 2599, 29201, 14, 2539, 1438, 286, 6060, 19778, 14, 67, 14188, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 7890, 25, 63, 7568, 63, 543, 4909, 262, 3403, 416, 543, 262, 9867, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1276, 307, 32824, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4324, 357, 4868, 286, 362, 4847, 2599, 3862, 16654, 284, 2074, 11, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 38694, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41701, 1096, 357, 600, 2599, 20828, 2546, 11, 287, 38694, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3403, 62, 14933, 357, 4868, 286, 965, 2599, 9883, 3891, 329, 3403, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15161, 389, 262, 3748, 3815, 287, 1058, 7890, 25, 63, 7568, 17816, 17561, 1756, 20520, 44646, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7110, 357, 30388, 2599, 1002, 900, 11, 6338, 7110, 26, 4306, 11, 836, 470, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7577, 357, 4868, 2599, 7343, 286, 7577, 329, 4894, 8899, 357, 8807, 611, 7110, 318, 6407, 737, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8633, 25, 2080, 8251, 1058, 7890, 25, 63, 15596, 47671, 1058, 7890, 25, 63, 17561, 1756, 47671, 1058, 7890, 25, 63, 65, 1040, 1096, 47671, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 7890, 25, 63, 17497, 47671, 290, 1058, 7890, 25, 63, 7890, 44646, 5501, 5726, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 7890, 25, 63, 79, 48476, 17816, 7890, 20520, 63, 318, 2346, 257, 22155, 351, 8251, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1123, 1058, 7890, 25, 63, 17561, 62, 312, 63, 326, 6053, 284, 262, 1724, 329, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4006, 13, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 477, 62, 79, 48476, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 17497, 10354, 4324, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 65, 1040, 1096, 10354, 41701, 1096, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 15596, 10354, 1785, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 17561, 1756, 10354, 3403, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 10354, 4277, 11600, 7, 4868, 828, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 43164, 287, 27056, 378, 7, 944, 13, 710, 44372, 62, 4868, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 48476, 796, 43164, 13, 1136, 62, 79, 48476, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 28, 15596, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47764, 28, 7568, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3403, 28, 17561, 1756, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4324, 28, 17497, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41701, 1096, 28, 65, 1040, 1096, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7110, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1779, 62, 312, 287, 45941, 13, 30619, 7, 4868, 7, 79, 48476, 17816, 7890, 6, 4083, 13083, 28955, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 79, 48476, 17816, 7890, 6, 7131, 17561, 62, 312, 4083, 33295, 7, 79, 48476, 17816, 7890, 6, 7131, 17561, 62, 312, 7131, 6, 32604, 6, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 329, 1779, 62, 312, 287, 45941, 13, 30619, 7, 4868, 7, 439, 62, 79, 48476, 17816, 7890, 6, 4083, 13083, 28955, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 79, 48476, 17816, 7890, 6, 7131, 17561, 62, 312, 60, 796, 45941, 13, 25558, 7, 439, 62, 79, 48476, 17816, 7890, 6, 7131, 17561, 62, 312, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 611, 7110, 318, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 29487, 62, 25080, 62, 8899, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 79, 48476, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3403, 62, 14933, 28, 17561, 1756, 62, 14933, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7577, 28, 4033, 669, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 477, 62, 79, 48476, 628, 220, 220, 220, 825, 7110, 62, 25080, 62, 8899, 7, 944, 11, 279, 48476, 62, 11600, 11, 1779, 62, 312, 28, 14202, 11, 3403, 62, 14933, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3297, 1525, 28, 14202, 11, 3297, 2875, 11639, 20147, 437, 3256, 3487, 1096, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 43164, 62, 14933, 28, 17821, 11, 7577, 28, 14202, 11, 905, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 3646, 1747, 4894, 3975, 329, 43164, 3265, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 48476, 62, 11600, 357, 11600, 2599, 2080, 8251, 1058, 7890, 25, 63, 15596, 47671, 1058, 7890, 25, 63, 17561, 1756, 47671, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 7890, 25, 63, 65, 1040, 1096, 47671, 1058, 7890, 25, 63, 17497, 47671, 290, 1058, 7890, 25, 63, 7890, 44646, 5501, 5726, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 1058, 7890, 25, 63, 79, 48476, 17816, 7890, 20520, 63, 318, 2346, 257, 22155, 351, 8251, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1123, 1058, 7890, 25, 63, 17561, 62, 312, 63, 326, 6053, 284, 262, 1724, 329, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4006, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1779, 62, 312, 357, 2536, 2599, 9022, 279, 48476, 284, 7110, 8203, 416, 262, 1994, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 7890, 25, 63, 439, 62, 79, 48476, 17816, 7890, 20520, 44646, 1002, 6045, 788, 477, 389, 37515, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3403, 62, 14933, 357, 2536, 393, 1351, 286, 965, 2599, 6530, 7, 82, 8, 284, 1656, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3670, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3297, 1525, 357, 2536, 393, 1351, 2599, 1002, 1058, 7890, 25, 63, 4873, 47671, 3297, 416, 9645, 2494, 13, 1002, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 7890, 25, 63, 15460, 1387, 47671, 3297, 416, 9103, 24812, 13, 1002, 257, 1351, 393, 7177, 318, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2810, 11, 340, 1276, 6053, 284, 18253, 36525, 284, 307, 973, 355, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29407, 36525, 13, 1002, 645, 3297, 1502, 318, 2810, 11, 262, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 4504, 355, 12, 271, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3297, 2875, 357, 2536, 2599, 383, 4571, 284, 3297, 287, 11, 2035, 1058, 7890, 25, 63, 20147, 437, 63, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 393, 1058, 7890, 25, 63, 3372, 437, 44646, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3487, 1096, 357, 2536, 2599, 1002, 1058, 7890, 25, 63, 439, 47671, 14083, 477, 28220, 39, 82, 416, 4511, 9103, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9645, 2494, 287, 477, 16890, 13, 1002, 1058, 7890, 25, 63, 27379, 47671, 14083, 1123, 28220, 39, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 416, 663, 898, 9103, 9645, 2494, 13, 1002, 6045, 11, 466, 407, 3487, 1096, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 43164, 62, 14933, 357, 30388, 2599, 10127, 393, 407, 284, 1351, 262, 3891, 286, 16890, 319, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 1735, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7577, 357, 4868, 286, 965, 2599, 7343, 286, 7577, 329, 262, 4894, 8899, 357, 292, 13042, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 905, 357, 30388, 2599, 1002, 900, 11, 905, 262, 7110, 1752, 5201, 13, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 611, 7577, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7577, 796, 37250, 3629, 947, 3256, 705, 49, 5379, 3256, 705, 38, 5681, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 4324, 796, 279, 48476, 62, 11600, 17816, 17497, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 41701, 1096, 796, 279, 48476, 62, 11600, 17816, 65, 1040, 1096, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 3403, 796, 279, 48476, 62, 11600, 17816, 17561, 1756, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1779, 62, 312, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8251, 796, 45941, 13, 30619, 7, 4868, 7, 79, 48476, 62, 11600, 17816, 7890, 6, 4083, 13083, 3419, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8251, 796, 1779, 62, 312, 628, 220, 220, 220, 220, 220, 220, 220, 611, 3403, 62, 14933, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3403, 62, 14933, 796, 8251, 628, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 1779, 62, 312, 287, 27056, 378, 7, 13083, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 311, 2096, 290, 19444, 262, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1796, 62, 7890, 796, 279, 48476, 62, 11600, 17816, 7890, 6, 7131, 17561, 62, 312, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2593, 276, 62, 7890, 796, 2116, 13557, 1136, 62, 27237, 276, 62, 7890, 7, 11612, 62, 7890, 11, 3487, 1096, 28, 11265, 1096, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3297, 62, 312, 87, 796, 3384, 4487, 13, 1136, 62, 30619, 62, 521, 1063, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2593, 276, 62, 7890, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 416, 28, 30619, 1525, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 28, 30619, 2875, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2593, 276, 62, 7890, 58, 30619, 62, 312, 87, 11, 1058, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 7266, 29487, 7, 11925, 7, 13083, 828, 352, 11, 1312, 1343, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 79, 4033, 579, 5069, 7, 7890, 11, 269, 8899, 28, 4033, 669, 58, 72, 4064, 18896, 7, 4033, 669, 8, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 27433, 340, 22632, 16403, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 742, 291, 62, 11925, 796, 308, 10210, 7, 8937, 7, 17497, 58, 15, 46570, 4324, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 742, 291, 62, 23912, 1424, 796, 2837, 7, 17497, 58, 15, 4357, 4324, 58, 16, 60, 1343, 220, 742, 291, 62, 11925, 11, 220, 742, 291, 62, 11925, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 742, 291, 62, 17946, 82, 796, 47527, 73, 532, 4324, 58, 15, 12962, 1220, 41701, 1096, 329, 474, 287, 220, 742, 291, 62, 23912, 1424, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 657, 407, 287, 220, 742, 291, 62, 23912, 1424, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 742, 291, 62, 23912, 1424, 13, 33295, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 742, 291, 62, 17946, 82, 13, 33295, 32590, 17497, 58, 15, 60, 1220, 41701, 1096, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 742, 3378, 7, 742, 291, 62, 17946, 82, 11, 220, 742, 291, 62, 23912, 1424, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 897, 85, 1370, 19510, 12, 17497, 58, 15, 12962, 1220, 41701, 1096, 11, 3124, 11639, 81, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9493, 10992, 11639, 438, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 43164, 62, 14933, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5576, 9741, 62, 2645, 397, 1424, 796, 685, 710, 44372, 13, 3672, 329, 43164, 287, 2116, 13, 710, 44372, 62, 4868, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 23912, 1424, 796, 685, 13271, 9741, 62, 2645, 397, 1424, 58, 73, 60, 329, 474, 287, 3297, 62, 312, 87, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 23912, 1424, 796, 14631, 1, 329, 43164, 287, 2116, 13, 710, 44372, 62, 4868, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 20760, 3378, 7, 37659, 13, 283, 858, 7, 7890, 13, 43358, 58, 15, 12962, 1343, 657, 13, 20, 11, 331, 23912, 1424, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7877, 796, 458, 83, 13, 70, 6888, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7877, 13, 259, 1851, 62, 88, 22704, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7877, 13, 2617, 62, 14535, 62, 261, 7, 25101, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 42298, 62, 37266, 7, 22704, 11639, 87, 3256, 543, 11639, 16885, 3256, 1353, 11639, 2364, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 42298, 62, 37266, 7, 22704, 11639, 88, 3256, 543, 11639, 16885, 3256, 1364, 11639, 2364, 3256, 826, 11639, 2364, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 87, 18242, 10786, 2435, 685, 907, 60, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 2645, 9608, 10786, 8199, 44372, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 7839, 7203, 4, 82, 25, 4064, 82, 1, 4064, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 17561, 1756, 11, 3403, 62, 14933, 58, 72, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 8043, 5657, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 611, 905, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 12860, 3419, 628, 220, 220, 220, 825, 7110, 62, 39748, 62, 79, 48476, 7, 944, 11, 477, 62, 79, 48476, 28, 14202, 11, 1785, 28, 14202, 11, 47764, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3403, 28, 14202, 11, 1779, 62, 312, 28, 14202, 11, 4324, 41888, 12, 3064, 11, 5323, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41701, 1096, 28, 940, 11, 3403, 62, 14933, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 3672, 11639, 15596, 62, 684, 316, 3256, 331, 2475, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7577, 28, 7206, 38865, 62, 47, 3185, 6239, 6234, 62, 25154, 20673, 11, 905, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 3646, 1747, 3265, 28220, 39, 338, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 9018, 734, 4831, 13, 3274, 11, 340, 3487, 4340, 1123, 43164, 338, 28220, 39, 1973, 198, 220, 220, 220, 220, 220, 220, 220, 262, 3403, 13, 5498, 11, 340, 25694, 503, 290, 21528, 3265, 28220, 39, 13, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 79, 48476, 357, 11600, 2599, 2080, 8251, 1058, 7890, 25, 63, 15596, 47671, 1058, 7890, 25, 63, 17561, 1756, 47671, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 7890, 25, 63, 65, 1040, 1096, 47671, 1058, 7890, 25, 63, 17497, 47671, 290, 1058, 7890, 25, 63, 7890, 44646, 5501, 5726, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 1058, 7890, 25, 63, 79, 48476, 17816, 7890, 20520, 63, 318, 2346, 257, 22155, 351, 8251, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1123, 1058, 7890, 25, 63, 17561, 62, 312, 63, 326, 6053, 284, 262, 1724, 329, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4006, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 357, 2536, 2599, 29201, 14, 2539, 1438, 286, 262, 1058, 7890, 25, 63, 7568, 63, 6060, 19778, 14, 67, 14188, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 543, 4909, 1785, 1661, 287, 38694, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 42003, 23515, 14, 45994, 14, 13049, 341, 21228, 11, 3503, 15729, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47764, 357, 6601, 19778, 393, 22155, 2599, 6060, 19778, 7268, 262, 1366, 284, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7110, 11, 393, 257, 22155, 11188, 284, 884, 257, 6060, 19778, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3403, 357, 2536, 2599, 29201, 14, 2539, 1438, 286, 6060, 19778, 14, 67, 14188, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 7890, 25, 63, 7568, 63, 543, 4909, 262, 3403, 416, 543, 262, 9867, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1276, 307, 32824, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1779, 62, 312, 357, 4868, 2599, 9022, 279, 48476, 284, 7110, 8203, 416, 262, 1994, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 7890, 25, 63, 439, 62, 79, 48476, 17816, 7890, 20520, 15506, 13, 1002, 1058, 7890, 25, 63, 14202, 63, 788, 477, 389, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37515, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4324, 357, 4868, 286, 362, 4847, 2599, 3862, 16654, 284, 2074, 11, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 38694, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41701, 1096, 357, 600, 2599, 20828, 2546, 11, 287, 38694, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3403, 62, 14933, 357, 4868, 2599, 9883, 3891, 329, 3403, 13, 15161, 389, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 3748, 3815, 287, 1058, 7890, 25, 63, 7568, 17816, 17561, 1756, 20520, 44646, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 3672, 357, 8841, 2599, 9883, 1438, 329, 1785, 13, 15161, 318, 262, 4036, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 2475, 357, 4868, 2599, 383, 5288, 290, 5415, 3815, 329, 575, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7577, 357, 4868, 2599, 383, 7577, 284, 779, 329, 262, 7110, 357, 292, 13042, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 905, 357, 30388, 2599, 1002, 900, 11, 905, 262, 7110, 1752, 340, 468, 587, 2727, 13, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 46076, 287, 1502, 284, 779, 13782, 15854, 11244, 198, 220, 220, 220, 220, 220, 220, 220, 2779, 62, 710, 44372, 796, 13782, 15854, 7, 2777, 1134, 46874, 28, 9521, 7, 940, 828, 1438, 28, 944, 13, 3672, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 477, 62, 79, 48476, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 48476, 796, 2116, 13, 1136, 62, 439, 62, 79, 48476, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 28, 15596, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47764, 28, 7568, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3403, 28, 17561, 1756, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4324, 28, 17497, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41701, 1096, 28, 65, 1040, 1096, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7110, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 48476, 796, 4866, 13, 22089, 30073, 7, 439, 62, 79, 48476, 8, 628, 220, 220, 220, 220, 220, 220, 220, 8251, 796, 45941, 13, 30619, 7, 4868, 7, 79, 48476, 17816, 7890, 6, 4083, 13083, 3419, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 14435, 4340, 1123, 43164, 1973, 477, 3403, 13, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 944, 13, 77, 62, 710, 333, 684, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 9700, 796, 1351, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1994, 287, 8251, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 9700, 13, 33295, 7, 37659, 13, 321, 897, 7, 79, 48476, 17816, 7890, 6, 7131, 2539, 7131, 72, 11, 1058, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2593, 62, 31412, 796, 3509, 7, 9806, 62, 9700, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1994, 287, 8251, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 48476, 17816, 7890, 6, 7131, 2539, 7131, 72, 11, 1058, 60, 1220, 28, 2593, 62, 31412, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 317, 23118, 503, 477, 262, 16890, 290, 21528, 13, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 1994, 287, 27056, 378, 7, 13083, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2593, 276, 62, 7890, 796, 279, 48476, 17816, 7890, 6, 7131, 2539, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 48476, 17816, 7890, 6, 7131, 2539, 60, 796, 8633, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 48476, 17816, 7890, 6, 7131, 2539, 7131, 6, 32604, 20520, 796, 45941, 13, 12647, 32604, 7, 27237, 276, 62, 7890, 11, 16488, 28, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 48476, 17816, 7890, 6, 7131, 2539, 7131, 6, 43616, 20520, 796, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 12647, 7785, 7, 27237, 276, 62, 7890, 11, 16488, 28, 15, 8, 1220, 357, 11925, 7, 944, 13, 710, 44372, 62, 4868, 8, 1174, 13, 20, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1345, 1747, 262, 28220, 39, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2779, 62, 710, 44372, 13, 29487, 62, 79, 48476, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 48476, 28, 79, 48476, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 3672, 28, 15596, 62, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1779, 62, 312, 28, 17561, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3403, 62, 14933, 28, 17561, 1756, 62, 14933, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 2475, 28, 88, 2475, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7577, 28, 4033, 669, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 34333, 262, 5035, 3670, 13, 198, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 7839, 7203, 4, 82, 20133, 28220, 39, 25, 4064, 82, 1, 4064, 357, 944, 13, 3672, 11, 279, 48476, 17816, 17561, 1756, 20520, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 611, 905, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 12860, 3419, 628, 220, 220, 220, 825, 4808, 1136, 62, 27237, 276, 62, 7890, 7, 944, 11, 1366, 11, 3487, 1096, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 26447, 4340, 477, 28220, 39, 1366, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 357, 17, 12, 35, 299, 32152, 7177, 2599, 15690, 351, 5485, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 7890, 25, 63, 7, 77, 62, 710, 333, 684, 11, 299, 62, 65, 1040, 8, 63, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3487, 1096, 357, 2536, 2599, 1002, 1058, 7890, 25, 63, 439, 47671, 14083, 477, 28220, 39, 82, 416, 4511, 9103, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9645, 2494, 287, 477, 16890, 13, 1002, 1058, 7890, 25, 63, 27379, 47671, 14083, 1123, 28220, 39, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 416, 663, 898, 9103, 9645, 2494, 13, 1002, 6045, 11, 466, 407, 3487, 1096, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7177, 25, 383, 2656, 1366, 7177, 11, 9086, 884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 326, 477, 3815, 2121, 1022, 657, 290, 352, 13, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 9700, 796, 45941, 13, 321, 897, 7, 7890, 11, 16488, 28, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 3082, 1769, 262, 3487, 1634, 5087, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3487, 1096, 6624, 705, 439, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2593, 62, 22584, 669, 796, 45941, 13, 1952, 26933, 7890, 13, 43358, 58, 15, 4357, 352, 12962, 1635, 45941, 13, 321, 897, 7, 9806, 62, 9700, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 3487, 1096, 6624, 705, 27379, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2593, 62, 22584, 669, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 3447, 1758, 7, 9806, 62, 9700, 11, 357, 9806, 62, 9700, 13, 43358, 58, 15, 4357, 352, 4008, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 1952, 19510, 16, 11, 1366, 13, 43358, 58, 16, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 3487, 1096, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2593, 62, 22584, 669, 796, 45941, 13, 1952, 26933, 7890, 13, 43358, 58, 15, 4357, 352, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 10786, 44651, 2593, 5087, 25, 23884, 4458, 18982, 7, 27237, 62, 22584, 669, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1366, 1220, 2593, 62, 22584, 669, 198 ]
2.052474
6,022
import threading import random import time import datetime import pickle, os
[ 11748, 4704, 278, 198, 11748, 4738, 198, 11748, 640, 198, 11748, 4818, 8079, 198, 11748, 2298, 293, 11, 28686, 198 ]
3.85
20
from typing import List, Generator from itertools import combinations ################################# # String manipulation functions # ################################# def make_ngrams(text: str, n: int) -> List[str]: """Turn a term string into a list of ngrams of size n :param text: a text string :type text: str :param n: the ngram size :type n: int :return: a list of ngrams :rtype: List[str]""" if not isinstance(text, str): raise TypeError('text must be a string') if not isinstance(n, int): raise TypeError('n must be a positive integer') if n < 1: raise ValueError('n must be a positive integer') if n > len(text): return [] text = "#{t}#".format(t=text) max_start = len(text) - n + 1 return [text[start:start + n] for start in range(0, max_start)] ##################################### # Term similarity scoring functions # ##################################### def score_ngram_overlap(term1: str, term2: str, ngram_size: int): """Score the number of overlapping ngrams between two terms :param term1: a first term string :type term1: str :param term2: a second term string :type term2: str :param ngram_size: the character ngram size :type ngram_size: int :return: the number of overlapping ngrams :rtype: int """ term1_ngrams = make_ngrams(term1, ngram_size) term2_ngrams = make_ngrams(term2, ngram_size) overlap = 0 for ngram in term1_ngrams: if ngram in term2_ngrams: term2_ngrams.pop(term2_ngrams.index(ngram)) overlap += 1 return overlap def score_ngram_overlap_ratio(term1, term2, ngram_size): """Score the number of overlapping ngrams between two terms as proportion of the length of the first term :param term1: a term string :type term1: str :param term2: a term string :type term2: str :param ngram_size: the character ngram size :type ngram_size: int :return: the number of overlapping ngrams :rtype: int """ max_overlap = len(make_ngrams(term1, ngram_size)) overlap = score_ngram_overlap(term1, term2, ngram_size) return overlap / max_overlap def score_char_overlap_ratio(term1, term2): """Score the number of overlapping characters between two terms as proportion of the length of the first term :param term1: a term string :type term1: str :param term2: a term string :type term2: str :return: the number of overlapping ngrams :rtype: int """ max_overlap = len(term1) overlap = score_char_overlap(term1, term2) return overlap / max_overlap def score_char_overlap(term1: str, term2: str) -> int: """Count the number of overlapping character tokens in two strings. :param term1: a term string :type term1: str :param term2: a term string :type term2: str :return: the number of overlapping ngrams :rtype: int """ num_char_matches = 0 for char in term2: if char in term1: term1 = term1.replace(char, "", 1) num_char_matches += 1 return num_char_matches def score_levenshtein_similarity_ratio(term1, term2): """Score the levenshtein similarity between two terms :param term1: a term string :type term1: str :param term2: a term string :type term2: str :return: the number of overlapping ngrams :rtype: int """ max_distance = max(len(term1), len(term2)) distance = score_levenshtein_distance(term1, term2) return 1 - distance / max_distance def score_levenshtein_distance(term1: str, term2: str) -> int: """Calculate Levenshtein distance between two string. :param term1: a term string :type term1: str :param term2: a term string :type term2: str :return: the number of overlapping ngrams :rtype: int """ if len(term1) > len(term2): term1, term2 = term2, term1 distances = range(len(term1) + 1) for i2, c2 in enumerate(term2): distances_ = [i2 + 1] for i1, c1 in enumerate(term1): if c1 == c2: distances_.append(distances[i1]) else: distances_.append(1 + min((distances[i1], distances[i1 + 1], distances_[-1]))) distances = distances_ return distances[-1] def insert_skips(window: str, skipgram_combinations: List[List[int]]): """For a given skip gram window, return all skip grams for a given configuration.""" for combination in skipgram_combinations: # prev_index = 0 skip_gram = window[0] try: for index in combination: # if index - prev_index > 1: # skip_gram += "_" skip_gram += window[index] # prev_index = index yield skip_gram, combination[-1] + 1 except IndexError: pass def text2skipgrams(text: str, ngram_size: int = 2, skip_size: int = 2) -> Generator[SkipGram, None, None]: """Turn a text string into a list of skipgrams. :param text: an text string :type text: str :param ngram_size: an integer indicating the number of characters in the ngram :type ngram_size: int :param skip_size: an integer indicating how many skip characters in the ngrams :type skip_size: int :return: An iterator returning tuples of skip_gram and offset :rtype: Generator[tuple]""" if ngram_size <= 0 or skip_size < 0: raise ValueError('ngram_size must be a positive integer, skip_size must be a positive integer or zero') indexes = [i for i in range(0, ngram_size+skip_size)] skipgram_combinations = [combination for combination in combinations(indexes[1:], ngram_size-1)] for offset in range(0, len(text)-1): window = text[offset:offset+ngram_size+skip_size] for skipgram, skipgram_length in insert_skips(window, skipgram_combinations): yield SkipGram(skipgram, offset, skipgram_length) non_word_affixes_2 = { ". ", ", ", "! ", "? ", " (", ") ", ").", ")!", "),", ")?", " [", "] ", "].", "]!", "],", "]?", } non_word_affixes_1 = { " ", ".", ",", "!", "?", } def get_non_word_prefix(string: str) -> str: """Check if a string has a non-word prefix and return it. :param string: the string from which the prefix is to be return :type string: str :return: the non-word prefix :rtype: str """ if string[:2] in non_word_affixes_2: return string[:2] elif string[:1] in non_word_affixes_1: return string[:1] else: return "" def get_non_word_suffix(string: str) -> str: """Check if a string has a non-word suffix and return it. :param string: the string from which the suffix is to be return :type string: str :return: the non-word suffix :rtype: str """ if string[-2:] in non_word_affixes_2: return string[-2:] elif string[-1:] in non_word_affixes_1: return string[-1:] else: return "" def strip_prefix(string: str) -> str: """Strip non-word prefix from string ending. :param string: the string from which the prefix is to be stripped :type string: str :return: the stripped string :rtype: str """ if len(string) <= 2: pass elif string[:2] in non_word_affixes_2: string = string[2:] elif string[1] in [" ", ","]: string = string[2:] elif string[0] in [" ", ","]: string = string[1:] return string def strip_suffix(string: str) -> str: """Strip non-word suffix from string ending. :param string: the string from which the suffix is to be stripped :type string: str :return: the stripped string :rtype: str """ if len(string) <= 2: pass elif string[-2] in [" ", ","]: string = string[:-2] elif string[-2:] in [", ", ". ", "! ", "? "]: string = string[:-2] elif string[-1] in [" ", ","]: string = string[:-1] return string
[ 6738, 19720, 1330, 7343, 11, 35986, 198, 6738, 340, 861, 10141, 1330, 17790, 628, 198, 29113, 2, 198, 2, 10903, 17512, 5499, 1303, 198, 29113, 2, 198, 198, 4299, 787, 62, 782, 9474, 7, 5239, 25, 965, 11, 299, 25, 493, 8, 4613, 7343, 58, 2536, 5974, 198, 220, 220, 220, 37227, 17278, 257, 3381, 4731, 656, 257, 1351, 286, 299, 4546, 82, 286, 2546, 299, 628, 220, 220, 220, 1058, 17143, 2420, 25, 257, 2420, 4731, 198, 220, 220, 220, 1058, 4906, 2420, 25, 965, 198, 220, 220, 220, 1058, 17143, 299, 25, 262, 299, 4546, 2546, 198, 220, 220, 220, 1058, 4906, 299, 25, 493, 198, 220, 220, 220, 1058, 7783, 25, 257, 1351, 286, 299, 4546, 82, 198, 220, 220, 220, 1058, 81, 4906, 25, 7343, 58, 2536, 60, 37811, 198, 220, 220, 220, 611, 407, 318, 39098, 7, 5239, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 5994, 12331, 10786, 5239, 1276, 307, 257, 4731, 11537, 198, 220, 220, 220, 611, 407, 318, 39098, 7, 77, 11, 493, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 5994, 12331, 10786, 77, 1276, 307, 257, 3967, 18253, 11537, 198, 220, 220, 220, 611, 299, 1279, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 10786, 77, 1276, 307, 257, 3967, 18253, 11537, 198, 220, 220, 220, 611, 299, 1875, 18896, 7, 5239, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 17635, 198, 220, 220, 220, 2420, 796, 25113, 90, 83, 92, 2, 1911, 18982, 7, 83, 28, 5239, 8, 198, 220, 220, 220, 3509, 62, 9688, 796, 18896, 7, 5239, 8, 532, 299, 1343, 352, 198, 220, 220, 220, 1441, 685, 5239, 58, 9688, 25, 9688, 1343, 299, 60, 329, 923, 287, 2837, 7, 15, 11, 3509, 62, 9688, 15437, 628, 198, 29113, 4242, 2, 198, 2, 35118, 26789, 9689, 5499, 1303, 198, 29113, 4242, 2, 628, 198, 4299, 4776, 62, 782, 859, 62, 2502, 37796, 7, 4354, 16, 25, 965, 11, 3381, 17, 25, 965, 11, 299, 4546, 62, 7857, 25, 493, 2599, 198, 220, 220, 220, 37227, 26595, 262, 1271, 286, 32997, 299, 4546, 82, 1022, 734, 2846, 628, 220, 220, 220, 1058, 17143, 3381, 16, 25, 257, 717, 3381, 4731, 198, 220, 220, 220, 1058, 4906, 3381, 16, 25, 965, 198, 220, 220, 220, 1058, 17143, 3381, 17, 25, 257, 1218, 3381, 4731, 198, 220, 220, 220, 1058, 4906, 3381, 17, 25, 965, 198, 220, 220, 220, 1058, 17143, 299, 4546, 62, 7857, 25, 262, 2095, 299, 4546, 2546, 198, 220, 220, 220, 1058, 4906, 299, 4546, 62, 7857, 25, 493, 198, 220, 220, 220, 1058, 7783, 25, 262, 1271, 286, 32997, 299, 4546, 82, 198, 220, 220, 220, 1058, 81, 4906, 25, 493, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3381, 16, 62, 782, 9474, 796, 787, 62, 782, 9474, 7, 4354, 16, 11, 299, 4546, 62, 7857, 8, 198, 220, 220, 220, 3381, 17, 62, 782, 9474, 796, 787, 62, 782, 9474, 7, 4354, 17, 11, 299, 4546, 62, 7857, 8, 198, 220, 220, 220, 21721, 796, 657, 198, 220, 220, 220, 329, 299, 4546, 287, 3381, 16, 62, 782, 9474, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 299, 4546, 287, 3381, 17, 62, 782, 9474, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3381, 17, 62, 782, 9474, 13, 12924, 7, 4354, 17, 62, 782, 9474, 13, 9630, 7, 782, 859, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21721, 15853, 352, 198, 220, 220, 220, 1441, 21721, 628, 198, 4299, 4776, 62, 782, 859, 62, 2502, 37796, 62, 10366, 952, 7, 4354, 16, 11, 3381, 17, 11, 299, 4546, 62, 7857, 2599, 198, 220, 220, 220, 37227, 26595, 262, 1271, 286, 32997, 299, 4546, 82, 1022, 734, 2846, 355, 9823, 286, 262, 4129, 198, 220, 220, 220, 286, 262, 717, 3381, 628, 220, 220, 220, 1058, 17143, 3381, 16, 25, 257, 3381, 4731, 198, 220, 220, 220, 1058, 4906, 3381, 16, 25, 965, 198, 220, 220, 220, 1058, 17143, 3381, 17, 25, 257, 3381, 4731, 198, 220, 220, 220, 1058, 4906, 3381, 17, 25, 965, 198, 220, 220, 220, 1058, 17143, 299, 4546, 62, 7857, 25, 262, 2095, 299, 4546, 2546, 198, 220, 220, 220, 1058, 4906, 299, 4546, 62, 7857, 25, 493, 198, 220, 220, 220, 1058, 7783, 25, 262, 1271, 286, 32997, 299, 4546, 82, 198, 220, 220, 220, 1058, 81, 4906, 25, 493, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3509, 62, 2502, 37796, 796, 18896, 7, 15883, 62, 782, 9474, 7, 4354, 16, 11, 299, 4546, 62, 7857, 4008, 198, 220, 220, 220, 21721, 796, 4776, 62, 782, 859, 62, 2502, 37796, 7, 4354, 16, 11, 3381, 17, 11, 299, 4546, 62, 7857, 8, 198, 220, 220, 220, 1441, 21721, 1220, 3509, 62, 2502, 37796, 628, 198, 4299, 4776, 62, 10641, 62, 2502, 37796, 62, 10366, 952, 7, 4354, 16, 11, 3381, 17, 2599, 198, 220, 220, 220, 37227, 26595, 262, 1271, 286, 32997, 3435, 1022, 734, 2846, 355, 9823, 286, 262, 4129, 198, 220, 220, 220, 286, 262, 717, 3381, 628, 220, 220, 220, 1058, 17143, 3381, 16, 25, 257, 3381, 4731, 198, 220, 220, 220, 1058, 4906, 3381, 16, 25, 965, 198, 220, 220, 220, 1058, 17143, 3381, 17, 25, 257, 3381, 4731, 198, 220, 220, 220, 1058, 4906, 3381, 17, 25, 965, 198, 220, 220, 220, 1058, 7783, 25, 262, 1271, 286, 32997, 299, 4546, 82, 198, 220, 220, 220, 1058, 81, 4906, 25, 493, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3509, 62, 2502, 37796, 796, 18896, 7, 4354, 16, 8, 198, 220, 220, 220, 21721, 796, 4776, 62, 10641, 62, 2502, 37796, 7, 4354, 16, 11, 3381, 17, 8, 198, 220, 220, 220, 1441, 21721, 1220, 3509, 62, 2502, 37796, 628, 198, 4299, 4776, 62, 10641, 62, 2502, 37796, 7, 4354, 16, 25, 965, 11, 3381, 17, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 12332, 262, 1271, 286, 32997, 2095, 16326, 287, 734, 13042, 13, 628, 220, 220, 220, 1058, 17143, 3381, 16, 25, 257, 3381, 4731, 198, 220, 220, 220, 1058, 4906, 3381, 16, 25, 965, 198, 220, 220, 220, 1058, 17143, 3381, 17, 25, 257, 3381, 4731, 198, 220, 220, 220, 1058, 4906, 3381, 17, 25, 965, 198, 220, 220, 220, 1058, 7783, 25, 262, 1271, 286, 32997, 299, 4546, 82, 198, 220, 220, 220, 1058, 81, 4906, 25, 493, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 997, 62, 10641, 62, 6759, 2052, 796, 657, 198, 220, 220, 220, 329, 1149, 287, 3381, 17, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1149, 287, 3381, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3381, 16, 796, 3381, 16, 13, 33491, 7, 10641, 11, 366, 1600, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 997, 62, 10641, 62, 6759, 2052, 15853, 352, 198, 220, 220, 220, 1441, 997, 62, 10641, 62, 6759, 2052, 628, 198, 4299, 4776, 62, 293, 574, 1477, 22006, 62, 38610, 414, 62, 10366, 952, 7, 4354, 16, 11, 3381, 17, 2599, 198, 220, 220, 220, 37227, 26595, 262, 443, 574, 1477, 22006, 26789, 1022, 734, 2846, 628, 220, 220, 220, 1058, 17143, 3381, 16, 25, 257, 3381, 4731, 198, 220, 220, 220, 1058, 4906, 3381, 16, 25, 965, 198, 220, 220, 220, 1058, 17143, 3381, 17, 25, 257, 3381, 4731, 198, 220, 220, 220, 1058, 4906, 3381, 17, 25, 965, 198, 220, 220, 220, 1058, 7783, 25, 262, 1271, 286, 32997, 299, 4546, 82, 198, 220, 220, 220, 1058, 81, 4906, 25, 493, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3509, 62, 30246, 796, 3509, 7, 11925, 7, 4354, 16, 828, 18896, 7, 4354, 17, 4008, 198, 220, 220, 220, 5253, 796, 4776, 62, 293, 574, 1477, 22006, 62, 30246, 7, 4354, 16, 11, 3381, 17, 8, 198, 220, 220, 220, 1441, 352, 532, 5253, 1220, 3509, 62, 30246, 628, 198, 4299, 4776, 62, 293, 574, 1477, 22006, 62, 30246, 7, 4354, 16, 25, 965, 11, 3381, 17, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 9771, 3129, 378, 1004, 574, 1477, 22006, 5253, 1022, 734, 4731, 13, 628, 220, 220, 220, 1058, 17143, 3381, 16, 25, 257, 3381, 4731, 198, 220, 220, 220, 1058, 4906, 3381, 16, 25, 965, 198, 220, 220, 220, 1058, 17143, 3381, 17, 25, 257, 3381, 4731, 198, 220, 220, 220, 1058, 4906, 3381, 17, 25, 965, 198, 220, 220, 220, 1058, 7783, 25, 262, 1271, 286, 32997, 299, 4546, 82, 198, 220, 220, 220, 1058, 81, 4906, 25, 493, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 18896, 7, 4354, 16, 8, 1875, 18896, 7, 4354, 17, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 3381, 16, 11, 3381, 17, 796, 3381, 17, 11, 3381, 16, 198, 220, 220, 220, 18868, 796, 2837, 7, 11925, 7, 4354, 16, 8, 1343, 352, 8, 198, 220, 220, 220, 329, 1312, 17, 11, 269, 17, 287, 27056, 378, 7, 4354, 17, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 18868, 62, 796, 685, 72, 17, 1343, 352, 60, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 16, 11, 269, 16, 287, 27056, 378, 7, 4354, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 269, 16, 6624, 269, 17, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18868, 44807, 33295, 7, 17080, 1817, 58, 72, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18868, 44807, 33295, 7, 16, 1343, 949, 19510, 17080, 1817, 58, 72, 16, 4357, 18868, 58, 72, 16, 1343, 352, 4357, 18868, 62, 58, 12, 16, 60, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 18868, 796, 18868, 62, 198, 220, 220, 220, 1441, 18868, 58, 12, 16, 60, 628, 198, 198, 4299, 7550, 62, 8135, 2419, 7, 17497, 25, 965, 11, 14267, 4546, 62, 24011, 7352, 25, 7343, 58, 8053, 58, 600, 11907, 2599, 198, 220, 220, 220, 37227, 1890, 257, 1813, 14267, 14599, 4324, 11, 1441, 477, 14267, 16379, 329, 257, 1813, 8398, 526, 15931, 198, 220, 220, 220, 329, 6087, 287, 14267, 4546, 62, 24011, 7352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8654, 62, 9630, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 14267, 62, 4546, 796, 4324, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 6376, 287, 6087, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 6376, 532, 8654, 62, 9630, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 14267, 62, 4546, 15853, 45434, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14267, 62, 4546, 15853, 4324, 58, 9630, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8654, 62, 9630, 796, 6376, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 14267, 62, 4546, 11, 6087, 58, 12, 16, 60, 1343, 352, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 12901, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 198, 4299, 2420, 17, 48267, 4546, 82, 7, 5239, 25, 965, 11, 299, 4546, 62, 7857, 25, 493, 796, 362, 11, 14267, 62, 7857, 25, 493, 796, 362, 8, 4613, 35986, 58, 50232, 38, 859, 11, 6045, 11, 6045, 5974, 198, 220, 220, 220, 37227, 17278, 257, 2420, 4731, 656, 257, 1351, 286, 14267, 4546, 82, 13, 628, 220, 220, 220, 1058, 17143, 2420, 25, 281, 2420, 4731, 198, 220, 220, 220, 1058, 4906, 2420, 25, 965, 198, 220, 220, 220, 1058, 17143, 299, 4546, 62, 7857, 25, 281, 18253, 12739, 262, 1271, 286, 3435, 287, 262, 299, 4546, 198, 220, 220, 220, 1058, 4906, 299, 4546, 62, 7857, 25, 493, 198, 220, 220, 220, 1058, 17143, 14267, 62, 7857, 25, 281, 18253, 12739, 703, 867, 14267, 3435, 287, 262, 299, 4546, 82, 198, 220, 220, 220, 1058, 4906, 14267, 62, 7857, 25, 493, 198, 220, 220, 220, 1058, 7783, 25, 1052, 41313, 8024, 12777, 2374, 286, 14267, 62, 4546, 290, 11677, 198, 220, 220, 220, 1058, 81, 4906, 25, 35986, 58, 83, 29291, 60, 37811, 198, 220, 220, 220, 611, 299, 4546, 62, 7857, 19841, 657, 393, 14267, 62, 7857, 1279, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 10786, 782, 859, 62, 7857, 1276, 307, 257, 3967, 18253, 11, 14267, 62, 7857, 1276, 307, 257, 3967, 18253, 393, 6632, 11537, 198, 220, 220, 220, 39199, 796, 685, 72, 329, 1312, 287, 2837, 7, 15, 11, 299, 4546, 62, 7857, 10, 48267, 62, 7857, 15437, 198, 220, 220, 220, 14267, 4546, 62, 24011, 7352, 796, 685, 24011, 1883, 329, 6087, 287, 17790, 7, 9630, 274, 58, 16, 25, 4357, 299, 4546, 62, 7857, 12, 16, 15437, 198, 220, 220, 220, 329, 11677, 287, 2837, 7, 15, 11, 18896, 7, 5239, 13219, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 4324, 796, 2420, 58, 28968, 25, 28968, 10, 782, 859, 62, 7857, 10, 48267, 62, 7857, 60, 198, 220, 220, 220, 220, 220, 220, 220, 329, 14267, 4546, 11, 14267, 4546, 62, 13664, 287, 7550, 62, 8135, 2419, 7, 17497, 11, 14267, 4546, 62, 24011, 7352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 32214, 38, 859, 7, 48267, 4546, 11, 11677, 11, 14267, 4546, 62, 13664, 8, 628, 198, 13159, 62, 4775, 62, 2001, 844, 274, 62, 17, 796, 1391, 198, 220, 220, 220, 27071, 33172, 33172, 33172, 366, 0, 33172, 366, 30, 33172, 198, 220, 220, 220, 366, 357, 1600, 366, 8, 33172, 366, 21387, 11, 366, 31520, 1600, 366, 27267, 11, 366, 19427, 1600, 198, 220, 220, 220, 366, 685, 1600, 366, 60, 33172, 366, 29225, 11, 366, 60, 40754, 366, 17241, 11, 366, 60, 35379, 198, 92, 198, 13159, 62, 4775, 62, 2001, 844, 274, 62, 16, 796, 1391, 198, 220, 220, 220, 366, 33172, 366, 33283, 366, 553, 11, 366, 40754, 366, 35379, 198, 92, 628, 198, 4299, 651, 62, 13159, 62, 4775, 62, 40290, 7, 8841, 25, 965, 8, 4613, 965, 25, 198, 220, 220, 220, 37227, 9787, 611, 257, 4731, 468, 257, 1729, 12, 4775, 21231, 290, 1441, 340, 13, 628, 220, 220, 220, 1058, 17143, 4731, 25, 262, 4731, 422, 543, 262, 21231, 318, 284, 307, 1441, 198, 220, 220, 220, 1058, 4906, 4731, 25, 965, 198, 220, 220, 220, 1058, 7783, 25, 262, 1729, 12, 4775, 21231, 198, 220, 220, 220, 1058, 81, 4906, 25, 965, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 4731, 58, 25, 17, 60, 287, 1729, 62, 4775, 62, 2001, 844, 274, 62, 17, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4731, 58, 25, 17, 60, 198, 220, 220, 220, 1288, 361, 4731, 58, 25, 16, 60, 287, 1729, 62, 4775, 62, 2001, 844, 274, 62, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4731, 58, 25, 16, 60, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 13538, 628, 198, 4299, 651, 62, 13159, 62, 4775, 62, 37333, 844, 7, 8841, 25, 965, 8, 4613, 965, 25, 198, 220, 220, 220, 37227, 9787, 611, 257, 4731, 468, 257, 1729, 12, 4775, 35488, 290, 1441, 340, 13, 628, 220, 220, 220, 1058, 17143, 4731, 25, 262, 4731, 422, 543, 262, 35488, 318, 284, 307, 1441, 198, 220, 220, 220, 1058, 4906, 4731, 25, 965, 198, 220, 220, 220, 1058, 7783, 25, 262, 1729, 12, 4775, 35488, 198, 220, 220, 220, 1058, 81, 4906, 25, 965, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 4731, 58, 12, 17, 47715, 287, 1729, 62, 4775, 62, 2001, 844, 274, 62, 17, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4731, 58, 12, 17, 47715, 198, 220, 220, 220, 1288, 361, 4731, 58, 12, 16, 47715, 287, 1729, 62, 4775, 62, 2001, 844, 274, 62, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4731, 58, 12, 16, 47715, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 13538, 628, 198, 4299, 10283, 62, 40290, 7, 8841, 25, 965, 8, 4613, 965, 25, 198, 220, 220, 220, 37227, 1273, 5528, 1729, 12, 4775, 21231, 422, 4731, 7464, 13, 628, 220, 220, 220, 1058, 17143, 4731, 25, 262, 4731, 422, 543, 262, 21231, 318, 284, 307, 18818, 198, 220, 220, 220, 1058, 4906, 4731, 25, 965, 198, 220, 220, 220, 1058, 7783, 25, 262, 18818, 4731, 198, 220, 220, 220, 1058, 81, 4906, 25, 965, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 18896, 7, 8841, 8, 19841, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 1288, 361, 4731, 58, 25, 17, 60, 287, 1729, 62, 4775, 62, 2001, 844, 274, 62, 17, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4731, 796, 4731, 58, 17, 47715, 198, 220, 220, 220, 1288, 361, 4731, 58, 16, 60, 287, 14631, 33172, 366, 553, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 4731, 796, 4731, 58, 17, 47715, 198, 220, 220, 220, 1288, 361, 4731, 58, 15, 60, 287, 14631, 33172, 366, 553, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 4731, 796, 4731, 58, 16, 47715, 198, 220, 220, 220, 1441, 4731, 628, 198, 4299, 10283, 62, 37333, 844, 7, 8841, 25, 965, 8, 4613, 965, 25, 198, 220, 220, 220, 37227, 1273, 5528, 1729, 12, 4775, 35488, 422, 4731, 7464, 13, 628, 220, 220, 220, 1058, 17143, 4731, 25, 262, 4731, 422, 543, 262, 35488, 318, 284, 307, 18818, 198, 220, 220, 220, 1058, 4906, 4731, 25, 965, 198, 220, 220, 220, 1058, 7783, 25, 262, 18818, 4731, 198, 220, 220, 220, 1058, 81, 4906, 25, 965, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 18896, 7, 8841, 8, 19841, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 1288, 361, 4731, 58, 12, 17, 60, 287, 14631, 33172, 366, 553, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 4731, 796, 4731, 58, 21912, 17, 60, 198, 220, 220, 220, 1288, 361, 4731, 58, 12, 17, 47715, 287, 685, 1600, 33172, 27071, 33172, 366, 0, 33172, 366, 30, 366, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 4731, 796, 4731, 58, 21912, 17, 60, 198, 220, 220, 220, 1288, 361, 4731, 58, 12, 16, 60, 287, 14631, 33172, 366, 553, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 4731, 796, 4731, 58, 21912, 16, 60, 198, 220, 220, 220, 1441, 4731, 198 ]
2.501558
3,210
from application import db from datetime import datetime from sqlalchemy import text # Kilpailu-taulun luominen
[ 6738, 3586, 1330, 20613, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 44161, 282, 26599, 1330, 2420, 198, 198, 2, 19902, 79, 603, 84, 12, 83, 2518, 403, 300, 84, 6351, 268 ]
3.393939
33
import bpy import arm.material.mat_utils import arm.write_data import arm.assets import arm.make_renderpath import arm.make_state import arm.utils
[ 11748, 275, 9078, 198, 11748, 3211, 13, 33665, 13, 6759, 62, 26791, 198, 11748, 3211, 13, 13564, 62, 7890, 198, 11748, 3211, 13, 19668, 198, 11748, 3211, 13, 15883, 62, 13287, 6978, 198, 11748, 3211, 13, 15883, 62, 5219, 198, 11748, 3211, 13, 26791, 198 ]
3.266667
45
import cv2 import sys from filter import * from mix import * TEST = [] TEST_out = [] SIZE_I = 16 TEST, TEST_out, PATH = create_test_tab_one_filter_rand_train() # TEST, TEST_out = create_test_tab_filter() TESTV, TESTV_out, PATHV = create_test_tab_one_filter_rand_valid() #TESTV, TESTV_out = create_valid_tab_filter() """ print(len(TEST)) for im in TEST: display_image(im) l = "" for t in TEST_out: l += str(t) + " " print(l) """ #cv2.imshow("Image", im) #cv2.waitKey()
[ 11748, 269, 85, 17, 198, 11748, 25064, 198, 6738, 8106, 1330, 1635, 198, 6738, 5022, 1330, 1635, 198, 198, 51, 6465, 796, 17635, 198, 51, 6465, 62, 448, 796, 17635, 198, 33489, 62, 40, 796, 1467, 198, 197, 628, 197, 198, 198, 51, 6465, 11, 43001, 62, 448, 11, 46490, 796, 2251, 62, 9288, 62, 8658, 62, 505, 62, 24455, 62, 25192, 62, 27432, 3419, 198, 2, 43001, 11, 43001, 62, 448, 796, 2251, 62, 9288, 62, 8658, 62, 24455, 3419, 198, 51, 6465, 53, 11, 43001, 53, 62, 448, 11, 46490, 53, 796, 2251, 62, 9288, 62, 8658, 62, 505, 62, 24455, 62, 25192, 62, 12102, 3419, 198, 2, 51, 6465, 53, 11, 43001, 53, 62, 448, 796, 2251, 62, 12102, 62, 8658, 62, 24455, 3419, 198, 198, 37811, 198, 4798, 7, 11925, 7, 51, 6465, 4008, 198, 1640, 545, 287, 43001, 25, 198, 197, 13812, 62, 9060, 7, 320, 8, 198, 198, 75, 796, 13538, 198, 1640, 256, 287, 43001, 62, 448, 25, 198, 197, 75, 15853, 965, 7, 83, 8, 1343, 366, 220, 366, 198, 4798, 7, 75, 8, 198, 198, 37811, 198, 2, 33967, 17, 13, 320, 12860, 7203, 5159, 1600, 545, 8, 198, 2, 33967, 17, 13, 17077, 9218, 3419, 198 ]
2.334951
206
import time st = time.time() fraction = "0." places_of_digits = [1,10,100,1000,10000,100000,1000000] pod = 0 d_index = places_of_digits[pod] result = 1 present_num = 0 lenfp = 0 done = 0 while(lenfp <= places_of_digits[-1]): present_num = present_num + 1 fraction = fraction + str(present_num) lenpn = len(str(present_num)) if lenpn >= 1: for i in xrange(1,lenpn+1): lenfp = lenfp + 1 if lenfp == d_index: result = result * int(str(present_num)[i-1]) pod = pod + 1 if pod < len(places_of_digits): d_index = places_of_digits[pod] #print "Fraction :: "+str(fraction) print "Result :: "+str(result) print "Time taken :: "+str(time.time()-st)+" seconds\n"
[ 11748, 640, 198, 301, 796, 640, 13, 2435, 3419, 198, 69, 7861, 796, 366, 15, 526, 198, 23625, 62, 1659, 62, 12894, 896, 796, 685, 16, 11, 940, 11, 3064, 11, 12825, 11, 49388, 11, 3064, 830, 11, 16, 10535, 60, 198, 33320, 796, 657, 198, 67, 62, 9630, 796, 4113, 62, 1659, 62, 12894, 896, 58, 33320, 60, 198, 198, 20274, 796, 352, 198, 25579, 62, 22510, 796, 657, 198, 11925, 46428, 796, 657, 198, 28060, 796, 657, 198, 4514, 7, 11925, 46428, 19841, 4113, 62, 1659, 62, 12894, 896, 58, 12, 16, 60, 2599, 220, 198, 197, 25579, 62, 22510, 796, 1944, 62, 22510, 1343, 352, 198, 197, 69, 7861, 796, 13390, 1343, 965, 7, 25579, 62, 22510, 8, 198, 197, 11925, 21999, 796, 18896, 7, 2536, 7, 25579, 62, 22510, 4008, 198, 197, 361, 18896, 21999, 18189, 352, 25, 198, 197, 197, 1640, 1312, 287, 2124, 9521, 7, 16, 11, 11925, 21999, 10, 16, 2599, 198, 197, 197, 197, 11925, 46428, 796, 18896, 46428, 1343, 352, 198, 197, 197, 197, 361, 18896, 46428, 6624, 288, 62, 9630, 25, 198, 197, 197, 197, 197, 20274, 796, 1255, 1635, 493, 7, 2536, 7, 25579, 62, 22510, 38381, 72, 12, 16, 12962, 198, 197, 197, 197, 197, 33320, 796, 24573, 1343, 352, 198, 197, 197, 197, 197, 361, 24573, 1279, 18896, 7, 23625, 62, 1659, 62, 12894, 896, 2599, 198, 197, 197, 197, 197, 197, 67, 62, 9630, 796, 4113, 62, 1659, 62, 12894, 896, 58, 33320, 60, 198, 198, 2, 4798, 366, 37, 7861, 7904, 43825, 2536, 7, 69, 7861, 8, 198, 4798, 366, 23004, 7904, 43825, 2536, 7, 20274, 8, 198, 4798, 366, 7575, 2077, 7904, 43825, 2536, 7, 2435, 13, 2435, 3419, 12, 301, 47762, 1, 4201, 59, 77, 1, 198 ]
2.326531
294
from setuptools import setup, find_packages from torch.utils.cpp_extension import BuildExtension, CppExtension from glob import glob import os sanitizers = [ #'-fsanitize=undefined', '-fsanitize-undefined-trap-on-error' #'-fsanitize=address,undefined' ] extra_compile_args = [ '-I' + os.path.realpath('.'), '-march=native', '-mtune=native', '-fvisibility=hidden', '-fvisibility-inlines-hidden', # '-fno-omit-frame-pointer', ] + sanitizers extra_link_args = [] + sanitizers sources = glob('**/*.cpp', recursive=True) sources = [file for file in sources if 'scripts' not in file] setup( name='torchy', version='0.1', description='Tracing JIT for PyTorch', packages=['torchy'], #find_packages(exclude=['build']), requires=['ninja', 'torch'], ext_modules=[ CppExtension( '_TORCHY', sources, extra_compile_args=extra_compile_args, extra_link_args=extra_link_args ), ], cmdclass={ 'build_ext': BuildExtension } )
[ 6738, 900, 37623, 10141, 1330, 9058, 11, 1064, 62, 43789, 198, 6738, 28034, 13, 26791, 13, 20322, 62, 2302, 3004, 1330, 10934, 11627, 3004, 11, 327, 381, 11627, 3004, 198, 6738, 15095, 1330, 15095, 198, 11748, 28686, 198, 198, 12807, 3029, 364, 796, 685, 198, 220, 1303, 29001, 9501, 272, 270, 1096, 28, 917, 18156, 3256, 705, 12, 9501, 272, 270, 1096, 12, 917, 18156, 12, 46670, 12, 261, 12, 18224, 6, 198, 220, 1303, 29001, 9501, 272, 270, 1096, 28, 21975, 11, 917, 18156, 6, 198, 60, 198, 198, 26086, 62, 5589, 576, 62, 22046, 796, 685, 198, 220, 705, 12, 40, 6, 1343, 28686, 13, 6978, 13, 5305, 6978, 10786, 2637, 828, 198, 220, 705, 12, 76, 998, 28, 30191, 3256, 198, 220, 705, 12, 16762, 1726, 28, 30191, 3256, 198, 220, 705, 12, 69, 4703, 2247, 28, 30342, 3256, 198, 220, 705, 12, 69, 4703, 2247, 12, 259, 6615, 12, 30342, 3256, 198, 2, 220, 705, 12, 69, 3919, 12, 296, 270, 12, 14535, 12, 29536, 3256, 198, 60, 1343, 5336, 3029, 364, 198, 198, 26086, 62, 8726, 62, 22046, 796, 17635, 1343, 5336, 3029, 364, 198, 198, 82, 2203, 796, 15095, 10786, 1174, 15211, 13, 20322, 3256, 45115, 28, 17821, 8, 198, 82, 2203, 796, 685, 7753, 329, 2393, 287, 4237, 611, 705, 46521, 6, 407, 287, 2393, 60, 198, 198, 40406, 7, 198, 220, 1438, 11639, 13165, 29658, 3256, 198, 220, 2196, 11639, 15, 13, 16, 3256, 198, 220, 6764, 11639, 2898, 4092, 449, 2043, 329, 9485, 15884, 354, 3256, 198, 220, 10392, 28, 17816, 13165, 29658, 6, 4357, 1303, 19796, 62, 43789, 7, 1069, 9152, 28, 17816, 11249, 20520, 828, 198, 220, 4433, 28, 17816, 35073, 6592, 3256, 705, 13165, 354, 6, 4357, 198, 220, 1070, 62, 18170, 41888, 198, 220, 220, 220, 327, 381, 11627, 3004, 7, 198, 220, 220, 220, 220, 220, 705, 62, 32961, 3398, 56, 3256, 198, 220, 220, 220, 220, 220, 4237, 11, 198, 220, 220, 220, 220, 220, 3131, 62, 5589, 576, 62, 22046, 28, 26086, 62, 5589, 576, 62, 22046, 11, 198, 220, 220, 220, 220, 220, 3131, 62, 8726, 62, 22046, 28, 26086, 62, 8726, 62, 22046, 198, 220, 220, 220, 10612, 198, 220, 16589, 198, 220, 23991, 4871, 34758, 198, 220, 220, 220, 705, 11249, 62, 2302, 10354, 10934, 11627, 3004, 198, 220, 1782, 198, 8, 198 ]
2.502551
392
"""Test decorator of torch.nn.Module subclasses.""" from torch import Tensor from torch.nn import Linear from bpexts.decorator import decorate # decorated linear layer DecoratedAffine = decorate(Linear) def test_decorated_linear_properties(): """Test name and docstring of decorated torch.nn.Linear.""" assert DecoratedAffine.__name__ == "DecoratedLinear" assert DecoratedAffine.__doc__.startswith("[Decorated by bpexts]") def dummy_backward_hook(module, grad_input, grad_output): """Dummy backward hook.""" def dummy_forward_hook(module, input, output): """Dummy forward hook.""" def dummy_pre_forward_hook(module, input): """Dummy pre forward hook.""" def test_exts_hooking(): """Test tracking of hooks registrated with exts functions. Return module with hooks (6 in total, 3 registered by torch.nn, 3 registered by exts. """ layer = DecoratedAffine(in_features=5, out_features=5) # exts and nn hook registration functions hooks = [dummy_backward_hook, dummy_forward_hook, dummy_pre_forward_hook] exts_register = [ layer.register_exts_backward_hook, layer.register_exts_forward_hook, layer.register_exts_forward_pre_hook, ] nn_register = [ layer.register_backward_hook, layer.register_forward_hook, layer.register_forward_pre_hook, ] hooks_and_register = zip(hooks, exts_register, nn_register) # iterate over hooks and registration methods for i, (hook, exts_func, nn_func) in enumerate(hooks_and_register, 1): # hooks registered by exts functions should be tracked exts_func(hook) assert len(layer.exts_hooks) == i # usual hook registration should not affect extension hooks nn_func(hook) assert len(layer.exts_hooks) == i # each hook type occurs twice (once from nn, once from exts) for hook_type in [ layer._backward_hooks, layer._forward_hooks, layer._forward_pre_hooks, ]: assert len(hook_type) == 2 return layer def module_with_hooks(): """Return module with 6 hooks. Module contains a backward, a forward and a pre forward hook. The hooks are registered using the torch.nn method and the exts method, resultin in 2*3 = 6 hooks. """ return test_exts_hooking() def test_hook_removing(): """Test disabling of hooks tracked by exts.""" # 6 hooks, 3 tracked by exts, 3 tracked by torch.nn layer = module_with_hooks() # remove tracked hooks layer.remove_exts_hooks() assert len(layer.exts_hooks) == 0 # module has one forward, pre forward and backward hook each. for hook_type in [ layer._backward_hooks, layer._forward_hooks, layer._forward_pre_hooks, ]: assert len(hook_type) == 1 def module_with_buffers(): """Return module that holds two buffers. `'buffer1'` is registered by the torch.nn.Module method. `'buffer2'` is registered by the exts method. """ layer = DecoratedAffine(in_features=5, out_features=5) # buffer1 is registered normally, buffer2 with exts method buffer_names = ["buffer1", "buffer2"] tensors = [Tensor([1, 2, 3]), Tensor([4, 5, 6])] buffer_register = [layer.register_buffer, layer.register_exts_buffer] # register for name, tensor, register in zip(buffer_names, tensors, buffer_register): register(name, tensor) return layer, buffer_names def test_exts_buffering(): """Test registration of buffers by exts methods.""" layer, buffer_names = module_with_buffers() # check if all buffers are present for b in buffer_names: assert b in layer._buffers # but only buffer2 is tracked by exts assert buffer_names[0] not in layer.exts_buffers assert buffer_names[1] in layer.exts_buffers def test_buffer_removing(): """Test removing of exts buffers.""" layer, buffer_names = module_with_buffers() # remove buffer_names[1] which was registered with exts layer.remove_exts_buffers() # buffer1 is still existent assert buffer_names[0] in layer._buffers assert hasattr(layer, buffer_names[0]) # buffer2 not assert not (buffer_names[1] in layer._buffers) assert not hasattr(layer, buffer_names[1])
[ 37811, 14402, 11705, 1352, 286, 28034, 13, 20471, 13, 26796, 850, 37724, 526, 15931, 198, 198, 6738, 28034, 1330, 309, 22854, 198, 6738, 28034, 13, 20471, 1330, 44800, 198, 198, 6738, 275, 431, 742, 82, 13, 12501, 273, 1352, 1330, 11705, 378, 198, 198, 2, 24789, 14174, 7679, 198, 10707, 273, 515, 35191, 500, 796, 11705, 378, 7, 14993, 451, 8, 628, 198, 4299, 1332, 62, 12501, 273, 515, 62, 29127, 62, 48310, 33529, 198, 220, 220, 220, 37227, 14402, 1438, 290, 2205, 8841, 286, 24789, 28034, 13, 20471, 13, 14993, 451, 526, 15931, 198, 220, 220, 220, 6818, 4280, 273, 515, 35191, 500, 13, 834, 3672, 834, 6624, 366, 10707, 273, 515, 14993, 451, 1, 198, 220, 220, 220, 6818, 4280, 273, 515, 35191, 500, 13, 834, 15390, 834, 13, 9688, 2032, 342, 7203, 58, 10707, 273, 515, 416, 275, 431, 742, 82, 60, 4943, 628, 198, 4299, 31548, 62, 1891, 904, 62, 25480, 7, 21412, 11, 3915, 62, 15414, 11, 3915, 62, 22915, 2599, 198, 220, 220, 220, 37227, 35, 13513, 19528, 8011, 526, 15931, 628, 198, 4299, 31548, 62, 11813, 62, 25480, 7, 21412, 11, 5128, 11, 5072, 2599, 198, 220, 220, 220, 37227, 35, 13513, 2651, 8011, 526, 15931, 628, 198, 4299, 31548, 62, 3866, 62, 11813, 62, 25480, 7, 21412, 11, 5128, 2599, 198, 220, 220, 220, 37227, 35, 13513, 662, 2651, 8011, 526, 15931, 628, 198, 4299, 1332, 62, 2302, 82, 62, 25480, 278, 33529, 198, 220, 220, 220, 37227, 14402, 9646, 286, 26569, 4214, 4111, 351, 409, 912, 5499, 13, 628, 220, 220, 220, 8229, 8265, 351, 26569, 357, 21, 287, 2472, 11, 513, 6823, 416, 28034, 13, 20471, 11, 198, 220, 220, 220, 513, 6823, 416, 409, 912, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 7679, 796, 4280, 273, 515, 35191, 500, 7, 259, 62, 40890, 28, 20, 11, 503, 62, 40890, 28, 20, 8, 198, 220, 220, 220, 1303, 409, 912, 290, 299, 77, 8011, 9352, 5499, 198, 220, 220, 220, 26569, 796, 685, 67, 13513, 62, 1891, 904, 62, 25480, 11, 31548, 62, 11813, 62, 25480, 11, 31548, 62, 3866, 62, 11813, 62, 25480, 60, 198, 220, 220, 220, 409, 912, 62, 30238, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 13, 30238, 62, 2302, 82, 62, 1891, 904, 62, 25480, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 13, 30238, 62, 2302, 82, 62, 11813, 62, 25480, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 13, 30238, 62, 2302, 82, 62, 11813, 62, 3866, 62, 25480, 11, 198, 220, 220, 220, 2361, 198, 220, 220, 220, 299, 77, 62, 30238, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 13, 30238, 62, 1891, 904, 62, 25480, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 13, 30238, 62, 11813, 62, 25480, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 13, 30238, 62, 11813, 62, 3866, 62, 25480, 11, 198, 220, 220, 220, 2361, 198, 220, 220, 220, 26569, 62, 392, 62, 30238, 796, 19974, 7, 25480, 82, 11, 409, 912, 62, 30238, 11, 299, 77, 62, 30238, 8, 198, 220, 220, 220, 1303, 11629, 378, 625, 26569, 290, 9352, 5050, 198, 220, 220, 220, 329, 1312, 11, 357, 25480, 11, 409, 912, 62, 20786, 11, 299, 77, 62, 20786, 8, 287, 27056, 378, 7, 25480, 82, 62, 392, 62, 30238, 11, 352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 26569, 6823, 416, 409, 912, 5499, 815, 307, 18283, 198, 220, 220, 220, 220, 220, 220, 220, 409, 912, 62, 20786, 7, 25480, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 29289, 13, 2302, 82, 62, 25480, 82, 8, 6624, 1312, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6678, 8011, 9352, 815, 407, 2689, 7552, 26569, 198, 220, 220, 220, 220, 220, 220, 220, 299, 77, 62, 20786, 7, 25480, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 29289, 13, 2302, 82, 62, 25480, 82, 8, 6624, 1312, 198, 220, 220, 220, 1303, 1123, 8011, 2099, 8833, 5403, 357, 27078, 422, 299, 77, 11, 1752, 422, 409, 912, 8, 198, 220, 220, 220, 329, 8011, 62, 4906, 287, 685, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 13557, 1891, 904, 62, 25480, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 13557, 11813, 62, 25480, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 13557, 11813, 62, 3866, 62, 25480, 82, 11, 198, 220, 220, 220, 2361, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 25480, 62, 4906, 8, 6624, 362, 198, 220, 220, 220, 1441, 7679, 628, 198, 4299, 8265, 62, 4480, 62, 25480, 82, 33529, 198, 220, 220, 220, 37227, 13615, 8265, 351, 718, 26569, 13, 628, 220, 220, 220, 19937, 4909, 257, 19528, 11, 257, 2651, 290, 257, 662, 2651, 8011, 13, 198, 220, 220, 220, 383, 26569, 389, 6823, 1262, 262, 28034, 13, 20471, 2446, 290, 262, 198, 220, 220, 220, 409, 912, 2446, 11, 1255, 259, 287, 362, 9, 18, 796, 718, 26569, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 1332, 62, 2302, 82, 62, 25480, 278, 3419, 628, 198, 4299, 1332, 62, 25480, 62, 2787, 5165, 33529, 198, 220, 220, 220, 37227, 14402, 34909, 286, 26569, 18283, 416, 409, 912, 526, 15931, 198, 220, 220, 220, 1303, 718, 26569, 11, 513, 18283, 416, 409, 912, 11, 513, 18283, 416, 28034, 13, 20471, 198, 220, 220, 220, 7679, 796, 8265, 62, 4480, 62, 25480, 82, 3419, 198, 220, 220, 220, 1303, 4781, 18283, 26569, 198, 220, 220, 220, 7679, 13, 28956, 62, 2302, 82, 62, 25480, 82, 3419, 198, 220, 220, 220, 6818, 18896, 7, 29289, 13, 2302, 82, 62, 25480, 82, 8, 6624, 657, 198, 220, 220, 220, 1303, 8265, 468, 530, 2651, 11, 662, 2651, 290, 19528, 8011, 1123, 13, 198, 220, 220, 220, 329, 8011, 62, 4906, 287, 685, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 13557, 1891, 904, 62, 25480, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 13557, 11813, 62, 25480, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7679, 13557, 11813, 62, 3866, 62, 25480, 82, 11, 198, 220, 220, 220, 2361, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 25480, 62, 4906, 8, 6624, 352, 628, 198, 4299, 8265, 62, 4480, 62, 36873, 364, 33529, 198, 220, 220, 220, 37227, 13615, 8265, 326, 6622, 734, 39334, 13, 628, 220, 220, 220, 4600, 6, 22252, 16, 6, 63, 318, 6823, 416, 262, 28034, 13, 20471, 13, 26796, 2446, 13, 198, 220, 220, 220, 4600, 6, 22252, 17, 6, 63, 318, 6823, 416, 262, 409, 912, 2446, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 7679, 796, 4280, 273, 515, 35191, 500, 7, 259, 62, 40890, 28, 20, 11, 503, 62, 40890, 28, 20, 8, 198, 220, 220, 220, 1303, 11876, 16, 318, 6823, 7685, 11, 11876, 17, 351, 409, 912, 2446, 198, 220, 220, 220, 11876, 62, 14933, 796, 14631, 22252, 16, 1600, 366, 22252, 17, 8973, 198, 220, 220, 220, 11192, 669, 796, 685, 51, 22854, 26933, 16, 11, 362, 11, 513, 46570, 309, 22854, 26933, 19, 11, 642, 11, 718, 12962, 60, 198, 220, 220, 220, 11876, 62, 30238, 796, 685, 29289, 13, 30238, 62, 22252, 11, 7679, 13, 30238, 62, 2302, 82, 62, 22252, 60, 198, 220, 220, 220, 1303, 7881, 198, 220, 220, 220, 329, 1438, 11, 11192, 273, 11, 7881, 287, 19974, 7, 22252, 62, 14933, 11, 11192, 669, 11, 11876, 62, 30238, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 7881, 7, 3672, 11, 11192, 273, 8, 198, 220, 220, 220, 1441, 7679, 11, 11876, 62, 14933, 628, 198, 4299, 1332, 62, 2302, 82, 62, 36873, 1586, 33529, 198, 220, 220, 220, 37227, 14402, 9352, 286, 39334, 416, 409, 912, 5050, 526, 15931, 198, 220, 220, 220, 7679, 11, 11876, 62, 14933, 796, 8265, 62, 4480, 62, 36873, 364, 3419, 198, 220, 220, 220, 1303, 2198, 611, 477, 39334, 389, 1944, 198, 220, 220, 220, 329, 275, 287, 11876, 62, 14933, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 275, 287, 7679, 13557, 36873, 364, 198, 220, 220, 220, 1303, 475, 691, 11876, 17, 318, 18283, 416, 409, 912, 198, 220, 220, 220, 6818, 11876, 62, 14933, 58, 15, 60, 407, 287, 7679, 13, 2302, 82, 62, 36873, 364, 198, 220, 220, 220, 6818, 11876, 62, 14933, 58, 16, 60, 287, 7679, 13, 2302, 82, 62, 36873, 364, 628, 198, 4299, 1332, 62, 22252, 62, 2787, 5165, 33529, 198, 220, 220, 220, 37227, 14402, 10829, 286, 409, 912, 39334, 526, 15931, 198, 220, 220, 220, 7679, 11, 11876, 62, 14933, 796, 8265, 62, 4480, 62, 36873, 364, 3419, 198, 220, 220, 220, 1303, 4781, 11876, 62, 14933, 58, 16, 60, 543, 373, 6823, 351, 409, 912, 198, 220, 220, 220, 7679, 13, 28956, 62, 2302, 82, 62, 36873, 364, 3419, 198, 220, 220, 220, 1303, 11876, 16, 318, 991, 2152, 298, 198, 220, 220, 220, 6818, 11876, 62, 14933, 58, 15, 60, 287, 7679, 13557, 36873, 364, 198, 220, 220, 220, 6818, 468, 35226, 7, 29289, 11, 11876, 62, 14933, 58, 15, 12962, 198, 220, 220, 220, 1303, 11876, 17, 407, 198, 220, 220, 220, 6818, 407, 357, 22252, 62, 14933, 58, 16, 60, 287, 7679, 13557, 36873, 364, 8, 198, 220, 220, 220, 6818, 407, 468, 35226, 7, 29289, 11, 11876, 62, 14933, 58, 16, 12962, 198 ]
2.692839
1,592
from typing import Any, Callable, Dict import pytest from pydantic.fields import FieldInfo from starlite import ( Body, HTTPRouteHandler, ImproperlyConfiguredException, Parameter, Provide, RequestEncodingType, Starlite, get, post, websocket, ) from starlite.constants import RESERVED_KWARGS @get("/{my_key:str}") @get("/{my_key:str}") @get("/{my_key:str}") @get("/{my_key:str}", dependencies={"my_key": Provide(my_dependency)}) @get("/", dependencies={"my_key": Provide(my_dependency)}) @get("/", dependencies={"my_key": Provide(my_dependency)}) @get("/", dependencies={"my_key": Provide(my_dependency)}) @pytest.mark.parametrize( # type: ignore[misc] "handler", [ handler_with_path_param_and_aliased_query_parameter_collision, handler_with_path_param_and_aliased_header_parameter_collision, handler_with_path_param_and_aliased_cookie_parameter_collision, handler_with_path_param_dependency_collision, handler_with_dependency_and_aliased_query_parameter_collision, handler_with_dependency_and_aliased_header_parameter_collision, handler_with_dependency_and_aliased_cookie_parameter_collision, ], ) @pytest.mark.parametrize("reserved_kwarg", RESERVED_KWARGS) # type: ignore[misc] @post("/", dependencies={"first": Provide(json_dependency)}) @post("/", dependencies={"first": Provide(url_encoded_dependency)}) @post("/", dependencies={"first": Provide(multi_part_dependency)}) @pytest.mark.parametrize("handler", [accepted_json_handler, accepted_url_encoded_handler, accepted_multi_part_handler]) # type: ignore[misc] @pytest.mark.parametrize( # type: ignore[misc] "body, dependency", [ [Body(media_type=RequestEncodingType.JSON), url_encoded_dependency], [Body(media_type=RequestEncodingType.JSON), multi_part_dependency], [Body(media_type=RequestEncodingType.URL_ENCODED), json_dependency], [Body(media_type=RequestEncodingType.URL_ENCODED), multi_part_dependency], [Body(media_type=RequestEncodingType.MULTI_PART), json_dependency], [Body(media_type=RequestEncodingType.MULTI_PART), url_encoded_dependency], ], )
[ 6738, 19720, 1330, 4377, 11, 4889, 540, 11, 360, 713, 198, 198, 11748, 12972, 9288, 198, 6738, 279, 5173, 5109, 13, 25747, 1330, 7663, 12360, 198, 198, 6738, 3491, 36890, 1330, 357, 198, 220, 220, 220, 12290, 11, 198, 220, 220, 220, 7154, 51, 4805, 13192, 25060, 11, 198, 220, 220, 220, 12205, 525, 306, 16934, 1522, 16922, 11, 198, 220, 220, 220, 25139, 2357, 11, 198, 220, 220, 220, 44290, 11, 198, 220, 220, 220, 19390, 27195, 7656, 6030, 11, 198, 220, 220, 220, 2907, 36890, 11, 198, 220, 220, 220, 651, 11, 198, 220, 220, 220, 1281, 11, 198, 220, 220, 220, 2639, 5459, 11, 198, 8, 198, 6738, 3491, 36890, 13, 9979, 1187, 1330, 15731, 1137, 53, 1961, 62, 42, 16279, 14313, 628, 198, 198, 31, 1136, 7203, 14, 90, 1820, 62, 2539, 25, 2536, 92, 4943, 628, 198, 31, 1136, 7203, 14, 90, 1820, 62, 2539, 25, 2536, 92, 4943, 628, 198, 31, 1136, 7203, 14, 90, 1820, 62, 2539, 25, 2536, 92, 4943, 628, 198, 31, 1136, 7203, 14, 90, 1820, 62, 2539, 25, 2536, 92, 1600, 20086, 28, 4895, 1820, 62, 2539, 1298, 44290, 7, 1820, 62, 45841, 1387, 8, 30072, 628, 198, 31, 1136, 7203, 14, 1600, 20086, 28, 4895, 1820, 62, 2539, 1298, 44290, 7, 1820, 62, 45841, 1387, 8, 30072, 628, 198, 31, 1136, 7203, 14, 1600, 20086, 28, 4895, 1820, 62, 2539, 1298, 44290, 7, 1820, 62, 45841, 1387, 8, 30072, 628, 198, 31, 1136, 7203, 14, 1600, 20086, 28, 4895, 1820, 62, 2539, 1298, 44290, 7, 1820, 62, 45841, 1387, 8, 30072, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7, 220, 1303, 2099, 25, 8856, 58, 44374, 60, 198, 220, 220, 220, 366, 30281, 1600, 198, 220, 220, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 21360, 62, 4480, 62, 6978, 62, 17143, 62, 392, 62, 7344, 839, 62, 22766, 62, 17143, 2357, 62, 26000, 1166, 11, 198, 220, 220, 220, 220, 220, 220, 220, 21360, 62, 4480, 62, 6978, 62, 17143, 62, 392, 62, 7344, 839, 62, 25677, 62, 17143, 2357, 62, 26000, 1166, 11, 198, 220, 220, 220, 220, 220, 220, 220, 21360, 62, 4480, 62, 6978, 62, 17143, 62, 392, 62, 7344, 839, 62, 44453, 62, 17143, 2357, 62, 26000, 1166, 11, 198, 220, 220, 220, 220, 220, 220, 220, 21360, 62, 4480, 62, 6978, 62, 17143, 62, 45841, 1387, 62, 26000, 1166, 11, 198, 220, 220, 220, 220, 220, 220, 220, 21360, 62, 4480, 62, 45841, 1387, 62, 392, 62, 7344, 839, 62, 22766, 62, 17143, 2357, 62, 26000, 1166, 11, 198, 220, 220, 220, 220, 220, 220, 220, 21360, 62, 4480, 62, 45841, 1387, 62, 392, 62, 7344, 839, 62, 25677, 62, 17143, 2357, 62, 26000, 1166, 11, 198, 220, 220, 220, 220, 220, 220, 220, 21360, 62, 4480, 62, 45841, 1387, 62, 392, 62, 7344, 839, 62, 44453, 62, 17143, 2357, 62, 26000, 1166, 11, 198, 220, 220, 220, 16589, 198, 8, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 411, 8520, 62, 46265, 853, 1600, 15731, 1137, 53, 1961, 62, 42, 16279, 14313, 8, 220, 1303, 2099, 25, 8856, 58, 44374, 60, 628, 628, 198, 198, 31, 7353, 7203, 14, 1600, 20086, 28, 4895, 11085, 1298, 44290, 7, 17752, 62, 45841, 1387, 8, 30072, 628, 198, 31, 7353, 7203, 14, 1600, 20086, 28, 4895, 11085, 1298, 44290, 7, 6371, 62, 12685, 9043, 62, 45841, 1387, 8, 30072, 628, 198, 31, 7353, 7203, 14, 1600, 20086, 28, 4895, 11085, 1298, 44290, 7, 41684, 62, 3911, 62, 45841, 1387, 8, 30072, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7203, 30281, 1600, 685, 13635, 276, 62, 17752, 62, 30281, 11, 6292, 62, 6371, 62, 12685, 9043, 62, 30281, 11, 6292, 62, 41684, 62, 3911, 62, 30281, 12962, 220, 1303, 2099, 25, 8856, 58, 44374, 60, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7, 220, 1303, 2099, 25, 8856, 58, 44374, 60, 198, 220, 220, 220, 366, 2618, 11, 20203, 1600, 198, 220, 220, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 685, 25842, 7, 11431, 62, 4906, 28, 18453, 27195, 7656, 6030, 13, 40386, 828, 19016, 62, 12685, 9043, 62, 45841, 1387, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 685, 25842, 7, 11431, 62, 4906, 28, 18453, 27195, 7656, 6030, 13, 40386, 828, 5021, 62, 3911, 62, 45841, 1387, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 685, 25842, 7, 11431, 62, 4906, 28, 18453, 27195, 7656, 6030, 13, 21886, 62, 24181, 3727, 1961, 828, 33918, 62, 45841, 1387, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 685, 25842, 7, 11431, 62, 4906, 28, 18453, 27195, 7656, 6030, 13, 21886, 62, 24181, 3727, 1961, 828, 5021, 62, 3911, 62, 45841, 1387, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 685, 25842, 7, 11431, 62, 4906, 28, 18453, 27195, 7656, 6030, 13, 44, 16724, 40, 62, 30709, 828, 33918, 62, 45841, 1387, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 685, 25842, 7, 11431, 62, 4906, 28, 18453, 27195, 7656, 6030, 13, 44, 16724, 40, 62, 30709, 828, 19016, 62, 12685, 9043, 62, 45841, 1387, 4357, 198, 220, 220, 220, 16589, 198, 8, 198 ]
2.528474
878
""" Tests Account API """ import json import datetime from django.test import TransactionTestCase # Default user model may get swapped out of the system and hence. from django.contrib.auth.models import User from rest_framework.test import APIClient from rest_framework import status from seven23.models.accounts.models import Account, AccountGuests from seven23.models.categories.models import Category from seven23.models.transactions.models import DebitsCredits from seven23.models.currency.models import Currency class ApiCategoryTest(TransactionTestCase): """ Account retrieve """ def test_categories_retrieve(self): """ Retrieve data with a user owning an account and being gest in an other one. """ self.client.force_authenticate(user=self.user) response = self.client.get('/api/v1/categories') data = response.json() # Verify data structure assert response.status_code == status.HTTP_200_OK assert len(data) == 1 AccountGuests.objects.create(account=self.account2, user=self.user, permissions='W') response = self.client.get('/api/v1/categories') data = response.json() # Verify data structure assert response.status_code == status.HTTP_200_OK assert len(data) == 2 def test_categories_post(self): """ We try to create a new category object """ blob = { 'name': 'Category post' } self.client.force_authenticate(user=self.user) response = self.client.post('/api/v1/categories', {'account': self.account.id, 'blob': json.dumps(blob) }) assert response.status_code == status.HTTP_201_CREATED response = self.client.post('/api/v1/categories', {'account':self.account2.id, 'blob': json.dumps(blob) }) assert response.status_code == status.HTTP_201_CREATED response = self.client.get('/api/v1/categories') data = response.json() # Verify data structure assert response.status_code == status.HTTP_200_OK assert len(data) == 2 minDate = datetime.datetime.now() for category in data: if datetime.datetime.strptime(category['last_edited'], '%Y-%m-%dT%H:%M:%S.%fZ') < minDate: minDate = datetime.datetime.strptime(category['last_edited'], '%Y-%m-%dT%H:%M:%S.%fZ') response = self.client.get('/api/v1/categories?last_edited=%s' % minDate) data = response.json() assert len(response.json()) == 1 def test_categories_bulk_delete(self): """ Retrieve data with a user owning an account and being gest in an other one. """ self.client.force_authenticate(user=self.user) response = self.client.get('/api/v1/categories') data = response.json() # Verify data structure assert response.status_code == status.HTTP_200_OK assert len(data) == 1 # Make sure bulk delete with no param is disabled response = self.client.delete('/api/v1/categories') response = self.client.get('/api/v1/categories') data = response.json() # Verify data structure assert response.status_code == status.HTTP_200_OK assert len(data) == 1
[ 37811, 198, 220, 220, 220, 30307, 10781, 7824, 198, 37811, 198, 11748, 33918, 198, 11748, 4818, 8079, 198, 198, 6738, 42625, 14208, 13, 9288, 1330, 45389, 14402, 20448, 198, 2, 15161, 2836, 2746, 743, 651, 37245, 503, 286, 262, 1080, 290, 12891, 13, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 27530, 1330, 11787, 198, 198, 6738, 1334, 62, 30604, 13, 9288, 1330, 3486, 2149, 75, 1153, 198, 6738, 1334, 62, 30604, 1330, 3722, 198, 198, 6738, 3598, 1954, 13, 27530, 13, 23317, 82, 13, 27530, 1330, 10781, 11, 10781, 8205, 3558, 198, 6738, 3598, 1954, 13, 27530, 13, 66, 26129, 13, 27530, 1330, 21743, 198, 6738, 3598, 1954, 13, 27530, 13, 7645, 4658, 13, 27530, 1330, 8965, 896, 42855, 198, 6738, 3598, 1954, 13, 27530, 13, 34415, 13, 27530, 1330, 20113, 198, 198, 4871, 5949, 72, 27313, 14402, 7, 48720, 14402, 20448, 2599, 198, 220, 220, 220, 37227, 10781, 19818, 37227, 628, 220, 220, 220, 825, 1332, 62, 66, 26129, 62, 1186, 30227, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4990, 30227, 1366, 351, 257, 2836, 23107, 281, 1848, 290, 852, 10521, 287, 281, 584, 530, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16366, 13, 3174, 62, 41299, 5344, 7, 7220, 28, 944, 13, 7220, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 2116, 13, 16366, 13, 1136, 10786, 14, 15042, 14, 85, 16, 14, 66, 26129, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2882, 13, 17752, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 49899, 1366, 4645, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2882, 13, 13376, 62, 8189, 6624, 3722, 13, 40717, 62, 2167, 62, 11380, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 7890, 8, 6624, 352, 628, 220, 220, 220, 220, 220, 220, 220, 10781, 8205, 3558, 13, 48205, 13, 17953, 7, 23317, 28, 944, 13, 23317, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 28, 944, 13, 7220, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21627, 11639, 54, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 2116, 13, 16366, 13, 1136, 10786, 14, 15042, 14, 85, 16, 14, 66, 26129, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2882, 13, 17752, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 49899, 1366, 4645, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2882, 13, 13376, 62, 8189, 6624, 3722, 13, 40717, 62, 2167, 62, 11380, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 7890, 8, 6624, 362, 628, 220, 220, 220, 825, 1332, 62, 66, 26129, 62, 7353, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 775, 1949, 284, 2251, 257, 649, 6536, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 44812, 796, 1391, 705, 3672, 10354, 705, 27313, 1281, 6, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16366, 13, 3174, 62, 41299, 5344, 7, 7220, 28, 944, 13, 7220, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 2116, 13, 16366, 13, 7353, 10786, 14, 15042, 14, 85, 16, 14, 66, 26129, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 23317, 10354, 2116, 13, 23317, 13, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2436, 672, 10354, 33918, 13, 67, 8142, 7, 2436, 672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32092, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2882, 13, 13376, 62, 8189, 6624, 3722, 13, 40717, 62, 1264, 62, 43387, 11617, 628, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 2116, 13, 16366, 13, 7353, 10786, 14, 15042, 14, 85, 16, 14, 66, 26129, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 23317, 10354, 944, 13, 23317, 17, 13, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2436, 672, 10354, 33918, 13, 67, 8142, 7, 2436, 672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32092, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2882, 13, 13376, 62, 8189, 6624, 3722, 13, 40717, 62, 1264, 62, 43387, 11617, 628, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 2116, 13, 16366, 13, 1136, 10786, 14, 15042, 14, 85, 16, 14, 66, 26129, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2882, 13, 17752, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 49899, 1366, 4645, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2882, 13, 13376, 62, 8189, 6624, 3722, 13, 40717, 62, 2167, 62, 11380, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 7890, 8, 6624, 362, 628, 220, 220, 220, 220, 220, 220, 220, 949, 10430, 796, 4818, 8079, 13, 19608, 8079, 13, 2197, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 329, 6536, 287, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4818, 8079, 13, 19608, 8079, 13, 2536, 457, 524, 7, 22872, 17816, 12957, 62, 42131, 6, 4357, 705, 4, 56, 12, 4, 76, 12, 4, 67, 51, 4, 39, 25, 4, 44, 25, 4, 50, 13, 4, 69, 57, 11537, 1279, 949, 10430, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 949, 10430, 796, 4818, 8079, 13, 19608, 8079, 13, 2536, 457, 524, 7, 22872, 17816, 12957, 62, 42131, 6, 4357, 705, 4, 56, 12, 4, 76, 12, 4, 67, 51, 4, 39, 25, 4, 44, 25, 4, 50, 13, 4, 69, 57, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 2116, 13, 16366, 13, 1136, 10786, 14, 15042, 14, 85, 16, 14, 66, 26129, 30, 12957, 62, 42131, 28, 4, 82, 6, 4064, 949, 10430, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2882, 13, 17752, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 26209, 13, 17752, 28955, 6624, 352, 628, 220, 220, 220, 825, 1332, 62, 66, 26129, 62, 65, 12171, 62, 33678, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4990, 30227, 1366, 351, 257, 2836, 23107, 281, 1848, 290, 852, 10521, 287, 281, 584, 530, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16366, 13, 3174, 62, 41299, 5344, 7, 7220, 28, 944, 13, 7220, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 2116, 13, 16366, 13, 1136, 10786, 14, 15042, 14, 85, 16, 14, 66, 26129, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2882, 13, 17752, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 49899, 1366, 4645, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2882, 13, 13376, 62, 8189, 6624, 3722, 13, 40717, 62, 2167, 62, 11380, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 7890, 8, 6624, 352, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 6889, 1654, 11963, 12233, 351, 645, 5772, 318, 10058, 198, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 2116, 13, 16366, 13, 33678, 10786, 14, 15042, 14, 85, 16, 14, 66, 26129, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 2116, 13, 16366, 13, 1136, 10786, 14, 15042, 14, 85, 16, 14, 66, 26129, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2882, 13, 17752, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 49899, 1366, 4645, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 2882, 13, 13376, 62, 8189, 6624, 3722, 13, 40717, 62, 2167, 62, 11380, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 18896, 7, 7890, 8, 6624, 352 ]
2.247793
1,586
# -*- coding: utf-8 -*- import scoutnet from dataimport import UserPrefs, ndb, Person, logging, TroopPerson, ScoutGroup from flask import Blueprint, render_template, abort, redirect, request persons = Blueprint('persons_page', __name__, template_folder='templates') @persons.route('/') @persons.route('/<sgroup_url>') @persons.route('/<sgroup_url>/') @persons.route('/<sgroup_url>/<person_url>') @persons.route('/<sgroup_url>/<person_url>/') @persons.route('/<sgroup_url>/<person_url>/<action>')
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 11748, 24490, 3262, 198, 6738, 1366, 11748, 1330, 11787, 36698, 82, 11, 299, 9945, 11, 7755, 11, 18931, 11, 8498, 404, 15439, 11, 22529, 13247, 198, 198, 6738, 42903, 1330, 39932, 11, 8543, 62, 28243, 11, 15614, 11, 18941, 11, 2581, 198, 198, 19276, 684, 796, 39932, 10786, 19276, 684, 62, 7700, 3256, 11593, 3672, 834, 11, 11055, 62, 43551, 11639, 11498, 17041, 11537, 198, 198, 31, 19276, 684, 13, 38629, 10786, 14, 11537, 198, 31, 19276, 684, 13, 38629, 10786, 14, 27, 82, 8094, 62, 6371, 29, 11537, 198, 31, 19276, 684, 13, 38629, 10786, 14, 27, 82, 8094, 62, 6371, 29, 14, 11537, 198, 31, 19276, 684, 13, 38629, 10786, 14, 27, 82, 8094, 62, 6371, 29, 14, 27, 6259, 62, 6371, 29, 11537, 198, 31, 19276, 684, 13, 38629, 10786, 14, 27, 82, 8094, 62, 6371, 29, 14, 27, 6259, 62, 6371, 29, 14, 11537, 198, 31, 19276, 684, 13, 38629, 10786, 14, 27, 82, 8094, 62, 6371, 29, 14, 27, 6259, 62, 6371, 29, 14, 27, 2673, 29, 11537, 198 ]
2.654255
188
from instabot import Bot COOKIE_FNAME = 'cookie.txt' bot = Bot() bot.login(username="[email protected]", password="reNcDjEgWp4X7Gt", use_cookie = False) user_id = bot.get_user_id_from_username("lego") user_info = bot.get_user_info(user_id) print(user_info['biography'])
[ 6738, 916, 397, 313, 1330, 18579, 198, 198, 34, 15308, 10008, 62, 37, 20608, 796, 705, 44453, 13, 14116, 6, 198, 198, 13645, 796, 18579, 3419, 198, 13645, 13, 38235, 7, 29460, 2625, 21809, 36072, 2791, 31, 14816, 13, 785, 1600, 9206, 2625, 260, 45, 66, 35, 73, 36, 70, 54, 79, 19, 55, 22, 38, 83, 1600, 779, 62, 44453, 796, 10352, 8, 198, 7220, 62, 312, 796, 10214, 13, 1136, 62, 7220, 62, 312, 62, 6738, 62, 29460, 7203, 1455, 78, 4943, 198, 7220, 62, 10951, 796, 10214, 13, 1136, 62, 7220, 62, 10951, 7, 7220, 62, 312, 8, 198, 4798, 7, 7220, 62, 10951, 17816, 8482, 4867, 6, 12962 ]
2.4375
112
from .sdk import MesoorRecommendation from . import models
[ 6738, 764, 21282, 74, 1330, 14937, 2675, 41248, 341, 198, 6738, 764, 1330, 4981, 198 ]
3.933333
15
from java import dynamic_proxy from java.lang import Runnable import os import youtube_dl as yt from com.arthenica.mobileffmpeg import FFmpeg
[ 6738, 20129, 1330, 8925, 62, 36436, 198, 6738, 20129, 13, 17204, 1330, 5660, 77, 540, 198, 11748, 28686, 198, 11748, 35116, 62, 25404, 355, 331, 83, 198, 6738, 401, 13, 433, 831, 3970, 13, 24896, 487, 43913, 1330, 18402, 43913 ]
3.525
40
from .edge import * from .vertex import * from .graph import * from .generators import *
[ 6738, 764, 14907, 1330, 1635, 198, 6738, 764, 332, 16886, 1330, 1635, 198, 6738, 764, 34960, 1330, 1635, 198, 6738, 764, 8612, 2024, 1330, 1635 ]
3.52
25
num = (int(input('\033[0;34mDigite um numero: \033[m'))) print('\033[0;32mO numero digitado foi {},'.format(num)) print('seu sucessor é {}, e seu antecessor é {}.\033[m'.format(num + 1, num- 1))
[ 22510, 796, 357, 600, 7, 15414, 10786, 59, 44427, 58, 15, 26, 2682, 76, 19511, 578, 23781, 997, 3529, 25, 3467, 44427, 58, 76, 6, 22305, 198, 4798, 10786, 59, 44427, 58, 15, 26, 2624, 76, 46, 997, 3529, 16839, 4533, 11511, 72, 23884, 4032, 13, 18982, 7, 22510, 4008, 198, 4798, 10786, 325, 84, 424, 919, 273, 38251, 1391, 5512, 304, 384, 84, 29692, 919, 273, 38251, 23884, 13, 59, 44427, 58, 76, 4458, 18982, 7, 22510, 1343, 352, 11, 997, 12, 352, 4008, 198 ]
2.267442
86
class Predicate(): """ This class should predicate most usefull floor to send elevator in idle state The purpose to minimize wait time om next call. And just for fun Predication may be performed by external tools, based on statistics table For now it do nothing. """ predict = Predicate()
[ 628, 198, 4871, 14322, 5344, 33529, 198, 220, 220, 220, 37227, 220, 198, 220, 220, 220, 770, 1398, 815, 44010, 749, 779, 12853, 4314, 284, 3758, 20932, 287, 21696, 1181, 198, 220, 220, 220, 383, 4007, 284, 17775, 4043, 640, 39030, 1306, 869, 13, 843, 655, 329, 1257, 198, 220, 220, 220, 14322, 3299, 743, 307, 6157, 416, 7097, 4899, 11, 1912, 319, 7869, 3084, 628, 220, 220, 220, 1114, 783, 340, 466, 2147, 13, 198, 220, 220, 220, 37227, 628, 198, 198, 79, 17407, 796, 220, 14322, 5344, 3419 ]
3.566667
90
# nsgaii.py # Program to run NSGA-II on benchmark problems # Author: Kristina Spencer # Date: March 10, 2016 # i - bin index # j - item index # k - algorithm index # m - solution index # t - generation ind#x from __future__ import print_function import binpacking as bp import datetime import ga import numpy as np import os import solutions as sols from items import makeitems from mop import dom from operator import attrgetter if __name__ == '__main__': main()
[ 2, 36545, 70, 42648, 13, 9078, 198, 2, 220, 220, 220, 6118, 284, 1057, 10896, 9273, 12, 3978, 319, 18335, 2761, 198, 2, 220, 220, 220, 6434, 25, 14912, 1437, 15971, 198, 2, 220, 220, 220, 7536, 25, 2805, 838, 11, 1584, 198, 2, 220, 220, 220, 1312, 532, 9874, 6376, 198, 2, 220, 220, 220, 474, 532, 2378, 6376, 198, 2, 220, 220, 220, 479, 532, 11862, 6376, 198, 2, 220, 220, 220, 285, 532, 4610, 6376, 198, 2, 220, 220, 220, 256, 532, 5270, 773, 2, 87, 198, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 11748, 9874, 41291, 355, 275, 79, 198, 11748, 4818, 8079, 198, 11748, 31986, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28686, 198, 11748, 8136, 355, 1540, 82, 198, 6738, 3709, 1330, 787, 23814, 198, 6738, 285, 404, 1330, 2401, 198, 6738, 10088, 1330, 708, 81, 1136, 353, 628, 628, 628, 628, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1388, 3419, 198 ]
2.936047
172
import numpy as np from actor_base import Actor class SimulatedPathFollowingHuman(Actor): """ A simulated human object that only follows a given path """ class SimulatedReactiveHuman(Actor): """ A reactive human object that follows a path but reacts to robot's movement """
[ 11748, 299, 32152, 355, 45941, 198, 198, 6738, 8674, 62, 8692, 1330, 27274, 628, 198, 4871, 3184, 4817, 15235, 14291, 20490, 7, 40277, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 28590, 1692, 2134, 326, 691, 5679, 257, 1813, 3108, 198, 220, 220, 220, 37227, 628, 198, 4871, 3184, 4817, 3041, 5275, 20490, 7, 40277, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 32242, 1692, 2134, 326, 5679, 257, 3108, 475, 30174, 198, 220, 220, 220, 284, 9379, 338, 3356, 198, 220, 220, 220, 37227, 198 ]
3.336957
92
"""Module with functions for 'deploy' subpackage.""" from __future__ import annotations import os import shutil import mylogging from mypythontools.paths import validate_path, PathLike from mypythontools.misc import delete_files from mypythontools.system import check_script_is_available, terminal_do_command, PYTHON from mypythontools_cicd.project_paths import PROJECT_PATHS def deploy_to_pypi( setup_path: None | PathLike = None, clean: bool = True, verbose: bool = True, pep517: bool = True ) -> None: """Publish python library to PyPi. Username and password are set with env vars `TWINE_USERNAME` and `TWINE_PASSWORD`. Note: You need working `setup.py` file. If you want to see example, try the one from project-starter on https://github.com/Malachov/mypythontools/blob/master/content/project-starter/setup.py Args: setup_path (None | PathLike, optional): Function suppose, that there is a setup.py somewhere in cwd. If not, path will be inferred. Build and dist folders will be created in same directory. Defaults to None. clean (bool, optional): Whether delete created build and dist folders. verbose (bool, optional): If True, result of terminal command will be printed to console. Defaults to False. pep517 (bool, optional): Whether using PEP 517, that use pyproject.toml to build distribution. """ usr = os.environ.get("TWINE_USERNAME") password = os.environ.get("TWINE_PASSWORD") if not usr or not password: raise KeyError("Setup env vars TWINE_USERNAME and TWINE_PASSWORD to use deploy.") check_script_is_available("twine", "twine") setup_path = PROJECT_PATHS.root / "setup.py" if not setup_path else validate_path(setup_path) setup_dir_path = setup_path.parent dist_path = setup_dir_path / "dist" build_path = setup_dir_path / "build" delete_files(dist_path) delete_files(build_path) if pep517: build_command = f"{PYTHON} -m build --wheel --sdist" else: build_command = f"{PYTHON} setup.py sdist bdist_wheel" terminal_do_command( build_command, cwd=setup_dir_path.as_posix(), verbose=verbose, error_header="Build python distribution for PyPi deployment failed. Try to set 'pep517' to False.", ) command = f"twine upload dist/*" terminal_do_command( command, cwd=setup_dir_path.as_posix(), verbose=verbose, error_header="Deploying to PyPi failed.", ) if clean: delete_files(dist_path) delete_files(build_path)
[ 37811, 26796, 351, 5499, 329, 705, 2934, 1420, 6, 850, 26495, 526, 15931, 198, 198, 6738, 11593, 37443, 834, 1330, 37647, 198, 11748, 28686, 198, 11748, 4423, 346, 198, 198, 11748, 616, 6404, 2667, 198, 198, 6738, 616, 79, 5272, 756, 10141, 13, 6978, 82, 1330, 26571, 62, 6978, 11, 10644, 7594, 198, 6738, 616, 79, 5272, 756, 10141, 13, 44374, 1330, 12233, 62, 16624, 198, 6738, 616, 79, 5272, 756, 10141, 13, 10057, 1330, 2198, 62, 12048, 62, 271, 62, 15182, 11, 12094, 62, 4598, 62, 21812, 11, 350, 56, 4221, 1340, 198, 198, 6738, 616, 79, 5272, 756, 10141, 62, 66, 291, 67, 13, 16302, 62, 6978, 82, 1330, 21965, 23680, 62, 47, 1404, 7998, 628, 198, 4299, 6061, 62, 1462, 62, 79, 4464, 72, 7, 198, 220, 220, 220, 9058, 62, 6978, 25, 6045, 930, 10644, 7594, 796, 6045, 11, 3424, 25, 20512, 796, 6407, 11, 15942, 577, 25, 20512, 796, 6407, 11, 279, 538, 48170, 25, 20512, 796, 6407, 198, 8, 4613, 6045, 25, 198, 220, 220, 220, 37227, 14876, 1836, 21015, 5888, 284, 9485, 38729, 13, 628, 220, 220, 220, 50069, 290, 9206, 389, 900, 351, 17365, 410, 945, 4600, 34551, 8881, 62, 29904, 20608, 63, 290, 4600, 34551, 8881, 62, 47924, 54, 12532, 44646, 628, 220, 220, 220, 5740, 25, 198, 220, 220, 220, 220, 220, 220, 220, 921, 761, 1762, 4600, 40406, 13, 9078, 63, 2393, 13, 1002, 345, 765, 284, 766, 1672, 11, 1949, 262, 530, 422, 1628, 12, 12339, 319, 628, 220, 220, 220, 220, 220, 220, 220, 3740, 1378, 12567, 13, 785, 14, 15029, 620, 709, 14, 1820, 79, 5272, 756, 10141, 14, 2436, 672, 14, 9866, 14, 11299, 14, 16302, 12, 12339, 14, 40406, 13, 9078, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 9058, 62, 6978, 357, 14202, 930, 10644, 7594, 11, 11902, 2599, 15553, 11691, 11, 326, 612, 318, 257, 9058, 13, 9078, 7382, 287, 269, 16993, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 407, 11, 3108, 481, 307, 41240, 13, 10934, 290, 1233, 24512, 481, 307, 2727, 287, 976, 8619, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2896, 13185, 284, 6045, 13, 198, 220, 220, 220, 220, 220, 220, 220, 3424, 357, 30388, 11, 11902, 2599, 10127, 12233, 2727, 1382, 290, 1233, 24512, 13, 198, 220, 220, 220, 220, 220, 220, 220, 15942, 577, 357, 30388, 11, 11902, 2599, 1002, 6407, 11, 1255, 286, 12094, 3141, 481, 307, 10398, 284, 8624, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2896, 13185, 284, 10352, 13, 198, 220, 220, 220, 220, 220, 220, 220, 279, 538, 48170, 357, 30388, 11, 11902, 2599, 10127, 1262, 350, 8905, 642, 1558, 11, 326, 779, 12972, 16302, 13, 39532, 75, 284, 1382, 6082, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 514, 81, 796, 28686, 13, 268, 2268, 13, 1136, 7203, 34551, 8881, 62, 29904, 20608, 4943, 198, 220, 220, 220, 9206, 796, 28686, 13, 268, 2268, 13, 1136, 7203, 34551, 8881, 62, 47924, 54, 12532, 4943, 628, 220, 220, 220, 611, 407, 514, 81, 393, 407, 9206, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 7383, 12331, 7203, 40786, 17365, 410, 945, 17306, 8881, 62, 29904, 20608, 290, 17306, 8881, 62, 47924, 54, 12532, 284, 779, 6061, 19570, 628, 220, 220, 220, 2198, 62, 12048, 62, 271, 62, 15182, 7203, 4246, 500, 1600, 366, 4246, 500, 4943, 628, 220, 220, 220, 9058, 62, 6978, 796, 21965, 23680, 62, 47, 1404, 7998, 13, 15763, 1220, 366, 40406, 13, 9078, 1, 611, 407, 9058, 62, 6978, 2073, 26571, 62, 6978, 7, 40406, 62, 6978, 8, 628, 220, 220, 220, 9058, 62, 15908, 62, 6978, 796, 9058, 62, 6978, 13, 8000, 628, 220, 220, 220, 1233, 62, 6978, 796, 9058, 62, 15908, 62, 6978, 1220, 366, 17080, 1, 198, 220, 220, 220, 1382, 62, 6978, 796, 9058, 62, 15908, 62, 6978, 1220, 366, 11249, 1, 628, 220, 220, 220, 12233, 62, 16624, 7, 17080, 62, 6978, 8, 198, 220, 220, 220, 12233, 62, 16624, 7, 11249, 62, 6978, 8, 628, 220, 220, 220, 611, 279, 538, 48170, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1382, 62, 21812, 796, 277, 1, 90, 47, 56, 4221, 1340, 92, 532, 76, 1382, 1377, 22001, 1377, 82, 17080, 1, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1382, 62, 21812, 796, 277, 1, 90, 47, 56, 4221, 1340, 92, 9058, 13, 9078, 264, 17080, 275, 17080, 62, 22001, 1, 628, 220, 220, 220, 12094, 62, 4598, 62, 21812, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1382, 62, 21812, 11, 198, 220, 220, 220, 220, 220, 220, 220, 269, 16993, 28, 40406, 62, 15908, 62, 6978, 13, 292, 62, 1930, 844, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 15942, 577, 28, 19011, 577, 11, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 62, 25677, 2625, 15580, 21015, 6082, 329, 9485, 38729, 14833, 4054, 13, 9993, 284, 900, 705, 431, 79, 48170, 6, 284, 10352, 33283, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 3141, 796, 277, 1, 4246, 500, 9516, 1233, 15211, 1, 628, 220, 220, 220, 12094, 62, 4598, 62, 21812, 7, 198, 220, 220, 220, 220, 220, 220, 220, 3141, 11, 198, 220, 220, 220, 220, 220, 220, 220, 269, 16993, 28, 40406, 62, 15908, 62, 6978, 13, 292, 62, 1930, 844, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 15942, 577, 28, 19011, 577, 11, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 62, 25677, 2625, 49322, 278, 284, 9485, 38729, 4054, 33283, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 611, 3424, 25, 198, 220, 220, 220, 220, 220, 220, 220, 12233, 62, 16624, 7, 17080, 62, 6978, 8, 198, 220, 220, 220, 220, 220, 220, 220, 12233, 62, 16624, 7, 11249, 62, 6978, 8, 198 ]
2.633902
997
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="dj-sellsy", version="0.1", author="Mathieu Richardoz", author_email="[email protected]", description="A package to facilitate Django-Sellsy integration", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/bureauxlocaux/dj-sellsy", packages=setuptools.find_packages(), classifiers=[ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", ], install_requires=[ 'phpserialize', 'sellsy_api', ], )
[ 11748, 900, 37623, 10141, 198, 198, 4480, 1280, 7203, 15675, 11682, 13, 9132, 1600, 366, 81, 4943, 355, 277, 71, 25, 198, 220, 220, 220, 890, 62, 11213, 796, 277, 71, 13, 961, 3419, 198, 198, 2617, 37623, 10141, 13, 40406, 7, 198, 220, 220, 220, 1438, 2625, 28241, 12, 7255, 1837, 1600, 198, 220, 220, 220, 2196, 2625, 15, 13, 16, 1600, 198, 220, 220, 220, 1772, 2625, 37372, 22304, 6219, 8590, 1600, 198, 220, 220, 220, 1772, 62, 12888, 2625, 11018, 22304, 13, 7527, 446, 8590, 31, 65, 6262, 87, 17946, 14644, 13, 785, 1600, 198, 220, 220, 220, 6764, 2625, 32, 5301, 284, 15570, 37770, 12, 50, 695, 1837, 11812, 1600, 198, 220, 220, 220, 890, 62, 11213, 28, 6511, 62, 11213, 11, 198, 220, 220, 220, 890, 62, 11213, 62, 11299, 62, 4906, 2625, 5239, 14, 4102, 2902, 1600, 198, 220, 220, 220, 19016, 2625, 5450, 1378, 12567, 13, 785, 14, 65, 6262, 87, 17946, 14644, 14, 28241, 12, 7255, 1837, 1600, 198, 220, 220, 220, 10392, 28, 2617, 37623, 10141, 13, 19796, 62, 43789, 22784, 198, 220, 220, 220, 1398, 13350, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 366, 41206, 12678, 7904, 604, 532, 17993, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 31441, 7904, 5313, 9344, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 21055, 6433, 7904, 37770, 1600, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 2721, 62, 47911, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 705, 746, 862, 48499, 1096, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7255, 1837, 62, 15042, 3256, 198, 220, 220, 220, 16589, 198, 198, 8, 198 ]
2.519573
281
""" Faça um programa que mostre na tela todos os números pares entre 1 e 50 """ for i in range(1, 51): if i % 2 == 0: print(i, end=' ') print('FIM')
[ 37811, 198, 50110, 50041, 23781, 1430, 64, 8358, 749, 260, 12385, 256, 10304, 284, 37427, 28686, 299, 21356, 647, 418, 279, 3565, 920, 260, 352, 304, 2026, 198, 37811, 198, 1640, 1312, 287, 2837, 7, 16, 11, 6885, 2599, 198, 220, 220, 220, 611, 1312, 4064, 362, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 72, 11, 886, 11639, 705, 8, 198, 4798, 10786, 37, 3955, 11537, 198 ]
2.205479
73
from PIL import Image import random
[ 6738, 350, 4146, 1330, 7412, 198, 11748, 4738, 628 ]
4.111111
9
#!/usr/bin/env python ''' Oryol texture export functions ''' import sys import os import platform import subprocess import tempfile ProjectDirectory = os.path.dirname(os.path.abspath(__file__)) + '/..' TexSrcDirectory = ProjectDirectory + '/data' TexDstDirectory = ProjectDirectory + '/build/webpage' # NOTE: PVRTexTools supports a lot more formats! PVRFormats = ['PVRTC1_2', 'PVRTC1_4', 'PVRTC1_2_RGB', 'PVRTC1_4_RGB', 'PVRTC2_2', 'PVRTC2_4'] ETCFormats = ['ETC1', 'ETC2'] #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- def configure(projDir, texSrcDir, texDstDir) : ''' Configure the directories of the texture export module ''' global ProjectDirectory global TexSrcDirectory global TexDstDirectory ProjectDirectory = projDir TexSrcDirectory = texSrcDir TexDstDirectory = texDstDir #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- def toDDS(srcFilename, dstFilename, linearGamma, fmt, rgbFmt=None) : ''' Convert a file to DDS format ''' ensureDstDirectory() ddsTool = getToolsBinPath() + 'nvcompress' srcPath = TexSrcDirectory + '/' + srcFilename dstPath = TexDstDirectory + '/' + dstFilename print('=== toDDS: {} => {}:'.format(srcPath, dstPath)) if not needsExport(srcPath, dstPath) : return cmdLine = [ddsTool, '-'+fmt] if rgbFmt != None : cmdLine.append('-rgbfmt') cmdLine.append(rgbFmt) if linearGamma : cmdLine.append('-tolineargamma') cmdLine.append(srcPath) cmdLine.append(dstPath) subprocess.call(args=cmdLine) #------------------------------------------------------------------------------- def toCubeDDS(srcDir, srcExt, dstFilename, linearGamma, fmt, rgbFmt=None) : ''' Generate a cube map and convert to dds. ''' ensureDstDirectory() nvassemble = getToolsBinPath() + 'nvassemble' ddsTool = getToolsBinPath() + 'nvcompress' srcFiles = ['posx', 'negx', 'posy', 'negy', 'posz', 'negz'] dstPath = TexDstDirectory + '/' + dstFilename print('=== toCubeDDS: {}/{}/[posx,negx,posy,negy,posz,negz].{} => {}'.format(TexSrcDirectory, srcDir, srcExt, dstPath)) # call nvassemble to generate an uncompressed cube map... cmdLine = [nvassemble, '-cube'] dirty = False for src in srcFiles : srcPath = TexSrcDirectory + '/' + srcDir + '/' + src + '.' + srcExt dirty |= needsExport(srcPath, dstPath) cmdLine.append(srcPath) if not dirty : return cmdLine.append('-o') cmdLine.append(dstPath) subprocess.call(args=cmdLine) # ...and compress/convert to the desired format cmdLine = [ddsTool, '-'+fmt] if rgbFmt != None : cmdLine.append('-rgbfmt') cmdLine.append(rgbFmt) if linearGamma : cmdLine.append('-tolineargamma') cmdLine.append(dstPath) cmdLine.append(dstPath) subprocess.call(args=cmdLine) #------------------------------------------------------------------------------- def toPVR(srcFilename, dstFilename, format) : ''' Convert a file to PVR format ''' if format not in PVRFormats : error('invalid PVR texture format {}!'.format(format)) ensureDstDirectory() pvrTool = getToolsBinPath() + 'PVRTexToolCLI' srcPath = TexSrcDirectory + '/' + srcFilename dstPath = TexDstDirectory + '/' + dstFilename print('=== toPVR: {} => {}:'.format(srcPath, dstPath)) if not needsExport(srcPath, dstPath) : return cmdLine = [pvrTool, '-i', srcPath, '-o', dstPath, '-square', '+', '-pot', '+', '-m', '-mfilter', 'cubic', '-f', format ] subprocess.call(args=cmdLine) #------------------------------------------------------------------------------- def toCubePVR(srcDir, srcExt, dstFilename, format) : ''' Generate a cube map and convert to PVR ''' if format not in PVRFormats : error('invalid PVR texture format {}!'.format(format)) ensureDstDirectory() pvrTool = getToolsBinPath() + 'PVRTexToolCLI' srcFiles = ['posx', 'negx', 'posy', 'negy', 'posz', 'negz'] dstPath = TexDstDirectory + '/' + dstFilename print('=== toCubePVR: {}/{}/[posx,negx,posy,negy,posz,negz].{} => {}'.format(TexSrcDirectory, srcDir, srcExt, dstPath)) cmdLine = [pvrTool, '-i'] inputFiles = '' dirty = False for src in srcFiles : srcPath = TexSrcDirectory + '/' + srcDir + '/' + src + '.' + srcExt dirty |= needsExport(srcPath, dstPath) inputFiles += srcPath + ',' if not dirty: return inputFiles = inputFiles[:-1] cmdLine.append(inputFiles) cmdLine.append('-o') cmdLine.append(dstPath) cmdLine.append('-cube') cmdLine.append('-m') cmdLine.append('-mfilter') cmdLine.append('cubic') cmdLine.append('-f') cmdLine.append(format) subprocess.call(args=cmdLine) #------------------------------------------------------------------------------- def toETC(srcFilename, dstFilename, format) : ''' Convert a file to ETC2 in a KTX container file. FIXME: alpha channel support ''' if format not in ETCFormats : error('invalid ETC texture format {}!'.format(format)) ensureDstDirectory() tmpFilename, ext = os.path.splitext(dstFilename) tmpFilename += '.ppm' convTool = getToolsBinPath() + 'convert' etcTool = getToolsBinPath() + 'etcpack' srcPath = TexSrcDirectory + '/' + srcFilename dstPath = TexDstDirectory + '/' + dstFilename tmpPath = tempfile.gettempdir() + '/' + tmpFilename print('=== toETC2: {} => {} => {}:'.format(srcPath, tmpPath, dstPath)) if not needsExport(srcPath, dstPath) : return # first convert file to PPM format subprocess.call(args=[convTool, srcPath, tmpPath]) cmd = [etcTool, tmpPath, TexDstDirectory, '-mipmaps', '-ktx', '-c'] if format == 'etc1' : cmd.append('etc1') else : cmd.append('etc2') subprocess.call(args=cmd) os.unlink(tmpPath) #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- if __name__ == '__main__' : print("{}".format(__file__)) exportSampleTextures()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 7061, 6, 198, 46, 563, 349, 11743, 10784, 5499, 198, 7061, 6, 198, 11748, 25064, 198, 11748, 28686, 198, 11748, 3859, 198, 11748, 850, 14681, 198, 11748, 20218, 7753, 198, 198, 16775, 43055, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 418, 13, 6978, 13, 397, 2777, 776, 7, 834, 7753, 834, 4008, 1343, 31051, 492, 6, 198, 17005, 50, 6015, 43055, 796, 4935, 43055, 1343, 31051, 7890, 6, 198, 17005, 35, 301, 43055, 796, 4935, 43055, 1343, 31051, 11249, 14, 12384, 7700, 6, 198, 198, 2, 24550, 25, 350, 13024, 17005, 33637, 6971, 257, 1256, 517, 17519, 0, 198, 47, 13024, 8479, 1381, 796, 37250, 47, 13024, 4825, 16, 62, 17, 3256, 705, 47, 13024, 4825, 16, 62, 19, 3256, 705, 47, 13024, 4825, 16, 62, 17, 62, 36982, 3256, 705, 47, 13024, 4825, 16, 62, 19, 62, 36982, 3256, 705, 47, 13024, 4825, 17, 62, 17, 3256, 705, 47, 13024, 4825, 17, 62, 19, 20520, 198, 2767, 34, 8479, 1381, 796, 37250, 2767, 34, 16, 3256, 705, 2767, 34, 17, 20520, 198, 198, 2, 10097, 24305, 198, 198, 2, 10097, 24305, 198, 4299, 17425, 7, 1676, 73, 35277, 11, 48659, 50, 6015, 35277, 11, 48659, 35, 301, 35277, 8, 1058, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 17056, 495, 262, 29196, 286, 262, 11743, 10784, 8265, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 3298, 4935, 43055, 198, 220, 220, 220, 3298, 3567, 50, 6015, 43055, 198, 220, 220, 220, 3298, 3567, 35, 301, 43055, 198, 220, 220, 220, 4935, 43055, 796, 386, 73, 35277, 198, 220, 220, 220, 3567, 50, 6015, 43055, 796, 48659, 50, 6015, 35277, 198, 220, 220, 220, 3567, 35, 301, 43055, 796, 48659, 35, 301, 35277, 198, 198, 2, 10097, 24305, 198, 198, 2, 10097, 24305, 198, 198, 2, 10097, 24305, 198, 198, 2, 10097, 24305, 198, 4299, 284, 35, 5258, 7, 10677, 35063, 11, 29636, 35063, 11, 14174, 34777, 2611, 11, 46996, 11, 46140, 37, 16762, 28, 14202, 8, 1058, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 38240, 257, 2393, 284, 360, 5258, 5794, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 4155, 35, 301, 43055, 3419, 198, 220, 220, 220, 288, 9310, 25391, 796, 651, 33637, 33, 259, 15235, 3419, 1343, 705, 48005, 5589, 601, 6, 198, 220, 220, 220, 12351, 15235, 796, 3567, 50, 6015, 43055, 1343, 31051, 6, 1343, 12351, 35063, 198, 220, 220, 220, 29636, 15235, 796, 3567, 35, 301, 43055, 1343, 31051, 6, 1343, 29636, 35063, 198, 220, 220, 220, 3601, 10786, 18604, 284, 35, 5258, 25, 23884, 5218, 23884, 25, 4458, 18982, 7, 10677, 15235, 11, 29636, 15235, 4008, 198, 220, 220, 220, 611, 407, 2476, 43834, 7, 10677, 15235, 11, 29636, 15235, 8, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 23991, 13949, 796, 685, 33714, 25391, 11, 705, 19355, 10, 69, 16762, 60, 198, 220, 220, 220, 611, 46140, 37, 16762, 14512, 6045, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 23991, 13949, 13, 33295, 10786, 12, 41345, 19881, 16762, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 23991, 13949, 13, 33295, 7, 81, 22296, 37, 16762, 8, 198, 220, 220, 220, 611, 14174, 34777, 2611, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 23991, 13949, 13, 33295, 10786, 12, 83, 24910, 451, 28483, 2611, 11537, 198, 220, 220, 220, 23991, 13949, 13, 33295, 7, 10677, 15235, 8, 198, 220, 220, 220, 23991, 13949, 13, 33295, 7, 67, 301, 15235, 8, 198, 220, 220, 220, 850, 14681, 13, 13345, 7, 22046, 28, 28758, 13949, 8, 198, 198, 2, 10097, 24305, 198, 4299, 284, 29071, 35, 5258, 7, 10677, 35277, 11, 12351, 11627, 11, 29636, 35063, 11, 14174, 34777, 2611, 11, 46996, 11, 46140, 37, 16762, 28, 14202, 8, 1058, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2980, 378, 257, 23441, 3975, 290, 10385, 284, 288, 9310, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 4155, 35, 301, 43055, 3419, 198, 220, 220, 220, 299, 11017, 15140, 796, 651, 33637, 33, 259, 15235, 3419, 1343, 705, 77, 11017, 15140, 6, 198, 220, 220, 220, 288, 9310, 25391, 796, 651, 33637, 33, 259, 15235, 3419, 1343, 705, 48005, 5589, 601, 6, 198, 220, 220, 220, 12351, 25876, 796, 37250, 1930, 87, 3256, 705, 12480, 87, 3256, 705, 1930, 88, 3256, 705, 710, 1360, 3256, 705, 1930, 89, 3256, 705, 12480, 89, 20520, 198, 220, 220, 220, 29636, 15235, 220, 796, 3567, 35, 301, 43055, 1343, 31051, 6, 1343, 29636, 35063, 628, 220, 220, 220, 3601, 10786, 18604, 284, 29071, 35, 5258, 25, 23884, 14, 90, 92, 14, 58, 1930, 87, 11, 12480, 87, 11, 1930, 88, 11, 710, 1360, 11, 1930, 89, 11, 12480, 89, 4083, 90, 92, 5218, 23884, 4458, 18982, 7, 17005, 50, 6015, 43055, 11, 12351, 35277, 11, 12351, 11627, 11, 29636, 15235, 4008, 628, 220, 220, 220, 1303, 869, 299, 11017, 15140, 284, 7716, 281, 34318, 2790, 23441, 3975, 986, 198, 220, 220, 220, 23991, 13949, 796, 685, 77, 11017, 15140, 11, 705, 12, 40296, 20520, 198, 220, 220, 220, 11841, 796, 10352, 198, 220, 220, 220, 329, 12351, 287, 12351, 25876, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 12351, 15235, 796, 3567, 50, 6015, 43055, 1343, 31051, 6, 1343, 12351, 35277, 1343, 31051, 6, 1343, 12351, 1343, 705, 2637, 1343, 12351, 11627, 198, 220, 220, 220, 220, 220, 220, 220, 11841, 930, 28, 2476, 43834, 7, 10677, 15235, 11, 29636, 15235, 8, 198, 220, 220, 220, 220, 220, 220, 220, 23991, 13949, 13, 33295, 7, 10677, 15235, 8, 198, 220, 220, 220, 611, 407, 11841, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 23991, 13949, 13, 33295, 10786, 12, 78, 11537, 198, 220, 220, 220, 23991, 13949, 13, 33295, 7, 67, 301, 15235, 8, 198, 220, 220, 220, 850, 14681, 13, 13345, 7, 22046, 28, 28758, 13949, 8, 628, 220, 220, 220, 1303, 2644, 392, 27413, 14, 1102, 1851, 284, 262, 10348, 5794, 198, 220, 220, 220, 23991, 13949, 796, 685, 33714, 25391, 11, 705, 19355, 10, 69, 16762, 60, 198, 220, 220, 220, 611, 46140, 37, 16762, 14512, 6045, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 23991, 13949, 13, 33295, 10786, 12, 41345, 19881, 16762, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 23991, 13949, 13, 33295, 7, 81, 22296, 37, 16762, 8, 198, 220, 220, 220, 611, 14174, 34777, 2611, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 23991, 13949, 13, 33295, 10786, 12, 83, 24910, 451, 28483, 2611, 11537, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 23991, 13949, 13, 33295, 7, 67, 301, 15235, 8, 198, 220, 220, 220, 23991, 13949, 13, 33295, 7, 67, 301, 15235, 8, 198, 220, 220, 220, 850, 14681, 13, 13345, 7, 22046, 28, 28758, 13949, 8, 198, 198, 2, 10097, 24305, 198, 4299, 284, 47, 13024, 7, 10677, 35063, 11, 29636, 35063, 11, 5794, 8, 1058, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 38240, 257, 2393, 284, 350, 13024, 5794, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 611, 5794, 407, 287, 350, 13024, 8479, 1381, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 10786, 259, 12102, 350, 13024, 11743, 5794, 23884, 0, 4458, 18982, 7, 18982, 4008, 628, 220, 220, 220, 4155, 35, 301, 43055, 3419, 198, 220, 220, 220, 279, 37020, 25391, 796, 651, 33637, 33, 259, 15235, 3419, 1343, 705, 47, 13024, 17005, 25391, 5097, 40, 6, 198, 220, 220, 220, 12351, 15235, 796, 3567, 50, 6015, 43055, 1343, 31051, 6, 1343, 12351, 35063, 198, 220, 220, 220, 29636, 15235, 796, 3567, 35, 301, 43055, 1343, 31051, 6, 1343, 29636, 35063, 198, 220, 220, 220, 3601, 10786, 18604, 284, 47, 13024, 25, 23884, 5218, 23884, 25, 4458, 18982, 7, 10677, 15235, 11, 29636, 15235, 4008, 198, 220, 220, 220, 611, 407, 2476, 43834, 7, 10677, 15235, 11, 29636, 15235, 8, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 23991, 13949, 796, 685, 79, 37020, 25391, 11, 705, 12, 72, 3256, 12351, 15235, 11, 705, 12, 78, 3256, 29636, 15235, 11, 705, 12, 23415, 3256, 705, 10, 3256, 705, 12, 13059, 3256, 705, 10, 3256, 705, 12, 76, 3256, 705, 12, 76, 24455, 3256, 705, 66, 549, 291, 3256, 705, 12, 69, 3256, 5794, 2361, 198, 220, 220, 220, 850, 14681, 13, 13345, 7, 22046, 28, 28758, 13949, 8, 198, 198, 2, 10097, 24305, 198, 4299, 284, 29071, 47, 13024, 7, 10677, 35277, 11, 12351, 11627, 11, 29636, 35063, 11, 5794, 8, 1058, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2980, 378, 257, 23441, 3975, 290, 10385, 284, 350, 13024, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 611, 5794, 407, 287, 350, 13024, 8479, 1381, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 10786, 259, 12102, 350, 13024, 11743, 5794, 23884, 0, 4458, 18982, 7, 18982, 4008, 628, 220, 220, 220, 4155, 35, 301, 43055, 3419, 198, 220, 220, 220, 279, 37020, 25391, 796, 651, 33637, 33, 259, 15235, 3419, 1343, 705, 47, 13024, 17005, 25391, 5097, 40, 6, 198, 220, 220, 220, 12351, 25876, 796, 37250, 1930, 87, 3256, 705, 12480, 87, 3256, 705, 1930, 88, 3256, 705, 710, 1360, 3256, 705, 1930, 89, 3256, 705, 12480, 89, 20520, 198, 220, 220, 220, 29636, 15235, 220, 796, 3567, 35, 301, 43055, 1343, 31051, 6, 1343, 29636, 35063, 628, 220, 220, 220, 3601, 10786, 18604, 284, 29071, 47, 13024, 25, 23884, 14, 90, 92, 14, 58, 1930, 87, 11, 12480, 87, 11, 1930, 88, 11, 710, 1360, 11, 1930, 89, 11, 12480, 89, 4083, 90, 92, 5218, 23884, 4458, 18982, 7, 17005, 50, 6015, 43055, 11, 12351, 35277, 11, 12351, 11627, 11, 29636, 15235, 4008, 628, 220, 220, 220, 23991, 13949, 796, 685, 79, 37020, 25391, 11, 705, 12, 72, 20520, 198, 220, 220, 220, 5128, 25876, 796, 10148, 198, 220, 220, 220, 11841, 796, 10352, 198, 220, 220, 220, 329, 12351, 287, 12351, 25876, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 12351, 15235, 796, 3567, 50, 6015, 43055, 1343, 31051, 6, 1343, 12351, 35277, 1343, 31051, 6, 1343, 12351, 1343, 705, 2637, 1343, 12351, 11627, 198, 220, 220, 220, 220, 220, 220, 220, 11841, 930, 28, 2476, 43834, 7, 10677, 15235, 11, 29636, 15235, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5128, 25876, 15853, 12351, 15235, 1343, 705, 4032, 198, 220, 220, 220, 611, 407, 11841, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 5128, 25876, 796, 5128, 25876, 58, 21912, 16, 60, 198, 220, 220, 220, 23991, 13949, 13, 33295, 7, 15414, 25876, 8, 198, 220, 220, 220, 23991, 13949, 13, 33295, 10786, 12, 78, 11537, 198, 220, 220, 220, 23991, 13949, 13, 33295, 7, 67, 301, 15235, 8, 198, 220, 220, 220, 23991, 13949, 13, 33295, 10786, 12, 40296, 11537, 198, 220, 220, 220, 23991, 13949, 13, 33295, 10786, 12, 76, 11537, 198, 220, 220, 220, 23991, 13949, 13, 33295, 10786, 12, 76, 24455, 11537, 198, 220, 220, 220, 23991, 13949, 13, 33295, 10786, 66, 549, 291, 11537, 198, 220, 220, 220, 23991, 13949, 13, 33295, 10786, 12, 69, 11537, 198, 220, 220, 220, 23991, 13949, 13, 33295, 7, 18982, 8, 198, 220, 220, 220, 850, 14681, 13, 13345, 7, 22046, 28, 28758, 13949, 8, 198, 198, 2, 10097, 24305, 198, 4299, 284, 2767, 34, 7, 10677, 35063, 11, 29636, 35063, 11, 5794, 8, 1058, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 38240, 257, 2393, 284, 412, 4825, 17, 287, 257, 509, 29551, 9290, 2393, 13, 198, 220, 220, 220, 44855, 11682, 25, 17130, 6518, 1104, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 611, 5794, 407, 287, 412, 4825, 8479, 1381, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 10786, 259, 12102, 412, 4825, 11743, 5794, 23884, 0, 4458, 18982, 7, 18982, 4008, 628, 220, 220, 220, 4155, 35, 301, 43055, 3419, 198, 220, 220, 220, 45218, 35063, 11, 1070, 796, 28686, 13, 6978, 13, 22018, 578, 742, 7, 67, 301, 35063, 8, 198, 220, 220, 220, 45218, 35063, 15853, 45302, 381, 76, 6, 628, 220, 220, 220, 3063, 25391, 796, 651, 33637, 33, 259, 15235, 3419, 1343, 705, 1102, 1851, 6, 198, 220, 220, 220, 3503, 25391, 220, 796, 651, 33637, 33, 259, 15235, 3419, 1343, 705, 14784, 8002, 6, 198, 220, 220, 220, 12351, 15235, 220, 796, 3567, 50, 6015, 43055, 1343, 31051, 6, 1343, 12351, 35063, 198, 220, 220, 220, 29636, 15235, 220, 796, 3567, 35, 301, 43055, 1343, 31051, 6, 1343, 29636, 35063, 198, 220, 220, 220, 45218, 15235, 220, 796, 20218, 7753, 13, 1136, 29510, 15908, 3419, 1343, 31051, 6, 1343, 45218, 35063, 198, 220, 220, 220, 3601, 10786, 18604, 284, 2767, 34, 17, 25, 23884, 5218, 23884, 5218, 23884, 25, 4458, 18982, 7, 10677, 15235, 11, 45218, 15235, 11, 29636, 15235, 4008, 628, 220, 220, 220, 611, 407, 2476, 43834, 7, 10677, 15235, 11, 29636, 15235, 8, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 1303, 717, 10385, 2393, 284, 350, 5868, 5794, 198, 220, 220, 220, 850, 14681, 13, 13345, 7, 22046, 41888, 42946, 25391, 11, 12351, 15235, 11, 45218, 15235, 12962, 198, 220, 220, 220, 23991, 796, 685, 14784, 25391, 11, 45218, 15235, 11, 3567, 35, 301, 43055, 11, 705, 12, 76, 541, 31803, 3256, 705, 12, 74, 17602, 3256, 705, 12, 66, 20520, 198, 220, 220, 220, 611, 5794, 6624, 705, 14784, 16, 6, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 23991, 13, 33295, 10786, 14784, 16, 11537, 198, 220, 220, 220, 2073, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 23991, 13, 33295, 10786, 14784, 17, 11537, 198, 220, 220, 220, 850, 14681, 13, 13345, 7, 22046, 28, 28758, 8, 198, 220, 220, 220, 28686, 13, 403, 8726, 7, 22065, 15235, 8, 198, 198, 2, 10097, 24305, 198, 198, 2, 10097, 24305, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 6, 1058, 198, 220, 220, 220, 3601, 7203, 90, 92, 1911, 18982, 7, 834, 7753, 834, 4008, 198, 220, 220, 220, 10784, 36674, 39860, 3419, 198 ]
2.771008
2,380
from sanic.views import HTTPMethodView from .errors import NotFound
[ 6738, 5336, 291, 13, 33571, 1330, 7154, 51, 5868, 316, 2065, 7680, 198, 198, 6738, 764, 48277, 1330, 1892, 21077, 628 ]
3.333333
21
import matplotlib.pyplot as plt import matplotlib import numpy as np import os import imageio from timeit import timeit from mpl_toolkits import mplot3d from PIL import Image #import png import svd_tools_copy as svdt import image_tools_copy as it #import ../../../david/watermark as watermarktools #sunset = it.load_image('../res/sunset.png') #rainbow = it.load_image('../res/rainbow.png') #view = it.load_image('../res/view.png') view = it.load_image('../res/view.jpg') tree = it.load_image('../res/tree.jpg') plt.rcParams['font.size'] = '18' #EXTRACTION ERROR = NORM(ORIGINAL WATERMARK - EXTRACTED WATERMARK) #1. COMPUTE EMBEDDING AND EXTRACTION #2. COMPUTE NORM(ORIGINAL WATERMARK - EXTRACTED WATERMARK)/NORM(ORIGINAL WATERMARK) #lowrank extraction error #cropping tests
[ 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 2603, 29487, 8019, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28686, 198, 11748, 2939, 952, 198, 6738, 640, 270, 1330, 640, 270, 198, 6738, 285, 489, 62, 25981, 74, 896, 1330, 285, 29487, 18, 67, 198, 6738, 350, 4146, 1330, 7412, 198, 2, 11748, 279, 782, 198, 11748, 264, 20306, 62, 31391, 62, 30073, 355, 264, 20306, 83, 198, 11748, 2939, 62, 31391, 62, 30073, 355, 340, 198, 198, 2, 11748, 11485, 14, 40720, 40720, 67, 8490, 14, 7050, 4102, 355, 1660, 4102, 31391, 198, 198, 2, 19155, 2617, 796, 340, 13, 2220, 62, 9060, 10786, 40720, 411, 14, 19155, 2617, 13, 11134, 11537, 198, 2, 3201, 8176, 796, 340, 13, 2220, 62, 9060, 10786, 40720, 411, 14, 3201, 8176, 13, 11134, 11537, 198, 2, 1177, 796, 340, 13, 2220, 62, 9060, 10786, 40720, 411, 14, 1177, 13, 11134, 11537, 198, 198, 1177, 796, 340, 13, 2220, 62, 9060, 10786, 40720, 411, 14, 1177, 13, 9479, 11537, 198, 21048, 796, 340, 13, 2220, 62, 9060, 10786, 40720, 411, 14, 21048, 13, 9479, 11537, 198, 198, 489, 83, 13, 6015, 10044, 4105, 17816, 10331, 13, 7857, 20520, 796, 705, 1507, 6, 628, 198, 2, 6369, 5446, 44710, 33854, 796, 25273, 44, 7, 1581, 3528, 17961, 370, 23261, 44, 14175, 532, 7788, 5446, 38542, 370, 23261, 44, 14175, 8, 198, 2, 16, 13, 24301, 37780, 412, 10744, 1961, 35, 2751, 5357, 7788, 5446, 44710, 198, 2, 17, 13, 24301, 37780, 25273, 44, 7, 1581, 3528, 17961, 370, 23261, 44, 14175, 532, 7788, 5446, 38542, 370, 23261, 44, 14175, 20679, 35510, 44, 7, 1581, 3528, 17961, 370, 23261, 44, 14175, 8, 628, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 2, 9319, 43027, 22236, 4049, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 628, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 2, 19915, 2105, 5254, 220, 628, 198 ]
2.15566
424
# ----------------------------------------------------------------------------- # # Copyright 2013-2019 lispers.net - Dino Farinacci <[email protected]> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # ----------------------------------------------------------------------------- # # lisp-ms.py # # This file performs LISP Map-Server functionality. # # ----------------------------------------------------------------------------- import lisp import lispconfig import threading import time #------------------------------------------------------------------------------ # # Global variables. # lisp_ipc_listen_socket = None lisp_send_ipv4_socket = None lisp_send_ipv6_socket = None lisp_send_sockets = [None, None, None] lisp_sites_by_name = {} lisp_sites_by_name_sorted = [] lisp_site_timer = None lisp_pubsub_timer = None #------------------------------------------------------------------------------ # # lisp_site_command # # Process the "lisp site" command. # #enddef # # lisp_ms_auth_prefix_command # # Process the "lisp ms-authoritative-prefix" command for the Map-Server. # #enddef # # lisp_ms_map_server_peer_command # # Process the "lisp map-server-peer" command. # #enddef # # lisp_ms_eid_crypto_hash_command # # Process the "lisp eid-crypto-hash" command. # #enddef # # lisp_ms_encryption_keys_command # # Process the "lisp encryption-keys" command. # #enddef # # lisp_ms_show_site_detail_command # # Show LISP site information for a particular EID-prefix.. # #enddef # # lisp_ms_display_ddt_cache # # Display each entry in the lisp_ddt_cache. # #enddef # # lisp_ms_walk_ddt_cache # # Walk the entries in the lisp_ddt_cache(). And then subsequently walk the # entries in lisp_ddt_entry.source_cache(). # #enddef # # lisp_ms_show_ddt_entries # # Walk through the Map-Server's DDT entries and display them before the site # cache. # #enddef # # lisp_ms_show_site_lookup # # Do a Map-Request lookup in the ddt-cache as well as the site cache. Return # results. If not found, return negative prefix. # #enddef # # lisp_display_site_eid_entry # # Print one row for a site-eid entry. # #enddef # # lisp_ms_show_site_command # # Show LISP site information. # #enddef # # Map-Server commands processed by this process. # lisp_ms_commands = { "lisp site" : [lisp_site_command, { "site-name" : [False], "description" : [False], "shutdown" : [False], "authentication-key" : [False], "allowed-prefix" : [], "instance-id" : [True, 0, 0xffffffff], "eid-prefix" : [True], "group-prefix" : [True], "policy-name" : [True], "accept-more-specifics" : [True, "yes", "no"], "force-proxy-reply" : [True, "yes", "no"], "force-nat-proxy-reply" : [True, "yes", "no"], "echo-nonce-capable" : [True, "yes", "no"], "force-ttl" : [True, 0, 0x7fffffff], "pitr-proxy-reply-drop" : [True, "yes", "no"], "proxy-reply-action" : [True, "native-forward", "drop"], "require-signature" : [True, "yes", "no"], "encrypt-json" : [True, "yes", "no"], "allowed-rloc" : [], "address" : [True], "priority" : [True, 0, 255], "weight" : [True, 0, 100] }], "lisp ms-authoritative-prefix" : [lisp_ms_auth_prefix_command, { "instance-id" : [False, 0, 0xffffffff, True], "eid-prefix" : [False], "group-prefix" : [False] }], "lisp map-server-peer" : [lisp_ms_map_server_peer_command, { "peer" : [], "address" : [True], "priority" : [True, 0, 255], "weight" : [True, 0, 100], "prefix" : [], "instance-id" : [True, 0, 0xffffffff, True], "eid-prefix" : [True], "group-prefix" : [True] }], "lisp eid-crypto-hash" : [lisp_ms_eid_crypto_hash_command, { "instance-id" : [True, 0, 0xffffffff], "eid-prefix" : [False] }], "lisp encryption-keys" : [lisp_ms_encryption_keys_command, { "json-key" : [False], "map-register-key" : [False] }], "lisp geo-coordinates" : [lispconfig.lisp_geo_command, { "geo-name" : [False], "geo-tag" : [False] }], "lisp explicit-locator-path" : [lispconfig.lisp_elp_command, { "elp-name" : [False], "elp-node" : [], "address" : [True], "probe" : [True, "yes", "no"], "strict" : [True, "yes", "no"], "eid" : [True, "yes", "no"] }], "lisp replication-list-entry" : [lispconfig.lisp_rle_command, { "rle-name" : [False], "rle-node" : [], "address" : [True], "level" : [True, 0, 255] }], "lisp json" : [lispconfig.lisp_json_command, { "json-name" : [False], "json-string" : [False] }], "show site" : [lisp_ms_show_site_command, { } ] } # # lisp_timeout_site_eid # # Look at elapsed time for a parent site-eid or a child site-eid from an # individual registrations due to merge-semantics. # #enddef # # lisp_timeout_individuals # # Time out the individual entries. # #enddef # # lisp_timeout_sites # # Time out entries that have not registered within their advertised register- # ttl. # #enddef # # lisp_timeout_pubsub # # Time out entries in lisp_pubsub_cache. # #enddef # # lisp_ms_startup # # Intialize this LISP MS process. This function returns a LISP network # listen socket. # #enddef # # lisp_ms_shutdown # # Shutdown process. # #enddef #------------------------------------------------------------------------------ # # Main entry point for process. # if (lisp_ms_startup() == False): lisp.lprint("lisp_ms_startup() failed") lisp.lisp_print_banner("Map-Server abnormal exit") exit(1) #endif while (True): opcode, source, port, packet = \ lisp.lisp_receive(lisp_ipc_listen_socket, True) if (source == ""): break if (opcode == "command"): lispconfig.lisp_process_command(lisp_ipc_listen_socket, opcode, packet, "lisp-ms", [lisp_ms_commands, lisp.lisp_policy_commands]) elif (opcode == "api"): lisp.lisp_process_api("lisp-ms", lisp_ipc_listen_socket, packet) else: lisp.lisp_parse_packet(lisp_send_sockets, packet, source, port) #endif #endwhile lisp_ms_shutdown() lisp.lisp_print_banner("Map-Server normal exit") exit(0) #------------------------------------------------------------------------------
[ 2, 16529, 32501, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 2, 15069, 2211, 12, 23344, 300, 27148, 13, 3262, 532, 39430, 6755, 259, 44456, 1279, 16370, 259, 44456, 31, 14816, 13, 785, 29, 198, 2, 220, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 220, 198, 2, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 220, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 220, 220, 220, 220, 198, 2, 220, 198, 2, 16529, 32501, 198, 2, 198, 2, 300, 8802, 12, 907, 13, 9078, 198, 2, 198, 2, 770, 2393, 17706, 406, 1797, 47, 9347, 12, 10697, 11244, 13, 198, 2, 198, 2, 16529, 32501, 198, 198, 11748, 300, 8802, 198, 11748, 300, 8802, 11250, 198, 11748, 4704, 278, 198, 11748, 640, 198, 198, 2, 10097, 26171, 198, 198, 2, 198, 2, 8060, 9633, 13, 198, 2, 198, 75, 8802, 62, 541, 66, 62, 4868, 268, 62, 44971, 796, 6045, 198, 75, 8802, 62, 21280, 62, 541, 85, 19, 62, 44971, 796, 6045, 198, 75, 8802, 62, 21280, 62, 541, 85, 21, 62, 44971, 796, 6045, 198, 75, 8802, 62, 21280, 62, 82, 11603, 796, 685, 14202, 11, 6045, 11, 6045, 60, 198, 75, 8802, 62, 49315, 62, 1525, 62, 3672, 796, 23884, 198, 75, 8802, 62, 49315, 62, 1525, 62, 3672, 62, 82, 9741, 796, 17635, 198, 75, 8802, 62, 15654, 62, 45016, 796, 6045, 198, 75, 8802, 62, 12984, 7266, 62, 45016, 796, 6045, 198, 198, 2, 10097, 26171, 198, 198, 2, 198, 2, 300, 8802, 62, 15654, 62, 21812, 198, 2, 198, 2, 10854, 262, 366, 75, 8802, 2524, 1, 3141, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 907, 62, 18439, 62, 40290, 62, 21812, 198, 2, 198, 2, 10854, 262, 366, 75, 8802, 13845, 12, 9800, 12464, 12, 40290, 1, 3141, 329, 262, 9347, 12, 10697, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 907, 62, 8899, 62, 15388, 62, 33350, 62, 21812, 198, 2, 198, 2, 10854, 262, 366, 75, 8802, 3975, 12, 15388, 12, 33350, 1, 3141, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 907, 62, 68, 312, 62, 29609, 78, 62, 17831, 62, 21812, 198, 2, 198, 2, 10854, 262, 366, 75, 8802, 304, 312, 12, 29609, 78, 12, 17831, 1, 3141, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 907, 62, 12685, 13168, 62, 13083, 62, 21812, 198, 2, 198, 2, 10854, 262, 366, 75, 8802, 15835, 12, 13083, 1, 3141, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 907, 62, 12860, 62, 15654, 62, 49170, 62, 21812, 198, 2, 198, 2, 5438, 406, 1797, 47, 2524, 1321, 329, 257, 1948, 412, 2389, 12, 40290, 492, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 907, 62, 13812, 62, 1860, 83, 62, 23870, 198, 2, 198, 2, 16531, 1123, 5726, 287, 262, 300, 8802, 62, 1860, 83, 62, 23870, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 907, 62, 11152, 62, 1860, 83, 62, 23870, 198, 2, 198, 2, 6857, 262, 12784, 287, 262, 300, 8802, 62, 1860, 83, 62, 23870, 22446, 843, 788, 12412, 2513, 262, 198, 2, 12784, 287, 300, 8802, 62, 1860, 83, 62, 13000, 13, 10459, 62, 23870, 22446, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 907, 62, 12860, 62, 1860, 83, 62, 298, 1678, 198, 2, 198, 2, 6857, 832, 262, 9347, 12, 10697, 338, 20084, 51, 12784, 290, 3359, 606, 878, 262, 2524, 198, 2, 12940, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 907, 62, 12860, 62, 15654, 62, 5460, 929, 198, 2, 198, 2, 2141, 257, 9347, 12, 18453, 35847, 287, 262, 288, 28664, 12, 23870, 355, 880, 355, 262, 2524, 12940, 13, 8229, 198, 2, 2482, 13, 1002, 407, 1043, 11, 1441, 4633, 21231, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 13812, 62, 15654, 62, 68, 312, 62, 13000, 198, 2, 198, 2, 12578, 530, 5752, 329, 257, 2524, 12, 68, 312, 5726, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 907, 62, 12860, 62, 15654, 62, 21812, 198, 2, 198, 2, 5438, 406, 1797, 47, 2524, 1321, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 9347, 12, 10697, 9729, 13686, 416, 428, 1429, 13, 198, 2, 198, 75, 8802, 62, 907, 62, 9503, 1746, 796, 1391, 198, 220, 220, 220, 366, 75, 8802, 2524, 1, 1058, 685, 75, 8802, 62, 15654, 62, 21812, 11, 1391, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15654, 12, 3672, 1, 1058, 685, 25101, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 11213, 1, 1058, 685, 25101, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 49625, 2902, 1, 1058, 685, 25101, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 41299, 3299, 12, 2539, 1, 1058, 685, 25101, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 40845, 12, 40290, 1, 1058, 685, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 39098, 12, 312, 1, 1058, 685, 17821, 11, 657, 11, 657, 87, 12927, 12927, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 68, 312, 12, 40290, 1, 1058, 685, 17821, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 8094, 12, 40290, 1, 1058, 685, 17821, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 30586, 12, 3672, 1, 1058, 685, 17821, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 13635, 12, 3549, 12, 11423, 82, 1, 1058, 685, 17821, 11, 366, 8505, 1600, 366, 3919, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 3174, 12, 36436, 12, 47768, 1, 1058, 685, 17821, 11, 366, 8505, 1600, 366, 3919, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 3174, 12, 32353, 12, 36436, 12, 47768, 1, 1058, 685, 17821, 11, 366, 8505, 1600, 366, 3919, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 30328, 12, 13159, 344, 12, 11128, 540, 1, 1058, 685, 17821, 11, 366, 8505, 1600, 366, 3919, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 3174, 12, 926, 75, 1, 1058, 685, 17821, 11, 657, 11, 657, 87, 22, 12927, 20972, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15544, 81, 12, 36436, 12, 47768, 12, 14781, 1, 1058, 685, 17821, 11, 366, 8505, 1600, 366, 3919, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 36436, 12, 47768, 12, 2673, 1, 1058, 685, 17821, 11, 366, 30191, 12, 11813, 1600, 366, 14781, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 46115, 12, 12683, 1300, 1, 1058, 685, 17821, 11, 366, 8505, 1600, 366, 3919, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 12685, 6012, 12, 17752, 1, 1058, 685, 17821, 11, 366, 8505, 1600, 366, 3919, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 40845, 12, 81, 17946, 1, 1058, 685, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 21975, 1, 1058, 685, 17821, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 49336, 1, 1058, 685, 17821, 11, 657, 11, 14280, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 6551, 1, 1058, 685, 17821, 11, 657, 11, 1802, 60, 1782, 4357, 628, 220, 220, 220, 366, 75, 8802, 13845, 12, 9800, 12464, 12, 40290, 1, 1058, 685, 75, 8802, 62, 907, 62, 18439, 62, 40290, 62, 21812, 11, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 39098, 12, 312, 1, 1058, 685, 25101, 11, 657, 11, 657, 87, 12927, 12927, 11, 6407, 4357, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 68, 312, 12, 40290, 1, 1058, 685, 25101, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 8094, 12, 40290, 1, 1058, 685, 25101, 60, 220, 1782, 4357, 628, 220, 220, 220, 366, 75, 8802, 3975, 12, 15388, 12, 33350, 1, 1058, 685, 75, 8802, 62, 907, 62, 8899, 62, 15388, 62, 33350, 62, 21812, 11, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 33350, 1, 1058, 685, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 21975, 1, 1058, 685, 17821, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 49336, 1, 1058, 685, 17821, 11, 657, 11, 14280, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 6551, 1, 1058, 685, 17821, 11, 657, 11, 1802, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 40290, 1, 1058, 685, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 39098, 12, 312, 1, 1058, 685, 17821, 11, 657, 11, 657, 87, 12927, 12927, 11, 6407, 4357, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 68, 312, 12, 40290, 1, 1058, 685, 17821, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 8094, 12, 40290, 1, 1058, 685, 17821, 60, 220, 1782, 4357, 628, 220, 220, 220, 366, 75, 8802, 304, 312, 12, 29609, 78, 12, 17831, 1, 1058, 685, 75, 8802, 62, 907, 62, 68, 312, 62, 29609, 78, 62, 17831, 62, 21812, 11, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 39098, 12, 312, 1, 1058, 685, 17821, 11, 657, 11, 657, 87, 12927, 12927, 4357, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 68, 312, 12, 40290, 1, 1058, 685, 25101, 60, 1782, 4357, 628, 220, 220, 220, 366, 75, 8802, 15835, 12, 13083, 1, 1058, 685, 75, 8802, 62, 907, 62, 12685, 13168, 62, 13083, 62, 21812, 11, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 17752, 12, 2539, 1, 1058, 685, 25101, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 8899, 12, 30238, 12, 2539, 1, 1058, 685, 25101, 60, 1782, 4357, 628, 220, 220, 220, 366, 75, 8802, 40087, 12, 37652, 17540, 1, 1058, 685, 75, 8802, 11250, 13, 75, 8802, 62, 469, 78, 62, 21812, 11, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 469, 78, 12, 3672, 1, 1058, 685, 25101, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 469, 78, 12, 12985, 1, 1058, 685, 25101, 60, 1782, 4357, 628, 220, 220, 220, 366, 75, 8802, 7952, 12, 17946, 1352, 12, 6978, 1, 1058, 685, 75, 8802, 11250, 13, 75, 8802, 62, 417, 79, 62, 21812, 11, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 417, 79, 12, 3672, 1, 1058, 685, 25101, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 417, 79, 12, 17440, 1, 1058, 685, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 21975, 1, 1058, 685, 17821, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1676, 1350, 1, 1058, 685, 17821, 11, 366, 8505, 1600, 366, 3919, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 301, 2012, 1, 1058, 685, 17821, 11, 366, 8505, 1600, 366, 3919, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 68, 312, 1, 1058, 685, 17821, 11, 366, 8505, 1600, 366, 3919, 8973, 1782, 4357, 220, 628, 220, 220, 220, 366, 75, 8802, 30330, 12, 4868, 12, 13000, 1, 1058, 685, 75, 8802, 11250, 13, 75, 8802, 62, 81, 293, 62, 21812, 11, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 81, 293, 12, 3672, 1, 1058, 685, 25101, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 81, 293, 12, 17440, 1, 1058, 685, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 21975, 1, 1058, 685, 17821, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 366, 5715, 1, 1058, 685, 17821, 11, 657, 11, 14280, 60, 1782, 4357, 220, 628, 220, 220, 220, 366, 75, 8802, 33918, 1, 1058, 685, 75, 8802, 11250, 13, 75, 8802, 62, 17752, 62, 21812, 11, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 17752, 12, 3672, 1, 1058, 685, 25101, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 366, 17752, 12, 8841, 1, 1058, 685, 25101, 60, 1782, 4357, 628, 220, 220, 220, 366, 12860, 2524, 1, 1058, 685, 75, 8802, 62, 907, 62, 12860, 62, 15654, 62, 21812, 11, 1391, 1782, 2361, 198, 92, 198, 198, 2, 198, 2, 300, 8802, 62, 48678, 62, 15654, 62, 68, 312, 198, 2, 198, 2, 6803, 379, 42118, 640, 329, 257, 2560, 2524, 12, 68, 312, 393, 257, 1200, 2524, 12, 68, 312, 422, 281, 198, 2, 1981, 47997, 2233, 284, 20121, 12, 43616, 29320, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 48678, 62, 43129, 82, 198, 2, 198, 2, 3862, 503, 262, 1981, 12784, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 48678, 62, 49315, 198, 2, 198, 2, 3862, 503, 12784, 326, 423, 407, 6823, 1626, 511, 23944, 7881, 12, 198, 2, 256, 28781, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 48678, 62, 12984, 7266, 198, 2, 198, 2, 3862, 503, 12784, 287, 300, 8802, 62, 12984, 7266, 62, 23870, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 907, 62, 9688, 929, 198, 2, 198, 2, 2558, 498, 1096, 428, 406, 1797, 47, 6579, 1429, 13, 770, 2163, 5860, 257, 406, 1797, 47, 3127, 198, 2, 6004, 17802, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 198, 2, 300, 8802, 62, 907, 62, 49625, 2902, 198, 2, 198, 2, 40411, 1429, 13, 198, 2, 198, 2, 437, 4299, 198, 198, 2, 10097, 26171, 198, 198, 2, 198, 2, 8774, 5726, 966, 329, 1429, 13, 198, 2, 198, 361, 357, 75, 8802, 62, 907, 62, 9688, 929, 3419, 6624, 10352, 2599, 198, 220, 220, 220, 300, 8802, 13, 75, 4798, 7203, 75, 8802, 62, 907, 62, 9688, 929, 3419, 4054, 4943, 198, 220, 220, 220, 300, 8802, 13, 75, 8802, 62, 4798, 62, 3820, 1008, 7203, 13912, 12, 10697, 18801, 8420, 4943, 198, 220, 220, 220, 8420, 7, 16, 8, 198, 2, 32088, 198, 198, 4514, 357, 17821, 2599, 198, 220, 220, 220, 1034, 8189, 11, 2723, 11, 2493, 11, 19638, 796, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 300, 8802, 13, 75, 8802, 62, 260, 15164, 7, 75, 8802, 62, 541, 66, 62, 4868, 268, 62, 44971, 11, 6407, 8, 198, 220, 220, 220, 611, 357, 10459, 6624, 13538, 2599, 2270, 628, 220, 220, 220, 611, 357, 404, 8189, 6624, 366, 21812, 1, 2599, 220, 198, 220, 220, 220, 220, 220, 220, 220, 300, 8802, 11250, 13, 75, 8802, 62, 14681, 62, 21812, 7, 75, 8802, 62, 541, 66, 62, 4868, 268, 62, 44971, 11, 1034, 8189, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19638, 11, 366, 75, 8802, 12, 907, 1600, 685, 75, 8802, 62, 907, 62, 9503, 1746, 11, 300, 8802, 13, 75, 8802, 62, 30586, 62, 9503, 1746, 12962, 198, 220, 220, 220, 1288, 361, 357, 404, 8189, 6624, 366, 15042, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 300, 8802, 13, 75, 8802, 62, 14681, 62, 15042, 7203, 75, 8802, 12, 907, 1600, 300, 8802, 62, 541, 66, 62, 4868, 268, 62, 44971, 11, 19638, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 300, 8802, 13, 75, 8802, 62, 29572, 62, 8002, 316, 7, 75, 8802, 62, 21280, 62, 82, 11603, 11, 19638, 11, 2723, 11, 2493, 8, 198, 220, 220, 220, 1303, 32088, 198, 2, 437, 4514, 198, 198, 75, 8802, 62, 907, 62, 49625, 2902, 3419, 198, 75, 8802, 13, 75, 8802, 62, 4798, 62, 3820, 1008, 7203, 13912, 12, 10697, 3487, 8420, 4943, 198, 37023, 7, 15, 8, 198, 198, 2, 10097, 26171, 198 ]
2.456746
2,809
import pandas as pd import matplotlib.pyplot as plt import numpy as np import time import math from sklearn.model_selection import train_test_split from sklearn.impute import SimpleImputer from sklearn.compose import ColumnTransformer from sklearn.preprocessing import LabelEncoder, OneHotEncoder, StandardScaler from sklearn.metrics import mean_squared_error from sklearn.metrics import r2_score from sklearn.metrics import f1_score from sklearn.metrics import confusion_matrix from sklearn.tree import DecisionTreeRegressor from sklearn.linear_model import LinearRegression from sklearn.preprocessing import PolynomialFeatures from sklearn.ensemble import RandomForestRegressor from sklearn.svm import SVR from sklearn.neighbors import KNeighborsClassifier from sklearn.tree import DecisionTreeClassifier from sklearn.linear_model import LogisticRegression from sklearn.naive_bayes import GaussianNB from sklearn.ensemble import RandomForestClassifier from sklearn.svm import SVC from joblib import dump, load def get_best_regressor(data): """ :param data: a pandas data frame with the last column being the dependent variable :return: The best model for the data """ # TODO: Perform backwards elimination for the best model # Identify data dimensions n_inputs = len(data.iloc[0, :].values) - 1 sample_size = len(data.iloc[:, 0].values) regressors = [LinearRegression(), MyPolynomialRegressor(degree=5), SVR(kernel="rbf"), DecisionTreeRegressor(random_state=42), RandomForestRegressor(n_estimators=20, random_state=42)] best_model = None best_mse = 10000 print(data) X = data.iloc[:, 0:n_inputs].values print(X) y = data.iloc[:, n_inputs].values # Feature scaling sc_x = StandardScaler() sc_y = StandardScaler() X = sc_x.fit_transform(X) y = sc_y.fit_transform(np.reshape(y, (-1, 1))) y = y.ravel() # Run each model for regressor in regressors: # initialize total mse # TODO: maybe add vmse variance of mse or use adjusted r2 mmse_train = 0 mmse_test = 0 n_repeats = 50 # number of times the model is trained on different training and test sets test_size = 0.2 # proportion of the data that will be part of test set # Run each model with a new random state for i in range(n_repeats): X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=test_size) regressor.fit(X_train, y_train) mse_train = mean_squared_error(y_train, regressor.predict(X_train)) mse_test = mean_squared_error(y_test, regressor.predict(X_test)) mmse_train += mse_train mmse_test += mse_test mmse_train = mmse_train / n_repeats mmse_test = mmse_test / n_repeats print(mmse_train) print(mmse_test) print("-----------") mse = test_size * mmse_test + (1 - test_size) * mmse_train print("Done training, now testing to see if its better") # If the model is not over fitted and it has a better mse #if (mmse_train < 1.1 * mmse_test) and mse < best_mse: # TODO: Check this if statement if mse < best_mse: best_mse = mse # To get the best possible version, we must train it on all the data we have regressor.fit(X, y) best_model = regressor print(best_mse) print(mean_squared_error(y, regressor.predict(X))) plt.scatter(X[:, -1], y, color="red") plt.plot(X[:, -1], regressor.predict(X), color="blue") plt.xlabel("Level") plt.ylabel("Salary") plt.title("HI") plt.show() return best_model def get_best_classifier(data): """ :param data: a pandas data frame with the last column being the dependent variable :return: The best model for the data """ # TODO: Perform backwards elimination for the best model # Identify data dimensions n_inputs = len(data.iloc[0, :].values) - 1 sample_size = len(data.iloc[:, 0].values) classifiers = [#KNeighborsClassifier(n_neighbors=5, metric="minkowski", p=2), DecisionTreeClassifier(criterion="entropy", random_state=42), LogisticRegression(random_state=0), GaussianNB(), RandomForestClassifier(n_estimators=20, max_leaf_nodes=10, criterion="entropy", random_state=42), #SVC(kernel="rbf", random_state=0, C=100) ] best_model = None best_f1 = 0 print(data) X = data.iloc[:, 0:n_inputs].values print(X) y = np.asarray(data.iloc[:, n_inputs].values, dtype=np.int) # Feature scaling sc_x = StandardScaler() X = sc_x.fit_transform(X) # Run each model for classifier in classifiers: # initialize total mse # TODO: maybe add vmse variance of mse or use adjusted r2 mf1_train = 0 mf1_test = 0 n_repeats = 50 # number of times the model is trained on different training and test sets test_size = 0.2 # proportion of the data that will be part of test set # Run each model with a new random state for i in range(n_repeats): X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=test_size) classifier.fit(X_train, y_train) f1_train = f1_score(y_train, classifier.predict(X_train)) f1_test = f1_score(y_test, classifier.predict(X_test)) mf1_train += f1_train mf1_test += f1_test mf1_train = mf1_train / n_repeats mf1_test = mf1_test / n_repeats print(mf1_train) print(mf1_test) f1 = test_size * mf1_test + (1 - test_size) * mf1_train print("Done training, now testing to see if its better") print("-----------") # If the model is not over fitted and it has a better mse # if (mmse_train < 1.1 * mmse_test) and mse < best_mse: # TODO: Check this if statement if f1 > best_f1: best_f1 = f1 # To get the best possible version, we must train it on all the data we have classifier.fit(X, y) best_model = classifier print(best_f1) print(f1_score(y, classifier.predict(X))) print(confusion_matrix(y, classifier.predict(X))) dump(X, "X.joblib") dump(y, "y.joblib") return best_model def impute(data): """ :param data: The pandas DataFrame to impute (only numbers allowed) :return: the imputed dataframe with the average in place of empty cells """ # sklearn deletes the columns so we have to put them back later colun_names = data.columns imputer = SimpleImputer(missing_values=np.nan, strategy="mean") imputer = imputer.fit(data.iloc[:, :]) data = imputer.transform(data) data = pd.DataFrame(data, columns=colun_names) return data def encode_one_hot(data): """ :param data: The pandas DataFrame to perform the one hot encoding :return: The original data but all text fields are replaced by one hot values """ data = pd.DataFrame(data) columns = [] # a list of column names new_columns = pd.DataFrame() for i, item in enumerate(data.iloc[0, :].values): if type(item) == str: columns.append(data.columns[i]) new_column = pd.get_dummies(data.iloc[:, i], drop_first=True, dtype=np.float) new_columns = pd.concat([new_columns.reset_index(drop=True), new_column.reset_index(drop=True)], axis=1) data = data.drop(columns, axis=1) data = pd.concat([new_columns.reset_index(drop=True), data.reset_index(drop=True)], axis=1) return pd.DataFrame(data) def encode_labels(data): """ :param data: The pandas DataFrame to perform the label encoding :return: The original dataFrame but text fields are replaced by their integer values It also returns an array of columns with 1 if the column is a category and 0 otherwise """ column_categories = [] data = pd.DataFrame(data) for i, item in enumerate(data.iloc[0, :].values): if type(item) == str: column_categories.append(1) data[data.columns[i]] = LabelEncoder().fit_transform(data[data.columns[i]]) else: column_categories.append(0) return data#, column_categories def get_best_model_dependent(data, n_outputs, output_types): """ Calculates the best model for each output where the next output has all of the previous outputs as input too :param output_types: An array of 1s or 0s. 0 if regression problem and 1 if classification problem :param data: The pandas DataFrame to perform the modelling :param n_outputs: The number of dependent variables to model :return: An array of the best model for each output """ n_inputs = len(data.iloc[0, :]) - n_outputs # For each output, find the best model from the previous models = [] for i in range(n_outputs): # Separate dependent and independent variables for preprocessing # This stuff could go outside the for loop but as outputs become inputs, they get encoded differently X = data.iloc[:, 0:n_inputs + i] y = data.iloc[:, n_inputs + i] X = encode_one_hot(X) y = encode_labels(y) category = output_types[i] X = impute(X) y = impute(y) # Join them pack together current_data = pd.concat([X.reset_index(drop=True), y.reset_index(drop=True)], axis=1) if category == 0: models.append(get_best_regressor(current_data)) else: models.append(get_best_classifier(current_data)) return models def get_best_model_independent(data, n_outputs, output_types): """ Calculates the best model for each output given the inputs where none of the outputs influence each other :param output_types: An array of 1s or 0s. 0 if regression problem and 1 if classification problem :param data: The pandas DataFrame to perform the modelling :param n_outputs: The number of dependent variables to model :return: An array of the best model for each output """ n_inputs = len(data.iloc[0, :]) - n_outputs # Separate dependent and independent variables for preprocessing X = data.iloc[:, 0:n_inputs] Y = data.iloc[:, n_inputs:] X = encode_one_hot(X) Y = encode_labels(Y) X = impute(X) Y = impute(Y) # For each output, find the best model from the previous models = [] for i in range(n_outputs): current_data = pd.concat([X.reset_index(drop=True), Y[Y.columns[i]].reset_index(drop=True)], axis=1) if output_types[i] == 0: models.append(get_best_regressor(current_data)) else: models.append(get_best_classifier(current_data)) return models if __name__ == "__main__": start_time = time.time() dataset = pd.read_csv("Churn_Modelling.csv") dataset = dataset.iloc[:, 3:] models = get_best_model_dependent(dataset, 1, [1]) dump(models, "Models.joblib") print(models) end_time = time.time() print("Time taken:", end_time - start_time) # models = load("Models.joblib") # X = load("X.joblib") # y = load("y.joblib") # print(models[0]) # print(X) # print(y) # # print(f1_score(y,models[0].predict(X))) # cm = confusion_matrix(y,models[0].predict(X)) # print(cm) # print((cm[0][0]+cm[1][1])/10000)
[ 11748, 19798, 292, 355, 279, 67, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 640, 198, 11748, 10688, 198, 198, 6738, 1341, 35720, 13, 19849, 62, 49283, 1330, 4512, 62, 9288, 62, 35312, 198, 6738, 1341, 35720, 13, 11011, 1133, 1330, 17427, 3546, 10549, 198, 6738, 1341, 35720, 13, 785, 3455, 1330, 29201, 8291, 16354, 198, 6738, 1341, 35720, 13, 3866, 36948, 1330, 36052, 27195, 12342, 11, 1881, 21352, 27195, 12342, 11, 8997, 3351, 36213, 198, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 1612, 62, 16485, 1144, 62, 18224, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 374, 17, 62, 26675, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 277, 16, 62, 26675, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 10802, 62, 6759, 8609, 198, 198, 6738, 1341, 35720, 13, 21048, 1330, 26423, 27660, 8081, 44292, 198, 6738, 1341, 35720, 13, 29127, 62, 19849, 1330, 44800, 8081, 2234, 198, 6738, 1341, 35720, 13, 3866, 36948, 1330, 12280, 26601, 498, 23595, 198, 6738, 1341, 35720, 13, 1072, 11306, 1330, 14534, 34605, 8081, 44292, 198, 6738, 1341, 35720, 13, 82, 14761, 1330, 311, 13024, 198, 6738, 1341, 35720, 13, 710, 394, 32289, 1330, 509, 46445, 32289, 9487, 7483, 198, 6738, 1341, 35720, 13, 21048, 1330, 26423, 27660, 9487, 7483, 198, 6738, 1341, 35720, 13, 29127, 62, 19849, 1330, 5972, 2569, 8081, 2234, 198, 6738, 1341, 35720, 13, 2616, 425, 62, 24406, 274, 1330, 12822, 31562, 32819, 198, 6738, 1341, 35720, 13, 1072, 11306, 1330, 14534, 34605, 9487, 7483, 198, 6738, 1341, 35720, 13, 82, 14761, 1330, 311, 15922, 198, 198, 6738, 1693, 8019, 1330, 10285, 11, 3440, 628, 198, 198, 4299, 651, 62, 13466, 62, 2301, 44292, 7, 7890, 2599, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1058, 17143, 1366, 25, 257, 19798, 292, 1366, 5739, 351, 262, 938, 5721, 852, 262, 10795, 7885, 198, 220, 220, 220, 1058, 7783, 25, 383, 1266, 2746, 329, 262, 1366, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 16926, 46, 25, 35006, 16196, 21472, 329, 262, 1266, 2746, 628, 220, 220, 220, 1303, 11440, 1958, 1366, 15225, 198, 220, 220, 220, 299, 62, 15414, 82, 796, 18896, 7, 7890, 13, 346, 420, 58, 15, 11, 1058, 4083, 27160, 8, 532, 352, 198, 220, 220, 220, 6291, 62, 7857, 796, 18896, 7, 7890, 13, 346, 420, 58, 45299, 657, 4083, 27160, 8, 628, 220, 220, 220, 50252, 669, 796, 685, 14993, 451, 8081, 2234, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2011, 34220, 26601, 498, 8081, 44292, 7, 16863, 28, 20, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 311, 13024, 7, 33885, 2625, 81, 19881, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26423, 27660, 8081, 44292, 7, 25120, 62, 5219, 28, 3682, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14534, 34605, 8081, 44292, 7, 77, 62, 395, 320, 2024, 28, 1238, 11, 4738, 62, 5219, 28, 3682, 15437, 628, 220, 220, 220, 1266, 62, 19849, 796, 6045, 198, 220, 220, 220, 1266, 62, 76, 325, 796, 33028, 198, 220, 220, 220, 3601, 7, 7890, 8, 628, 220, 220, 220, 1395, 796, 1366, 13, 346, 420, 58, 45299, 657, 25, 77, 62, 15414, 82, 4083, 27160, 198, 220, 220, 220, 3601, 7, 55, 8, 198, 220, 220, 220, 331, 796, 1366, 13, 346, 420, 58, 45299, 299, 62, 15414, 82, 4083, 27160, 628, 220, 220, 220, 1303, 27018, 20796, 198, 220, 220, 220, 629, 62, 87, 796, 8997, 3351, 36213, 3419, 198, 220, 220, 220, 629, 62, 88, 796, 8997, 3351, 36213, 3419, 198, 220, 220, 220, 1395, 796, 629, 62, 87, 13, 11147, 62, 35636, 7, 55, 8, 198, 220, 220, 220, 331, 796, 629, 62, 88, 13, 11147, 62, 35636, 7, 37659, 13, 3447, 1758, 7, 88, 11, 13841, 16, 11, 352, 22305, 198, 220, 220, 220, 331, 796, 331, 13, 25843, 3419, 628, 220, 220, 220, 1303, 5660, 1123, 2746, 198, 220, 220, 220, 329, 842, 44292, 287, 50252, 669, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 41216, 2472, 285, 325, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 16926, 46, 25, 3863, 751, 45887, 325, 24198, 286, 285, 325, 393, 779, 12328, 374, 17, 198, 220, 220, 220, 220, 220, 220, 220, 8085, 325, 62, 27432, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 8085, 325, 62, 9288, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 299, 62, 45956, 1381, 796, 2026, 220, 1303, 1271, 286, 1661, 262, 2746, 318, 8776, 319, 1180, 3047, 290, 1332, 5621, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 7857, 796, 657, 13, 17, 220, 1303, 9823, 286, 262, 1366, 326, 481, 307, 636, 286, 1332, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5660, 1123, 2746, 351, 257, 649, 4738, 1181, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 77, 62, 45956, 1381, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1395, 62, 27432, 11, 1395, 62, 9288, 11, 331, 62, 27432, 11, 331, 62, 9288, 796, 4512, 62, 9288, 62, 35312, 7, 55, 11, 331, 11, 1332, 62, 7857, 28, 9288, 62, 7857, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 842, 44292, 13, 11147, 7, 55, 62, 27432, 11, 331, 62, 27432, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 325, 62, 27432, 796, 1612, 62, 16485, 1144, 62, 18224, 7, 88, 62, 27432, 11, 842, 44292, 13, 79, 17407, 7, 55, 62, 27432, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 325, 62, 9288, 796, 1612, 62, 16485, 1144, 62, 18224, 7, 88, 62, 9288, 11, 842, 44292, 13, 79, 17407, 7, 55, 62, 9288, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8085, 325, 62, 27432, 15853, 285, 325, 62, 27432, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8085, 325, 62, 9288, 15853, 285, 325, 62, 9288, 628, 220, 220, 220, 220, 220, 220, 220, 8085, 325, 62, 27432, 796, 8085, 325, 62, 27432, 1220, 299, 62, 45956, 1381, 198, 220, 220, 220, 220, 220, 220, 220, 8085, 325, 62, 9288, 796, 8085, 325, 62, 9288, 1220, 299, 62, 45956, 1381, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 3020, 325, 62, 27432, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 3020, 325, 62, 9288, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 32284, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 285, 325, 796, 1332, 62, 7857, 1635, 8085, 325, 62, 9288, 1343, 357, 16, 532, 1332, 62, 7857, 8, 1635, 8085, 325, 62, 27432, 628, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 45677, 3047, 11, 783, 4856, 284, 766, 611, 663, 1365, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 262, 2746, 318, 407, 625, 18235, 290, 340, 468, 257, 1365, 285, 325, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 361, 357, 3020, 325, 62, 27432, 1279, 352, 13, 16, 1635, 8085, 325, 62, 9288, 8, 290, 285, 325, 1279, 1266, 62, 76, 325, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 16926, 46, 25, 6822, 428, 611, 2643, 198, 220, 220, 220, 220, 220, 220, 220, 611, 285, 325, 1279, 1266, 62, 76, 325, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 76, 325, 796, 285, 325, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1675, 651, 262, 1266, 1744, 2196, 11, 356, 1276, 4512, 340, 319, 477, 262, 1366, 356, 423, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 842, 44292, 13, 11147, 7, 55, 11, 331, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 19849, 796, 842, 44292, 198, 220, 220, 220, 3601, 7, 13466, 62, 76, 325, 8, 198, 220, 220, 220, 3601, 7, 32604, 62, 16485, 1144, 62, 18224, 7, 88, 11, 842, 44292, 13, 79, 17407, 7, 55, 22305, 628, 220, 220, 220, 458, 83, 13, 1416, 1436, 7, 55, 58, 45299, 532, 16, 4357, 331, 11, 3124, 2625, 445, 4943, 198, 220, 220, 220, 458, 83, 13, 29487, 7, 55, 58, 45299, 532, 16, 4357, 842, 44292, 13, 79, 17407, 7, 55, 828, 3124, 2625, 17585, 4943, 198, 220, 220, 220, 458, 83, 13, 87, 18242, 7203, 4971, 4943, 198, 220, 220, 220, 458, 83, 13, 2645, 9608, 7203, 19221, 560, 4943, 198, 220, 220, 220, 458, 83, 13, 7839, 7203, 25374, 4943, 198, 220, 220, 220, 458, 83, 13, 12860, 3419, 628, 220, 220, 220, 1441, 1266, 62, 19849, 628, 198, 4299, 651, 62, 13466, 62, 4871, 7483, 7, 7890, 2599, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1366, 25, 257, 19798, 292, 1366, 5739, 351, 262, 938, 5721, 852, 262, 10795, 7885, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 383, 1266, 2746, 329, 262, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 16926, 46, 25, 35006, 16196, 21472, 329, 262, 1266, 2746, 628, 220, 220, 220, 1303, 11440, 1958, 1366, 15225, 198, 220, 220, 220, 299, 62, 15414, 82, 796, 18896, 7, 7890, 13, 346, 420, 58, 15, 11, 1058, 4083, 27160, 8, 532, 352, 198, 220, 220, 220, 6291, 62, 7857, 796, 18896, 7, 7890, 13, 346, 420, 58, 45299, 657, 4083, 27160, 8, 628, 220, 220, 220, 1398, 13350, 796, 685, 2, 42, 46445, 32289, 9487, 7483, 7, 77, 62, 710, 394, 32289, 28, 20, 11, 18663, 2625, 76, 676, 12079, 1600, 279, 28, 17, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26423, 27660, 9487, 7483, 7, 22213, 28019, 2625, 298, 28338, 1600, 4738, 62, 5219, 28, 3682, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5972, 2569, 8081, 2234, 7, 25120, 62, 5219, 28, 15, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12822, 31562, 32819, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14534, 34605, 9487, 7483, 7, 77, 62, 395, 320, 2024, 28, 1238, 11, 3509, 62, 33201, 62, 77, 4147, 28, 940, 11, 34054, 2625, 298, 28338, 1600, 4738, 62, 5219, 28, 3682, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 50, 15922, 7, 33885, 2625, 81, 19881, 1600, 4738, 62, 5219, 28, 15, 11, 327, 28, 3064, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2361, 628, 220, 220, 220, 1266, 62, 19849, 796, 6045, 198, 220, 220, 220, 1266, 62, 69, 16, 796, 657, 198, 220, 220, 220, 3601, 7, 7890, 8, 628, 220, 220, 220, 1395, 796, 1366, 13, 346, 420, 58, 45299, 657, 25, 77, 62, 15414, 82, 4083, 27160, 198, 220, 220, 220, 3601, 7, 55, 8, 198, 220, 220, 220, 331, 796, 45941, 13, 292, 18747, 7, 7890, 13, 346, 420, 58, 45299, 299, 62, 15414, 82, 4083, 27160, 11, 288, 4906, 28, 37659, 13, 600, 8, 628, 220, 220, 220, 1303, 27018, 20796, 198, 220, 220, 220, 629, 62, 87, 796, 8997, 3351, 36213, 3419, 198, 220, 220, 220, 1395, 796, 629, 62, 87, 13, 11147, 62, 35636, 7, 55, 8, 628, 220, 220, 220, 1303, 5660, 1123, 2746, 198, 220, 220, 220, 329, 1398, 7483, 287, 1398, 13350, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 41216, 2472, 285, 325, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 16926, 46, 25, 3863, 751, 45887, 325, 24198, 286, 285, 325, 393, 779, 12328, 374, 17, 198, 220, 220, 220, 220, 220, 220, 220, 285, 69, 16, 62, 27432, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 285, 69, 16, 62, 9288, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 299, 62, 45956, 1381, 796, 2026, 220, 1303, 1271, 286, 1661, 262, 2746, 318, 8776, 319, 1180, 3047, 290, 1332, 5621, 198, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 7857, 796, 657, 13, 17, 220, 1303, 9823, 286, 262, 1366, 326, 481, 307, 636, 286, 1332, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5660, 1123, 2746, 351, 257, 649, 4738, 1181, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 77, 62, 45956, 1381, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1395, 62, 27432, 11, 1395, 62, 9288, 11, 331, 62, 27432, 11, 331, 62, 9288, 796, 4512, 62, 9288, 62, 35312, 7, 55, 11, 331, 11, 1332, 62, 7857, 28, 9288, 62, 7857, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1398, 7483, 13, 11147, 7, 55, 62, 27432, 11, 331, 62, 27432, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 16, 62, 27432, 796, 277, 16, 62, 26675, 7, 88, 62, 27432, 11, 1398, 7483, 13, 79, 17407, 7, 55, 62, 27432, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 16, 62, 9288, 796, 277, 16, 62, 26675, 7, 88, 62, 9288, 11, 1398, 7483, 13, 79, 17407, 7, 55, 62, 9288, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 69, 16, 62, 27432, 15853, 277, 16, 62, 27432, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 69, 16, 62, 9288, 15853, 277, 16, 62, 9288, 628, 220, 220, 220, 220, 220, 220, 220, 285, 69, 16, 62, 27432, 796, 285, 69, 16, 62, 27432, 1220, 299, 62, 45956, 1381, 198, 220, 220, 220, 220, 220, 220, 220, 285, 69, 16, 62, 9288, 796, 285, 69, 16, 62, 9288, 1220, 299, 62, 45956, 1381, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 76, 69, 16, 62, 27432, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 76, 69, 16, 62, 9288, 8, 628, 220, 220, 220, 220, 220, 220, 220, 277, 16, 796, 1332, 62, 7857, 1635, 285, 69, 16, 62, 9288, 1343, 357, 16, 532, 1332, 62, 7857, 8, 1635, 285, 69, 16, 62, 27432, 628, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 45677, 3047, 11, 783, 4856, 284, 766, 611, 663, 1365, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 32284, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 262, 2746, 318, 407, 625, 18235, 290, 340, 468, 257, 1365, 285, 325, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 357, 3020, 325, 62, 27432, 1279, 352, 13, 16, 1635, 8085, 325, 62, 9288, 8, 290, 285, 325, 1279, 1266, 62, 76, 325, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 16926, 46, 25, 6822, 428, 611, 2643, 198, 220, 220, 220, 220, 220, 220, 220, 611, 277, 16, 1875, 1266, 62, 69, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 69, 16, 796, 277, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1675, 651, 262, 1266, 1744, 2196, 11, 356, 1276, 4512, 340, 319, 477, 262, 1366, 356, 423, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1398, 7483, 13, 11147, 7, 55, 11, 331, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1266, 62, 19849, 796, 1398, 7483, 198, 220, 220, 220, 3601, 7, 13466, 62, 69, 16, 8, 198, 220, 220, 220, 3601, 7, 69, 16, 62, 26675, 7, 88, 11, 1398, 7483, 13, 79, 17407, 7, 55, 22305, 198, 220, 220, 220, 3601, 7, 10414, 4241, 62, 6759, 8609, 7, 88, 11, 1398, 7483, 13, 79, 17407, 7, 55, 22305, 628, 220, 220, 220, 10285, 7, 55, 11, 366, 55, 13, 21858, 8019, 4943, 198, 220, 220, 220, 10285, 7, 88, 11, 366, 88, 13, 21858, 8019, 4943, 628, 220, 220, 220, 1441, 1266, 62, 19849, 628, 198, 4299, 848, 1133, 7, 7890, 2599, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1058, 17143, 1366, 25, 383, 19798, 292, 6060, 19778, 284, 848, 1133, 357, 8807, 3146, 3142, 8, 198, 220, 220, 220, 1058, 7783, 25, 262, 848, 7241, 1366, 14535, 351, 262, 2811, 287, 1295, 286, 6565, 4778, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 1341, 35720, 28128, 274, 262, 15180, 523, 356, 423, 284, 1234, 606, 736, 1568, 198, 220, 220, 220, 951, 403, 62, 14933, 796, 1366, 13, 28665, 82, 198, 220, 220, 220, 848, 11894, 796, 17427, 3546, 10549, 7, 45688, 62, 27160, 28, 37659, 13, 12647, 11, 4811, 2625, 32604, 4943, 198, 220, 220, 220, 848, 11894, 796, 848, 11894, 13, 11147, 7, 7890, 13, 346, 420, 58, 45299, 1058, 12962, 198, 220, 220, 220, 1366, 796, 848, 11894, 13, 35636, 7, 7890, 8, 198, 220, 220, 220, 1366, 796, 279, 67, 13, 6601, 19778, 7, 7890, 11, 15180, 28, 4033, 403, 62, 14933, 8, 198, 220, 220, 220, 1441, 1366, 628, 198, 4299, 37773, 62, 505, 62, 8940, 7, 7890, 2599, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1058, 17143, 1366, 25, 383, 19798, 292, 6060, 19778, 284, 1620, 262, 530, 3024, 21004, 198, 220, 220, 220, 1058, 7783, 25, 383, 2656, 1366, 475, 477, 2420, 7032, 389, 6928, 416, 530, 3024, 3815, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1366, 796, 279, 67, 13, 6601, 19778, 7, 7890, 8, 198, 220, 220, 220, 15180, 796, 17635, 220, 1303, 257, 1351, 286, 5721, 3891, 198, 220, 220, 220, 649, 62, 28665, 82, 796, 279, 67, 13, 6601, 19778, 3419, 628, 220, 220, 220, 329, 1312, 11, 2378, 287, 27056, 378, 7, 7890, 13, 346, 420, 58, 15, 11, 1058, 4083, 27160, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2099, 7, 9186, 8, 6624, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15180, 13, 33295, 7, 7890, 13, 28665, 82, 58, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 28665, 796, 279, 67, 13, 1136, 62, 67, 39578, 7, 7890, 13, 346, 420, 58, 45299, 1312, 4357, 4268, 62, 11085, 28, 17821, 11, 288, 4906, 28, 37659, 13, 22468, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 28665, 82, 796, 279, 67, 13, 1102, 9246, 26933, 3605, 62, 28665, 82, 13, 42503, 62, 9630, 7, 14781, 28, 17821, 828, 649, 62, 28665, 13, 42503, 62, 9630, 7, 14781, 28, 17821, 8, 4357, 16488, 28, 16, 8, 628, 220, 220, 220, 1366, 796, 1366, 13, 14781, 7, 28665, 82, 11, 16488, 28, 16, 8, 198, 220, 220, 220, 1366, 796, 279, 67, 13, 1102, 9246, 26933, 3605, 62, 28665, 82, 13, 42503, 62, 9630, 7, 14781, 28, 17821, 828, 1366, 13, 42503, 62, 9630, 7, 14781, 28, 17821, 8, 4357, 16488, 28, 16, 8, 198, 220, 220, 220, 1441, 279, 67, 13, 6601, 19778, 7, 7890, 8, 628, 198, 4299, 37773, 62, 23912, 1424, 7, 7890, 2599, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1058, 17143, 1366, 25, 383, 19798, 292, 6060, 19778, 284, 1620, 262, 6167, 21004, 198, 220, 220, 220, 1058, 7783, 25, 383, 2656, 1366, 19778, 475, 2420, 7032, 389, 6928, 416, 511, 18253, 3815, 198, 220, 220, 220, 632, 635, 5860, 281, 7177, 286, 15180, 351, 352, 611, 262, 5721, 318, 257, 6536, 290, 657, 4306, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5721, 62, 66, 26129, 796, 17635, 198, 220, 220, 220, 1366, 796, 279, 67, 13, 6601, 19778, 7, 7890, 8, 198, 220, 220, 220, 329, 1312, 11, 2378, 287, 27056, 378, 7, 7890, 13, 346, 420, 58, 15, 11, 1058, 4083, 27160, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2099, 7, 9186, 8, 6624, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5721, 62, 66, 26129, 13, 33295, 7, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 58, 7890, 13, 28665, 82, 58, 72, 11907, 796, 36052, 27195, 12342, 22446, 11147, 62, 35636, 7, 7890, 58, 7890, 13, 28665, 82, 58, 72, 11907, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5721, 62, 66, 26129, 13, 33295, 7, 15, 8, 198, 220, 220, 220, 1441, 1366, 2, 11, 5721, 62, 66, 26129, 628, 198, 4299, 651, 62, 13466, 62, 19849, 62, 21186, 7, 7890, 11, 299, 62, 22915, 82, 11, 5072, 62, 19199, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 27131, 689, 262, 1266, 2746, 329, 1123, 5072, 810, 262, 1306, 5072, 468, 477, 286, 262, 2180, 23862, 355, 5128, 1165, 198, 220, 220, 220, 1058, 17143, 5072, 62, 19199, 25, 1052, 7177, 286, 352, 82, 393, 657, 82, 13, 657, 611, 20683, 1917, 290, 352, 611, 17923, 1917, 198, 220, 220, 220, 1058, 17143, 1366, 25, 383, 19798, 292, 6060, 19778, 284, 1620, 262, 38591, 198, 220, 220, 220, 1058, 17143, 299, 62, 22915, 82, 25, 383, 1271, 286, 10795, 9633, 284, 2746, 198, 220, 220, 220, 1058, 7783, 25, 1052, 7177, 286, 262, 1266, 2746, 329, 1123, 5072, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 299, 62, 15414, 82, 796, 18896, 7, 7890, 13, 346, 420, 58, 15, 11, 1058, 12962, 532, 299, 62, 22915, 82, 198, 220, 220, 220, 1303, 1114, 1123, 5072, 11, 1064, 262, 1266, 2746, 422, 262, 2180, 198, 220, 220, 220, 4981, 796, 17635, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 77, 62, 22915, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8621, 30748, 10795, 290, 4795, 9633, 329, 662, 36948, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 770, 3404, 714, 467, 2354, 262, 329, 9052, 475, 355, 23862, 1716, 17311, 11, 484, 651, 30240, 10338, 628, 220, 220, 220, 220, 220, 220, 220, 1395, 796, 1366, 13, 346, 420, 58, 45299, 657, 25, 77, 62, 15414, 82, 1343, 1312, 60, 198, 220, 220, 220, 220, 220, 220, 220, 331, 796, 1366, 13, 346, 420, 58, 45299, 299, 62, 15414, 82, 1343, 1312, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 796, 37773, 62, 505, 62, 8940, 7, 55, 8, 198, 220, 220, 220, 220, 220, 220, 220, 331, 796, 37773, 62, 23912, 1424, 7, 88, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6536, 796, 5072, 62, 19199, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 796, 848, 1133, 7, 55, 8, 198, 220, 220, 220, 220, 220, 220, 220, 331, 796, 848, 1133, 7, 88, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 15251, 606, 2353, 1978, 198, 220, 220, 220, 220, 220, 220, 220, 1459, 62, 7890, 796, 279, 67, 13, 1102, 9246, 26933, 55, 13, 42503, 62, 9630, 7, 14781, 28, 17821, 828, 331, 13, 42503, 62, 9630, 7, 14781, 28, 17821, 8, 4357, 16488, 28, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 6536, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4981, 13, 33295, 7, 1136, 62, 13466, 62, 2301, 44292, 7, 14421, 62, 7890, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4981, 13, 33295, 7, 1136, 62, 13466, 62, 4871, 7483, 7, 14421, 62, 7890, 4008, 198, 220, 220, 220, 1441, 4981, 628, 198, 4299, 651, 62, 13466, 62, 19849, 62, 34750, 7, 7890, 11, 299, 62, 22915, 82, 11, 5072, 62, 19199, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 27131, 689, 262, 1266, 2746, 329, 1123, 5072, 1813, 262, 17311, 810, 4844, 286, 262, 23862, 4588, 1123, 584, 198, 220, 220, 220, 1058, 17143, 5072, 62, 19199, 25, 1052, 7177, 286, 352, 82, 393, 657, 82, 13, 657, 611, 20683, 1917, 290, 352, 611, 17923, 1917, 198, 220, 220, 220, 1058, 17143, 1366, 25, 383, 19798, 292, 6060, 19778, 284, 1620, 262, 38591, 198, 220, 220, 220, 1058, 17143, 299, 62, 22915, 82, 25, 383, 1271, 286, 10795, 9633, 284, 2746, 198, 220, 220, 220, 1058, 7783, 25, 1052, 7177, 286, 262, 1266, 2746, 329, 1123, 5072, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 299, 62, 15414, 82, 796, 18896, 7, 7890, 13, 346, 420, 58, 15, 11, 1058, 12962, 532, 299, 62, 22915, 82, 628, 220, 220, 220, 1303, 8621, 30748, 10795, 290, 4795, 9633, 329, 662, 36948, 198, 220, 220, 220, 1395, 796, 1366, 13, 346, 420, 58, 45299, 657, 25, 77, 62, 15414, 82, 60, 198, 220, 220, 220, 575, 796, 1366, 13, 346, 420, 58, 45299, 299, 62, 15414, 82, 47715, 628, 220, 220, 220, 1395, 796, 37773, 62, 505, 62, 8940, 7, 55, 8, 198, 220, 220, 220, 575, 796, 37773, 62, 23912, 1424, 7, 56, 8, 628, 220, 220, 220, 1395, 796, 848, 1133, 7, 55, 8, 198, 220, 220, 220, 575, 796, 848, 1133, 7, 56, 8, 628, 220, 220, 220, 1303, 1114, 1123, 5072, 11, 1064, 262, 1266, 2746, 422, 262, 2180, 198, 220, 220, 220, 4981, 796, 17635, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 77, 62, 22915, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1459, 62, 7890, 796, 279, 67, 13, 1102, 9246, 26933, 55, 13, 42503, 62, 9630, 7, 14781, 28, 17821, 828, 575, 58, 56, 13, 28665, 82, 58, 72, 60, 4083, 42503, 62, 9630, 7, 14781, 28, 17821, 8, 4357, 16488, 28, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5072, 62, 19199, 58, 72, 60, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4981, 13, 33295, 7, 1136, 62, 13466, 62, 2301, 44292, 7, 14421, 62, 7890, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4981, 13, 33295, 7, 1136, 62, 13466, 62, 4871, 7483, 7, 14421, 62, 7890, 4008, 198, 220, 220, 220, 1441, 4981, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 628, 220, 220, 220, 923, 62, 2435, 796, 640, 13, 2435, 3419, 198, 220, 220, 220, 27039, 796, 279, 67, 13, 961, 62, 40664, 7203, 1925, 700, 62, 5841, 9417, 13, 40664, 4943, 198, 220, 220, 220, 27039, 796, 27039, 13, 346, 420, 58, 45299, 513, 47715, 198, 220, 220, 220, 4981, 796, 651, 62, 13466, 62, 19849, 62, 21186, 7, 19608, 292, 316, 11, 352, 11, 685, 16, 12962, 198, 220, 220, 220, 10285, 7, 27530, 11, 366, 5841, 1424, 13, 21858, 8019, 4943, 198, 220, 220, 220, 3601, 7, 27530, 8, 198, 220, 220, 220, 886, 62, 2435, 796, 640, 13, 2435, 3419, 198, 220, 220, 220, 3601, 7203, 7575, 2077, 25, 1600, 886, 62, 2435, 532, 923, 62, 2435, 8, 628, 220, 220, 220, 1303, 4981, 796, 3440, 7203, 5841, 1424, 13, 21858, 8019, 4943, 198, 220, 220, 220, 1303, 1395, 796, 3440, 7203, 55, 13, 21858, 8019, 4943, 198, 220, 220, 220, 1303, 331, 796, 3440, 7203, 88, 13, 21858, 8019, 4943, 198, 220, 220, 220, 1303, 3601, 7, 27530, 58, 15, 12962, 198, 220, 220, 220, 1303, 3601, 7, 55, 8, 198, 220, 220, 220, 1303, 3601, 7, 88, 8, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 1303, 3601, 7, 69, 16, 62, 26675, 7, 88, 11, 27530, 58, 15, 4083, 79, 17407, 7, 55, 22305, 198, 220, 220, 220, 1303, 12067, 796, 10802, 62, 6759, 8609, 7, 88, 11, 27530, 58, 15, 4083, 79, 17407, 7, 55, 4008, 198, 220, 220, 220, 1303, 3601, 7, 11215, 8, 198, 220, 220, 220, 1303, 3601, 19510, 11215, 58, 15, 7131, 15, 48688, 11215, 58, 16, 7131, 16, 12962, 14, 49388, 8, 628, 198 ]
2.427075
4,772
# # Collective Knowledge (environment) # # See CK LICENSE.txt for licensing details # See CK COPYRIGHT.txt for copyright details # # Developer: Grigori Fursin, [email protected], http://fursin.net # cfg={} # Will be updated by CK (meta description of this module) work={} # Will be updated by CK (temporal data) ck=None # Will be updated by CK (initialized CK kernel) # Local settings ############################################################################## # Initialize module def init(i): """ Input: {} Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } """ return {'return':0} ############################################################################## # set environment for tools and libraries # (multiple versions of the same tools/libraries can co-exist) def env_set(i): """ Input: { (host_os) - host OS (detect, if ommitted) (target_os) - target OS (detect, if ommitted) (target_device_id) - target device ID (detect, if omitted) or (device_id) (repo_uoa) - repo where to limit search (uoa) - environment UOA entry or (tags) - search UOA by tags (separated by comma) (or_tags) - add entries which has groups of tags separated by ; (no_tags) - exclude entris with these tags separated by comma (search_dict) - require verbatim matches of some attributes (local) - if 'yes', add host_os, target_os, target_device_id to search (key) - key from deps (to set env with path) (name) - user-friendly name of the dependency (if needs to be resolved) (deps) - already resolved deps (reuse_deps) - if 'yes' reuse all deps if found in cache by tags (deps_cache) - list with resolved deps (skip_cache) - skip caching (sometimes needed to iterate over deps such as DNN libs during autotuning, crowd-benchmarking and crowd-tuning) (skip_auto_resolution) - if 'yes', do not check if deps are already resolved (skip_default) - if 'yes', skip detection of default installed software version (skip_installed) - dict to specify on which platforms not to search already installed version (skip_pruning_by_other_deps) - if 'yes', do not prune available envs using other resolved deps (bat_file) - if !='', use this filename to generate/append bat file ... (bat_new) - if 'yes', start new bat file (env) - existing environment (print) - if 'yes', print found environment (random) - if 'yes' and there is a choice, select random (useful for quiet experiment crowdsourcing such as sw/hw crowdtuning) (quiet) - if 'yes', automatically provide default answer to all questions when resolving dependencies ... (force_env_init) - if 'yes', add '1' when calling env script (useful for LLVM plugins for example to force reinit) (install_to_env) - install dependencies to env instead of CK-TOOLS (to keep it clean)! (install_env) - customize installation (useful for replay to rebuild proper package with external env) (version_from) - check version starting from ... (list of numbers) (version_to) - check version up to ... (list of numbers) (safe) - safe mode when searching packages first instead of detecting already installed soft (to have more deterministic build) (package_uoa) - force installation package (also useful to rebuild deps during replay) (rebuild) - if 'yes', attempt to set env to avoid downloading package again, just rebuild (if supported) } Output: { return - return code = 0, if successful = 32, if environment was deleted (env_uoa - env which was not found) > 0, if error (error) - error text if return > 0 env_uoa - found environment UOA env - updated environment bat - string for bat file lst - all found entries dict - meta of the selected env entry detected_version - detected version of a software } """ import os import copy import json o=i.get('out','') ooo = o if o=='con' else '' # shouldn't we consider other options? ran=i.get('random','') quiet=i.get('quiet','') name=i.get('name','') rebuild=i.get('rebuild','') skip_cache=i.get('skip_cache','') package_uoa=i.get('package_uoa','') install_env=i.get('install_env',{}) # Clean output file sar=i.get('skip_auto_resolution','') cdeps=i.get('deps',{}) deps_cache=i.get('deps_cache',[]) reuse_deps=i.get('reuse_deps','') skip_default=i.get('skip_default','') skip_installed=i.get('skip_installed',{}) iev=i.get('install_to_env','') safe=i.get('safe','') bf=i.get('bat_file','') if bf!='' and os.path.isfile(bf): os.remove(bf) vfrom=i.get('version_from',[]) vto=i.get('version_to',[]) # Check host/target OS/CPU hos=i.get('host_os','') tos=i.get('target_os','') tdid=i.get('target_device_id','') if tdid=='': tdid=i.get('device_id','') user_env = (hos!='' or tos!='' or tdid!='') # Get some info about OS ii={'action':'detect', 'module_uoa':cfg['module_deps']['platform.os'], 'host_os':hos, 'target_os':tos, 'device_id':tdid, 'skip_info_collection':'yes'} r=ck.access(ii) if r['return']>0: return r hos=r['host_os_uid'] hosx=r['host_os_uoa'] hosd=r['host_os_dict'] ck_os_name=hosd['ck_name'] tos=r['os_uid'] tosx=r['os_uoa'] tosd=r['os_dict'] # Check if base is different x1=hosd.get('base_uid','') x2=hosd.get('base_uoa','') if x1!='' and x2!='': hos=x1 hosx=x2 x1=tosd.get('base_uid','') x2=tosd.get('base_uoa','') if x1!='' and x2!='': tos=x1 tosx=x2 remote=tosd.get('remote','') tbits=tosd.get('bits','') hplat=hosd.get('ck_name','') tplat2=i.get('original_target_os_name2','') eset=hosd.get('env_set','') svarb=hosd.get('env_var_start','') svare=hosd.get('env_var_stop','') sdirs=hosd.get('dir_sep','') evs=hosd.get('env_var_separator','') eifs=hosd.get('env_quotes_if_space','') nout=hosd.get('no_output','') # Check environment UOA enruoa=i.get('repo_uoa','') tags=i.get('tags','') or_tags=i.get('or_tags','') no_tags=i.get('no_tags','') search_dict = i.get('search_dict') duoa=i.get('uoa','') lx=0 dd={} setup={} if user_env or i.get('local','')=='yes': setup={'host_os_uoa':hos, 'target_os_uoa':tos, 'target_os_bits':tbits} if reuse_deps=='yes' and skip_cache!='yes': # Check in cache! dep_query = {'setup':setup, 'tags':tags.split(','), 'or_tags':or_tags.split(','), 'no_tags':no_tags.split(',')} for dc_q in deps_cache: dep_meta = dc_q.get('meta',{}) r=ck.compare_dicts({'dict1':dep_meta, 'dict2':dep_query}) # if dep_meta contains dep_query... if r['return']>0: return r if r['equal']=='yes': duoa = dc_q.get('uoa','') reuse_deps='no' # to avoid updating cache break # Search ii={'action':'search', 'module_uoa':work['self_module_uid'], 'tags':tags, 'repo_uoa':enruoa, 'data_uoa':duoa, 'add_info':'yes', 'add_meta':'yes' } # Need to sort by version, if ambiguity if search_dict!=None and len(search_dict)>0: ii['search_dict']=search_dict iii=copy.deepcopy(ii) # may need to repeat after registration # Prepare possible warning x = '"{}"'.format(name) if name else 'required software ' msg_env_not_found = 'no registered CK environment was found for {} dependency with tags="{}"'.format(x, tags) if no_tags!='': msg_env_not_found+=', no_tags="'+no_tags+'"' if len(setup)>0: ro=readable_os({'setup':setup}) if ro['return']>0: return ro setup1=ro['setup1'] msg_env_not_found+=' and setup='+json.dumps(setup1) if len(vfrom)>0 or len(vto)>0: msg_env_not_found+=' and version constraints ('+json.dumps(vfrom)+' <= v <= '+json.dumps(vto)+')' # Search for environment entries r=ck.access(ii) if r['return']>0: return r # Prune if needed r=prune_search_list({'lst':r['lst'], 'or_tags':or_tags, 'no_tags':no_tags, 'version_from':vfrom, 'version_to':vto, 'setup':setup, }) if r['return']>0: return r sbov=r.get('skipped_because_of_version','') l=r['lst'] lx=len(l) auoas=[] dname='' try_to_reinstall=False if lx==0 and duoa!='': # Check exact problem rx=ck.access({'action':'load', 'module_uoa':work['self_module_uid'], 'data_uoa':duoa}) if rx['return']>0: if rx['return']!=16: return rx if package_uoa=='': rx['error']='strange - missing environment ('+duoa+') and package not specified (may happen during replay from another machine)' if o=='con' and quiet!='yes': ck.out('') ck.out(' WARNING: '+rx['error']+'!') ck.out('') # ry=ck.inp({'text':' Would you like to detect / reinstall again (Y/n)? '}) # x=ry['string'].strip() # # if x=='n' or x=='no': # return rx else: # Otherwise can try to rebuild from provided package UOA ck.out('') ck.out('WARNING: environment doesn\'t exist but package provided - trying to redetect/reinstall ...') duoa='' iii['data_uoa']=duoa # since will be later new search l=[] lx=0 try_to_reinstall=True # Repeat search if has without data uoa r=ck.access(iii) if r['return']>0: return r # Prune if needed r=prune_search_list({'lst':r['lst'], 'or_tags':or_tags, 'no_tags':no_tags, 'version_from':vfrom, 'version_to':vto, 'setup':setup, 'package_uoa':package_uoa}) if r['return']>0: return r sbov=r.get('skipped_because_of_version','') l=r['lst'] lx=len(l) auoas=[] dname='' if not try_to_reinstall: dds=rx['dict'].get('setup',{}) # Changed setup if o=='con': ck.out('') ck.out('WARNING: requested host or target OS info is not matching info in env '+duoa+'!') ck.out('') rx=ck.access({'action':'convert_uid_to_alias', 'module_uoa':cfg['module_deps']['os'], 'uoa':dds.get('host_os_uoa','')}) if rx['return']>0: return rx x=rx['string'] ck.out(' Host OS UOA in env '+duoa+' : '+x) rx=ck.access({'action':'convert_uid_to_alias', 'module_uoa':cfg['module_deps']['os'], 'uoa':setup.get('host_os_uoa','')}) if rx['return']>0: return rx x=rx['string'] ck.out(' Requested host OS UOA : '+x) ck.out('') rx=ck.access({'action':'convert_uid_to_alias', 'module_uoa':cfg['module_deps']['os'], 'uoa':dds.get('target_os_uoa','')}) if rx['return']>0: return rx x=rx['string'] ck.out(' Target OS UOA in env '+duoa+' : '+x) rx=ck.access({'action':'convert_uid_to_alias', 'module_uoa':cfg['module_deps']['os'], 'uoa':setup.get('target_os_uoa','')}) if rx['return']>0: return rx x=rx['string'] ck.out(' Requested target OS UOA : '+x) ck.out('') ck.out(' Target OS bits in env '+duoa+' : '+dds.get('target_os_bits','')) ck.out(' Requested target OS bits : '+setup.get('target_os_bits','')) ck.out('') ck.out(' Target or_tags : '+dds.get('tags','')) ck.out(' Requested or_tags : '+or_tags) ck.out('') ck.out(' Target no_tags : '+dds.get('no_tags','')) ck.out(' Requested no_tags : '+no_tags) ck.out('') ck.out(' This is a possible bug - please report here:') ck.out(' * https://github.com/mlcommons/ck/issues') ck.out(' * https://github.com/mlcommons/ck-mlops/issues') ck.out('') return {'return':33, 'error':'current host or target OS ('+str(setup)+' is not matching the one in software env '+duoa} # If no entries and safe mode, search packages first showed_warning=False if lx==0 and duoa=='' and tags!='' and (safe=='yes' or package_uoa!=''): ck.out('==========================================================================================') ck.out('WARNING: '+msg_env_not_found) showed_warning=True if len(install_env)>0: if o=='con': ck.out('') ck.out('Reusing original and slightly pruned environment ...') ck.out('') for k in list(install_env.keys()): # TBD: quite ugly - maybe should record external env explicitly ... if k in ['LFLAGS', 'CXXFLAGS', 'CK_HOST_CPU_NUMBER_OF_PROCESSORS', 'LCORE_FLAGS']: del(install_env[k]) rx=internal_install_package({'out':ooo, 'package_uoa':package_uoa, 'tags':tags, 'or_tags':or_tags, 'no_tags':no_tags, 'quiet':quiet, 'install_to_env':iev, 'install_env':install_env, 'safe':safe, 'host_os':hos, 'target_os':tos, 'device_id':tdid, 'add_hint':'yes', 'reuse_deps':reuse_deps, 'deps_cache':deps_cache, 'version_from':vfrom, 'version_to':vto, 'deps':cdeps, 'rebuild':rebuild, 'sub_deps': i.get('current_deps',{}) if try_to_reinstall else {}, }) if rx['return']>0 and rx['return']!=16: return rx if rx['return']==0: duoa=rx['env_data_uoa'] duid=rx['env_data_uid'] # If no entries, try to detect default ones and repeat if lx==0 and duoa=='': history_deps=[] if o=='con' and tags!='' and not showed_warning: ck.out('') ck.out(' ********') ck.out(' WARNING: '+msg_env_not_found) ck.out('') showed_warning=True # First, try to detect already installed software, but not registered (default) # FGG changed on 2017-10-20 to be able to detect new versions of soft ! if not (skip_default=='yes' or skip_installed.get(tplat2,'')=='yes'): # or sbov=='yes'): if o=='con': ck.out(' Trying to automatically detect required software ...') ii={'action':'search', 'module_uoa':cfg['module_deps']['soft'], 'tags':tags, 'add_meta':'yes'} rx=ck.access(ii) if rx['return']>0: return rx slst=rx['lst'] # Sorting and checking which has detection module detected='' ssi=0 found=False for q in sorted(slst, key=lambda v: v.get('meta',{}).get('sort',0)): met=q.get('meta',{}) auoa=q['data_uoa'] auid=q['data_uid'] aname=met.get('soft_name','') # Check no tags: if no_tags!='': split_no_tags=no_tags.split(',') soft_tags=met.get('tags',[]) soft_skip=False for st in soft_tags: if st in split_no_tags: soft_skip=True break if soft_skip: continue auoas.append(q['data_uoa']) ds=met.get('auto_detect','') if ds=='yes': if auid not in history_deps: # Check target rx=ck.access({'action':'check_target', 'module_uoa':cfg['module_deps']['soft'], 'dict':met.get('customize',{}), 'host_os_uoa':hosx, 'host_os_dict':hosd, 'target_os_uoa':tosx, 'target_os_dict':tosd}) if rx['return']>0: continue history_deps.append(auid) ssi+=1 if o=='con': ck.out('') ck.out(' '+str(ssi)+') Checking if "'+aname+'" ('+auoa+' / '+auid+') is installed ...') # Detect software ii={'action':'check', 'module_uoa':cfg['module_deps']['soft'], 'data_uoa':auid, 'skip_help':'yes', 'host_os':hos, 'target_os':tos, 'target_device_id':tdid, 'quiet':quiet, 'version_from':vfrom, 'version_to':vto, # 'deps':cdeps, 'out':ooo} if len(setup)>0: ii.update(setup) ry=ck.access(ii) if ry['return']>0: if o=='con': ck.out(' (warning during intermediate step: '+ry['error']+')') else: found=True hdeps=ry.get('deps',{}) for hd in hdeps: xhd=hdeps[hd] xxhd=xhd.get('dict',{}).get('soft_uoa','') if xxhd not in history_deps: history_deps.append(xxhd) # repeat search if at least one above setup was performed if not found: if o=='con': ck.out(' No software auto-detection scripts found for this software in CK :( ...') if len(auoas)>0: ck.out('') ck.out(' Checked following related CK soft entries:') for q in auoas: ck.out(' * '+q) else: r=ck.access(iii) if r['return']>0: return r # Prune if needed r=prune_search_list({'lst':r['lst'], 'or_tags':or_tags, 'no_tags':no_tags, 'version_from':vfrom, 'version_to':vto, 'setup':setup, 'package_uoa':package_uoa}) if r['return']>0: return r l=r['lst'] lx=len(l) # Re-check/prune existing environment using already resolved deps if lx>0: ilx=0 if i.get('skip_pruning_by_other_deps','')!='yes' and lx>1 and sar!='yes': # Try auto-resolve or prune choices nls=[] for z in range(0, lx): j=l[z] zm=j.get('meta',{}) cus=zm.get('customize','') zdeps=zm.get('deps',{}) skip=False for q in zdeps: jj=zdeps[q] juoa=jj.get('uoa','') for a in cdeps: if a==q: aa=cdeps[a] if aa.get('skip_reuse','')!='yes': auoa=aa.get('uoa','') # Tricky part: basically if similar and already resolved current deps are not the same is underneath ones ... if auoa!='' and auoa!=juoa: skip=True break if skip: break if not skip: nls.append(j) l=nls lx=len(l) # Select sub-deps (sort by version) if lx>1: ls=sorted(l, key=lambda k: (k.get('meta',{}).get('customize',{}).get('sort', 0), k.get('info',{}).get('data_name',k['data_uoa']), internal_get_val(k.get('meta',{}).get('setup',{}).get('version_split',[]), 0, 0), internal_get_val(k.get('meta',{}).get('setup',{}).get('version_split',[]), 1, 0), internal_get_val(k.get('meta',{}).get('setup',{}).get('version_split',[]), 2, 0), internal_get_val(k.get('meta',{}).get('setup',{}).get('version_split',[]), 3, 0), internal_get_val(k.get('meta',{}).get('setup',{}).get('version_split',[]), 4, 0)), reverse=True) l=ls if ran=='yes': from random import randint ilx=randint(0, lx-1) elif quiet=='yes': ilx=0 else: if o=='con': xq='required software' if name!='': xq='"'+name+'"' xq+=' with tags="'+tags+'"' if len(setup)>0: import json ro=readable_os({'setup':setup}) if ro['return']>0: return ro setup1=ro['setup1'] xq+=' and setup='+json.dumps(setup1) ck.out('') ck.out('More than one environment found for '+xq+':') ck.out('') dep_options = [] for opt_dict in l: # looping through all options for this environment zi=opt_dict.get('info',{}) zm=opt_dict.get('meta',{}) zu=opt_dict.get('data_uid','') zdn=zi.get('data_name','') zdeps=zm.get('deps',{}) xtags=zm.get('tags','') cus=zm.get('customize',{}) ver=cus.get('version','') tags_csv = ','.join( [t for t in xtags if t] ) this_option = [ '{} - v{} ({} ({}))'.format(zdn, ver, tags_csv, zu) ] if len(zdeps)>0: for j in sorted(zdeps, key=lambda v: zdeps[v].get('sort',0)): jj=zdeps[j] juoa=jj.get('uoa','') if juoa!='': # if empty, it most likely means that this unresolved dependency # is for a different target jtags=jj.get('tags','') jver=jj.get('ver','') this_option.append( '{}- Depends on "{}" (env UOA={}, tags="{}", version={})'.format(' '*35, j, juoa, jtags, jver)) dep_options.append(this_option) select_adict = ck.access({'action': 'select_string', 'module_uoa': 'misc', 'options': dep_options, 'default': '0', 'question': 'Select one of the options for '+xq, }) if select_adict['return']>0: return select_adict ilx = select_adict['selected_index'] if ilx<len(l): duid=l[ilx]['data_uid'] duoa=duid dname=l[ilx].get('info',{}).get('data_name','') dd=l[ilx].get('meta',{}) if o=='con' and i.get('print','')=='yes': x=duoa if duid!=duoa: x+=' ('+duid+')' ck.out('CK environment found using tags "'+tags+'" : '+x) # No registered environments found and environment UOA is not explicitly defined if duoa=='': if tags!='': if not showed_warning: ck.out('==========================================================================================') ck.out('WARNING: '+msg_env_not_found) rx=internal_install_package({'out':ooo, 'tags':tags, 'or_tags':or_tags, 'no_tags':no_tags, 'quiet':quiet, 'install_to_env':iev, 'install_env':install_env, 'safe':safe, 'host_os':hos, 'target_os':tos, 'device_id':tdid, 'reuse_deps':reuse_deps, 'deps_cache':deps_cache, 'version_from':vfrom, 'version_to':vto, 'rebuild':rebuild, 'deps':cdeps}) if rx['return']>0: return rx duoa=rx['env_data_uoa'] duid=rx['env_data_uid'] if duoa=='': if o=='con': ck.out(' CK packages are not found for this software :( !') ck.out('') if len(auoas)>0: if len(auoas)==1: rx=ck.access({'action':'print_help', 'module_uoa':cfg['module_deps']['soft'], 'data_uoa':auoas[0], 'platform':hplat}) rx=ck.inp({'text':' Would you like to manually register software, i.e. if it is in an unusual path (y/N): '}) x=rx['string'].strip().lower() if x=='yes' or x=='yes': ck.out('') rx=ck.access({'action':'setup', 'module_uoa':cfg['module_deps']['soft'], 'data_uoa':auoas[0], 'out':'con'}) if rx['return']>0: return rx ck.out('') else: # Show possible Wiki page rx=ck.inp({'text':' Would you like to open wiki pages about related software (with possible installation info) (y/N): '}) x=rx['string'].strip().lower() if x=='yes' or x=='yes': ck.out('') for q in auoas: rx=ck.access({'action':'wiki', 'module_uoa':cfg['module_deps']['soft'], 'data_uoa':q}) if rx['return']>0: return rx ck.out('') ck.out('') return {'return':1, 'error':msg_env_not_found} # Load selected environment entry r=ck.access({'action':'load', 'module_uoa':work['self_module_uid'], 'data_uoa':duoa}) if r['return']>0: if r['return']==16: r['return']=32 r['env_uoa']=duoa return r d=r['dict'] p=r['path'] dname=r.get('data_name','') if dname!='': d['data_name']=dname suoa=d.get('soft_uoa','') cs=None if suoa!='': r=ck.access({'action':'load', 'module_uoa':cfg['module_deps']['soft'], 'data_uoa':suoa}) if r['return']>0: return r salias=r['data_alias'] d['soft_alias']=salias # Check if has custom script rx=ck.load_module_from_path({'path':r['path'], 'module_code_name':cfg['custom_script_name'], 'skip_init':'yes'}) if rx['return']==0: cs=rx['code'] # Check that all sub dependencies still exists (if full path) outdated=False to_delete=False err='' subdeps=d.get('deps',{}) # sub-dependencies of the selected environment # (normally already resolved, but check if software has changed in the meantime) for subdep_name in subdeps: subdep=subdeps[subdep_name] subdep_cus=subdep.get('dict',{}).get('customize',{}) sfc=subdep_cus.get('skip_file_check','') full_path=subdep_cus.get('full_path','') if sfc!='yes' and full_path!='' and not os.path.isfile(full_path): outdated=True err='one of sub-dependencies ('+subdep_name+') have changed (file '+full_path+' not found)' break subdep_uoa=subdep.get('uoa','') if subdep_uoa!='': rx=ck.access({'action':'find', 'module_uoa':work['self_module_uid'], 'data_uoa':subdep_uoa}) if rx['return']>0: if rx['return']!=16: return rx outdated=True err='one of sub-dependencies ('+subdep_name+') have changed (CK environment '+subdep_uoa+' not found)' break if reuse_deps=='yes' and skip_cache!='yes': # Check in cache! subdep_query = {'setup':setup, 'tags':subdep.get('tags','').split(','), 'or_tags':subdep.get('or_tags','').split(','), 'no_tags':subdep.get('no_tags','').split(',')} dc_found = False for dc_q in deps_cache: dep_meta = dc_q.get('meta',{}) r=ck.compare_dicts({'dict1':dep_meta, 'dict2':subdep_query}) # if dep_meta contains subdep_query... if r['return']>0: return r if r['equal']=='yes': dc_found = True break if not dc_found: deps_cache.append({'meta':subdep_query, 'uoa':subdep_uoa, 'tags':tags.split(','), 'or_tags':or_tags.split(','), 'no_tags':no_tags.split(',')}) # Check if has changed but try to continue if outdated and ' have changed ' in err and o=='con' and quiet!='yes': ck.out('') ck.out(' WARNING: '+err) ck.out('') rx=ck.inp({'text':' Would you like to continue at your own risk (y/N): '}) x=rx['string'].strip().lower() if x=='y' or x=='yes': outdated=False # Check if file exists for current dependency verx='' cus=d.get('customize',{}) full_path=cus.get('full_path','') tc='it appears that your environment has changed - ' if not outdated and full_path!='' and cus.get('skip_file_check','')!='yes' and not os.path.isfile(full_path): err=tc+'software file not found in a specified path ('+full_path+')' outdated=True ver_in_env=cus.get('version','') # detected version during installation if not outdated and ver_in_env!='': scmd=cus.get('soft_version_cmd',{}).get(ck_os_name,'') if cus.get('skip_version_recheck','')!='yes' and scmd!='' and 'parse_version' in dir(cs): # Check version (via customized script) ... ii={'action':'get_version', 'module_uoa':cfg['module_deps']['soft'], 'full_path':full_path, 'bat':'', 'host_os_dict':hosd, 'target_os_dict':tosd, 'cmd':scmd, 'custom_script_obj':cs, 'use_locale':cus.get('use_locale_for_version','')} rx=ck.access(ii) if rx['return']==0: verx=rx['version'] if verx!='' and verx!=ver_in_env: err=tc+'version during installation ('+ver_in_env+') is not the same as current version ('+verx+')' outdated=True if outdated: if o=='con': ck.out('') ck.out('WARNING: '+err) ck.out('') rx=ck.inp({'text':'Would you like to remove outdated environment entry from CK (Y/n)? '}) x=rx['string'].strip().lower() if x=='n' or x=='no': x='' if o=='con': ck.out('') rx=ck.inp({'text':'Would you like to continue at your own risk (y/N)? '}) x=rx['string'].strip().lower() if x!='y': return {'return':1, 'error':err} else: to_delete=True # Deleting outdated environment if to_delete: if o=='con': ck.out('') ck.out('Removing outdated environment entry '+duoa+' ...') rx=ck.access({'action':'delete', 'module_uoa':work['self_module_uid'], 'data_uoa':duoa}) if rx['return']>0: return rx return {'return':1, 'error':'Outdated environment was removed - please, try again!'} # Update cache if reuse_deps=='yes' and skip_cache!='yes': deps_cache.append({'meta':dep_query, 'uoa':duoa, 'tags':tags.split(','), 'or_tags':or_tags.split(','), 'no_tags':no_tags.split(',')}) # Prepare environment and bat env=i.get('env',{}) xenv=d.get('env',{}) env.update(xenv) env_call=hosd.get('env_call','') bin_prefix=hosd.get('bin_prefix','') # Process CMD first: sb='' es=d.get('env_script','') or ( cfg['default_bat_name'] + hosd.get('script_ext','') ) ppu='' if i.get('force_env_init','')=='yes': ppu=' 1' if es!='': pp=os.path.join(p,es) if i.get('key','')!='': sb+=eset+' CK_ENV_SCRIPT_'+i['key'].upper()+'='+pp+'\n' sb+=env_call+' '+pp+ppu+'\n' # Check bat file if bf!='': bn=i.get('bat_new','') x='a' if bn=='yes': x='w' try: fbf=open(bf, x) fbf.write(sb) except Exception as e: fbf.close() return {'return':1, 'error':'problem writing environment file ('+format(e)+')'} fbf.close() return {'return':0, 'env_uoa':duoa, 'env':env, 'bat':sb, 'lst':l, 'dict':d, 'detected_version':verx} ############################################################################## # show all installed environment def show(i): """ Input: { (repo_uoa) - repository UOA (with wildcards) (module_uoa) - module UOA (with wildcards) (data_uoa) - data UOA (with wildcards) (tags) - prune by tags (target_os) - prune by target OS (target_bits) - prune by target bits (version) - prune by version (name) - prune by name with wildcards } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 lst - list from search function view - sorted view list } """ o=i.get('out','') tags=i.get('tags','') extended_tags = [ tags ] if tags else [] tos_uoa=i.get('target_os','') if tos_uoa!='': # Load OS ry=ck.access({'action':'load', 'module_uoa':cfg['module_deps']['os'], 'data_uoa':tos_uoa}) if ry['return']>0: return ry tos_uoa = ry['dict'].get('base_uoa','') or ry['data_uoa'] extended_tags.append( 'target-os-'+tos_uoa ) tb = i.get('target_bits','') if tb!='': extended_tags.append( tb+'bits' ) ver = i.get('version','') if ver!='': extended_tags.append( 'v'+ver ) tags = ','.join(extended_tags) name=i.get('name','') wname=False if name.find('*')>=0 or name.find('?')>=0: import fnmatch wname=True name=name.lower() # creating a list of patterns from the "main xcid" and the list of auxiliary xcids: full_xcids_list = [{ 'repo_uoa': i.get('repo_uoa',''), 'module_uoa': i.get('module_uoa',''), 'data_uoa': i.get('data_uoa',''), }] + i.get('xcids',[]) lst = [] # iterating through the list of patterns: for xcid in full_xcids_list: rx=ck.access({'action':'search', 'repo_uoa':xcid.get('repo_uoa',''), 'module_uoa':xcid.get('module_uoa',''), 'data_uoa':xcid.get('data_uoa',''), 'tags':tags, 'add_info':'yes', 'add_meta':'yes'}) if rx['return']>0: return rx lst += rx['lst'] # prepare view unsorted_dicts=[] table_fields = [ # Rearranging the lines below will rearrange the fields in the output: # (internal) (external) (align) ('data_uid', 'Env UID:', ':>'), ('target_os_uoa', 'Target OS:', ':>'), ('tbits', 'Bits:', ':>'), ('data_name', 'Name:', ':<'), ('version', 'Version:', ':<'), ('tags', 'Tags:', ':<'), ] # width of each field (initialized with minimum required width) max_width = { internal: len(external) for (internal, external, _) in table_fields } target_os_name={} # Caching target OS names for q in lst: duoa=q['data_uoa'] duid=q['data_uid'] ruoa=q['repo_uoa'] ruid=q['repo_uid'] info=q['info'] meta=q['meta'] if len(meta)==0: continue cus=meta.get('customize',{}) setup=meta.get('setup',{}) tags=meta.get('tags',[]) host_os_uoa=setup.get('host_os_uoa','') target_os_uoa=setup.get('target_os_uoa','') tbits=setup.get('target_os_bits','') version=cus.get('version','') sversion=setup.get('version_split',[]) dname=info.get('data_name','') if (not name) \ or ( ( fnmatch.fnmatch(dname.lower(), name)) if wname else (name == dname) ): # Check target OS if target_os_uoa in target_os_name: tduoa=target_os_name[target_os_uoa] elif target_os_uoa: # Load ry=ck.access({'action':'load', 'module_uoa':cfg['module_deps']['os'], 'data_uoa':target_os_uoa}) if ry['return']>0: return ry tduoa=ry['data_uoa'] target_os_name[target_os_uoa]=tduoa else: tduoa = 'Any' tags_csv = ','.join( [t for t in tags if t] ) env_info = { 'data_uid': duid, 'repo_uid': ruid, 'tags': tags_csv, 'host_os_uoa': host_os_uoa, 'target_os_uoa': tduoa, 'tbits': tbits, 'version': version, 'version_split': sversion, 'data_name': dname, } # Find maximum width for each field: for (internal, _, _) in table_fields: field_width = len(str(env_info[internal])) if field_width>max_width[internal]: max_width[internal]=field_width unsorted_dicts.append(env_info) # Sort by target_os_uoa, name and split version sorted_dicts=sorted(unsorted_dicts, key=lambda k: (k['target_os_uoa'], k['tbits'], k['data_name'], internal_get_val(k.get('version_split',[]), 0, 0), internal_get_val(k.get('version_split',[]), 1, 0), internal_get_val(k.get('version_split',[]), 2, 0), internal_get_val(k.get('version_split',[]), 3, 0), internal_get_val(k.get('version_split',[]), 4, 0)), reverse=True) # Print if o=='con' and len(sorted_dicts)>0: last_field_name = table_fields[-1][0] # the last field is not padded, it is treated separately # All fields of the header are aligned to the left header_format = ' '.join( [ '{{p[{}]{}{}}}'.format(internal, ':<', max_width[internal]) for (internal, _, _) in table_fields[:-1]] \ + [ '{{p[{}]}}'.format(last_field_name) ] ) # Fields of the body are aligned differently, depending on the third column of table_fields: body_format = ' '.join( [ '{{p[{}]{}{}}}'.format(internal, body_align, max_width[internal]) for (internal, _, body_align) in table_fields[:-1]] \ + [ '{{p[{}]}}'.format(last_field_name) ] ) header_line = header_format.format( p={ internal: external for (internal, external, _) in table_fields } ) ck.out(header_line) ck.out('') for field_values in sorted_dicts: body_line = body_format.format( p=field_values ) ck.out( body_line ) return {'return':0, 'lst':lst, 'view':sorted_dicts} ############################################################################### ## A helper function to compute a given DNF on a given dictionary of attributes ## ## The assumed structure of the DNF is: # # [ # { # either one combination: # 'left_hand': [ 'up', 'UP', 'raised', 'RAISED', '1' ], # 'right_hand': [ 'down', 'DOWN', 'lowered', 'LOWERED', '0'] # }, # { # or another: # 'right_hand': [ 'up', 'UP', 'raised', 'RAISED', '1' ], # 'left_hand': [ 'down', 'DOWN', 'lowered', 'LOWERED', '0'] # } # ] ############################################################################## # resolve all dependencies def resolve(i): """ Input: { (host_os) - host OS (detect, if ommitted) (target_os) - target OS (detect, if ommitted) (target_device_id) - target device ID (detect, if omitted) or (device_id) (repo_uoa) - repo where to limit search deps - dependencies dict (reuse_deps) - if 'yes' reuse all deps if found in cache by tags (deps_cache) - list with resolved deps (dep_add_tags) - a dictionary that maps extra tags to be added to specific subdictionaries of deps{} for this particular resolution (dep_add_tags.{KEY}) - extra tags added to specific subdictionary of deps{} for this particular resolution session (remove_deps) [str] - a list of keys to remove from deps separated by comma. Useful to run a given program workflow with an externally installed dependency (compiler, library, model, tool). (env) - env (install_env) - env during installation (add_customize) - if 'yes', add to deps customize field from the environment (useful for program compilation) (skip_dict) - if 'yes', do not add to deps dict field from the environment (useful for program compilation) (skip_auto_resolution) - if 'yes', do not check if deps are already resolved (random) - if 'yes' and there is a choice, select random (useful for quiet experiment crowdsourcing such as sw/hw crowdtuning) (quiet) - if 'yes', automatically provide default answer to all questions when resolving dependencies ... (install_to_env) - install dependencies to env instead of CK-TOOLS (to keep it clean)! (safe) - safe mode when searching packages first instead of detecting already installed soft (to have more deterministic build) (rebuild) - if 'yes', attempt to set env to avoid downloading package again, just rebuild (if supported) } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 bat - string for bat file calling all bats ... cut_bat - string for bat file calling all bats (does not include deps that are explicitly excluded) ... deps - updated deps (with uoa) env - updated env } Test: cat deps_only.json { "deps": { "weights": { "force_target_as_host": "yes", "local": "yes", "name": "TensorFlow Lite model and weights", "no_tags": "mobilenet-all", "sort": 30, "tags": "model,tflite,image-classification" }, ... } ck resolve env @deps_only.json "@@@{'dep_add_tags': {'weights':'resnet'}}" --out=json ck resolve env @deps_only.json --dep_add_tags.weights=mobilenet --out=json """ import copy o=i.get('out','') if o=='con': ck.out('') ck.out(' -----------------------------------') ck.out(' Resolving software dependencies ...') combined_env_script_body='' alternative_combined_env_script_body='' install_env=i.get('install_env',{}) rebuild=i.get('rebuild','') sar=i.get('skip_auto_resolution','') deps=i.get('deps',{}) dep_add_tags = i.get('dep_add_tags', {}) for combi_opt in i: if combi_opt.startswith('dep_add_tags.'): _ , dep_name = combi_opt.split('.') dep_add_tags[dep_name] = i[combi_opt] for a_dep in dep_add_tags: if a_dep in deps: tags_to_be_added = dep_add_tags[a_dep] if tags_to_be_added: deps[a_dep]['tags'] += ',' + tags_to_be_added else: # I'd rather raise() here, but we are in CK ck.out("\n!!! Warning: dependency '{}' has not been found in the original entry - please check your input !!!\n".format(a_dep)) remove_deps=i.get('remove_deps','').strip() remove_deps_list=[] if remove_deps=='' else remove_deps.split(',') deps_cache=i.get('deps_cache',[]) reuse_deps=i.get('reuse_deps','') ran=i.get('random','') quiet=i.get('quiet','') iev=i.get('install_to_env','') safe=i.get('safe','') # Check host/target OS/CPU hos=i.get('host_os','') tos=i.get('target_os','') tdid=i.get('target_device_id','') if tdid=='': tdid=i.get('device_id','') # Get some info about OS ii={'action':'detect', 'module_uoa':cfg['module_deps']['platform.os'], 'host_os':hos, 'target_os':tos, 'device_id':tdid, 'skip_info_collection':'yes'} r=ck.access(ii) if r['return']>0: return r hos=r['host_os_uid'] hosx=r['host_os_uoa'] hosd=r['host_os_dict'] tos=r['os_uid'] tosx=r['os_uoa'] tosd=r['os_dict'] hplat=hosd.get('ck_name','') hplat2=hosd.get('ck_name2','') tplat=tosd.get('ck_name','') tplat2=tosd.get('ck_name2','') # Check if base is different x1=hosd.get('base_uid','') x2=hosd.get('base_uoa','') if x1!='' and x2!='': hos=x1 hosx=x2 x1=tosd.get('base_uid','') x2=tosd.get('base_uoa','') if x1!='' and x2!='': tos=x1 tosx=x2 remote=tosd.get('remote','') tbits=tosd.get('bits','') # Checking deps env=i.get('env',{}) enruoa=i.get('repo_uoa','') ac=i.get('add_customize','') sd=i.get('skip_dict','') res=[] iv=0 # Check if need to remove some deps for k in remove_deps_list: if k in deps: del(deps[k]) sdeps=sorted(deps, key=lambda v: deps[v].get('sort',0)) xsb='' # Append to the end xsb1='' # Append to the end for k in sdeps: q=deps[k] if q.get('skipped','')=='yes': continue if q.get('enabled','')!='yes': enable_DNF = q.get('enable_if_env') if enable_DNF: if match_attrib_DNF( install_env, enable_DNF ): q['enabled']='yes' else: q['skipped']='yes' continue if q.get('skipped','')!='yes': disable_DNF = q.get('disable_if_env') if disable_DNF: if match_attrib_DNF( install_env, disable_DNF ): q['skipped']='yes' continue else: q['enabled']='yes' ytos=tos ytdid=tdid ytosx=tosx ytosd=tosd tags=q.get('tags','') or_tags=q.get('or_tags','') no_tags=q.get('no_tags','') name=q.get('name','') local=q.get('local','') sd=q.get('skip_default','') sinst=q.get('skip_installed',{}) vfrom=q.get('version_from',[]) vto=q.get('version_to',[]) ek=q.get('env_key','') uoa=q.get('uoa','') skip_cache=q.get('skip_cache','') # Check if restricts dependency to a given host or target OS rx=ck.access({'action':'check_target', 'module_uoa':cfg['module_deps']['soft'], 'dict':q, 'host_os_uoa':hosx, 'host_os_dict':hosd, 'target_os_uoa':ytosx, 'target_os_dict':ytosd}) if rx['return']>0: continue if q.get('force_target_as_host','')=='yes': ytos=hos ytdid='' ytosx=hosx ytosd=hosd # Extra tags to be added conditionally: # xtags=[] # Adding extra tags based on environment DNF: # update_tags_if_env = q.get('update_tags_if_env') if update_tags_if_env: for candidate_tag, add_tag_DNF in update_tags_if_env.items(): if match_attrib_DNF( install_env, add_tag_DNF ): xtags.append( candidate_tag ) # Adding extra tags depending on host/target platform: # tx=q.get('update_tags_by_host_platform',{}).get(hplat,'') if tx!='': xtags.append(tx) tx=q.get('update_tags_by_host_platform2',{}).get(hplat2,'') if tx!='': xtags.append(tx) tx=q.get('update_tags_by_target_platform',{}).get(tplat,'') if tx!='': xtags.append(tx) tx=q.get('update_tags_by_target_platform2',{}).get(tplat2,'') if tx!='': xtags.append(tx) tx=q.get('update_tags_by_target_os_uoa',{}).get(ytosx,'') # Ugly, but quick if tx!='': xtags.append(tx) for tx in xtags: if tags!='': tags+=',' tags+=tx.strip() # Check if has associated package (in case of rebuilding deps for replay) qdict=q.get('dict',{}) package_uoa=q.get('package_uoa','') if package_uoa=='': package_uoa=qdict.get('package_uoa','') if package_uoa=='': package_uoa=qdict.get('customize',{}).get('used_package_uid','') xinstall_env=copy.deepcopy(qdict.get('customize',{}).get('install_env',{})) # xinstall_env.update(install_env) # install_env=copy.deepcopy(xinstall_env) # This is bug - install_env is a global env which is common for the first package! # Try to set environment iv+=1 if o=='con': x='*** Dependency '+str(iv)+' = '+k if name!='': x+=' ('+name+')' x+=':' ck.out('') ck.out(x) ii={'host_os':hos, 'original_target_os_name2':tplat2, 'target_os':ytos, 'target_device_id':ytdid, 'tags':tags, 'or_tags':or_tags, 'no_tags':no_tags, 'repo_uoa':enruoa, 'env':env, 'uoa':uoa, 'deps':deps, 'current_deps':qdict.get('deps',{}), 'deps_cache':deps_cache, 'reuse_deps':reuse_deps, 'skip_cache':skip_cache, 'skip_auto_resolution':sar, 'skip_default':sd, 'skip_installed':sinst, 'local':local, 'random':ran, 'name':name, 'key':ek, 'skip_pruning_by_other_deps':q.get('skip_pruning_by_other_deps',''), 'quiet':quiet, 'force_env_init':q.get('force_env_init',''), 'install_to_env':iev, 'install_env':xinstall_env, 'version_from':vfrom, 'version_to':vto, 'package_uoa':package_uoa, 'safe':safe } if rebuild=='yes': ii['rebuild']='yes' if o=='con': ii['out']='con' rx=env_set(ii) if rx['return']>0: return rx lst=rx['lst'] dd=rx['dict'] package_uoa=dd.get('package_uoa','') if package_uoa=='': package_uoa=dd.get('customize',{}).get('used_package_uid','') if package_uoa!='': q['package_uoa']=package_uoa # to be able to rebuild env for replay on another machine dver=rx.get('detected_version','') if dver!='': q['detected_ver']=dver if 'choices' not in q or len('choices')==0: q['choices'] = [zw['data_uid'] for zw in lst] cus=dd.get('customize',{}) if ac=='yes': q['cus']=cus if sd!='yes' or q.get('add_dict','')=='yes': q['dict']=dd ver=cus.get('version','') if ver!='': q['ver']=ver uoa=rx['env_uoa'] q['uoa']=uoa q['num_entries']=len(lst) if o=='con': ck.out('') x=' Resolved. CK environment UID = '+uoa if dver!='': x+=' (detected version '+dver+')' elif ver!='': x+=' (version '+ver+')' ck.out(x) bdn=cus.get('build_dir_name','') if bdn!='': q['build_dir_name']=bdn # Needed to suggest directory name for building libs if uoa not in res: res.append(uoa) env=rx['env'] individual_env_script_body = rx['bat'] q['bat'] = individual_env_script_body combined_env_script_body += individual_env_script_body if q.get('skip_from_bat','')!='yes': alternative_combined_env_script_body += individual_env_script_body pass_tags_to = q.get('pass_matching_tags_to', {}) if pass_tags_to: resolved_tags = dd['tags'] for tag_prefix in pass_tags_to: matching_tags = ','.join( [ matching_tag for matching_tag in resolved_tags if matching_tag.startswith(tag_prefix) ] ) if matching_tags: matching_tags = ','+matching_tags receiving_deps = pass_tags_to[tag_prefix] if type(receiving_deps) != list: receiving_deps = [ receiving_deps ] for receiving_dep in receiving_deps: deps[receiving_dep]['tags'] += matching_tags if o=='con': ck.out(' -----------------------------------') return {'return':0, 'deps':deps, 'env': env, 'bat':combined_env_script_body, 'cut_bat':alternative_combined_env_script_body, 'res_deps':res} ############################################################################## # refresh environment (re-setup soft) def refresh(i): """ Input: { (repo_uoa) - repository UOA (with wildcards), default = local (to avoid updating other repos) (module_uoa) - module UOA (with wildcards) (data_uoa) - data UOA (with wildcards) (tags) - prune by tags (target_os) - prune by target OS (target_bits) - prune by target bits (version) - prune by version (name) - prune by name with wildcards (reset_env) - if 'yes', do not use environment from existing entry, but use original one } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 lst - list from search function view - sorted view list } """ o=i.get('out','') ruoa = i.get('repo_uoa','') or 'local' muoa=i.get('module_uoa','') duoa=i.get('data_uoa','') tags=i.get('tags','') extended_tags = [ tags ] if tags else [] tos_uoa=i.get('target_os','') if tos_uoa!='': # Load OS ry=ck.access({'action':'load', 'module_uoa':cfg['module_deps']['os'], 'data_uoa':tos_uoa}) if ry['return']>0: return ry tos_uoa = ry['dict'].get('base_uoa','') or ry['data_uoa'] extended_tags.append( 'target-os-'+tos_uoa ) tb = i.get('target_bits','') if tb!='': extended_tags.append( tb+'bits' ) ver = i.get('version','') if ver!='': extended_tags.append( 'v'+ver ) tags = ','.join(extended_tags) # FIXME: seems like the following bit was copied from show(), but the actual pattern matching bit was not, so there is no pattern matching actually. name=i.get('name','') wname=False if name.find('*')>=0 or name.find('?')>=0: import fnmatch wname=True name=name.lower() ii={'action':'search', 'module_uoa':muoa, 'repo_uoa':ruoa, 'data_uoa':duoa, 'tags':tags, 'add_info':'yes', 'add_meta':'yes'} rx=ck.access(ii) if rx['return']>0: return rx lst=rx['lst'] # prepare view view=[] target_os_name={} # Caching target OS names for q in lst: duoa=q['data_uoa'] duid=q['data_uid'] ruoa=q['repo_uoa'] ruid=q['repo_uid'] info=q['info'] meta=q['meta'] cus=meta.get('customize',{}) deps=meta.get('deps',{}) setup=meta.get('setup','') tags=meta.get('tags',[]) if 'tmp' in tags: continue tags_csv = ','.join( [t for t in tags if t] ) host_os_uoa=setup.get('host_os_uoa','') target_os_uoa=setup.get('target_os_uoa','') tbits=setup.get('target_os_bits','') version=setup.get('version','') dname=info.get('data_name','') ck.out('***********************************************************************') ck.out(dname+' (Env: '+duid+')') ck.out('') ck.out(' Tags="'+tags_csv+'"') soft_uoa=meta.get('soft_uoa','') if soft_uoa=='': # Trying to detect the soft entry by "abstracting out" some of the tags: subtags=[] for q in tags: if not q.startswith('host-os-') and not q.startswith('target-os-') and \ not q.endswith('bits') and not q.startswith('v') and \ q!='retargeted': subtags.append(q) subtags_csv = ','.join( [t for t in subtags if t] ) ck.out(' All tags="'+tags_csv+'"') ck.out(' Searching soft UOA by tags="'+subtags_csv+'" ...') rx=ck.access({'action':'search', 'module_uoa':cfg['module_deps']['soft'], 'tags':subtags_csv}) if rx['return']>0: return rx lst=rx['lst'] if len(lst)==0: ck.out('') ck.out(' No soft found') rx=ck.inp({'text':' Please, enter soft UOA: '}) soft_uoa=rx['string'].strip() elif len(lst)==1: soft_uoa=lst[0]['data_uid'] ck.out(' Unique soft UOA found='+lst[0]['data_uoa']) else: ck.out('') ck.out(' Available soft for these tags:') num={} ix=0 for q in lst: num[str(ix)]=q['data_uid'] ck.out(' '+str(ix)+') '+q['data_uoa']) ix+=1 rx=ck.inp({'text':' Select one of the options for soft UOA: '}) x=rx['string'].strip() if x not in num: return {'return':1, 'error':'option is not recognized'} soft_uoa=num[x] meta['soft_uoa']=soft_uoa # Update environment entry rx=ck.access({'action':'update', 'module_uoa':work['self_module_uid'], 'data_uoa':duoa, 'data_name':dname, 'dict':meta, 'sort_keys':'yes'}) if rx['return']>0: return rx # Check if package available to take env penv={} package_uoa=meta.get('package_uoa','') if package_uoa!='': ck.out('') ck.out(' Related package: '+package_uoa) rx=ck.access({'action':'load', 'module_uoa':cfg['module_deps']['package'], 'data_uoa':package_uoa}) if rx['return']>0: return rx pdd=rx['dict'] penv=pdd.get('env',{}) # Trying new setup ck.out('') ck.out(' Refreshing setup ...') ii={'action':'setup', 'module_uoa':cfg['module_deps']['soft'], 'host_os':host_os_uoa, 'target_os':target_os_uoa, 'data_uoa':soft_uoa, 'customize':cus, 'deps':deps, 'tags':tags_csv, 'package_uoa':package_uoa, 'skip_device_info_collection':'yes', 'soft_name':dname, 'env':penv, 'env_data_uoa':duid} if i.get('reset_env','')!='': ii['reset_env']=i['reset_env'] rx=ck.access(ii) if rx['return']>0: rrx=rx['return'] if rrx!=32 and rrx!=33: return rx if o=='con': if rrx==32: ck.out('') ck.out('One of the dependencies is missing for this CK environment!') elif rrx==33: ck.out('') ck.out('This environment has either missing dependencies or strange mismatch between registered software environment and current setup!') ck.out('') ry=ck.inp({'text':'Would you like to delete it (Y/n)? '}) x=ry['string'].strip().lower() if x!='n' and x!='no': ry=ck.access({'action':'delete', 'module_uoa':work['self_module_uid'], 'data_uoa':duid}) if ry['return']>0: return ry else: return rx return {'return':0} ############################################################################## # internal function to convert host_os and target_os from UID to UOA to be readable def readable_os(i): """ Input: { setup (host_os_uoa) - UID or UOA (target_os_uoa) - UID or UOA } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 setup1 - processed setup with host_os_uoa and target_os_uoa as UOA } """ original_setup = i.get('setup',{}) import copy enriched_setup = copy.deepcopy( original_setup ) for setup_key in ('host_os_uoa', 'target_os_uoa'): setup_value = original_setup.get(setup_key) if setup_value: r=ck.access({'action':'load', 'module_uoa':cfg['module_deps']['os'], 'data_uoa':setup_value}) if r['return']>0: return r enriched_setup[setup_key]=r['data_uoa'] return {'return':0, 'setup1':enriched_setup} ############################################################################## # internal function: get value from list without error if out of bounds ############################################################################## # parse 'A;B,C;D,~E,F' into [ [(True, A)], [(True, B), (True, C)], [(True, D), (False, E), (True, F)] ] ############################################################################## # Prune search list by no_tags def prune_search_list(i): """ Input: { lst - list of entries after 'search' (or_tags) - add entries which has groups of tags separated by ; (no_tags) - string of tags to exclude (version_from) - check version starting from ... (list of numbers) (version_to) - check version up to ... (list of numbers) (package_uoa) - prune by specific package (setup) - prune by given setup dictionary } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 lst - pruned list (skipped_because_of_version) - if 'yes', skip because of version check } """ lst=i.get('lst',[]) no_tags_csv = i.get('no_tags','') no_tags_set = set( no_tags_csv.split(',') if no_tags_csv!='' else [] ) otags = parse_disjunction( i.get('or_tags','') ) vfrom=i.get('version_from',[]) vto=i.get('version_to',[]) query_setup_dict=i.get('setup', {}) pruned_lst=[] skipped_because_of_version='' query_package_uoa=i.get('package_uoa','') for entry in lst: meta=entry.get('meta',{}) # Filter by package UOA if query_package_uoa: entry_package_uoa = meta.get('package_uoa','') or meta.get('customize',{}).get('used_package_uid','') if entry_package_uoa and entry_package_uoa!=query_package_uoa: continue entry_tags_set = set( meta.get('tags',[]) ) # Filter out temporary entries (unfinished installation) if 'tmp' in entry_tags_set: continue # Filter out matches agains 'no_tags' if no_tags_set & entry_tags_set: continue # Filter by matching against 'or_tags' (full DNF support) if len(otags)>0: otags_ok = False for conjunction in otags: otags_ok = True for (bsign, t) in conjunction: if (t in entry_tags_set) != bsign: # Pythonic XOR otags_ok = False # if at least one member of conjunction is False, the whole conjunction is False break if otags_ok: # if the current conjunction is True, the whole disjunction is True break if not otags_ok: continue v=meta.get('setup',{}).get('version_split',[]) # first check from env, but if not set, check from package if len(v)==0: v=meta.get('customize',{}).get('version_split',[]) if len(v)==0: ver=meta.get('customize',{}).get('version','') if ver!='' and ver[0].isdigit(): rx=ck.access({'action':'split_version', 'module_uoa':cfg['module_deps']['soft'], 'version':ver}) if rx['return']>0: return rx v=rx['version_split'] # NB: a side-effect: the result of version splitting is stored here: # entry['meta']['customize']['version_split'] = v if len(v)>0: if len(vfrom)>0: r=ck.access({'action':'compare_versions', 'module_uoa':cfg['module_deps']['soft'], 'version1':vfrom, 'version2':v}) if r['return']>0: return r if r['result']=='>': skipped_because_of_version='yes' continue if len(vto)>0: r=ck.access({'action':'compare_versions', 'module_uoa':cfg['module_deps']['soft'], 'version1':v, 'version2':vto}) if r['return']>0: return r if r['result']=='>': skipped_because_of_version='yes' continue entry_setup_dict = meta.get('setup') # if entry_setup_dict is empty it matches anything if entry_setup_dict and len(query_setup_dict)>0: rx=ck.compare_dicts({'dict1':entry_setup_dict, 'dict2':query_setup_dict}) # check whether entry_setup_dict contains query_setup_dict if rx['return']>0: return rx if rx['equal']!='yes': continue # If we haven't hit "continue" anywhere above, the list element is ok to be included: pruned_lst.append(entry) return {'return':0, 'lst':pruned_lst, 'skipped_because_of_version':skipped_because_of_version} ############################################################################## # remote env entry and installed package def clean(i): """ Input: { (data_uoa) - entries to be cleaned (wildcards can be used) (repo_uoa) (tags) (force) - if 'yes', force delete (f) - if 'yes', force delete } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } """ import copy import os import shutil o=i.get('out','') ooo = o if o=='con' else '' # shouldn't we consider other options? force=i.get('force','') if force=='': force=i.get('f','') # If repo is not defined, use "local" to avoid removing env entries in other repos ruoa=i.get('repo_uoa','') if ruoa=='': ruoa='local' i['repo_uoa']=ruoa ii=copy.deepcopy(i) ii['action']='show' ii['out']='' r=ck.access(ii) if r['return']>0: return r lst=r['lst'] # Check default path r=ck.access({'action':'prepare_install_path', 'module_uoa':cfg['module_deps']['package']}) if r['return']>0: return r install_path=r['path'] for q in lst: ruid=q['repo_uid'] duid=q['data_uid'] duoa=q['data_uoa'] d=q['meta'] info_data_name = q.get('info',{}).get('data_name','UNKNOWN') tags_csv = ','.join(d.get('tags',[])) cus=d.get('customize',{}) full_path=cus.get('full_path','') absolute_package_install_path='' if full_path.startswith(install_path): if install_path.endswith(os.path.sep) or install_path.endswith('/'): # is the first not enough? j=0 else: j=1 relative_path=full_path[len(install_path)+j:] package_install_dir_name=relative_path.split(os.path.sep)[0] if package_install_dir_name!='': absolute_package_install_path = os.path.join(install_path, package_install_dir_name) if absolute_package_install_path and os.path.isdir(absolute_package_install_path): display_location = ' package in dir "'+absolute_package_install_path+'" and' else: display_location = '' if force=='yes': delete_bool = True elif o=='con': r=ck.inp({'text':'Are you sure to delete'+display_location+' CK entry env:"'+duoa+'" - a '+info_data_name+' with tags: '+tags_csv+' (y/N): '}) if r['return']>0: return r delete_bool = r['string'].strip().lower() == 'y' else: delete_bool = False if delete_bool: # Delete entry r=ck.access({'action':'rm', 'module_uoa':work['self_module_uid'], 'data_uoa':duid, 'repo_uoa':ruid, 'force': 'yes' if delete_bool else '', # convert it to 'yes' string (whether originally 'yes' or 'y') 'out':ooo}) if r['return']>0: return r # Delete package if absolute_package_install_path and os.path.isdir(absolute_package_install_path): shutil.rmtree(absolute_package_install_path) return {'return':0} ############################################################################## # internal function to install package def internal_install_package(i): """ Input: { (host_os) - host OS (detect, if ommitted) (target_os) - target OS (detect, if ommitted) (target_device_id) - target device ID (detect, if omitted) or (device_id) (package_uoa) - fix package (useful for replay ...) (tags) - search UOA by tags (separated by comma) (or_tags) - add entries which has groups of tags separated by ; (no_tags) - exclude entris with these tags separated by comma (deps) - already resolved deps (sub_deps) - deps for the package to be installed (for replay mainly) (reuse_deps) - if 'yes' reuse all deps if found in cache by tags (deps_cache) - list with resolved deps (quiet) - if 'yes', automatically provide default answer to all questions when resolving dependencies ... (install_to_env) - install dependencies to env instead of CK-TOOLS (to keep it clean)! (install_env) - customize installation (useful for replay to rebuild proper package with external env) (safe) - safe mode when searching packages first instead of detecting already installed soft (to have more deterministic build) (version_from) - check version starting from ... (list of numbers) (version_to) - check version up to ... (list of numbers) (add_hint) - if 'yes', can skip package installation (rebuild) - if 'yes', attempt to set env to avoid downloading package again, just rebuild (if supported) } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 env_data_uoa - installed package data UOA (can be "" if not found) env_data_uid - installed package data UID (can be "" if not found) } """ import os o=i.get('out','') ooo = o if o=='con' else '' # shouldn't we consider other options? hos=i.get('host_os','') tos=i.get('target_os','') tdid=i.get('device_id','') package_uoa=i.get('package_uoa','') rebuild=i.get('rebuild','') deps_cache=i.get('deps_cache',[]) reuse_deps=i.get('reuse_deps','') tags=i.get('tags','') or_tags=i.get('or_tags','') no_tags=i.get('no_tags','') quiet=i.get('quiet','') iev=i.get('install_to_env','') install_env=i.get('install_env',{}) safe=i.get('safe','') ah=i.get('add_hint','') vfrom=i.get('version_from',[]) vto=i.get('version_to',[]) cdeps=i.get('deps',{}) # Next, try to install via package for a given software if o=='con': ck.out('') ck.out(' Searching and installing CK software packages ...') if package_uoa!='': # Try to detect alias rx=ck.access({'action':'load', 'module_uoa':cfg['module_deps']['package'], 'data_uoa':package_uoa}) if rx['return']>0: return rx package_uid=rx['data_uid'] package_alias=rx['data_alias'] ck.out(' * package UOA: '+package_alias+' ('+package_uid+')') ck.out(' * tags: '+tags) ck.out(' * or tags: '+or_tags) ck.out(' * no tags: '+no_tags) ck.out('') # if quiet=='yes': # ck.out(' Searching and installing package with these tags automatically ...') # a='y' # else: # rx=ck.inp({'text':' Would you like to search and install package with these tags automatically (Y/n)? '}) # a=rx['string'].strip().lower() # # if a!='n' and a!='no': try: save_cur_dir=os.getcwd() except OSError: os.chdir('..') save_cur_dir=os.getcwd() install_adict={'action':'install', 'module_uoa':cfg['module_deps']['package'], 'data_uoa':package_uoa, 'out':ooo, 'tags':tags, 'or_tags':or_tags, 'no_tags':no_tags, 'install_to_env':iev, 'env':install_env, 'safe':safe, 'host_os':hos, 'target_os':tos, 'device_id':tdid, 'reuse_deps':reuse_deps, 'deps_cache':deps_cache, 'version_from':vfrom, 'version_to':vto, 'quiet':quiet, 'add_hint':ah} if rebuild=='yes': install_adict['rebuild']='yes' # Check if there is a compiler in resolved deps to reuse it sub_deps=i.get('sub_deps',{}) if cdeps.get('compiler',{}).get('uoa','')!='': sub_deps['compiler']=cdeps['compiler'] if cdeps.get('compiler-mcl',{}).get('uoa','')!='': sub_deps['compiler-mcl']=cdeps['compiler-mcl'] if len(sub_deps)>0: install_adict['deps']=sub_deps duoa='' duid='' rx=ck.access(install_adict) if rx['return']==0: duoa=rx['env_data_uoa'] duid=rx['env_data_uid'] os.chdir(save_cur_dir) elif rx['return']!=16: # 16 is a "magic number" meaning "user chose not to install" or "package not found" return rx return {'return':0, 'env_data_uoa':duoa, 'env_data_uid':duid} ############################################################################## # DEPRECATED - use "ck virtual env" instead! # set env for command line (pre-set various flags) def xset(i): """ Input: { } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } """ # Generate tmp file i['local']='yes' i['bat_file']='tmp-ck-env.bat' i['bat_new']='yes' i['print']='yes' return env_set(i) ############################################################################## # pre-load environment for the shell def virtual(i): """ Input: { data_uoa or uoa - environment UOA to pre-load (see "ck show env") (tags) - a combination of comma-separated tags to narrow down the search (or_tags) - a combination of semicolon-separated and comma-separated tags to narrow down the search (tag_groups) - independent groups of or_tags, separated by a space, refer to separate env entries that can be combined together: '--tag_groups=alpha,beta gamma,~delta epsilon;lambda,mu' (search_dict) - require verbatim matches of some attributes (verbose) - set to 'yes' to see the script that will be used to build the environment (shell_cmd) - command line to run in the "environment-enriched" shell (make sure it is suitably quoted) } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } Test: ck virtual env --tags=model,onnx,resnet --shell_cmd='echo $ML_MODEL_DATA_LAYOUT' """ import copy duoa = i.get('data_uoa', i.get('uoa','') ) tag_groups = i.get('tag_groups') list_of_updates = [] if not duoa: list_of_uoa = [] elif ',' in duoa: # TODO: becomes deprecated (but still works) in 1.10, becomes an error in 1.11 # ck.out('') # ck.out('DEPRECATED: You seem to be using CSV format within a CID. Please list multiple CIDs on your command line instead.') # ck.out('') list_of_uoa = duoa.split(',') else: list_of_uoa = [ duoa ] for xcid in i.get('xcids',[]): if xcid['module_uoa'] == 'env': list_of_uoa.append( xcid['data_uoa'] ) else: return {'return':1, 'error':"all CID entries have to be of 'env' type"} for uoa in list_of_uoa: if uoa: if '*' not in uoa: # be a wildcard or be present! r = ck.access( {'action': 'load', 'module_uoa': 'env', 'data_uoa': uoa} ) if r['return']>0: return r list_of_updates.append( {'uoa': uoa} ) if tag_groups and len(tag_groups)>0: # tag_groups are always added on top list_of_updates += [ {'or_tags': or_tags} for or_tags in tag_groups.split()] if not len(list_of_uoa) and ( i.get('tags') or i.get('or_tags') ): # but make sure tags were seen at least once list_of_updates.append( {} ) if not len(list_of_updates): # if nothing else matched, let the user choose one env from the list list_of_updates.append( { 'uoa' : '*'} ) prewrapper_lines = [] for dict_update in list_of_updates: env_set_alist = copy.deepcopy( i ) env_set_alist.update( dict_update ) r=env_set( env_set_alist ) if r['return']>0: return r prewrapper_lines.append( r['bat'].strip() ) return envsecute({ 'prewrapper_lines': prewrapper_lines, 'shell_cmd': i.get('shell_cmd'), 'verbose': i.get('verbose') }) ################################################################################ # execute a shell command pre-wrapped with a given environment-modifying script def envsecute(i): """ Input: { (prewrapper_lines) - lines of the environment-setting pre-wrapper (shell_cmd) - command line to run in the pre-wrapped shell (make sure it is suitably quoted) (verbose) - set to 'yes' to see the pre_wrapper } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } Test: ck envsecute env @@@"{'prewrapper_lines': ['export ALPHA=alpha','echo 12345']}" --shell_cmd='echo $ALPHA $BETA' """ # Run shell import platform import os import subprocess shell_cmd = i.get('shell_cmd', None) prewrapper_lines = i.get('prewrapper_lines', []) if i.get('verbose', '')=='yes': ck.out("*** Preloading the following environment:\n") ck.out("\n".join(prewrapper_lines)) ck.out('') if not shell_cmd: ck.out('') ck.out('*** Warning: you are in a new shell with a pre-set CK environment. Enter "exit" to return to the original one!') if platform.system().lower().startswith('win'): # pragma: no cover if shell_cmd: prewrapper_lines.append( shell_cmd ) termination_flag = '/C' # terminate the CMD shell when the environment script & shell_cmd are over else: termination_flag = '/K' # remain in the CMD shell shell_script_contents = ' & '.join( prewrapper_lines ) p = subprocess.Popen(['cmd', termination_flag, shell_script_contents], shell = True, env=os.environ) p.wait() return_code = p.returncode else: rx=ck.gen_tmp_file({'prefix': 'ck_envsecute_', 'suffix': '.sh'}) if rx['return']>0: return rx prewrapper_filename=rx['file_name'] shell_script_contents = '\n\n'.join( prewrapper_lines ) + '\n' rx=ck.save_text_file({'text_file':prewrapper_filename, 'string':shell_script_contents }) if rx['return']>0: return rx full_cmd_list = ['/bin/bash','--rcfile', prewrapper_filename, '-i'] + ( ['-c', shell_cmd] if shell_cmd else [] ) return_code = subprocess.call(full_cmd_list, shell = False) return {'return':return_code, 'error':'Unknown error from the nested shell'} ############################################################################## # return the install_location def locate(i): """ Input: { (data_uoa or uoa) - environment entry/entries (tags) - prune by tags (target_os) - prune by target OS } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } """ duoa = i.get('data_uoa', i.get('uoa', '*') ) tags_csv = i.get('tags') tos_uoa = i.get('target_os','') if tos_uoa!='': # Load OS ry=ck.access({'action':'load', 'module_uoa':cfg['module_deps']['os'], 'data_uoa':tos_uoa}) if ry['return']>0: return ry tos_uoa = ry['dict'].get('base_uoa','') or ry['data_uoa'] target_os_tag = 'target-os-'+tos_uoa i['tags'] = (tags_csv + ',' if tags_csv else '') + target_os_tag if duoa.find('*')!=-1 or duoa.find('?')!=-1 or tags_csv: searched_adict = ck.access( dict(i, action='search', out='') ) if searched_adict['return']>0: return rx list_of_uoa = [ entry['data_uoa'] for entry in searched_adict['lst'] ] else: list_of_uoa = [ duoa ] install_locations = {} for uoa in list_of_uoa: loaded_adict = ck.access({'action':'load', 'module_uoa': 'env', 'data_uoa': uoa, }) if loaded_adict['return']>0: return loaded_adict install_location = loaded_adict.get('dict', {}).get('install_location', '') install_locations[uoa] = install_location if i.get('out')=='con': if len(list_of_uoa)>1: ck.out("env:{} -> {}".format(uoa, install_location)) else: ck.out(install_location) return {'return': 0, 'install_locations': install_locations} ############################################################################## # show the shell script for setting up this env def cat(i): """ Input: { data_uoa or uoa - environment UOA to pre-load (see "ck virtual env") } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } """ import os duoa = i.get('data_uoa', i.get('uoa', '*') ) tags_csv = i.get('tags') if duoa.find(',')!=-1: # TODO: becomes deprecated (but still works) in 1.10, becomes an error in 1.11 # ck.out('') # ck.out('DEPRECATED: You seem to be using CSV format within a CID. Please list multiple CIDs on your command line instead.') # ck.out('') list_of_uoa = duoa.split(',') elif duoa.find('*')!=-1 or duoa.find('?')!=-1 or tags_csv: searched_adict = ck.access( dict(i, action='search') ) if searched_adict['return']>0: return rx list_of_uoa = [ entry['data_uoa'] for entry in searched_adict['lst'] ] else: list_of_uoa = [ duoa ] for xcid in i.get('xcids',[]): if xcid['module_uoa'] == 'env': list_of_uoa.append( xcid['data_uoa'] ) else: return {'return':1, 'error':"all CID entries have to be of 'env' type"} # Get some info about OS r=ck.access({'action':'detect', 'module_uoa':cfg['module_deps']['platform.os'], 'skip_info_collection':'yes', }) if r['return']>0: return r hosd=r['host_os_dict'] rem_marker = hosd['rem'] for uoa in list_of_uoa: loaded_adict = ck.access({'action':'load', 'module_uoa': 'env', 'data_uoa': uoa, }) if loaded_adict['return']>0: return loaded_adict entry_directory_path = loaded_adict['path'] env_script_name = loaded_adict['dict'].get('env_script') or ( cfg['default_bat_name'] + hosd.get('script_ext','') ) setup_script_path = os.path.join( entry_directory_path, env_script_name) data_name = loaded_adict['data_name'] version = loaded_adict['dict'].get('customize',{}).get('version', 'UNKNOWN_VERSION') tags_csv = ','.join( loaded_adict['dict'].get('tags',[]) ) header_lines = [ rem_marker, '{} {}[ {} ver. {}, {} ]{}'.format(rem_marker, '-' * 20, data_name, version, setup_script_path, '-' * 20), '{} Tags: {}'.format(rem_marker, tags_csv), rem_marker, ] with open(setup_script_path, 'r') as setup_script_file: line_number = 0 for input_line in setup_script_file: input_line = input_line.rstrip() ck.out( input_line ) if not line_number: # insert the auto-generated header right after the first line for header_line in header_lines: ck.out( header_line ) line_number += 1 ck.out( "\n\n" ) return {'return':0} ############################################################################## # remove tmp entries (when installation to env entry failed) def rmtmp(i): """ Input: { } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } """ i['action']='rm' i['data_uoa']='*' tags=i.get('tags','') if tags!='': tags+=',' tags+='tmp' i['tags']=tags return ck.access(i) ############################################################################## # get all versions from deps (recursively) def get_all_versions_in_deps(i): """ Input: { deps - deps dict (key) - current key (only_root) - if 'yes', check only root keys (versions) - current versions (tag_versions) - current versions by tags } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 versions - all versions for all deps tag_versions - all versions for all deps by tags } """ deps=i['deps'] key=i.get('key','') versions=i.get('versions',{}) tversions=i.get('tversions',[]) only_root=(i.get('only_root','')=='yes') for k in deps: xkey=key if xkey!='': xkey+='#' xkey+=k d=deps[k] dd=d.get('dict',{}) tags=dd.get('tags',[]) stags=','.join(tags) ver=d.get('ver','') versions[xkey]=ver if stags not in tversions: tversions.append(stags) deps2=dd.get('deps',{}) if not only_root and len(deps2)>0: r=get_all_versions_in_deps({'deps':deps2, 'key':xkey, 'versions':versions, 'tag_versions':tversions}) if r['return']>0: return r return {'return':0, 'versions':versions, 'tag_versions':tversions} ############################################################################## # extracting summary of all deps def deps_summary(i): """ Input: { deps - resolved deps } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 deps_summary - summary of deps } """ deps=i['deps'] ds=i.get('deps_summary',{}) for x in deps: d=deps[x] dd=d.get('dict',{}) ds[x]={} cx=dd.get('customize',{}) ds[x]['tags']=d.get('tags',[]) ds[x]['name']=d.get('name','') ds[x]['package_tags']=','.join(dd.get('tags',[])) ds[x]['data_name']=dd.get('data_name','') puoa=dd.get('package_uoa','') if puoa=='': puoa=d.get('cus',{}).get('used_package_uid','') ds[x]['package_uoa']=puoa ds[x]['version']=cx.get('version','') ds[x]['git_revision']=cx.get('git_info',{}).get('revision','') ds[x]['git_iso_datetime_cut_revision']=cx.get('git_info',{}).get('iso_datetime_cut_revision','') sdeps=dd.get('deps',{}) if len(sdeps)>0: # Recursion r=deps_summary({'deps':sdeps}) if r['return']>0: return r ds[x]['deps']=r['deps_summary'] return {'return':0, 'deps_summary':ds} ############################################################################## # delete env entries def rm(i): """ Input: { (repo_uoa) - local by default (f) - force removing } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } """ # Check that repo_uoa is local by default to avoid deleting permanent env in other entries ruoa=i.get('repo_uoa','') if ruoa=='': ruoa='local' i['repo_uoa']=ruoa i['common_func']='yes' return ck.access(i) ############################################################################## # delete env entry def delete(i): """ Input: { See rm function } Output: { See rm function } """ return rm(i) ############################################################################## # delete env entry def remove(i): """ Input: { See rm function } Output: { See rm function } """ return rm(i)
[ 2, 198, 2, 29128, 20414, 357, 38986, 8, 198, 2, 198, 2, 4091, 45233, 38559, 24290, 13, 14116, 329, 15665, 3307, 198, 2, 4091, 45233, 27975, 38162, 9947, 13, 14116, 329, 6634, 3307, 198, 2, 198, 2, 23836, 25, 1902, 328, 10145, 376, 1834, 259, 11, 1902, 328, 10145, 13, 37, 1834, 259, 31, 66, 51, 46493, 13, 2398, 11, 2638, 1378, 69, 1834, 259, 13, 3262, 198, 2, 198, 198, 37581, 34758, 92, 220, 1303, 2561, 307, 6153, 416, 45233, 357, 28961, 6764, 286, 428, 8265, 8, 198, 1818, 34758, 92, 1303, 2561, 307, 6153, 416, 45233, 357, 11498, 35738, 1366, 8, 198, 694, 28, 14202, 1303, 2561, 307, 6153, 416, 45233, 357, 17532, 45233, 9720, 8, 220, 198, 198, 2, 10714, 6460, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 20768, 1096, 8265, 198, 198, 4299, 2315, 7, 72, 2599, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 23412, 25, 220, 23884, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 15, 92, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 900, 2858, 329, 4899, 290, 12782, 220, 198, 2, 357, 48101, 6300, 286, 262, 976, 4899, 14, 75, 11127, 460, 763, 12, 38476, 8, 198, 198, 4299, 17365, 62, 2617, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 4774, 62, 418, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2583, 7294, 357, 15255, 478, 11, 611, 267, 3020, 2175, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16793, 62, 418, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2496, 7294, 357, 15255, 478, 11, 611, 267, 3020, 2175, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16793, 62, 25202, 62, 312, 8, 220, 220, 220, 220, 532, 2496, 3335, 4522, 357, 15255, 478, 11, 611, 22532, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 25202, 62, 312, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 260, 7501, 62, 84, 12162, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 29924, 810, 284, 4179, 2989, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 84, 12162, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2858, 471, 23621, 5726, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2989, 471, 23621, 416, 15940, 357, 25512, 515, 416, 39650, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 273, 62, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 751, 12784, 543, 468, 2628, 286, 15940, 11266, 416, 2162, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3919, 62, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 19607, 920, 2442, 351, 777, 15940, 11266, 416, 39650, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 12947, 62, 11600, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2421, 3326, 8664, 320, 7466, 286, 617, 12608, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 12001, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 751, 2583, 62, 418, 11, 2496, 62, 418, 11, 2496, 62, 25202, 62, 312, 284, 2989, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2539, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1994, 422, 390, 862, 357, 1462, 900, 17365, 351, 3108, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3672, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2836, 12, 13120, 1438, 286, 262, 20203, 357, 361, 2476, 284, 307, 12939, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10378, 82, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1541, 12939, 390, 862, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 260, 1904, 62, 10378, 82, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 6, 32349, 477, 390, 862, 611, 1043, 287, 12940, 416, 15940, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10378, 82, 62, 23870, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1351, 351, 12939, 390, 862, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 48267, 62, 23870, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 14267, 40918, 357, 29810, 2622, 284, 11629, 378, 625, 390, 862, 884, 355, 360, 6144, 9195, 82, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1141, 1960, 313, 46493, 11, 4315, 12, 26968, 4102, 278, 290, 4315, 12, 28286, 278, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 48267, 62, 23736, 62, 29268, 8, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 466, 407, 2198, 611, 390, 862, 389, 1541, 12939, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 48267, 62, 12286, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 14267, 13326, 286, 4277, 6589, 3788, 2196, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 48267, 62, 37050, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 8633, 284, 11986, 319, 543, 9554, 407, 284, 2989, 1541, 6589, 2196, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 48267, 62, 1050, 46493, 62, 1525, 62, 847, 62, 10378, 82, 8, 532, 611, 705, 8505, 3256, 466, 407, 778, 1726, 1695, 551, 14259, 1262, 584, 12939, 390, 862, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 8664, 62, 7753, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 5145, 11639, 3256, 779, 428, 29472, 284, 7716, 14, 33295, 7365, 2393, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 8664, 62, 3605, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 923, 649, 7365, 2393, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24330, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4683, 2858, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 4798, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 3601, 1043, 2858, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 25120, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 6, 290, 612, 318, 257, 3572, 11, 2922, 4738, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 1904, 913, 329, 5897, 6306, 15779, 29985, 884, 355, 1509, 14, 36599, 4315, 28286, 278, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 39624, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 6338, 2148, 4277, 3280, 284, 477, 2683, 618, 31038, 20086, 2644, 220, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3174, 62, 24330, 62, 15003, 8, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 751, 705, 16, 6, 618, 4585, 17365, 4226, 357, 1904, 913, 329, 27140, 15996, 20652, 329, 1672, 284, 2700, 6865, 270, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 17350, 62, 1462, 62, 24330, 8, 220, 220, 220, 220, 220, 220, 532, 2721, 20086, 284, 17365, 2427, 286, 45233, 12, 10468, 3535, 50, 357, 1462, 1394, 340, 3424, 31520, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 17350, 62, 24330, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 24184, 9988, 357, 1904, 913, 329, 24788, 284, 17884, 1774, 5301, 351, 7097, 17365, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 9641, 62, 6738, 8, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2198, 2196, 3599, 422, 2644, 357, 4868, 286, 3146, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 9641, 62, 1462, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2198, 2196, 510, 284, 2644, 357, 4868, 286, 3146, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 21230, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3338, 4235, 618, 10342, 10392, 717, 2427, 286, 31521, 1541, 6589, 2705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 1462, 423, 517, 2206, 49228, 1382, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 26495, 62, 84, 12162, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2700, 9988, 5301, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 14508, 4465, 284, 17884, 390, 862, 1141, 24788, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 260, 11249, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 2230, 284, 900, 17365, 284, 3368, 22023, 5301, 757, 11, 655, 17884, 357, 361, 4855, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 3933, 11, 611, 2858, 373, 13140, 357, 24330, 62, 84, 12162, 532, 17365, 543, 373, 407, 1043, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17365, 62, 84, 12162, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1043, 2858, 471, 23621, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17365, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6153, 2858, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7365, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4731, 329, 7365, 2393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 301, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 477, 1043, 12784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8633, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 13634, 286, 262, 6163, 17365, 5726, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12326, 62, 9641, 532, 12326, 2196, 286, 257, 3788, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 1330, 28686, 198, 220, 220, 220, 1330, 4866, 198, 220, 220, 220, 1330, 33918, 628, 220, 220, 220, 267, 28, 72, 13, 1136, 10786, 448, 3256, 7061, 8, 198, 220, 220, 220, 267, 2238, 796, 267, 611, 267, 855, 6, 1102, 6, 2073, 10148, 220, 220, 220, 220, 1303, 6584, 470, 356, 2074, 584, 3689, 30, 628, 220, 220, 220, 4966, 28, 72, 13, 1136, 10786, 25120, 3256, 7061, 8, 198, 220, 220, 220, 5897, 28, 72, 13, 1136, 10786, 39624, 3256, 7061, 8, 628, 220, 220, 220, 1438, 28, 72, 13, 1136, 10786, 3672, 3256, 7061, 8, 628, 220, 220, 220, 17884, 28, 72, 13, 1136, 10786, 260, 11249, 3256, 7061, 8, 628, 220, 220, 220, 14267, 62, 23870, 28, 72, 13, 1136, 10786, 48267, 62, 23870, 3256, 7061, 8, 628, 220, 220, 220, 5301, 62, 84, 12162, 28, 72, 13, 1136, 10786, 26495, 62, 84, 12162, 3256, 7061, 8, 628, 220, 220, 220, 2721, 62, 24330, 28, 72, 13, 1136, 10786, 17350, 62, 24330, 3256, 90, 30072, 628, 220, 220, 220, 1303, 5985, 5072, 2393, 198, 220, 220, 220, 29008, 28, 72, 13, 1136, 10786, 48267, 62, 23736, 62, 29268, 3256, 7061, 8, 198, 220, 220, 220, 269, 10378, 82, 28, 72, 13, 1136, 10786, 10378, 82, 3256, 90, 30072, 628, 220, 220, 220, 390, 862, 62, 23870, 28, 72, 13, 1136, 10786, 10378, 82, 62, 23870, 3256, 58, 12962, 198, 220, 220, 220, 32349, 62, 10378, 82, 28, 72, 13, 1136, 10786, 260, 1904, 62, 10378, 82, 3256, 7061, 8, 628, 220, 220, 220, 14267, 62, 12286, 28, 72, 13, 1136, 10786, 48267, 62, 12286, 3256, 7061, 8, 198, 220, 220, 220, 14267, 62, 37050, 28, 72, 13, 1136, 10786, 48267, 62, 37050, 3256, 90, 30072, 628, 220, 220, 220, 220, 11203, 28, 72, 13, 1136, 10786, 17350, 62, 1462, 62, 24330, 3256, 7061, 8, 198, 220, 220, 220, 3338, 28, 72, 13, 1136, 10786, 21230, 3256, 7061, 8, 628, 220, 220, 220, 275, 69, 28, 72, 13, 1136, 10786, 8664, 62, 7753, 3256, 7061, 8, 198, 220, 220, 220, 611, 275, 69, 0, 28, 7061, 290, 28686, 13, 6978, 13, 4468, 576, 7, 19881, 2599, 28686, 13, 28956, 7, 19881, 8, 628, 220, 220, 220, 410, 6738, 28, 72, 13, 1136, 10786, 9641, 62, 6738, 3256, 58, 12962, 198, 220, 220, 220, 410, 1462, 28, 72, 13, 1136, 10786, 9641, 62, 1462, 3256, 58, 12962, 628, 220, 220, 220, 1303, 6822, 2583, 14, 16793, 7294, 14, 36037, 198, 220, 220, 220, 289, 418, 28, 72, 13, 1136, 10786, 4774, 62, 418, 3256, 7061, 8, 198, 220, 220, 220, 284, 82, 28, 72, 13, 1136, 10786, 16793, 62, 418, 3256, 7061, 8, 198, 220, 220, 220, 256, 20839, 28, 72, 13, 1136, 10786, 16793, 62, 25202, 62, 312, 3256, 7061, 8, 198, 220, 220, 220, 611, 256, 20839, 855, 7061, 25, 256, 20839, 28, 72, 13, 1136, 10786, 25202, 62, 312, 3256, 7061, 8, 628, 220, 220, 220, 2836, 62, 24330, 796, 357, 71, 418, 0, 28, 7061, 393, 284, 82, 0, 28, 7061, 393, 256, 20839, 0, 28, 7061, 8, 628, 220, 220, 220, 1303, 3497, 617, 7508, 546, 7294, 198, 220, 220, 220, 21065, 34758, 6, 2673, 10354, 6, 15255, 478, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 24254, 13, 418, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 4774, 62, 418, 10354, 71, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 10354, 83, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 25202, 62, 312, 10354, 8671, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 48267, 62, 10951, 62, 43681, 10354, 6, 8505, 6, 92, 198, 220, 220, 220, 374, 28, 694, 13, 15526, 7, 4178, 8, 198, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 289, 418, 28, 81, 17816, 4774, 62, 418, 62, 27112, 20520, 198, 220, 220, 220, 289, 418, 87, 28, 81, 17816, 4774, 62, 418, 62, 84, 12162, 20520, 198, 220, 220, 220, 289, 418, 67, 28, 81, 17816, 4774, 62, 418, 62, 11600, 20520, 628, 220, 220, 220, 269, 74, 62, 418, 62, 3672, 28, 71, 418, 67, 17816, 694, 62, 3672, 20520, 628, 220, 220, 220, 284, 82, 28, 81, 17816, 418, 62, 27112, 20520, 198, 220, 220, 220, 284, 82, 87, 28, 81, 17816, 418, 62, 84, 12162, 20520, 198, 220, 220, 220, 284, 21282, 28, 81, 17816, 418, 62, 11600, 20520, 628, 220, 220, 220, 1303, 6822, 611, 2779, 318, 1180, 198, 220, 220, 220, 2124, 16, 28, 71, 418, 67, 13, 1136, 10786, 8692, 62, 27112, 3256, 7061, 8, 198, 220, 220, 220, 2124, 17, 28, 71, 418, 67, 13, 1136, 10786, 8692, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 611, 2124, 16, 0, 28, 7061, 290, 2124, 17, 0, 28, 7061, 25, 220, 198, 220, 220, 220, 220, 220, 220, 289, 418, 28, 87, 16, 198, 220, 220, 220, 220, 220, 220, 289, 418, 87, 28, 87, 17, 198, 220, 220, 220, 2124, 16, 28, 83, 418, 67, 13, 1136, 10786, 8692, 62, 27112, 3256, 7061, 8, 198, 220, 220, 220, 2124, 17, 28, 83, 418, 67, 13, 1136, 10786, 8692, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 611, 2124, 16, 0, 28, 7061, 290, 2124, 17, 0, 28, 7061, 25, 220, 198, 220, 220, 220, 220, 220, 220, 284, 82, 28, 87, 16, 198, 220, 220, 220, 220, 220, 220, 284, 82, 87, 28, 87, 17, 628, 220, 220, 220, 6569, 28, 83, 418, 67, 13, 1136, 10786, 47960, 3256, 7061, 8, 628, 220, 220, 220, 256, 9895, 28, 83, 418, 67, 13, 1136, 10786, 9895, 3256, 7061, 8, 628, 220, 220, 220, 289, 489, 265, 28, 71, 418, 67, 13, 1136, 10786, 694, 62, 3672, 3256, 7061, 8, 628, 220, 220, 220, 256, 489, 265, 17, 28, 72, 13, 1136, 10786, 14986, 62, 16793, 62, 418, 62, 3672, 17, 3256, 7061, 8, 628, 220, 220, 220, 1658, 316, 28, 71, 418, 67, 13, 1136, 10786, 24330, 62, 2617, 3256, 7061, 8, 198, 220, 220, 220, 264, 7785, 65, 28, 71, 418, 67, 13, 1136, 10786, 24330, 62, 7785, 62, 9688, 3256, 7061, 8, 198, 220, 220, 220, 38487, 533, 28, 71, 418, 67, 13, 1136, 10786, 24330, 62, 7785, 62, 11338, 3256, 7061, 8, 198, 220, 220, 220, 264, 15908, 82, 28, 71, 418, 67, 13, 1136, 10786, 15908, 62, 325, 79, 3256, 7061, 8, 198, 220, 220, 220, 819, 82, 28, 71, 418, 67, 13, 1136, 10786, 24330, 62, 7785, 62, 25512, 1352, 3256, 7061, 8, 198, 220, 220, 220, 304, 361, 82, 28, 71, 418, 67, 13, 1136, 10786, 24330, 62, 421, 6421, 62, 361, 62, 13200, 3256, 7061, 8, 198, 220, 220, 220, 299, 448, 28, 71, 418, 67, 13, 1136, 10786, 3919, 62, 22915, 3256, 7061, 8, 628, 220, 220, 220, 1303, 6822, 2858, 471, 23621, 198, 220, 220, 220, 551, 622, 12162, 28, 72, 13, 1136, 10786, 260, 7501, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 15940, 28, 72, 13, 1136, 10786, 31499, 3256, 7061, 8, 198, 220, 220, 220, 393, 62, 31499, 28, 72, 13, 1136, 10786, 273, 62, 31499, 3256, 7061, 8, 198, 220, 220, 220, 645, 62, 31499, 28, 72, 13, 1136, 10786, 3919, 62, 31499, 3256, 7061, 8, 198, 220, 220, 220, 2989, 62, 11600, 796, 1312, 13, 1136, 10786, 12947, 62, 11600, 11537, 198, 220, 220, 220, 7043, 12162, 28, 72, 13, 1136, 10786, 84, 12162, 3256, 7061, 8, 628, 220, 220, 220, 300, 87, 28, 15, 198, 220, 220, 220, 49427, 34758, 92, 198, 220, 220, 220, 9058, 34758, 92, 628, 220, 220, 220, 611, 2836, 62, 24330, 393, 1312, 13, 1136, 10786, 12001, 3256, 7061, 8, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 9058, 34758, 6, 4774, 62, 418, 62, 84, 12162, 10354, 71, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 62, 84, 12162, 10354, 83, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 62, 9895, 10354, 83, 9895, 92, 628, 220, 220, 220, 611, 32349, 62, 10378, 82, 855, 6, 8505, 6, 290, 14267, 62, 23870, 0, 11639, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 1303, 6822, 287, 12940, 0, 198, 220, 220, 220, 220, 220, 220, 1207, 62, 22766, 796, 1391, 6, 40406, 10354, 40406, 11, 705, 31499, 10354, 31499, 13, 35312, 7, 3256, 33809, 705, 273, 62, 31499, 10354, 273, 62, 31499, 13, 35312, 7, 3256, 33809, 705, 3919, 62, 31499, 10354, 3919, 62, 31499, 13, 35312, 7, 3256, 11537, 92, 198, 220, 220, 220, 220, 220, 220, 329, 30736, 62, 80, 287, 390, 862, 62, 23870, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1207, 62, 28961, 796, 30736, 62, 80, 13, 1136, 10786, 28961, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 28, 694, 13, 5589, 533, 62, 11600, 82, 15090, 6, 11600, 16, 10354, 10378, 62, 28961, 11, 705, 11600, 17, 10354, 10378, 62, 22766, 30072, 220, 220, 220, 220, 1303, 611, 1207, 62, 28961, 4909, 1207, 62, 22766, 986, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 40496, 20520, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7043, 12162, 796, 30736, 62, 80, 13, 1136, 10786, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32349, 62, 10378, 82, 11639, 3919, 6, 1303, 284, 3368, 19698, 12940, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 1303, 11140, 198, 220, 220, 220, 21065, 34758, 6, 2673, 10354, 6, 12947, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 1818, 17816, 944, 62, 21412, 62, 27112, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 31499, 10354, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 260, 7501, 62, 84, 12162, 10354, 268, 622, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 646, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2860, 62, 10951, 10354, 6, 8505, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2860, 62, 28961, 10354, 6, 8505, 6, 198, 220, 220, 220, 1782, 1303, 10664, 284, 3297, 416, 2196, 11, 611, 33985, 628, 220, 220, 220, 611, 2989, 62, 11600, 0, 28, 14202, 290, 18896, 7, 12947, 62, 11600, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 21065, 17816, 12947, 62, 11600, 20520, 28, 12947, 62, 11600, 628, 220, 220, 220, 46955, 28, 30073, 13, 22089, 30073, 7, 4178, 8, 1303, 743, 761, 284, 9585, 706, 9352, 628, 220, 220, 220, 1303, 43426, 1744, 6509, 198, 220, 220, 220, 2124, 796, 705, 1, 90, 36786, 4458, 18982, 7, 3672, 8, 611, 1438, 2073, 705, 35827, 3788, 705, 198, 220, 220, 220, 31456, 62, 24330, 62, 1662, 62, 9275, 796, 705, 3919, 6823, 45233, 2858, 373, 1043, 329, 23884, 20203, 351, 15940, 2625, 90, 36786, 4458, 18982, 7, 87, 11, 15940, 8, 628, 220, 220, 220, 611, 645, 62, 31499, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 31456, 62, 24330, 62, 1662, 62, 9275, 47932, 3256, 645, 62, 31499, 2625, 6, 10, 3919, 62, 31499, 10, 29653, 6, 628, 220, 220, 220, 611, 18896, 7, 40406, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 686, 28, 46155, 62, 418, 15090, 6, 40406, 10354, 40406, 30072, 198, 220, 220, 220, 220, 220, 220, 611, 686, 17816, 7783, 20520, 29, 15, 25, 1441, 686, 198, 220, 220, 220, 220, 220, 220, 9058, 16, 28, 305, 17816, 40406, 16, 20520, 628, 220, 220, 220, 220, 220, 220, 31456, 62, 24330, 62, 1662, 62, 9275, 10, 11639, 290, 9058, 11639, 10, 17752, 13, 67, 8142, 7, 40406, 16, 8, 628, 220, 220, 220, 611, 18896, 7, 85, 6738, 8, 29, 15, 393, 18896, 7, 85, 1462, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 31456, 62, 24330, 62, 1662, 62, 9275, 10, 11639, 290, 2196, 17778, 19203, 10, 17752, 13, 67, 8142, 7, 85, 6738, 47762, 6, 19841, 410, 19841, 705, 10, 17752, 13, 67, 8142, 7, 85, 1462, 47762, 11537, 6, 628, 220, 220, 220, 1303, 11140, 329, 2858, 12784, 198, 220, 220, 220, 374, 28, 694, 13, 15526, 7, 4178, 8, 198, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 1303, 1736, 1726, 611, 2622, 198, 220, 220, 220, 374, 28, 1050, 1726, 62, 12947, 62, 4868, 15090, 6, 75, 301, 10354, 81, 17816, 75, 301, 6, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 273, 62, 31499, 10354, 273, 62, 31499, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3919, 62, 31499, 10354, 3919, 62, 31499, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 6738, 10354, 85, 6738, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 1462, 10354, 85, 1462, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 40406, 10354, 40406, 11, 198, 220, 220, 220, 32092, 198, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 198, 220, 220, 220, 264, 65, 709, 28, 81, 13, 1136, 10786, 8135, 3949, 62, 13893, 62, 1659, 62, 9641, 3256, 7061, 8, 628, 220, 220, 220, 300, 28, 81, 17816, 75, 301, 20520, 198, 220, 220, 220, 300, 87, 28, 11925, 7, 75, 8, 628, 220, 220, 220, 257, 20895, 292, 28, 21737, 628, 220, 220, 220, 288, 3672, 28, 7061, 628, 220, 220, 220, 1949, 62, 1462, 62, 260, 17350, 28, 25101, 198, 220, 220, 220, 611, 300, 87, 855, 15, 290, 7043, 12162, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 1303, 6822, 2748, 1917, 198, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 2220, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 1818, 17816, 944, 62, 21412, 62, 27112, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 646, 12162, 30072, 198, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 0, 28, 1433, 25, 1441, 374, 87, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5301, 62, 84, 12162, 855, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 17816, 18224, 20520, 11639, 2536, 858, 532, 4814, 2858, 19203, 10, 646, 12162, 10, 11537, 290, 5301, 407, 7368, 357, 11261, 1645, 1141, 24788, 422, 1194, 4572, 33047, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 6, 290, 5897, 0, 11639, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 220, 39410, 25, 705, 10, 40914, 17816, 18224, 20520, 10, 6, 0, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 88, 28, 694, 13, 259, 79, 15090, 6, 5239, 10354, 6, 220, 220, 220, 10928, 345, 588, 284, 4886, 1220, 6865, 32989, 757, 357, 56, 14, 77, 19427, 705, 30072, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 563, 17816, 8841, 6, 4083, 36311, 3419, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 855, 6, 77, 6, 393, 2124, 855, 6, 3919, 10354, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 15323, 460, 1949, 284, 17884, 422, 2810, 5301, 471, 23621, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 31502, 25, 2858, 1595, 43054, 83, 2152, 475, 5301, 2810, 532, 2111, 284, 2266, 316, 478, 14, 260, 17350, 2644, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7043, 12162, 28, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46955, 17816, 7890, 62, 84, 12162, 20520, 28, 646, 12162, 1303, 1201, 481, 307, 1568, 649, 2989, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 28, 21737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 87, 28, 15, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 62, 1462, 62, 260, 17350, 28, 17821, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 30021, 2989, 611, 468, 1231, 1366, 334, 12162, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 28, 694, 13, 15526, 7, 15479, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1736, 1726, 611, 2622, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 28, 1050, 1726, 62, 12947, 62, 4868, 15090, 6, 75, 301, 10354, 81, 17816, 75, 301, 6, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 273, 62, 31499, 10354, 273, 62, 31499, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3919, 62, 31499, 10354, 3919, 62, 31499, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 6738, 10354, 85, 6738, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 1462, 10354, 85, 1462, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 40406, 10354, 40406, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 26495, 62, 84, 12162, 10354, 26495, 62, 84, 12162, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 65, 709, 28, 81, 13, 1136, 10786, 8135, 3949, 62, 13893, 62, 1659, 62, 9641, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 28, 81, 17816, 75, 301, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 87, 28, 11925, 7, 75, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 20895, 292, 28, 21737, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 3672, 28, 7061, 628, 220, 220, 220, 220, 220, 220, 611, 407, 1949, 62, 1462, 62, 260, 17350, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 9310, 28, 40914, 17816, 11600, 6, 4083, 1136, 10786, 40406, 3256, 90, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 32068, 9058, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 31502, 25, 9167, 2583, 393, 2496, 7294, 7508, 318, 407, 12336, 7508, 287, 17365, 705, 10, 646, 12162, 10, 6, 0, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 1102, 1851, 62, 27112, 62, 1462, 62, 26011, 3256, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 418, 6, 4357, 705, 84, 12162, 10354, 33714, 13, 1136, 10786, 4774, 62, 418, 62, 84, 12162, 3256, 7061, 8, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 40914, 17816, 8841, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 14504, 7294, 471, 23621, 287, 17365, 705, 10, 646, 12162, 10, 6, 220, 220, 220, 1058, 705, 10, 87, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 1102, 1851, 62, 27112, 62, 1462, 62, 26011, 3256, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 418, 6, 4357, 705, 84, 12162, 10354, 40406, 13, 1136, 10786, 4774, 62, 418, 62, 84, 12162, 3256, 7061, 8, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 40914, 17816, 8841, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 19390, 276, 2583, 7294, 471, 23621, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 705, 10, 87, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 1102, 1851, 62, 27112, 62, 1462, 62, 26011, 3256, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 418, 6, 4357, 705, 84, 12162, 10354, 33714, 13, 1136, 10786, 16793, 62, 418, 62, 84, 12162, 3256, 7061, 8, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 40914, 17816, 8841, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 12744, 7294, 471, 23621, 287, 17365, 705, 10, 646, 12162, 10, 6, 220, 1058, 705, 10, 87, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 1102, 1851, 62, 27112, 62, 1462, 62, 26011, 3256, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 418, 6, 4357, 705, 84, 12162, 10354, 40406, 13, 1136, 10786, 16793, 62, 418, 62, 84, 12162, 3256, 7061, 8, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 40914, 17816, 8841, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 19390, 276, 2496, 7294, 471, 23621, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 705, 10, 87, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 12744, 7294, 10340, 287, 17365, 705, 10, 646, 12162, 10, 6, 1058, 705, 10, 33714, 13, 1136, 10786, 16793, 62, 418, 62, 9895, 3256, 7061, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 19390, 276, 2496, 7294, 10340, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 705, 10, 40406, 13, 1136, 10786, 16793, 62, 418, 62, 9895, 3256, 7061, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 12744, 393, 62, 31499, 1058, 705, 10, 33714, 13, 1136, 10786, 31499, 3256, 7061, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 19390, 276, 393, 62, 31499, 220, 1058, 705, 10, 273, 62, 31499, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 12744, 645, 62, 31499, 1058, 705, 10, 33714, 13, 1136, 10786, 3919, 62, 31499, 3256, 7061, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 19390, 276, 645, 62, 31499, 220, 1058, 705, 10, 3919, 62, 31499, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 770, 318, 257, 1744, 5434, 532, 3387, 989, 994, 25, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 1635, 3740, 1378, 12567, 13, 785, 14, 4029, 9503, 684, 14, 694, 14, 37165, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 1635, 3740, 1378, 12567, 13, 785, 14, 4029, 9503, 684, 14, 694, 12, 4029, 2840, 14, 37165, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 2091, 11, 705, 18224, 10354, 6, 14421, 2583, 393, 2496, 7294, 19203, 10, 2536, 7, 40406, 47762, 6, 318, 407, 12336, 262, 530, 287, 3788, 17365, 705, 10, 646, 12162, 92, 628, 220, 220, 220, 1303, 1002, 645, 12784, 290, 3338, 4235, 11, 2989, 10392, 717, 198, 220, 220, 220, 3751, 62, 43917, 28, 25101, 628, 220, 220, 220, 611, 300, 87, 855, 15, 290, 7043, 12162, 855, 7061, 290, 15940, 0, 28, 7061, 290, 357, 21230, 855, 6, 8505, 6, 393, 5301, 62, 84, 12162, 0, 28, 7061, 2599, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 23926, 4770, 2559, 855, 11537, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 31502, 25, 705, 10, 19662, 62, 24330, 62, 1662, 62, 9275, 8, 198, 220, 220, 220, 220, 220, 220, 3751, 62, 43917, 28, 17821, 628, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 17350, 62, 24330, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 3041, 3500, 2656, 290, 4622, 778, 40881, 2858, 2644, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 479, 287, 1351, 7, 17350, 62, 24330, 13, 13083, 3419, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 34343, 25, 2407, 13400, 532, 3863, 815, 1700, 7097, 17365, 11777, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 479, 287, 37250, 43, 38948, 50, 3256, 705, 34, 8051, 38948, 50, 3256, 705, 34, 42, 62, 39, 10892, 62, 36037, 62, 41359, 13246, 62, 19238, 62, 4805, 4503, 7597, 20673, 3256, 705, 5639, 6965, 62, 38948, 50, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1619, 7, 17350, 62, 24330, 58, 74, 12962, 628, 220, 220, 220, 220, 220, 220, 374, 87, 28, 32538, 62, 17350, 62, 26495, 15090, 6, 448, 10354, 34160, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 26495, 62, 84, 12162, 10354, 26495, 62, 84, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 31499, 10354, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 273, 62, 31499, 10354, 273, 62, 31499, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3919, 62, 31499, 10354, 3919, 62, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 39624, 10354, 39624, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 17350, 62, 1462, 62, 24330, 10354, 11203, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 17350, 62, 24330, 10354, 17350, 62, 24330, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21230, 10354, 21230, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4774, 62, 418, 10354, 71, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 10354, 83, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25202, 62, 312, 10354, 8671, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2860, 62, 71, 600, 10354, 6, 8505, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 260, 1904, 62, 10378, 82, 10354, 260, 1904, 62, 10378, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 10378, 82, 62, 23870, 10354, 10378, 82, 62, 23870, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 6738, 10354, 85, 6738, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 1462, 10354, 85, 1462, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 10378, 82, 10354, 10210, 25386, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 260, 11249, 10354, 260, 11249, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7266, 62, 10378, 82, 10354, 1312, 13, 1136, 10786, 14421, 62, 10378, 82, 3256, 90, 30072, 611, 1949, 62, 1462, 62, 260, 17350, 2073, 1391, 5512, 198, 220, 220, 220, 220, 220, 220, 32092, 198, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 290, 374, 87, 17816, 7783, 20520, 0, 28, 1433, 25, 1441, 374, 87, 628, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 855, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7043, 12162, 28, 40914, 17816, 24330, 62, 7890, 62, 84, 12162, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7043, 312, 28, 40914, 17816, 24330, 62, 7890, 62, 27112, 20520, 628, 220, 220, 220, 1303, 1002, 645, 12784, 11, 1949, 284, 4886, 4277, 3392, 290, 9585, 198, 220, 220, 220, 611, 300, 87, 855, 15, 290, 7043, 12162, 855, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 2106, 62, 10378, 82, 28, 21737, 628, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 6, 290, 15940, 0, 28, 7061, 290, 407, 3751, 62, 43917, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 4557, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 39410, 25, 705, 10, 19662, 62, 24330, 62, 1662, 62, 9275, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3751, 62, 43917, 28, 17821, 628, 220, 220, 220, 220, 220, 220, 1303, 3274, 11, 1949, 284, 4886, 1541, 6589, 3788, 11, 475, 407, 6823, 357, 12286, 8, 198, 2, 220, 220, 220, 220, 220, 220, 376, 11190, 3421, 319, 2177, 12, 940, 12, 1238, 284, 307, 1498, 284, 4886, 649, 6300, 286, 2705, 220, 5145, 198, 220, 220, 220, 220, 220, 220, 611, 407, 357, 48267, 62, 12286, 855, 6, 8505, 6, 393, 14267, 62, 37050, 13, 1136, 7, 83, 489, 265, 17, 4032, 11537, 855, 6, 8505, 6, 2599, 1303, 393, 264, 65, 709, 855, 6, 8505, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 31165, 284, 6338, 4886, 2672, 3788, 2644, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21065, 34758, 6, 2673, 10354, 6, 12947, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 31499, 10354, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2860, 62, 28961, 10354, 6, 8505, 6, 92, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 7, 4178, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1017, 301, 28, 40914, 17816, 75, 301, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 311, 24707, 290, 10627, 543, 468, 13326, 8265, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12326, 28, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13396, 28, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1043, 28, 25101, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 10662, 287, 23243, 7, 6649, 301, 11, 1994, 28, 50033, 410, 25, 410, 13, 1136, 10786, 28961, 3256, 90, 92, 737, 1136, 10786, 30619, 3256, 15, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1138, 28, 80, 13, 1136, 10786, 28961, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35851, 12162, 28, 80, 17816, 7890, 62, 84, 12162, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 27112, 28, 80, 17816, 7890, 62, 27112, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 281, 480, 28, 4164, 13, 1136, 10786, 4215, 62, 3672, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 645, 15940, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 645, 62, 31499, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6626, 62, 3919, 62, 31499, 28, 3919, 62, 31499, 13, 35312, 7, 3256, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2705, 62, 31499, 28, 4164, 13, 1136, 10786, 31499, 3256, 58, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2705, 62, 48267, 28, 25101, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 336, 287, 2705, 62, 31499, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 336, 287, 6626, 62, 3919, 62, 31499, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2705, 62, 48267, 28, 17821, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2705, 62, 48267, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 20895, 292, 13, 33295, 7, 80, 17816, 7890, 62, 84, 12162, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 82, 28, 4164, 13, 1136, 10786, 23736, 62, 15255, 478, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 288, 82, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 257, 27112, 407, 287, 2106, 62, 10378, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 2496, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 9122, 62, 16793, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 11600, 10354, 4164, 13, 1136, 10786, 23144, 1096, 3256, 90, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4774, 62, 418, 62, 84, 12162, 10354, 71, 418, 87, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4774, 62, 418, 62, 11600, 10354, 71, 418, 67, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 62, 84, 12162, 10354, 83, 418, 87, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 62, 11600, 10354, 83, 418, 67, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2106, 62, 10378, 82, 13, 33295, 7, 559, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13396, 47932, 16, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 705, 10, 2536, 7, 824, 72, 47762, 11537, 39432, 611, 24018, 10, 272, 480, 10, 29653, 19203, 10, 559, 12162, 10, 6, 1220, 705, 10, 559, 312, 10, 11537, 318, 6589, 2644, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 35874, 3788, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21065, 34758, 6, 2673, 10354, 6, 9122, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 559, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 48267, 62, 16794, 10354, 6, 8505, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4774, 62, 418, 10354, 71, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 10354, 83, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 25202, 62, 312, 10354, 8671, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 39624, 10354, 39624, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 6738, 10354, 85, 6738, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 1462, 10354, 85, 1462, 11, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 10378, 82, 10354, 10210, 25386, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 448, 10354, 34160, 92, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 40406, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21065, 13, 19119, 7, 40406, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 88, 28, 694, 13, 15526, 7, 4178, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 88, 17816, 7783, 20520, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 357, 43917, 1141, 19898, 2239, 25, 705, 10, 563, 17816, 18224, 20520, 10, 11537, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1043, 28, 17821, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 289, 10378, 82, 28, 563, 13, 1136, 10786, 10378, 82, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 289, 67, 287, 289, 10378, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 31298, 28, 71, 10378, 82, 58, 31298, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31383, 31298, 28, 87, 31298, 13, 1136, 10786, 11600, 3256, 90, 92, 737, 1136, 10786, 4215, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 31383, 31298, 407, 287, 2106, 62, 10378, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2106, 62, 10378, 82, 13, 33295, 7, 5324, 31298, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 9585, 2989, 611, 379, 1551, 530, 2029, 9058, 373, 6157, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1043, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 220, 1400, 3788, 8295, 12, 15255, 3213, 14750, 1043, 329, 428, 3788, 287, 45233, 36147, 2644, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 559, 78, 292, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 220, 220, 220, 220, 6822, 276, 1708, 3519, 45233, 2705, 12784, 25, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 10662, 287, 257, 20895, 292, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 220, 220, 220, 220, 220, 1635, 705, 10, 80, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 28, 694, 13, 15526, 7, 15479, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1736, 1726, 611, 2622, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 28, 1050, 1726, 62, 12947, 62, 4868, 15090, 6, 75, 301, 10354, 81, 17816, 75, 301, 6, 4357, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 273, 62, 31499, 10354, 273, 62, 31499, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3919, 62, 31499, 10354, 3919, 62, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 6738, 10354, 85, 6738, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 1462, 10354, 85, 1462, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 40406, 10354, 40406, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 26495, 62, 84, 12162, 10354, 26495, 62, 84, 12162, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 28, 81, 17816, 75, 301, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 87, 28, 11925, 7, 75, 8, 628, 220, 220, 220, 1303, 797, 12, 9122, 14, 1050, 1726, 4683, 2858, 1262, 1541, 12939, 390, 862, 198, 220, 220, 220, 611, 300, 87, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 4229, 87, 28, 15, 198, 220, 220, 220, 220, 220, 220, 611, 1312, 13, 1136, 10786, 48267, 62, 1050, 46493, 62, 1525, 62, 847, 62, 10378, 82, 3256, 7061, 31520, 11639, 8505, 6, 290, 300, 87, 29, 16, 290, 29008, 0, 11639, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 9993, 8295, 12, 411, 6442, 393, 778, 1726, 7747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 7278, 28, 21737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1976, 287, 2837, 7, 15, 11, 300, 87, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 474, 28, 75, 58, 89, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1976, 76, 28, 73, 13, 1136, 10786, 28961, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 385, 28, 89, 76, 13, 1136, 10786, 23144, 1096, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1976, 10378, 82, 28, 89, 76, 13, 1136, 10786, 10378, 82, 3256, 90, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14267, 28, 25101, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 10662, 287, 1976, 10378, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 474, 73, 28, 89, 10378, 82, 58, 80, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7544, 12162, 28, 41098, 13, 1136, 10786, 84, 12162, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 257, 287, 269, 10378, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 257, 855, 80, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 64, 28, 10210, 25386, 58, 64, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 257, 64, 13, 1136, 10786, 48267, 62, 260, 1904, 3256, 7061, 31520, 11639, 8505, 10354, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35851, 12162, 28, 7252, 13, 1136, 10786, 84, 12162, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 833, 17479, 636, 25, 6209, 611, 2092, 290, 1541, 12939, 1459, 390, 862, 389, 407, 262, 976, 318, 14638, 3392, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 35851, 12162, 0, 28, 7061, 290, 35851, 12162, 0, 28, 14396, 12162, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14267, 28, 17821, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14267, 25, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 14267, 25, 299, 7278, 13, 33295, 7, 73, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 28, 77, 7278, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 87, 28, 11925, 7, 75, 8, 628, 220, 220, 220, 220, 220, 220, 1303, 9683, 850, 12, 10378, 82, 357, 30619, 416, 2196, 8, 198, 220, 220, 220, 220, 220, 220, 611, 300, 87, 29, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 43979, 28, 82, 9741, 7, 75, 11, 1994, 28, 50033, 479, 25, 357, 74, 13, 1136, 10786, 28961, 3256, 90, 92, 737, 1136, 10786, 23144, 1096, 3256, 90, 92, 737, 1136, 10786, 30619, 3256, 657, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 13, 1136, 10786, 10951, 3256, 90, 92, 737, 1136, 10786, 7890, 62, 3672, 3256, 74, 17816, 7890, 62, 84, 12162, 20520, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5387, 62, 1136, 62, 2100, 7, 74, 13, 1136, 10786, 28961, 3256, 90, 92, 737, 1136, 10786, 40406, 3256, 90, 92, 737, 1136, 10786, 9641, 62, 35312, 3256, 21737, 828, 657, 11, 657, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5387, 62, 1136, 62, 2100, 7, 74, 13, 1136, 10786, 28961, 3256, 90, 92, 737, 1136, 10786, 40406, 3256, 90, 92, 737, 1136, 10786, 9641, 62, 35312, 3256, 21737, 828, 352, 11, 657, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5387, 62, 1136, 62, 2100, 7, 74, 13, 1136, 10786, 28961, 3256, 90, 92, 737, 1136, 10786, 40406, 3256, 90, 92, 737, 1136, 10786, 9641, 62, 35312, 3256, 21737, 828, 362, 11, 657, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5387, 62, 1136, 62, 2100, 7, 74, 13, 1136, 10786, 28961, 3256, 90, 92, 737, 1136, 10786, 40406, 3256, 90, 92, 737, 1136, 10786, 9641, 62, 35312, 3256, 21737, 828, 513, 11, 657, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5387, 62, 1136, 62, 2100, 7, 74, 13, 1136, 10786, 28961, 3256, 90, 92, 737, 1136, 10786, 40406, 3256, 90, 92, 737, 1136, 10786, 9641, 62, 35312, 3256, 21737, 828, 604, 11, 657, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9575, 28, 17821, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 28, 7278, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4966, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 4738, 1330, 43720, 600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4229, 87, 28, 25192, 600, 7, 15, 11, 300, 87, 12, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 5897, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4229, 87, 28, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 80, 11639, 35827, 3788, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1438, 0, 28, 7061, 25, 2124, 80, 11639, 30543, 10, 3672, 10, 29653, 6, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 80, 10, 11639, 351, 15940, 2625, 6, 10, 31499, 10, 29653, 6, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 40406, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1330, 33918, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 686, 28, 46155, 62, 418, 15090, 6, 40406, 10354, 40406, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 686, 17816, 7783, 20520, 29, 15, 25, 1441, 686, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9058, 16, 28, 305, 17816, 40406, 16, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 80, 10, 11639, 290, 9058, 11639, 10, 17752, 13, 67, 8142, 7, 40406, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 5167, 621, 530, 2858, 1043, 329, 705, 10, 87, 80, 10, 10354, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1207, 62, 25811, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2172, 62, 11600, 287, 300, 25, 220, 1303, 9052, 278, 832, 477, 3689, 329, 428, 2858, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1976, 72, 28, 8738, 62, 11600, 13, 1136, 10786, 10951, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1976, 76, 28, 8738, 62, 11600, 13, 1136, 10786, 28961, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1976, 84, 28, 8738, 62, 11600, 13, 1136, 10786, 7890, 62, 27112, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1976, 32656, 28, 17027, 13, 1136, 10786, 7890, 62, 3672, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1976, 10378, 82, 28, 89, 76, 13, 1136, 10786, 10378, 82, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 742, 3775, 28, 89, 76, 13, 1136, 10786, 31499, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 385, 28, 89, 76, 13, 1136, 10786, 23144, 1096, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3326, 28, 9042, 13, 1136, 10786, 9641, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15940, 62, 40664, 796, 705, 4032, 13, 22179, 7, 685, 83, 329, 256, 287, 220, 742, 3775, 611, 256, 60, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 428, 62, 18076, 796, 685, 705, 90, 92, 532, 410, 90, 92, 37913, 92, 37913, 92, 4008, 4458, 18982, 7, 89, 32656, 11, 3326, 11, 15940, 62, 40664, 11, 1976, 84, 8, 2361, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 89, 10378, 82, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 474, 287, 23243, 7, 89, 10378, 82, 11, 1994, 28, 50033, 410, 25, 1976, 10378, 82, 58, 85, 4083, 1136, 10786, 30619, 3256, 15, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 474, 73, 28, 89, 10378, 82, 58, 73, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7544, 12162, 28, 41098, 13, 1136, 10786, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 7544, 12162, 0, 28, 7061, 25, 1303, 611, 6565, 11, 340, 749, 1884, 1724, 326, 428, 43264, 20203, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 318, 329, 257, 1180, 2496, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 474, 31499, 28, 41098, 13, 1136, 10786, 31499, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 474, 332, 28, 41098, 13, 1136, 10786, 332, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 428, 62, 18076, 13, 33295, 7, 705, 90, 92, 12, 2129, 2412, 319, 45144, 36786, 357, 24330, 471, 23621, 34758, 5512, 15940, 2625, 90, 92, 1600, 2196, 34758, 30072, 4458, 18982, 10786, 705, 9, 2327, 11, 474, 11, 7544, 12162, 11, 474, 31499, 11, 474, 332, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1207, 62, 25811, 13, 33295, 7, 5661, 62, 18076, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2922, 62, 324, 713, 796, 269, 74, 13, 15526, 15090, 6, 2673, 10354, 705, 19738, 62, 8841, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 705, 44374, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25811, 10354, 1207, 62, 25811, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 12286, 10354, 705, 15, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25652, 10354, 705, 17563, 530, 286, 262, 3689, 329, 705, 10, 87, 80, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32092, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2922, 62, 324, 713, 17816, 7783, 20520, 29, 15, 25, 1441, 2922, 62, 324, 713, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4229, 87, 796, 2922, 62, 324, 713, 17816, 34213, 62, 9630, 20520, 628, 220, 220, 220, 220, 220, 220, 611, 4229, 87, 27, 11925, 7, 75, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7043, 312, 28, 75, 58, 346, 87, 7131, 6, 7890, 62, 27112, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7043, 12162, 28, 646, 312, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 3672, 28, 75, 58, 346, 87, 4083, 1136, 10786, 10951, 3256, 90, 92, 737, 1136, 10786, 7890, 62, 3672, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49427, 28, 75, 58, 346, 87, 4083, 1136, 10786, 28961, 3256, 90, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 6, 290, 1312, 13, 1136, 10786, 4798, 3256, 7061, 8, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 646, 12162, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 7043, 312, 0, 28, 646, 12162, 25, 2124, 10, 11639, 19203, 10, 646, 312, 10, 11537, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 34, 42, 2858, 1043, 1262, 15940, 24018, 10, 31499, 10, 29653, 1058, 705, 10, 87, 8, 628, 220, 220, 220, 1303, 1400, 6823, 12493, 1043, 290, 2858, 471, 23621, 318, 407, 11777, 5447, 198, 220, 220, 220, 611, 7043, 12162, 855, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 611, 15940, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 3751, 62, 43917, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 23926, 4770, 2559, 855, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 31502, 25, 705, 10, 19662, 62, 24330, 62, 1662, 62, 9275, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 32538, 62, 17350, 62, 26495, 15090, 6, 448, 10354, 34160, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 31499, 10354, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 273, 62, 31499, 10354, 273, 62, 31499, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3919, 62, 31499, 10354, 3919, 62, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 39624, 10354, 39624, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 17350, 62, 1462, 62, 24330, 10354, 11203, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 17350, 62, 24330, 10354, 17350, 62, 24330, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21230, 10354, 21230, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4774, 62, 418, 10354, 71, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 10354, 83, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25202, 62, 312, 10354, 8671, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 260, 1904, 62, 10378, 82, 10354, 260, 1904, 62, 10378, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 10378, 82, 62, 23870, 10354, 10378, 82, 62, 23870, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 6738, 10354, 85, 6738, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 1462, 10354, 85, 1462, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 260, 11249, 10354, 260, 11249, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 10378, 82, 10354, 10210, 25386, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7043, 12162, 28, 40914, 17816, 24330, 62, 7890, 62, 84, 12162, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7043, 312, 28, 40914, 17816, 24330, 62, 7890, 62, 27112, 20520, 628, 220, 220, 220, 220, 220, 220, 611, 7043, 12162, 855, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 220, 45233, 10392, 389, 407, 1043, 329, 428, 3788, 36147, 5145, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 559, 78, 292, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 559, 78, 292, 8, 855, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 4798, 62, 16794, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 559, 78, 292, 58, 15, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24254, 10354, 71, 489, 265, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 259, 79, 15090, 6, 5239, 10354, 6, 220, 220, 220, 220, 220, 220, 10928, 345, 588, 284, 14500, 7881, 3788, 11, 1312, 13, 68, 13, 611, 340, 318, 287, 281, 8468, 3108, 357, 88, 14, 45, 2599, 705, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 40914, 17816, 8841, 6, 4083, 36311, 22446, 21037, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 855, 6, 8505, 6, 393, 2124, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 40406, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 559, 78, 292, 58, 15, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 448, 10354, 6, 1102, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5438, 1744, 13078, 2443, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 259, 79, 15090, 6, 5239, 10354, 6, 220, 220, 220, 220, 220, 220, 10928, 345, 588, 284, 1280, 22719, 5468, 546, 3519, 3788, 357, 4480, 1744, 9988, 7508, 8, 357, 88, 14, 45, 2599, 705, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 40914, 17816, 8841, 6, 4083, 36311, 22446, 21037, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 855, 6, 8505, 6, 393, 2124, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 10662, 287, 257, 20895, 292, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 15466, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 80, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 16, 11, 705, 18224, 10354, 19662, 62, 24330, 62, 1662, 62, 9275, 92, 628, 220, 220, 220, 1303, 8778, 6163, 2858, 5726, 198, 220, 220, 220, 374, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 2220, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 1818, 17816, 944, 62, 21412, 62, 27112, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 646, 12162, 30072, 198, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 220, 198, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 855, 1433, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 17816, 7783, 20520, 28, 2624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 17816, 24330, 62, 84, 12162, 20520, 28, 646, 12162, 198, 220, 220, 220, 220, 220, 220, 1441, 374, 198, 220, 220, 220, 288, 28, 81, 17816, 11600, 20520, 198, 220, 220, 220, 279, 28, 81, 17816, 6978, 20520, 628, 220, 220, 220, 288, 3672, 28, 81, 13, 1136, 10786, 7890, 62, 3672, 3256, 7061, 8, 198, 220, 220, 220, 611, 288, 3672, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 288, 17816, 7890, 62, 3672, 20520, 28, 67, 3672, 628, 220, 220, 220, 424, 12162, 28, 67, 13, 1136, 10786, 4215, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 50115, 28, 14202, 198, 220, 220, 220, 611, 424, 12162, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 374, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 2220, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 2385, 12162, 30072, 198, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 220, 220, 220, 3664, 4448, 28, 81, 17816, 7890, 62, 26011, 20520, 198, 220, 220, 220, 220, 220, 220, 288, 17816, 4215, 62, 26011, 20520, 28, 21680, 4448, 628, 220, 220, 220, 220, 220, 220, 1303, 6822, 611, 468, 2183, 4226, 198, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 2220, 62, 21412, 62, 6738, 62, 6978, 15090, 6, 6978, 10354, 81, 17816, 6978, 6, 4357, 705, 21412, 62, 8189, 62, 3672, 10354, 37581, 17816, 23144, 62, 12048, 62, 3672, 6, 4357, 705, 48267, 62, 15003, 10354, 6, 8505, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 855, 15, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 50115, 28, 40914, 17816, 8189, 20520, 628, 220, 220, 220, 1303, 6822, 326, 477, 850, 20086, 991, 7160, 357, 361, 1336, 3108, 8, 198, 220, 220, 220, 23572, 28, 25101, 198, 220, 220, 220, 284, 62, 33678, 28, 25101, 198, 220, 220, 220, 11454, 28, 7061, 628, 220, 220, 220, 850, 10378, 82, 28, 67, 13, 1136, 10786, 10378, 82, 3256, 90, 30072, 220, 220, 220, 1303, 850, 12, 45841, 3976, 286, 262, 6163, 2858, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 357, 27237, 453, 1541, 12939, 11, 475, 2198, 611, 3788, 468, 3421, 287, 262, 14324, 8, 198, 220, 220, 220, 329, 850, 10378, 62, 3672, 287, 850, 10378, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 850, 10378, 28, 7266, 10378, 82, 58, 7266, 10378, 62, 3672, 60, 198, 220, 220, 220, 220, 220, 220, 220, 850, 10378, 62, 9042, 28, 7266, 10378, 13, 1136, 10786, 11600, 3256, 90, 92, 737, 1136, 10786, 23144, 1096, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 264, 16072, 28, 7266, 10378, 62, 9042, 13, 1136, 10786, 48267, 62, 7753, 62, 9122, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1336, 62, 6978, 28, 7266, 10378, 62, 9042, 13, 1136, 10786, 12853, 62, 6978, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 264, 16072, 0, 11639, 8505, 6, 290, 1336, 62, 6978, 0, 28, 7061, 290, 407, 28686, 13, 6978, 13, 4468, 576, 7, 12853, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23572, 28, 17821, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11454, 11639, 505, 286, 850, 12, 45841, 3976, 19203, 10, 7266, 10378, 62, 3672, 10, 11537, 423, 3421, 357, 7753, 705, 10, 12853, 62, 6978, 10, 6, 407, 1043, 33047, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 850, 10378, 62, 84, 12162, 28, 7266, 10378, 13, 1136, 10786, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 850, 10378, 62, 84, 12162, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 19796, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 1818, 17816, 944, 62, 21412, 62, 27112, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 7266, 10378, 62, 84, 12162, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 0, 28, 1433, 25, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23572, 28, 17821, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11454, 11639, 505, 286, 850, 12, 45841, 3976, 19203, 10, 7266, 10378, 62, 3672, 10, 11537, 423, 3421, 357, 34, 42, 2858, 705, 10, 7266, 10378, 62, 84, 12162, 10, 6, 407, 1043, 33047, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 611, 32349, 62, 10378, 82, 855, 6, 8505, 6, 290, 14267, 62, 23870, 0, 11639, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 287, 12940, 0, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 850, 10378, 62, 22766, 796, 1391, 6, 40406, 10354, 40406, 11, 705, 31499, 10354, 7266, 10378, 13, 1136, 10786, 31499, 3256, 7061, 737, 35312, 7, 3256, 33809, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 273, 62, 31499, 10354, 7266, 10378, 13, 1136, 10786, 273, 62, 31499, 3256, 7061, 737, 35312, 7, 3256, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3919, 62, 31499, 10354, 7266, 10378, 13, 1136, 10786, 3919, 62, 31499, 3256, 7061, 737, 35312, 7, 3256, 11537, 92, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30736, 62, 9275, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 30736, 62, 80, 287, 390, 862, 62, 23870, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1207, 62, 28961, 796, 30736, 62, 80, 13, 1136, 10786, 28961, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 28, 694, 13, 5589, 533, 62, 11600, 82, 15090, 6, 11600, 16, 10354, 10378, 62, 28961, 11, 705, 11600, 17, 10354, 7266, 10378, 62, 22766, 30072, 220, 220, 220, 220, 220, 1303, 611, 1207, 62, 28961, 4909, 850, 10378, 62, 22766, 986, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 40496, 20520, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30736, 62, 9275, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 30736, 62, 9275, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 390, 862, 62, 23870, 13, 33295, 15090, 6, 28961, 10354, 7266, 10378, 62, 22766, 11, 705, 84, 12162, 10354, 7266, 10378, 62, 84, 12162, 11, 705, 31499, 10354, 31499, 13, 35312, 7, 3256, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 273, 62, 31499, 10354, 273, 62, 31499, 13, 35312, 7, 3256, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3919, 62, 31499, 10354, 3919, 62, 31499, 13, 35312, 7, 3256, 11537, 30072, 628, 220, 220, 220, 1303, 6822, 611, 468, 3421, 475, 1949, 284, 2555, 198, 220, 220, 220, 611, 23572, 290, 705, 423, 3421, 705, 287, 11454, 290, 267, 855, 6, 1102, 6, 290, 5897, 0, 11639, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 220, 39410, 25, 705, 10, 8056, 8, 628, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 259, 79, 15090, 6, 5239, 10354, 6, 220, 220, 220, 10928, 345, 588, 284, 2555, 379, 534, 898, 2526, 357, 88, 14, 45, 2599, 705, 30072, 198, 220, 220, 220, 220, 220, 220, 2124, 28, 40914, 17816, 8841, 6, 4083, 36311, 22446, 21037, 3419, 628, 220, 220, 220, 220, 220, 220, 611, 2124, 855, 6, 88, 6, 393, 2124, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23572, 28, 25101, 628, 220, 220, 220, 1303, 6822, 611, 2393, 7160, 329, 1459, 20203, 198, 220, 220, 220, 3326, 87, 28, 7061, 198, 220, 220, 220, 269, 385, 28, 67, 13, 1136, 10786, 23144, 1096, 3256, 90, 30072, 198, 220, 220, 220, 1336, 62, 6978, 28, 9042, 13, 1136, 10786, 12853, 62, 6978, 3256, 7061, 8, 628, 220, 220, 220, 37096, 11639, 270, 3568, 326, 534, 2858, 468, 3421, 532, 705, 198, 220, 220, 220, 611, 407, 23572, 290, 1336, 62, 6978, 0, 28, 7061, 290, 269, 385, 13, 1136, 10786, 48267, 62, 7753, 62, 9122, 3256, 7061, 31520, 11639, 8505, 6, 290, 407, 28686, 13, 6978, 13, 4468, 576, 7, 12853, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 11454, 28, 23047, 10, 6, 43776, 2393, 407, 1043, 287, 257, 7368, 3108, 19203, 10, 12853, 62, 6978, 10, 11537, 6, 198, 220, 220, 220, 220, 220, 220, 23572, 28, 17821, 628, 220, 220, 220, 3326, 62, 259, 62, 24330, 28, 9042, 13, 1136, 10786, 9641, 3256, 7061, 8, 1303, 12326, 2196, 1141, 9988, 198, 220, 220, 220, 611, 407, 23572, 290, 3326, 62, 259, 62, 24330, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 629, 9132, 28, 9042, 13, 1136, 10786, 4215, 62, 9641, 62, 28758, 3256, 90, 92, 737, 1136, 7, 694, 62, 418, 62, 3672, 4032, 11537, 198, 220, 220, 220, 220, 220, 220, 611, 269, 385, 13, 1136, 10786, 48267, 62, 9641, 62, 260, 9122, 3256, 7061, 31520, 11639, 8505, 6, 290, 629, 9132, 0, 28, 7061, 290, 705, 29572, 62, 9641, 6, 287, 26672, 7, 6359, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 2196, 357, 8869, 27658, 4226, 8, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21065, 34758, 6, 2673, 10354, 6, 1136, 62, 9641, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 12853, 62, 6978, 10354, 12853, 62, 6978, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 8664, 10354, 6, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4774, 62, 418, 62, 11600, 10354, 71, 418, 67, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 62, 11600, 10354, 83, 418, 67, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 28758, 10354, 1416, 9132, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 23144, 62, 12048, 62, 26801, 10354, 6359, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1904, 62, 17946, 1000, 10354, 9042, 13, 1136, 10786, 1904, 62, 17946, 1000, 62, 1640, 62, 9641, 3256, 7061, 38165, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 7, 4178, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 855, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3326, 87, 28, 40914, 17816, 9641, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3326, 87, 0, 28, 7061, 290, 3326, 87, 0, 28, 332, 62, 259, 62, 24330, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11454, 28, 23047, 10, 6, 9641, 1141, 9988, 19203, 10, 332, 62, 259, 62, 24330, 10, 11537, 318, 407, 262, 976, 355, 1459, 2196, 19203, 10, 332, 87, 10, 11537, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23572, 28, 17821, 628, 220, 220, 220, 611, 23572, 25, 198, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 31502, 25, 705, 10, 8056, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 259, 79, 15090, 6, 5239, 10354, 6, 17353, 345, 588, 284, 4781, 23572, 2858, 5726, 422, 45233, 357, 56, 14, 77, 19427, 705, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 40914, 17816, 8841, 6, 4083, 36311, 22446, 21037, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 855, 6, 77, 6, 393, 2124, 855, 6, 3919, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 259, 79, 15090, 6, 5239, 10354, 6, 17353, 345, 588, 284, 2555, 379, 534, 898, 2526, 357, 88, 14, 45, 19427, 705, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 40914, 17816, 8841, 6, 4083, 36311, 22446, 21037, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 0, 11639, 88, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 16, 11, 705, 18224, 10354, 8056, 92, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 62, 33678, 28, 17821, 628, 220, 220, 220, 220, 220, 220, 1303, 42226, 889, 23572, 2858, 198, 220, 220, 220, 220, 220, 220, 611, 284, 62, 33678, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 8413, 5165, 23572, 2858, 5726, 705, 10, 646, 12162, 10, 6, 2644, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 33678, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 1818, 17816, 944, 62, 21412, 62, 27112, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 646, 12162, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 16, 11, 705, 18224, 10354, 6, 7975, 8715, 2858, 373, 4615, 532, 3387, 11, 1949, 757, 13679, 92, 628, 220, 220, 220, 1303, 10133, 12940, 198, 220, 220, 220, 611, 32349, 62, 10378, 82, 855, 6, 8505, 6, 290, 14267, 62, 23870, 0, 11639, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 390, 862, 62, 23870, 13, 33295, 15090, 6, 28961, 10354, 10378, 62, 22766, 11, 705, 84, 12162, 10354, 646, 12162, 11, 705, 31499, 10354, 31499, 13, 35312, 7, 3256, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 273, 62, 31499, 10354, 273, 62, 31499, 13, 35312, 7, 3256, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3919, 62, 31499, 10354, 3919, 62, 31499, 13, 35312, 7, 3256, 11537, 30072, 628, 220, 220, 220, 1303, 43426, 2858, 290, 7365, 198, 220, 220, 220, 17365, 28, 72, 13, 1136, 10786, 24330, 3256, 90, 30072, 198, 220, 220, 220, 2124, 24330, 28, 67, 13, 1136, 10786, 24330, 3256, 90, 30072, 198, 220, 220, 220, 17365, 13, 19119, 7, 87, 24330, 8, 628, 220, 220, 220, 17365, 62, 13345, 28, 71, 418, 67, 13, 1136, 10786, 24330, 62, 13345, 3256, 7061, 8, 198, 220, 220, 220, 9874, 62, 40290, 28, 71, 418, 67, 13, 1136, 10786, 8800, 62, 40290, 3256, 7061, 8, 628, 220, 220, 220, 1303, 10854, 327, 12740, 717, 25, 198, 220, 220, 220, 264, 65, 28, 7061, 628, 220, 220, 220, 1658, 28, 67, 13, 1136, 10786, 24330, 62, 12048, 3256, 7061, 8, 393, 357, 30218, 70, 17816, 12286, 62, 8664, 62, 3672, 20520, 1343, 289, 418, 67, 13, 1136, 10786, 12048, 62, 2302, 3256, 7061, 8, 1267, 628, 220, 220, 220, 9788, 84, 28, 7061, 198, 220, 220, 220, 611, 1312, 13, 1136, 10786, 3174, 62, 24330, 62, 15003, 3256, 7061, 8, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 9788, 84, 11639, 352, 6, 628, 220, 220, 220, 611, 1658, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 9788, 28, 418, 13, 6978, 13, 22179, 7, 79, 11, 274, 8, 198, 220, 220, 220, 220, 220, 220, 611, 1312, 13, 1136, 10786, 2539, 3256, 7061, 31520, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 65, 47932, 274, 316, 10, 6, 45233, 62, 1677, 53, 62, 6173, 46023, 62, 6, 10, 72, 17816, 2539, 6, 4083, 45828, 3419, 10, 6, 11639, 10, 381, 10, 6, 59, 77, 6, 198, 220, 220, 220, 220, 220, 220, 264, 65, 47932, 24330, 62, 13345, 10, 6, 705, 10, 381, 10, 381, 84, 10, 6, 59, 77, 6, 628, 220, 220, 220, 1303, 6822, 7365, 2393, 198, 220, 220, 220, 611, 275, 69, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 275, 77, 28, 72, 13, 1136, 10786, 8664, 62, 3605, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 2124, 11639, 64, 6, 198, 220, 220, 220, 220, 220, 220, 611, 275, 77, 855, 6, 8505, 10354, 2124, 11639, 86, 6, 628, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 19881, 28, 9654, 7, 19881, 11, 2124, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 19881, 13, 13564, 7, 36299, 8, 198, 220, 220, 220, 220, 220, 220, 2845, 35528, 355, 304, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 19881, 13, 19836, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 16, 11, 705, 18224, 10354, 6, 45573, 3597, 2858, 2393, 19203, 10, 18982, 7, 68, 47762, 11537, 6, 92, 628, 220, 220, 220, 220, 220, 220, 277, 19881, 13, 19836, 3419, 628, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 15, 11, 705, 24330, 62, 84, 12162, 10354, 646, 12162, 11, 705, 24330, 10354, 24330, 11, 705, 8664, 10354, 36299, 11, 705, 75, 301, 10354, 75, 11, 705, 11600, 10354, 67, 11, 705, 15255, 11197, 62, 9641, 10354, 332, 87, 92, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 905, 477, 6589, 2858, 198, 198, 4299, 905, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 260, 7501, 62, 84, 12162, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 16099, 471, 23621, 357, 4480, 4295, 27761, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 21412, 62, 84, 12162, 8, 220, 220, 220, 220, 220, 220, 220, 532, 8265, 471, 23621, 357, 4480, 4295, 27761, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 7890, 62, 84, 12162, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1366, 471, 23621, 357, 4480, 4295, 27761, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 15940, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16793, 62, 418, 8, 220, 220, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 2496, 7294, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16793, 62, 9895, 8, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 2496, 10340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 9641, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 2196, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3672, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 1438, 351, 4295, 27761, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 301, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1351, 422, 2989, 2163, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1570, 220, 220, 220, 220, 220, 220, 220, 220, 532, 23243, 1570, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 267, 28, 72, 13, 1136, 10786, 448, 3256, 7061, 8, 628, 220, 220, 220, 15940, 28, 72, 13, 1136, 10786, 31499, 3256, 7061, 8, 628, 220, 220, 220, 7083, 62, 31499, 796, 685, 15940, 2361, 611, 15940, 2073, 17635, 628, 220, 220, 220, 284, 82, 62, 84, 12162, 28, 72, 13, 1136, 10786, 16793, 62, 418, 3256, 7061, 8, 198, 220, 220, 220, 611, 284, 82, 62, 84, 12162, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8778, 7294, 198, 220, 220, 220, 220, 220, 220, 220, 374, 88, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 2220, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 418, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 83, 418, 62, 84, 12162, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 88, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 88, 628, 220, 220, 220, 220, 220, 220, 220, 284, 82, 62, 84, 12162, 796, 374, 88, 17816, 11600, 6, 4083, 1136, 10786, 8692, 62, 84, 12162, 3256, 7061, 8, 393, 374, 88, 17816, 7890, 62, 84, 12162, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 7083, 62, 31499, 13, 33295, 7, 705, 16793, 12, 418, 19355, 10, 83, 418, 62, 84, 12162, 1267, 628, 220, 220, 220, 256, 65, 796, 1312, 13, 1136, 10786, 16793, 62, 9895, 3256, 7061, 8, 198, 220, 220, 220, 611, 256, 65, 0, 28, 7061, 25, 7083, 62, 31499, 13, 33295, 7, 256, 65, 10, 6, 9895, 6, 1267, 628, 220, 220, 220, 3326, 796, 1312, 13, 1136, 10786, 9641, 3256, 7061, 8, 198, 220, 220, 220, 611, 3326, 0, 28, 7061, 25, 7083, 62, 31499, 13, 33295, 7, 705, 85, 6, 10, 332, 1267, 628, 220, 220, 220, 15940, 796, 705, 4032, 13, 22179, 7, 2302, 1631, 62, 31499, 8, 628, 220, 220, 220, 1438, 28, 72, 13, 1136, 10786, 3672, 3256, 7061, 8, 198, 220, 220, 220, 266, 3672, 28, 25101, 198, 220, 220, 220, 611, 1438, 13, 19796, 10786, 9, 11537, 29, 28, 15, 393, 1438, 13, 19796, 10786, 8348, 8, 29, 28, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 24714, 15699, 198, 220, 220, 220, 220, 220, 220, 220, 266, 3672, 28, 17821, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 28, 3672, 13, 21037, 3419, 628, 220, 220, 220, 1303, 4441, 257, 1351, 286, 7572, 422, 262, 366, 12417, 2124, 66, 312, 1, 290, 262, 1351, 286, 37419, 2124, 66, 2340, 25, 198, 220, 220, 220, 1336, 62, 25306, 2340, 62, 4868, 796, 685, 90, 198, 220, 220, 220, 220, 220, 220, 220, 705, 260, 7501, 62, 84, 12162, 10354, 1312, 13, 1136, 10786, 260, 7501, 62, 84, 12162, 3256, 7061, 828, 198, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 1312, 13, 1136, 10786, 21412, 62, 84, 12162, 3256, 7061, 828, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 1312, 13, 1136, 10786, 7890, 62, 84, 12162, 3256, 7061, 828, 198, 220, 220, 220, 1782, 60, 1343, 1312, 13, 1136, 10786, 25306, 2340, 3256, 58, 12962, 628, 220, 220, 220, 300, 301, 796, 17635, 628, 220, 220, 220, 1303, 11629, 803, 832, 262, 1351, 286, 7572, 25, 198, 220, 220, 220, 329, 2124, 66, 312, 287, 1336, 62, 25306, 2340, 62, 4868, 25, 198, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 12947, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 260, 7501, 62, 84, 12162, 10354, 25306, 312, 13, 1136, 10786, 260, 7501, 62, 84, 12162, 3256, 7061, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 25306, 312, 13, 1136, 10786, 21412, 62, 84, 12162, 3256, 7061, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 25306, 312, 13, 1136, 10786, 7890, 62, 84, 12162, 3256, 7061, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 31499, 10354, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2860, 62, 10951, 10354, 6, 8505, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2860, 62, 28961, 10354, 6, 8505, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 300, 301, 15853, 374, 87, 17816, 75, 301, 20520, 628, 220, 220, 220, 1303, 8335, 1570, 198, 220, 220, 220, 5576, 9741, 62, 11600, 82, 28, 21737, 628, 220, 220, 220, 3084, 62, 25747, 796, 685, 220, 220, 220, 1303, 30144, 32319, 262, 3951, 2174, 481, 37825, 858, 262, 7032, 287, 262, 5072, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 357, 32538, 8, 220, 220, 220, 220, 220, 220, 220, 220, 357, 22615, 8, 220, 220, 220, 220, 357, 31494, 8, 198, 220, 220, 220, 220, 220, 220, 220, 19203, 7890, 62, 27112, 3256, 220, 220, 220, 220, 220, 220, 220, 705, 4834, 85, 25105, 25, 3256, 220, 220, 220, 220, 705, 25, 29, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 19203, 16793, 62, 418, 62, 84, 12162, 3256, 220, 220, 705, 21745, 7294, 25, 3256, 220, 220, 705, 25, 29, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 19203, 83, 9895, 3256, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 33, 896, 25, 3256, 220, 220, 220, 220, 220, 220, 220, 705, 25, 29, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 19203, 7890, 62, 3672, 3256, 220, 220, 220, 220, 220, 220, 705, 5376, 25, 3256, 220, 220, 220, 220, 220, 220, 220, 705, 25, 27, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 19203, 9641, 3256, 220, 220, 220, 220, 220, 220, 220, 220, 705, 14815, 25, 3256, 220, 220, 220, 220, 705, 25, 27, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 19203, 31499, 3256, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 36142, 25, 3256, 220, 220, 220, 220, 220, 220, 220, 705, 25, 27, 33809, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 1303, 9647, 286, 1123, 2214, 357, 17532, 351, 5288, 2672, 9647, 8, 198, 220, 220, 220, 3509, 62, 10394, 796, 1391, 5387, 25, 18896, 7, 22615, 8, 329, 357, 32538, 11, 7097, 11, 4808, 8, 287, 3084, 62, 25747, 1782, 628, 198, 220, 220, 220, 2496, 62, 418, 62, 3672, 34758, 92, 1303, 327, 8103, 2496, 7294, 3891, 628, 220, 220, 220, 329, 10662, 287, 300, 301, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7043, 12162, 28, 80, 17816, 7890, 62, 84, 12162, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 7043, 312, 28, 80, 17816, 7890, 62, 27112, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 7422, 12162, 28, 80, 17816, 260, 7501, 62, 84, 12162, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 7422, 312, 28, 80, 17816, 260, 7501, 62, 27112, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 7508, 28, 80, 17816, 10951, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 13634, 28, 80, 17816, 28961, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 28961, 8, 855, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 269, 385, 28, 28961, 13, 1136, 10786, 23144, 1096, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 9058, 28, 28961, 13, 1136, 10786, 40406, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 15940, 28, 28961, 13, 1136, 10786, 31499, 3256, 58, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 2583, 62, 418, 62, 84, 12162, 28, 40406, 13, 1136, 10786, 4774, 62, 418, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2496, 62, 418, 62, 84, 12162, 28, 40406, 13, 1136, 10786, 16793, 62, 418, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 256, 9895, 28, 40406, 13, 1136, 10786, 16793, 62, 418, 62, 9895, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 28, 9042, 13, 1136, 10786, 9641, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 9641, 28, 40406, 13, 1136, 10786, 9641, 62, 35312, 3256, 58, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 288, 3672, 28, 10951, 13, 1136, 10786, 7890, 62, 3672, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 357, 1662, 1438, 8, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 393, 357, 357, 24714, 15699, 13, 22184, 15699, 7, 67, 3672, 13, 21037, 22784, 1438, 4008, 611, 266, 3672, 2073, 357, 3672, 6624, 288, 3672, 8, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 2496, 7294, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2496, 62, 418, 62, 84, 12162, 287, 2496, 62, 418, 62, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 646, 12162, 28, 16793, 62, 418, 62, 3672, 58, 16793, 62, 418, 62, 84, 12162, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2496, 62, 418, 62, 84, 12162, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8778, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 88, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 2220, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 418, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 16793, 62, 418, 62, 84, 12162, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 88, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 88, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 646, 12162, 28, 563, 17816, 7890, 62, 84, 12162, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2496, 62, 418, 62, 3672, 58, 16793, 62, 418, 62, 84, 12162, 22241, 83, 646, 12162, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 646, 12162, 796, 705, 7149, 6, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15940, 62, 40664, 796, 705, 4032, 13, 22179, 7, 685, 83, 329, 256, 287, 15940, 611, 256, 60, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17365, 62, 10951, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 27112, 10354, 220, 220, 220, 220, 220, 220, 220, 220, 7043, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 260, 7501, 62, 27112, 10354, 220, 220, 220, 220, 220, 220, 220, 220, 7422, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 31499, 10354, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15940, 62, 40664, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4774, 62, 418, 62, 84, 12162, 10354, 220, 220, 220, 220, 220, 2583, 62, 418, 62, 84, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 62, 84, 12162, 10354, 220, 220, 220, 256, 646, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 83, 9895, 10354, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 9895, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 10354, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 35312, 10354, 220, 220, 220, 264, 9641, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 3672, 10354, 220, 220, 220, 220, 220, 220, 220, 288, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 9938, 5415, 9647, 329, 1123, 2214, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 357, 32538, 11, 4808, 11, 4808, 8, 287, 3084, 62, 25747, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 10394, 796, 18896, 7, 2536, 7, 24330, 62, 10951, 58, 32538, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2214, 62, 10394, 29, 9806, 62, 10394, 58, 32538, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 10394, 58, 32538, 22241, 3245, 62, 10394, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5576, 9741, 62, 11600, 82, 13, 33295, 7, 24330, 62, 10951, 8, 628, 220, 220, 220, 1303, 33947, 416, 2496, 62, 418, 62, 84, 12162, 11, 1438, 290, 6626, 2196, 198, 220, 220, 220, 23243, 62, 11600, 82, 28, 82, 9741, 7, 13271, 9741, 62, 11600, 82, 11, 1994, 28, 50033, 479, 25, 357, 74, 17816, 16793, 62, 418, 62, 84, 12162, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 17816, 83, 9895, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 17816, 7890, 62, 3672, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5387, 62, 1136, 62, 2100, 7, 74, 13, 1136, 10786, 9641, 62, 35312, 3256, 21737, 828, 657, 11, 657, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5387, 62, 1136, 62, 2100, 7, 74, 13, 1136, 10786, 9641, 62, 35312, 3256, 21737, 828, 352, 11, 657, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5387, 62, 1136, 62, 2100, 7, 74, 13, 1136, 10786, 9641, 62, 35312, 3256, 21737, 828, 362, 11, 657, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5387, 62, 1136, 62, 2100, 7, 74, 13, 1136, 10786, 9641, 62, 35312, 3256, 21737, 828, 513, 11, 657, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5387, 62, 1136, 62, 2100, 7, 74, 13, 1136, 10786, 9641, 62, 35312, 3256, 21737, 828, 604, 11, 657, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9575, 28, 17821, 8, 628, 220, 220, 220, 1303, 12578, 198, 220, 220, 220, 611, 267, 855, 6, 1102, 6, 290, 18896, 7, 82, 9741, 62, 11600, 82, 8, 29, 15, 25, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 938, 62, 3245, 62, 3672, 220, 220, 220, 220, 220, 220, 796, 3084, 62, 25747, 58, 12, 16, 7131, 15, 60, 220, 220, 1303, 262, 938, 2214, 318, 407, 44582, 11, 340, 318, 5716, 13869, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1439, 7032, 286, 262, 13639, 389, 19874, 284, 262, 1364, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13639, 62, 18982, 796, 705, 45302, 22179, 7, 685, 705, 27007, 79, 58, 90, 92, 60, 90, 18477, 42535, 4458, 18982, 7, 32538, 11, 705, 25, 27, 3256, 3509, 62, 10394, 58, 32538, 12962, 329, 357, 32538, 11, 4808, 11, 4808, 8, 287, 3084, 62, 25747, 58, 21912, 16, 11907, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 685, 705, 27007, 79, 58, 90, 92, 60, 11709, 4458, 18982, 7, 12957, 62, 3245, 62, 3672, 8, 2361, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 23948, 286, 262, 1767, 389, 19874, 10338, 11, 6906, 319, 262, 2368, 5721, 286, 3084, 62, 25747, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1767, 62, 18982, 220, 220, 796, 705, 45302, 22179, 7, 685, 705, 27007, 79, 58, 90, 92, 60, 90, 18477, 42535, 4458, 18982, 7, 32538, 11, 1767, 62, 31494, 11, 3509, 62, 10394, 58, 32538, 12962, 329, 357, 32538, 11, 4808, 11, 1767, 62, 31494, 8, 287, 3084, 62, 25747, 58, 21912, 16, 11907, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 685, 705, 27007, 79, 58, 90, 92, 60, 11709, 4458, 18982, 7, 12957, 62, 3245, 62, 3672, 8, 2361, 1267, 628, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13639, 62, 1370, 220, 220, 796, 13639, 62, 18982, 13, 18982, 7, 279, 34758, 5387, 25, 7097, 329, 357, 32538, 11, 7097, 11, 4808, 8, 287, 3084, 62, 25747, 1782, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 25677, 62, 1370, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2214, 62, 27160, 287, 23243, 62, 11600, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1767, 62, 1370, 796, 1767, 62, 18982, 13, 18982, 7, 279, 28, 3245, 62, 27160, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 1767, 62, 1370, 1267, 628, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 15, 11, 705, 75, 301, 10354, 75, 301, 11, 705, 1177, 10354, 82, 9741, 62, 11600, 82, 92, 628, 198, 29113, 29113, 7804, 4242, 21017, 198, 2235, 317, 31904, 2163, 284, 24061, 257, 1813, 360, 21870, 319, 257, 1813, 22155, 286, 12608, 198, 2235, 198, 2235, 383, 9672, 4645, 286, 262, 360, 21870, 318, 25, 198, 2, 198, 2, 685, 198, 2, 220, 220, 220, 220, 1391, 220, 220, 1303, 2035, 530, 6087, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9464, 62, 4993, 10354, 685, 705, 929, 3256, 705, 8577, 3256, 705, 49309, 3256, 705, 3861, 1797, 1961, 3256, 705, 16, 6, 16589, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3506, 62, 4993, 10354, 685, 705, 2902, 3256, 705, 41925, 3256, 705, 9319, 1068, 3256, 705, 43, 36048, 1961, 3256, 705, 15, 20520, 198, 2, 220, 220, 220, 220, 8964, 198, 2, 220, 220, 220, 220, 1391, 220, 220, 1303, 393, 1194, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3506, 62, 4993, 10354, 685, 705, 929, 3256, 705, 8577, 3256, 705, 49309, 3256, 705, 3861, 1797, 1961, 3256, 705, 16, 6, 16589, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9464, 62, 4993, 10354, 685, 705, 2902, 3256, 705, 41925, 3256, 705, 9319, 1068, 3256, 705, 43, 36048, 1961, 3256, 705, 15, 20520, 198, 2, 220, 220, 220, 220, 1782, 198, 2, 2361, 628, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 10568, 477, 20086, 198, 198, 4299, 10568, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 4774, 62, 418, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2583, 7294, 357, 15255, 478, 11, 611, 267, 3020, 2175, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16793, 62, 418, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2496, 7294, 357, 15255, 478, 11, 611, 267, 3020, 2175, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16793, 62, 25202, 62, 312, 8, 220, 220, 220, 220, 532, 2496, 3335, 4522, 357, 15255, 478, 11, 611, 22532, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 25202, 62, 312, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 260, 7501, 62, 84, 12162, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 29924, 810, 284, 4179, 2989, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 390, 862, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 20086, 8633, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 260, 1904, 62, 10378, 82, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 6, 32349, 477, 390, 862, 611, 1043, 287, 12940, 416, 15940, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10378, 82, 62, 23870, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1351, 351, 12939, 390, 862, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10378, 62, 2860, 62, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 532, 257, 22155, 326, 8739, 3131, 15940, 284, 307, 2087, 284, 2176, 850, 67, 2867, 3166, 286, 390, 862, 90, 92, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 428, 1948, 6323, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10378, 62, 2860, 62, 31499, 13, 90, 20373, 30072, 220, 220, 532, 3131, 15940, 2087, 284, 2176, 850, 67, 14188, 286, 390, 862, 90, 92, 329, 428, 1948, 6323, 6246, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 28956, 62, 10378, 82, 8, 685, 2536, 60, 532, 257, 1351, 286, 8251, 284, 4781, 422, 390, 862, 11266, 416, 39650, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49511, 284, 1057, 257, 1813, 1430, 30798, 351, 281, 45107, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6589, 20203, 357, 5589, 5329, 11, 5888, 11, 2746, 11, 2891, 737, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24330, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17365, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 17350, 62, 24330, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17365, 1141, 9988, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2860, 62, 23144, 1096, 8, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 751, 284, 390, 862, 24184, 2214, 422, 262, 2858, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 1904, 913, 329, 1430, 23340, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 48267, 62, 11600, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 466, 407, 751, 284, 390, 862, 8633, 2214, 422, 262, 2858, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 1904, 913, 329, 1430, 23340, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 48267, 62, 23736, 62, 29268, 8, 532, 611, 705, 8505, 3256, 466, 407, 2198, 611, 390, 862, 389, 1541, 12939, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 25120, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 6, 290, 612, 318, 257, 3572, 11, 2922, 4738, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 1904, 913, 329, 5897, 6306, 15779, 29985, 884, 355, 1509, 14, 36599, 4315, 28286, 278, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 39624, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 6338, 2148, 4277, 3280, 284, 477, 2683, 618, 31038, 20086, 2644, 220, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 17350, 62, 1462, 62, 24330, 8, 220, 220, 220, 220, 220, 220, 532, 2721, 20086, 284, 17365, 2427, 286, 45233, 12, 10468, 3535, 50, 357, 1462, 1394, 340, 3424, 31520, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 21230, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3338, 4235, 618, 10342, 10392, 717, 2427, 286, 31521, 1541, 6589, 2705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 1462, 423, 517, 2206, 49228, 1382, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 260, 11249, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 2230, 284, 900, 17365, 284, 3368, 22023, 5301, 757, 11, 655, 17884, 357, 361, 4855, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7365, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4731, 329, 7365, 2393, 4585, 477, 19553, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2005, 62, 8664, 220, 220, 220, 220, 220, 532, 4731, 329, 7365, 2393, 4585, 477, 19553, 357, 22437, 407, 2291, 390, 862, 326, 389, 11777, 15009, 8, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 390, 862, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6153, 390, 862, 357, 4480, 334, 12162, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17365, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6153, 17365, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 6208, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3797, 390, 862, 62, 8807, 13, 17752, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10378, 82, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 43775, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 3174, 62, 16793, 62, 292, 62, 4774, 1298, 366, 8505, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 12001, 1298, 366, 8505, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 3672, 1298, 366, 51, 22854, 37535, 27395, 2746, 290, 19590, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 3919, 62, 31499, 1298, 366, 76, 25898, 268, 316, 12, 439, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30619, 1298, 1542, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 31499, 1298, 366, 19849, 11, 83, 2704, 578, 11, 9060, 12, 4871, 2649, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 10568, 17365, 2488, 10378, 82, 62, 8807, 13, 17752, 366, 12404, 31, 90, 6, 10378, 62, 2860, 62, 31499, 10354, 1391, 6, 43775, 10354, 6, 411, 3262, 6, 11709, 1, 1377, 448, 28, 17752, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 10568, 17365, 2488, 10378, 82, 62, 8807, 13, 17752, 1377, 10378, 62, 2860, 62, 31499, 13, 43775, 28, 76, 25898, 268, 316, 1377, 448, 28, 17752, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 1330, 4866, 628, 220, 220, 220, 267, 28, 72, 13, 1136, 10786, 448, 3256, 7061, 8, 628, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 20368, 6329, 11537, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 1874, 10890, 3788, 20086, 2644, 11537, 628, 220, 220, 220, 5929, 62, 24330, 62, 12048, 62, 2618, 28, 7061, 198, 220, 220, 220, 5559, 62, 24011, 1389, 62, 24330, 62, 12048, 62, 2618, 28, 7061, 628, 220, 220, 220, 2721, 62, 24330, 28, 72, 13, 1136, 10786, 17350, 62, 24330, 3256, 90, 30072, 628, 220, 220, 220, 17884, 28, 72, 13, 1136, 10786, 260, 11249, 3256, 7061, 8, 628, 220, 220, 220, 29008, 28, 72, 13, 1136, 10786, 48267, 62, 23736, 62, 29268, 3256, 7061, 8, 628, 220, 220, 220, 390, 862, 28, 72, 13, 1136, 10786, 10378, 82, 3256, 90, 30072, 628, 220, 220, 220, 1207, 62, 2860, 62, 31499, 796, 1312, 13, 1136, 10786, 10378, 62, 2860, 62, 31499, 3256, 23884, 8, 198, 220, 220, 220, 329, 1974, 72, 62, 8738, 287, 1312, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1974, 72, 62, 8738, 13, 9688, 2032, 342, 10786, 10378, 62, 2860, 62, 31499, 2637, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 837, 1207, 62, 3672, 220, 220, 220, 796, 1974, 72, 62, 8738, 13, 35312, 10786, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1207, 62, 2860, 62, 31499, 58, 10378, 62, 3672, 60, 796, 1312, 58, 785, 8482, 62, 8738, 60, 628, 220, 220, 220, 329, 257, 62, 10378, 287, 1207, 62, 2860, 62, 31499, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 257, 62, 10378, 287, 390, 862, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15940, 62, 1462, 62, 1350, 62, 29373, 796, 1207, 62, 2860, 62, 31499, 58, 64, 62, 10378, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 15940, 62, 1462, 62, 1350, 62, 29373, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 390, 862, 58, 64, 62, 10378, 7131, 6, 31499, 20520, 15853, 705, 4032, 1343, 15940, 62, 1462, 62, 1350, 62, 29373, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 220, 220, 1303, 314, 1549, 2138, 5298, 3419, 994, 11, 475, 356, 389, 287, 45233, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7203, 59, 77, 10185, 15932, 25, 20203, 705, 90, 92, 6, 468, 407, 587, 1043, 287, 262, 2656, 5726, 532, 3387, 2198, 534, 5128, 220, 10185, 59, 77, 1911, 18982, 7, 64, 62, 10378, 4008, 628, 220, 220, 220, 4781, 62, 10378, 82, 28, 72, 13, 1136, 10786, 28956, 62, 10378, 82, 3256, 7061, 737, 36311, 3419, 198, 220, 220, 220, 4781, 62, 10378, 82, 62, 4868, 28, 21737, 611, 4781, 62, 10378, 82, 855, 7061, 2073, 4781, 62, 10378, 82, 13, 35312, 7, 3256, 11537, 628, 220, 220, 220, 390, 862, 62, 23870, 28, 72, 13, 1136, 10786, 10378, 82, 62, 23870, 3256, 58, 12962, 198, 220, 220, 220, 32349, 62, 10378, 82, 28, 72, 13, 1136, 10786, 260, 1904, 62, 10378, 82, 3256, 7061, 8, 628, 220, 220, 220, 4966, 28, 72, 13, 1136, 10786, 25120, 3256, 7061, 8, 198, 220, 220, 220, 5897, 28, 72, 13, 1136, 10786, 39624, 3256, 7061, 8, 628, 220, 220, 220, 220, 11203, 28, 72, 13, 1136, 10786, 17350, 62, 1462, 62, 24330, 3256, 7061, 8, 198, 220, 220, 220, 3338, 28, 72, 13, 1136, 10786, 21230, 3256, 7061, 8, 628, 220, 220, 220, 1303, 6822, 2583, 14, 16793, 7294, 14, 36037, 198, 220, 220, 220, 289, 418, 28, 72, 13, 1136, 10786, 4774, 62, 418, 3256, 7061, 8, 198, 220, 220, 220, 284, 82, 28, 72, 13, 1136, 10786, 16793, 62, 418, 3256, 7061, 8, 198, 220, 220, 220, 256, 20839, 28, 72, 13, 1136, 10786, 16793, 62, 25202, 62, 312, 3256, 7061, 8, 198, 220, 220, 220, 611, 256, 20839, 855, 7061, 25, 256, 20839, 28, 72, 13, 1136, 10786, 25202, 62, 312, 3256, 7061, 8, 628, 220, 220, 220, 1303, 3497, 617, 7508, 546, 7294, 198, 220, 220, 220, 21065, 34758, 6, 2673, 10354, 6, 15255, 478, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 24254, 13, 418, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 4774, 62, 418, 10354, 71, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 10354, 83, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 25202, 62, 312, 10354, 8671, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 48267, 62, 10951, 62, 43681, 10354, 6, 8505, 6, 92, 198, 220, 220, 220, 374, 28, 694, 13, 15526, 7, 4178, 8, 198, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 289, 418, 28, 81, 17816, 4774, 62, 418, 62, 27112, 20520, 198, 220, 220, 220, 289, 418, 87, 28, 81, 17816, 4774, 62, 418, 62, 84, 12162, 20520, 198, 220, 220, 220, 289, 418, 67, 28, 81, 17816, 4774, 62, 418, 62, 11600, 20520, 628, 220, 220, 220, 284, 82, 28, 81, 17816, 418, 62, 27112, 20520, 198, 220, 220, 220, 284, 82, 87, 28, 81, 17816, 418, 62, 84, 12162, 20520, 198, 220, 220, 220, 284, 21282, 28, 81, 17816, 418, 62, 11600, 20520, 628, 220, 220, 220, 289, 489, 265, 28, 71, 418, 67, 13, 1136, 10786, 694, 62, 3672, 3256, 7061, 8, 198, 220, 220, 220, 289, 489, 265, 17, 28, 71, 418, 67, 13, 1136, 10786, 694, 62, 3672, 17, 3256, 7061, 8, 198, 220, 220, 220, 256, 489, 265, 28, 83, 418, 67, 13, 1136, 10786, 694, 62, 3672, 3256, 7061, 8, 198, 220, 220, 220, 256, 489, 265, 17, 28, 83, 418, 67, 13, 1136, 10786, 694, 62, 3672, 17, 3256, 7061, 8, 628, 220, 220, 220, 1303, 6822, 611, 2779, 318, 1180, 198, 220, 220, 220, 2124, 16, 28, 71, 418, 67, 13, 1136, 10786, 8692, 62, 27112, 3256, 7061, 8, 198, 220, 220, 220, 2124, 17, 28, 71, 418, 67, 13, 1136, 10786, 8692, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 611, 2124, 16, 0, 28, 7061, 290, 2124, 17, 0, 28, 7061, 25, 220, 198, 220, 220, 220, 220, 220, 220, 289, 418, 28, 87, 16, 198, 220, 220, 220, 220, 220, 220, 289, 418, 87, 28, 87, 17, 198, 220, 220, 220, 2124, 16, 28, 83, 418, 67, 13, 1136, 10786, 8692, 62, 27112, 3256, 7061, 8, 198, 220, 220, 220, 2124, 17, 28, 83, 418, 67, 13, 1136, 10786, 8692, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 611, 2124, 16, 0, 28, 7061, 290, 2124, 17, 0, 28, 7061, 25, 220, 198, 220, 220, 220, 220, 220, 220, 284, 82, 28, 87, 16, 198, 220, 220, 220, 220, 220, 220, 284, 82, 87, 28, 87, 17, 628, 220, 220, 220, 6569, 28, 83, 418, 67, 13, 1136, 10786, 47960, 3256, 7061, 8, 628, 220, 220, 220, 256, 9895, 28, 83, 418, 67, 13, 1136, 10786, 9895, 3256, 7061, 8, 628, 220, 220, 220, 1303, 39432, 390, 862, 198, 220, 220, 220, 17365, 28, 72, 13, 1136, 10786, 24330, 3256, 90, 30072, 198, 220, 220, 220, 551, 622, 12162, 28, 72, 13, 1136, 10786, 260, 7501, 62, 84, 12162, 3256, 7061, 8, 628, 220, 220, 220, 936, 28, 72, 13, 1136, 10786, 2860, 62, 23144, 1096, 3256, 7061, 8, 198, 220, 220, 220, 45647, 28, 72, 13, 1136, 10786, 48267, 62, 11600, 3256, 7061, 8, 628, 220, 220, 220, 581, 28, 21737, 198, 220, 220, 220, 21628, 28, 15, 628, 220, 220, 220, 1303, 6822, 611, 761, 284, 4781, 617, 390, 862, 198, 220, 220, 220, 329, 479, 287, 4781, 62, 10378, 82, 62, 4868, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 479, 287, 390, 862, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1619, 7, 10378, 82, 58, 74, 12962, 628, 220, 220, 220, 264, 10378, 82, 28, 82, 9741, 7, 10378, 82, 11, 1994, 28, 50033, 410, 25, 390, 862, 58, 85, 4083, 1136, 10786, 30619, 3256, 15, 4008, 628, 220, 220, 220, 2124, 36299, 28, 7061, 220, 1303, 2034, 437, 284, 262, 886, 198, 220, 220, 220, 2124, 36299, 16, 28, 7061, 1303, 2034, 437, 284, 262, 886, 628, 220, 220, 220, 329, 479, 287, 264, 10378, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 28, 10378, 82, 58, 74, 60, 628, 220, 220, 220, 220, 220, 220, 220, 611, 10662, 13, 1136, 10786, 8135, 3949, 3256, 7061, 8, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 611, 10662, 13, 1136, 10786, 25616, 3256, 7061, 31520, 11639, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7139, 62, 35, 21870, 796, 10662, 13, 1136, 10786, 21633, 62, 361, 62, 24330, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 7139, 62, 35, 21870, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2872, 62, 1078, 822, 62, 35, 21870, 7, 2721, 62, 24330, 11, 7139, 62, 35, 21870, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 17816, 25616, 20520, 11639, 8505, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 17816, 8135, 3949, 20520, 11639, 8505, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 611, 10662, 13, 1136, 10786, 8135, 3949, 3256, 7061, 31520, 11639, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15560, 62, 35, 21870, 796, 10662, 13, 1136, 10786, 40223, 62, 361, 62, 24330, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 15560, 62, 35, 21870, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2872, 62, 1078, 822, 62, 35, 21870, 7, 2721, 62, 24330, 11, 15560, 62, 35, 21870, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 17816, 8135, 3949, 20520, 11639, 8505, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 17816, 25616, 20520, 11639, 8505, 6, 628, 220, 220, 220, 220, 220, 220, 220, 331, 83, 418, 28, 83, 418, 198, 220, 220, 220, 220, 220, 220, 220, 331, 8671, 312, 28, 8671, 312, 198, 220, 220, 220, 220, 220, 220, 220, 331, 83, 418, 87, 28, 83, 418, 87, 198, 220, 220, 220, 220, 220, 220, 220, 331, 83, 418, 67, 28, 83, 418, 67, 628, 220, 220, 220, 220, 220, 220, 220, 15940, 28, 80, 13, 1136, 10786, 31499, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 393, 62, 31499, 28, 80, 13, 1136, 10786, 273, 62, 31499, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 645, 62, 31499, 28, 80, 13, 1136, 10786, 3919, 62, 31499, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 28, 80, 13, 1136, 10786, 3672, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1957, 28, 80, 13, 1136, 10786, 12001, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 45647, 28, 80, 13, 1136, 10786, 48267, 62, 12286, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7813, 301, 28, 80, 13, 1136, 10786, 48267, 62, 37050, 3256, 90, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 410, 6738, 28, 80, 13, 1136, 10786, 9641, 62, 6738, 3256, 58, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 410, 1462, 28, 80, 13, 1136, 10786, 9641, 62, 1462, 3256, 58, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 304, 74, 28, 80, 13, 1136, 10786, 24330, 62, 2539, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 334, 12162, 28, 80, 13, 1136, 10786, 84, 12162, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 14267, 62, 23870, 28, 80, 13, 1136, 10786, 48267, 62, 23870, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 611, 47075, 20203, 284, 257, 1813, 2583, 393, 2496, 7294, 198, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 9122, 62, 16793, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 11600, 10354, 80, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4774, 62, 418, 62, 84, 12162, 10354, 71, 418, 87, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4774, 62, 418, 62, 11600, 10354, 71, 418, 67, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 62, 84, 12162, 10354, 20760, 418, 87, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 62, 11600, 10354, 20760, 418, 67, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 611, 10662, 13, 1136, 10786, 3174, 62, 16793, 62, 292, 62, 4774, 3256, 7061, 8, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 83, 418, 28, 71, 418, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 8671, 312, 28, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 83, 418, 87, 28, 71, 418, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 83, 418, 67, 28, 71, 418, 67, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 17221, 15940, 284, 307, 2087, 4006, 453, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 220, 742, 3775, 28, 21737, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 18247, 3131, 15940, 1912, 319, 2858, 360, 21870, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 4296, 62, 31499, 62, 361, 62, 24330, 796, 10662, 13, 1136, 10786, 19119, 62, 31499, 62, 361, 62, 24330, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4296, 62, 31499, 62, 361, 62, 24330, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 4540, 62, 12985, 11, 751, 62, 12985, 62, 35, 21870, 287, 4296, 62, 31499, 62, 361, 62, 24330, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2872, 62, 1078, 822, 62, 35, 21870, 7, 2721, 62, 24330, 11, 751, 62, 12985, 62, 35, 21870, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 742, 3775, 13, 33295, 7, 4540, 62, 12985, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 18247, 3131, 15940, 6906, 319, 2583, 14, 16793, 3859, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 28, 80, 13, 1136, 10786, 19119, 62, 31499, 62, 1525, 62, 4774, 62, 24254, 3256, 90, 92, 737, 1136, 7, 71, 489, 265, 4032, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 611, 27765, 0, 28, 7061, 25, 220, 742, 3775, 13, 33295, 7, 17602, 8, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 28, 80, 13, 1136, 10786, 19119, 62, 31499, 62, 1525, 62, 4774, 62, 24254, 17, 3256, 90, 92, 737, 1136, 7, 71, 489, 265, 17, 4032, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 611, 27765, 0, 28, 7061, 25, 220, 742, 3775, 13, 33295, 7, 17602, 8, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 28, 80, 13, 1136, 10786, 19119, 62, 31499, 62, 1525, 62, 16793, 62, 24254, 3256, 90, 92, 737, 1136, 7, 83, 489, 265, 4032, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 611, 27765, 0, 28, 7061, 25, 220, 742, 3775, 13, 33295, 7, 17602, 8, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 28, 80, 13, 1136, 10786, 19119, 62, 31499, 62, 1525, 62, 16793, 62, 24254, 17, 3256, 90, 92, 737, 1136, 7, 83, 489, 265, 17, 4032, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 611, 27765, 0, 28, 7061, 25, 220, 742, 3775, 13, 33295, 7, 17602, 8, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 28, 80, 13, 1136, 10786, 19119, 62, 31499, 62, 1525, 62, 16793, 62, 418, 62, 84, 12162, 3256, 90, 92, 737, 1136, 7, 20760, 418, 87, 4032, 11537, 220, 220, 220, 220, 220, 220, 1303, 471, 10853, 11, 475, 2068, 198, 220, 220, 220, 220, 220, 220, 220, 611, 27765, 0, 28, 7061, 25, 220, 742, 3775, 13, 33295, 7, 17602, 8, 628, 220, 220, 220, 220, 220, 220, 220, 329, 27765, 287, 220, 742, 3775, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 15940, 0, 28, 7061, 25, 15940, 47932, 41707, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15940, 47932, 17602, 13, 36311, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 611, 468, 3917, 5301, 357, 259, 1339, 286, 25448, 390, 862, 329, 24788, 8, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 11600, 28, 80, 13, 1136, 10786, 11600, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 5301, 62, 84, 12162, 28, 80, 13, 1136, 10786, 26495, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5301, 62, 84, 12162, 855, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5301, 62, 84, 12162, 28, 80, 11600, 13, 1136, 10786, 26495, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5301, 62, 84, 12162, 855, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5301, 62, 84, 12162, 28, 80, 11600, 13, 1136, 10786, 23144, 1096, 3256, 90, 92, 737, 1136, 10786, 1484, 62, 26495, 62, 27112, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2124, 17350, 62, 24330, 28, 30073, 13, 22089, 30073, 7, 80, 11600, 13, 1136, 10786, 23144, 1096, 3256, 90, 92, 737, 1136, 10786, 17350, 62, 24330, 3256, 90, 92, 4008, 198, 2, 220, 220, 220, 220, 220, 220, 220, 2124, 17350, 62, 24330, 13, 19119, 7, 17350, 62, 24330, 8, 198, 2, 220, 220, 220, 220, 220, 220, 2721, 62, 24330, 28, 30073, 13, 22089, 30073, 7, 87, 17350, 62, 24330, 8, 1303, 770, 318, 5434, 532, 2721, 62, 24330, 318, 257, 3298, 17365, 543, 318, 2219, 329, 262, 717, 5301, 0, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 9993, 284, 900, 2858, 198, 220, 220, 220, 220, 220, 220, 220, 21628, 47932, 16, 628, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 11639, 8162, 37947, 1387, 705, 10, 2536, 7, 452, 47762, 6, 796, 705, 10, 74, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1438, 0, 28, 7061, 25, 2124, 10, 11639, 19203, 10, 3672, 10, 11537, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 47932, 10354, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 87, 8, 628, 220, 220, 220, 220, 220, 220, 220, 21065, 34758, 6, 4774, 62, 418, 10354, 71, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 14986, 62, 16793, 62, 418, 62, 3672, 17, 10354, 83, 489, 265, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 10354, 20760, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 25202, 62, 312, 10354, 88, 8671, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 31499, 10354, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 273, 62, 31499, 10354, 273, 62, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3919, 62, 31499, 10354, 3919, 62, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 260, 7501, 62, 84, 12162, 10354, 268, 622, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24330, 10354, 24330, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 84, 12162, 10354, 84, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 10378, 82, 10354, 10378, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 14421, 62, 10378, 82, 10354, 80, 11600, 13, 1136, 10786, 10378, 82, 3256, 90, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 10378, 82, 62, 23870, 10354, 10378, 82, 62, 23870, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 260, 1904, 62, 10378, 82, 10354, 260, 1904, 62, 10378, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 48267, 62, 23870, 10354, 48267, 62, 23870, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 48267, 62, 23736, 62, 29268, 10354, 82, 283, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 48267, 62, 12286, 10354, 21282, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 48267, 62, 37050, 10354, 82, 8625, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 12001, 10354, 12001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25120, 10354, 2596, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3672, 10354, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2539, 10354, 988, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 48267, 62, 1050, 46493, 62, 1525, 62, 847, 62, 10378, 82, 10354, 80, 13, 1136, 10786, 48267, 62, 1050, 46493, 62, 1525, 62, 847, 62, 10378, 82, 3256, 7061, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 39624, 10354, 39624, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3174, 62, 24330, 62, 15003, 10354, 80, 13, 1136, 10786, 3174, 62, 24330, 62, 15003, 3256, 7061, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 17350, 62, 1462, 62, 24330, 10354, 11203, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 17350, 62, 24330, 10354, 87, 17350, 62, 24330, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 6738, 10354, 85, 6738, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 1462, 10354, 85, 1462, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 26495, 62, 84, 12162, 10354, 26495, 62, 84, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21230, 10354, 21230, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 220, 220, 220, 220, 611, 17884, 855, 6, 8505, 10354, 21065, 17816, 260, 11249, 20520, 11639, 8505, 6, 198, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 21065, 17816, 448, 20520, 11639, 1102, 6, 628, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 24330, 62, 2617, 7, 4178, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 628, 220, 220, 220, 220, 220, 220, 220, 300, 301, 28, 40914, 17816, 75, 301, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 49427, 28, 40914, 17816, 11600, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 5301, 62, 84, 12162, 28, 1860, 13, 1136, 10786, 26495, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5301, 62, 84, 12162, 855, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5301, 62, 84, 12162, 28, 1860, 13, 1136, 10786, 23144, 1096, 3256, 90, 92, 737, 1136, 10786, 1484, 62, 26495, 62, 27112, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5301, 62, 84, 12162, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 17816, 26495, 62, 84, 12162, 20520, 28, 26495, 62, 84, 12162, 1303, 284, 307, 1498, 284, 17884, 17365, 329, 24788, 319, 1194, 4572, 628, 220, 220, 220, 220, 220, 220, 220, 288, 332, 28, 40914, 13, 1136, 10786, 15255, 11197, 62, 9641, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 288, 332, 0, 28, 7061, 25, 10662, 17816, 15255, 11197, 62, 332, 20520, 28, 67, 332, 628, 220, 220, 220, 220, 220, 220, 220, 611, 705, 6679, 1063, 6, 407, 287, 10662, 393, 18896, 10786, 6679, 1063, 11537, 855, 15, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 17816, 6679, 1063, 20520, 796, 685, 89, 86, 17816, 7890, 62, 27112, 20520, 329, 1976, 86, 287, 300, 301, 60, 628, 220, 220, 220, 220, 220, 220, 220, 269, 385, 28, 1860, 13, 1136, 10786, 23144, 1096, 3256, 90, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 611, 936, 855, 6, 8505, 10354, 10662, 17816, 9042, 20520, 28, 9042, 198, 220, 220, 220, 220, 220, 220, 220, 611, 45647, 0, 11639, 8505, 6, 393, 10662, 13, 1136, 10786, 2860, 62, 11600, 3256, 7061, 8, 855, 6, 8505, 10354, 10662, 17816, 11600, 20520, 28, 1860, 628, 220, 220, 220, 220, 220, 220, 220, 3326, 28, 9042, 13, 1136, 10786, 9641, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3326, 0, 28, 7061, 25, 10662, 17816, 332, 20520, 28, 332, 628, 220, 220, 220, 220, 220, 220, 220, 334, 12162, 28, 40914, 17816, 24330, 62, 84, 12162, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 17816, 84, 12162, 20520, 28, 84, 12162, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 17816, 22510, 62, 298, 1678, 20520, 28, 11925, 7, 75, 301, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 11639, 220, 220, 220, 1874, 5634, 13, 45233, 2858, 25105, 796, 705, 10, 84, 12162, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 288, 332, 0, 28, 7061, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 10, 11639, 357, 15255, 11197, 2196, 705, 10, 67, 332, 10, 11537, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 3326, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 10, 11639, 357, 9641, 705, 10, 332, 10, 11537, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 87, 8, 628, 220, 220, 220, 220, 220, 220, 220, 275, 32656, 28, 9042, 13, 1136, 10786, 11249, 62, 15908, 62, 3672, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 275, 32656, 0, 28, 7061, 25, 10662, 17816, 11249, 62, 15908, 62, 3672, 20520, 28, 17457, 77, 1303, 10664, 276, 284, 1950, 8619, 1438, 329, 2615, 9195, 82, 628, 220, 220, 220, 220, 220, 220, 220, 611, 334, 12162, 407, 287, 581, 25, 581, 13, 33295, 7, 84, 12162, 8, 628, 220, 220, 220, 220, 220, 220, 220, 17365, 28, 40914, 17816, 24330, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 1981, 62, 24330, 62, 12048, 62, 2618, 796, 374, 87, 17816, 8664, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 10662, 17816, 8664, 20520, 796, 1981, 62, 24330, 62, 12048, 62, 2618, 198, 220, 220, 220, 220, 220, 220, 220, 5929, 62, 24330, 62, 12048, 62, 2618, 15853, 1981, 62, 24330, 62, 12048, 62, 2618, 628, 220, 220, 220, 220, 220, 220, 220, 611, 10662, 13, 1136, 10786, 48267, 62, 6738, 62, 8664, 3256, 7061, 31520, 11639, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5559, 62, 24011, 1389, 62, 24330, 62, 12048, 62, 2618, 15853, 1981, 62, 24330, 62, 12048, 62, 2618, 628, 220, 220, 220, 220, 220, 220, 220, 1208, 62, 31499, 62, 1462, 796, 10662, 13, 1136, 10786, 6603, 62, 15699, 278, 62, 31499, 62, 1462, 3256, 23884, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1208, 62, 31499, 62, 1462, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12939, 62, 31499, 796, 49427, 17816, 31499, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 7621, 62, 40290, 287, 1208, 62, 31499, 62, 1462, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12336, 62, 31499, 796, 705, 4032, 13, 22179, 7, 685, 12336, 62, 12985, 329, 12336, 62, 12985, 287, 12939, 62, 31499, 611, 12336, 62, 12985, 13, 9688, 2032, 342, 7, 12985, 62, 40290, 8, 2361, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 12336, 62, 31499, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12336, 62, 31499, 796, 705, 4032, 10, 15699, 278, 62, 31499, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6464, 62, 10378, 82, 796, 1208, 62, 31499, 62, 1462, 58, 12985, 62, 40290, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2099, 7, 260, 344, 1412, 62, 10378, 82, 8, 14512, 1351, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6464, 62, 10378, 82, 796, 685, 6464, 62, 10378, 82, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 6464, 62, 10378, 287, 6464, 62, 10378, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 390, 862, 58, 260, 344, 1412, 62, 10378, 7131, 6, 31499, 20520, 15853, 12336, 62, 31499, 628, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 20368, 6329, 11537, 628, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 15, 11, 705, 10378, 82, 10354, 10378, 82, 11, 705, 24330, 10354, 17365, 11, 705, 8664, 10354, 24011, 1389, 62, 24330, 62, 12048, 62, 2618, 11, 705, 8968, 62, 8664, 10354, 33645, 876, 62, 24011, 1389, 62, 24330, 62, 12048, 62, 2618, 11, 705, 411, 62, 10378, 82, 10354, 411, 92, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 14976, 2858, 357, 260, 12, 40406, 2705, 8, 198, 198, 4299, 14976, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 260, 7501, 62, 84, 12162, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 16099, 471, 23621, 357, 4480, 4295, 27761, 828, 4277, 796, 1957, 357, 1462, 3368, 19698, 584, 1128, 418, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 21412, 62, 84, 12162, 8, 220, 220, 220, 220, 220, 220, 220, 532, 8265, 471, 23621, 357, 4480, 4295, 27761, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 7890, 62, 84, 12162, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1366, 471, 23621, 357, 4480, 4295, 27761, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 15940, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16793, 62, 418, 8, 220, 220, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 2496, 7294, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16793, 62, 9895, 8, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 2496, 10340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 9641, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 2196, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3672, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 1438, 351, 4295, 27761, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 42503, 62, 24330, 8, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 466, 407, 779, 2858, 422, 4683, 5726, 11, 475, 779, 2656, 530, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 301, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1351, 422, 2989, 2163, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1570, 220, 220, 220, 220, 220, 220, 220, 220, 532, 23243, 1570, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 267, 28, 72, 13, 1136, 10786, 448, 3256, 7061, 8, 628, 220, 220, 220, 7422, 12162, 796, 1312, 13, 1136, 10786, 260, 7501, 62, 84, 12162, 3256, 7061, 8, 393, 705, 12001, 6, 198, 220, 220, 220, 38779, 12162, 28, 72, 13, 1136, 10786, 21412, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 7043, 12162, 28, 72, 13, 1136, 10786, 7890, 62, 84, 12162, 3256, 7061, 8, 628, 220, 220, 220, 15940, 28, 72, 13, 1136, 10786, 31499, 3256, 7061, 8, 628, 220, 220, 220, 7083, 62, 31499, 796, 685, 15940, 2361, 611, 15940, 2073, 17635, 628, 220, 220, 220, 284, 82, 62, 84, 12162, 28, 72, 13, 1136, 10786, 16793, 62, 418, 3256, 7061, 8, 198, 220, 220, 220, 611, 284, 82, 62, 84, 12162, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8778, 7294, 198, 220, 220, 220, 220, 220, 220, 220, 374, 88, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 2220, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 418, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 83, 418, 62, 84, 12162, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 88, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 88, 628, 220, 220, 220, 220, 220, 220, 220, 284, 82, 62, 84, 12162, 796, 374, 88, 17816, 11600, 6, 4083, 1136, 10786, 8692, 62, 84, 12162, 3256, 7061, 8, 393, 374, 88, 17816, 7890, 62, 84, 12162, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 7083, 62, 31499, 13, 33295, 7, 705, 16793, 12, 418, 19355, 10, 83, 418, 62, 84, 12162, 1267, 628, 220, 220, 220, 256, 65, 796, 1312, 13, 1136, 10786, 16793, 62, 9895, 3256, 7061, 8, 198, 220, 220, 220, 611, 256, 65, 0, 28, 7061, 25, 7083, 62, 31499, 13, 33295, 7, 256, 65, 10, 6, 9895, 6, 1267, 628, 220, 220, 220, 3326, 796, 1312, 13, 1136, 10786, 9641, 3256, 7061, 8, 198, 220, 220, 220, 611, 3326, 0, 28, 7061, 25, 7083, 62, 31499, 13, 33295, 7, 705, 85, 6, 10, 332, 1267, 628, 220, 220, 220, 15940, 796, 705, 4032, 13, 22179, 7, 2302, 1631, 62, 31499, 8, 628, 198, 220, 220, 220, 1303, 44855, 11682, 25, 2331, 588, 262, 1708, 1643, 373, 18984, 422, 905, 22784, 475, 262, 4036, 3912, 12336, 1643, 373, 407, 11, 523, 612, 318, 645, 3912, 12336, 1682, 13, 198, 220, 220, 220, 1438, 28, 72, 13, 1136, 10786, 3672, 3256, 7061, 8, 198, 220, 220, 220, 266, 3672, 28, 25101, 198, 220, 220, 220, 611, 1438, 13, 19796, 10786, 9, 11537, 29, 28, 15, 393, 1438, 13, 19796, 10786, 8348, 8, 29, 28, 15, 25, 198, 220, 220, 220, 220, 220, 220, 1330, 24714, 15699, 198, 220, 220, 220, 220, 220, 220, 266, 3672, 28, 17821, 198, 220, 220, 220, 220, 220, 220, 1438, 28, 3672, 13, 21037, 3419, 628, 220, 220, 220, 21065, 34758, 6, 2673, 10354, 6, 12947, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 30300, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 260, 7501, 62, 84, 12162, 10354, 622, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 646, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 31499, 10354, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2860, 62, 10951, 10354, 6, 8505, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2860, 62, 28961, 10354, 6, 8505, 6, 92, 198, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 7, 4178, 8, 198, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 628, 220, 220, 220, 300, 301, 28, 40914, 17816, 75, 301, 20520, 628, 220, 220, 220, 1303, 8335, 1570, 198, 220, 220, 220, 1570, 28, 21737, 628, 220, 220, 220, 2496, 62, 418, 62, 3672, 34758, 92, 1303, 327, 8103, 2496, 7294, 3891, 628, 220, 220, 220, 329, 10662, 287, 300, 301, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7043, 12162, 28, 80, 17816, 7890, 62, 84, 12162, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 7043, 312, 28, 80, 17816, 7890, 62, 27112, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 7422, 12162, 28, 80, 17816, 260, 7501, 62, 84, 12162, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 7422, 312, 28, 80, 17816, 260, 7501, 62, 27112, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 7508, 28, 80, 17816, 10951, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 13634, 28, 80, 17816, 28961, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 269, 385, 28, 28961, 13, 1136, 10786, 23144, 1096, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 390, 862, 28, 28961, 13, 1136, 10786, 10378, 82, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 9058, 28, 28961, 13, 1136, 10786, 40406, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 15940, 28, 28961, 13, 1136, 10786, 31499, 3256, 58, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 611, 705, 22065, 6, 287, 15940, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 15940, 62, 40664, 796, 705, 4032, 13, 22179, 7, 685, 83, 329, 256, 287, 15940, 611, 256, 60, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 2583, 62, 418, 62, 84, 12162, 28, 40406, 13, 1136, 10786, 4774, 62, 418, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2496, 62, 418, 62, 84, 12162, 28, 40406, 13, 1136, 10786, 16793, 62, 418, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 256, 9895, 28, 40406, 13, 1136, 10786, 16793, 62, 418, 62, 9895, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 28, 40406, 13, 1136, 10786, 9641, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 288, 3672, 28, 10951, 13, 1136, 10786, 7890, 62, 3672, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 17174, 17174, 2466, 8162, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 67, 3672, 10, 6, 357, 4834, 85, 25, 705, 10, 646, 312, 10, 11537, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 44789, 2625, 6, 10, 31499, 62, 40664, 10, 29653, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 2705, 62, 84, 12162, 28, 28961, 13, 1136, 10786, 4215, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2705, 62, 84, 12162, 855, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 31165, 284, 4886, 262, 2705, 5726, 416, 366, 397, 8709, 278, 503, 1, 617, 286, 262, 15940, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13284, 3775, 28, 21737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 10662, 287, 15940, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 10662, 13, 9688, 2032, 342, 10786, 4774, 12, 418, 12, 11537, 290, 407, 10662, 13, 9688, 2032, 342, 10786, 16793, 12, 418, 12, 11537, 290, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 10662, 13, 437, 2032, 342, 10786, 9895, 11537, 290, 407, 10662, 13, 9688, 2032, 342, 10786, 85, 11537, 290, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 0, 11639, 1186, 7641, 276, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13284, 3775, 13, 33295, 7, 80, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13284, 3775, 62, 40664, 796, 705, 4032, 13, 22179, 7, 685, 83, 329, 256, 287, 13284, 3775, 611, 256, 60, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 1439, 15940, 2625, 6, 10, 31499, 62, 40664, 10, 29653, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 11140, 278, 2705, 471, 23621, 416, 15940, 2625, 6, 10, 7266, 31499, 62, 40664, 10, 29653, 2644, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 12947, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 31499, 10354, 7266, 31499, 62, 40664, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 301, 28, 40914, 17816, 75, 301, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 75, 301, 8, 855, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 1400, 2705, 1043, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 259, 79, 15090, 6, 5239, 10354, 6, 220, 4222, 11, 3802, 2705, 471, 23621, 25, 705, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2705, 62, 84, 12162, 28, 40914, 17816, 8841, 6, 4083, 36311, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 75, 301, 8, 855, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2705, 62, 84, 12162, 28, 75, 301, 58, 15, 7131, 6, 7890, 62, 27112, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 220, 220, 30015, 2705, 471, 23621, 1043, 11639, 10, 75, 301, 58, 15, 7131, 6, 7890, 62, 84, 12162, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 14898, 2705, 329, 777, 15940, 25, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 997, 34758, 92, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 844, 28, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 10662, 287, 300, 301, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 997, 58, 2536, 7, 844, 15437, 28, 80, 17816, 7890, 62, 27112, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 220, 220, 705, 10, 2536, 7, 844, 47762, 11537, 705, 10, 80, 17816, 7890, 62, 84, 12162, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 844, 47932, 16, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 259, 79, 15090, 6, 5239, 10354, 6, 220, 9683, 530, 286, 262, 3689, 329, 2705, 471, 23621, 25, 705, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 40914, 17816, 8841, 6, 4083, 36311, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 407, 287, 997, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 16, 11, 705, 18224, 10354, 6, 18076, 318, 407, 8018, 6, 92, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2705, 62, 84, 12162, 28, 22510, 58, 87, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13634, 17816, 4215, 62, 84, 12162, 20520, 28, 4215, 62, 84, 12162, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10133, 2858, 5726, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 19119, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 1818, 17816, 944, 62, 21412, 62, 27112, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 646, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 3672, 10354, 67, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 11600, 10354, 28961, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 30619, 62, 13083, 10354, 6, 8505, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 611, 5301, 1695, 284, 1011, 17365, 198, 220, 220, 220, 220, 220, 220, 220, 3112, 85, 34758, 92, 198, 220, 220, 220, 220, 220, 220, 220, 5301, 62, 84, 12162, 28, 28961, 13, 1136, 10786, 26495, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5301, 62, 84, 12162, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 19809, 5301, 25, 705, 10, 26495, 62, 84, 12162, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 2220, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 26495, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 26495, 62, 84, 12162, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 1860, 28, 40914, 17816, 11600, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3112, 85, 28, 79, 1860, 13, 1136, 10786, 24330, 3256, 90, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 31165, 649, 9058, 198, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 6524, 411, 722, 9058, 2644, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 21065, 34758, 6, 2673, 10354, 6, 40406, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4774, 62, 418, 10354, 4774, 62, 418, 62, 84, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 10354, 16793, 62, 418, 62, 84, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 4215, 62, 84, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 23144, 1096, 10354, 9042, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 10378, 82, 10354, 10378, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 31499, 10354, 31499, 62, 40664, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 26495, 62, 84, 12162, 10354, 26495, 62, 84, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 48267, 62, 25202, 62, 10951, 62, 43681, 10354, 6, 8505, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4215, 62, 3672, 10354, 67, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24330, 10354, 3617, 85, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24330, 62, 7890, 62, 84, 12162, 10354, 646, 312, 92, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 13, 1136, 10786, 42503, 62, 24330, 3256, 7061, 31520, 28, 7061, 25, 21065, 17816, 42503, 62, 24330, 20520, 28, 72, 17816, 42503, 62, 24330, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 7, 4178, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 40914, 28, 40914, 17816, 7783, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 40914, 0, 28, 2624, 290, 374, 40914, 0, 28, 2091, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 40914, 855, 2624, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 3198, 286, 262, 20086, 318, 4814, 329, 428, 45233, 2858, 0, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 374, 40914, 855, 2091, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 1212, 2858, 468, 2035, 4814, 20086, 393, 6283, 46318, 1022, 6823, 3788, 2858, 290, 1459, 9058, 0, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 88, 28, 694, 13, 259, 79, 15090, 6, 5239, 10354, 6, 17353, 345, 588, 284, 12233, 340, 357, 56, 14, 77, 19427, 705, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 563, 17816, 8841, 6, 4083, 36311, 22446, 21037, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 0, 11639, 77, 6, 290, 2124, 0, 11639, 3919, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 88, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 33678, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 1818, 17816, 944, 62, 21412, 62, 27112, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 646, 312, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 88, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 88, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 374, 87, 628, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 15, 92, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 5387, 2163, 284, 10385, 2583, 62, 418, 290, 2496, 62, 418, 422, 25105, 284, 471, 23621, 284, 307, 31744, 198, 198, 4299, 31744, 62, 418, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9058, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 4774, 62, 418, 62, 84, 12162, 8, 220, 220, 220, 532, 25105, 393, 471, 23621, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16793, 62, 418, 62, 84, 12162, 8, 220, 532, 25105, 393, 471, 23621, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9058, 16, 220, 220, 220, 220, 220, 220, 532, 13686, 9058, 351, 2583, 62, 418, 62, 84, 12162, 290, 2496, 62, 418, 62, 84, 12162, 355, 471, 23621, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2656, 62, 40406, 796, 1312, 13, 1136, 10786, 40406, 3256, 90, 30072, 628, 220, 220, 220, 1330, 4866, 198, 220, 220, 220, 35601, 62, 40406, 796, 4866, 13, 22089, 30073, 7, 2656, 62, 40406, 1267, 628, 220, 220, 220, 329, 9058, 62, 2539, 287, 19203, 4774, 62, 418, 62, 84, 12162, 3256, 705, 16793, 62, 418, 62, 84, 12162, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 9058, 62, 8367, 796, 2656, 62, 40406, 13, 1136, 7, 40406, 62, 2539, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 9058, 62, 8367, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 2220, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 418, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 40406, 62, 8367, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35601, 62, 40406, 58, 40406, 62, 2539, 22241, 81, 17816, 7890, 62, 84, 12162, 20520, 628, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 15, 11, 705, 40406, 16, 10354, 268, 30486, 62, 40406, 92, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 5387, 2163, 25, 651, 1988, 422, 1351, 1231, 4049, 611, 503, 286, 22303, 628, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 21136, 705, 32, 26, 33, 11, 34, 26, 35, 11, 93, 36, 11, 37, 6, 656, 685, 47527, 17821, 11, 317, 8, 4357, 47527, 17821, 11, 347, 828, 357, 17821, 11, 327, 8, 4357, 47527, 17821, 11, 360, 828, 357, 25101, 11, 412, 828, 357, 17821, 11, 376, 15437, 2361, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 1736, 1726, 2989, 1351, 416, 645, 62, 31499, 198, 198, 4299, 778, 1726, 62, 12947, 62, 4868, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 301, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1351, 286, 12784, 706, 705, 12947, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 273, 62, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 751, 12784, 543, 468, 2628, 286, 15940, 11266, 416, 2162, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3919, 62, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4731, 286, 15940, 284, 19607, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 9641, 62, 6738, 8, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2198, 2196, 3599, 422, 2644, 357, 4868, 286, 3146, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 9641, 62, 1462, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2198, 2196, 510, 284, 2644, 357, 4868, 286, 3146, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 26495, 62, 84, 12162, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 2176, 5301, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 40406, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 1813, 9058, 22155, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 301, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 778, 40881, 1351, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 8135, 3949, 62, 13893, 62, 1659, 62, 9641, 8, 532, 611, 705, 8505, 3256, 14267, 780, 286, 2196, 2198, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 300, 301, 28, 72, 13, 1136, 10786, 75, 301, 3256, 58, 12962, 628, 220, 220, 220, 645, 62, 31499, 62, 40664, 796, 1312, 13, 1136, 10786, 3919, 62, 31499, 3256, 7061, 8, 628, 220, 220, 220, 645, 62, 31499, 62, 2617, 796, 900, 7, 645, 62, 31499, 62, 40664, 13, 35312, 7, 3256, 11537, 611, 645, 62, 31499, 62, 40664, 0, 28, 7061, 2073, 17635, 1267, 628, 220, 220, 220, 30972, 3775, 796, 21136, 62, 6381, 73, 4575, 7, 1312, 13, 1136, 10786, 273, 62, 31499, 3256, 7061, 8, 1267, 628, 220, 220, 220, 410, 6738, 28, 72, 13, 1136, 10786, 9641, 62, 6738, 3256, 58, 12962, 198, 220, 220, 220, 410, 1462, 28, 72, 13, 1136, 10786, 9641, 62, 1462, 3256, 58, 12962, 628, 220, 220, 220, 12405, 62, 40406, 62, 11600, 28, 72, 13, 1136, 10786, 40406, 3256, 23884, 8, 628, 220, 220, 220, 778, 40881, 62, 75, 301, 28, 21737, 628, 220, 220, 220, 26684, 62, 13893, 62, 1659, 62, 9641, 28, 7061, 628, 220, 220, 220, 12405, 62, 26495, 62, 84, 12162, 28, 72, 13, 1136, 10786, 26495, 62, 84, 12162, 3256, 7061, 8, 628, 220, 220, 220, 329, 5726, 287, 300, 301, 25, 198, 220, 220, 220, 220, 220, 220, 220, 13634, 28, 13000, 13, 1136, 10786, 28961, 3256, 90, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 416, 5301, 471, 23621, 198, 220, 220, 220, 220, 220, 220, 220, 611, 12405, 62, 26495, 62, 84, 12162, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5726, 62, 26495, 62, 84, 12162, 796, 13634, 13, 1136, 10786, 26495, 62, 84, 12162, 3256, 7061, 8, 393, 13634, 13, 1136, 10786, 23144, 1096, 3256, 90, 92, 737, 1136, 10786, 1484, 62, 26495, 62, 27112, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5726, 62, 26495, 62, 84, 12162, 290, 5726, 62, 26495, 62, 84, 12162, 0, 28, 22766, 62, 26495, 62, 84, 12162, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 5726, 62, 31499, 62, 2617, 796, 900, 7, 13634, 13, 1136, 10786, 31499, 3256, 58, 12962, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 503, 8584, 12784, 357, 403, 43952, 9988, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 22065, 6, 287, 5726, 62, 31499, 62, 2617, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 503, 7466, 757, 82, 705, 3919, 62, 31499, 6, 198, 220, 220, 220, 220, 220, 220, 220, 611, 645, 62, 31499, 62, 2617, 1222, 5726, 62, 31499, 62, 2617, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 416, 12336, 1028, 705, 273, 62, 31499, 6, 357, 12853, 360, 21870, 1104, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 313, 3775, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30972, 3775, 62, 482, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 17856, 287, 30972, 3775, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30972, 3775, 62, 482, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 357, 1443, 570, 11, 256, 8, 287, 17856, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 83, 287, 5726, 62, 31499, 62, 2617, 8, 14512, 275, 12683, 25, 220, 220, 220, 1303, 11361, 291, 1395, 1581, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30972, 3775, 62, 482, 796, 10352, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 379, 1551, 530, 2888, 286, 17856, 318, 10352, 11, 262, 2187, 17856, 318, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 30972, 3775, 62, 482, 25, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 262, 1459, 17856, 318, 6407, 11, 262, 2187, 595, 73, 4575, 318, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 30972, 3775, 62, 482, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 410, 28, 28961, 13, 1136, 10786, 40406, 3256, 90, 92, 737, 1136, 10786, 9641, 62, 35312, 3256, 58, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 717, 2198, 422, 17365, 11, 475, 611, 407, 900, 11, 2198, 422, 5301, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 85, 8, 855, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 28, 28961, 13, 1136, 10786, 23144, 1096, 3256, 90, 92, 737, 1136, 10786, 9641, 62, 35312, 3256, 58, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 85, 8, 855, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3326, 28, 28961, 13, 1136, 10786, 23144, 1096, 3256, 90, 92, 737, 1136, 10786, 9641, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3326, 0, 28, 7061, 290, 3326, 58, 15, 4083, 9409, 328, 270, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 35312, 62, 9641, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 10354, 332, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 28, 40914, 17816, 9641, 62, 35312, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 41354, 25, 257, 1735, 12, 10760, 25, 262, 1255, 286, 2196, 26021, 318, 8574, 994, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5726, 17816, 28961, 6, 7131, 6, 23144, 1096, 6, 7131, 6, 9641, 62, 35312, 20520, 796, 410, 628, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 85, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 85, 6738, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 5589, 533, 62, 47178, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 16, 10354, 85, 6738, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 17, 10354, 85, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 20274, 20520, 855, 44167, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26684, 62, 13893, 62, 1659, 62, 9641, 11639, 8505, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 85, 1462, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 5589, 533, 62, 47178, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 4215, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 16, 10354, 85, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 17, 10354, 85, 1462, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 20274, 20520, 855, 44167, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26684, 62, 13893, 62, 1659, 62, 9641, 11639, 8505, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 5726, 62, 40406, 62, 11600, 796, 13634, 13, 1136, 10786, 40406, 11537, 220, 220, 220, 1303, 611, 5726, 62, 40406, 62, 11600, 318, 6565, 340, 7466, 1997, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5726, 62, 40406, 62, 11600, 290, 18896, 7, 22766, 62, 40406, 62, 11600, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 5589, 533, 62, 11600, 82, 15090, 6, 11600, 16, 10354, 13000, 62, 40406, 62, 11600, 11, 705, 11600, 17, 10354, 22766, 62, 40406, 62, 11600, 30072, 220, 220, 220, 220, 220, 220, 1303, 2198, 1771, 5726, 62, 40406, 62, 11600, 4909, 12405, 62, 40406, 62, 11600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 40496, 20520, 0, 11639, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 356, 4398, 470, 2277, 366, 43043, 1, 6609, 2029, 11, 262, 1351, 5002, 318, 12876, 284, 307, 3017, 25, 198, 220, 220, 220, 220, 220, 220, 220, 778, 40881, 62, 75, 301, 13, 33295, 7, 13000, 8, 628, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 15, 11, 705, 75, 301, 10354, 1050, 40881, 62, 75, 301, 11, 705, 8135, 3949, 62, 13893, 62, 1659, 62, 9641, 10354, 8135, 3949, 62, 13893, 62, 1659, 62, 9641, 92, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 6569, 17365, 5726, 290, 6589, 5301, 198, 198, 4299, 3424, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 7890, 62, 84, 12162, 8, 532, 12784, 284, 307, 20750, 357, 21992, 27761, 460, 307, 973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 260, 7501, 62, 84, 12162, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 31499, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3174, 8, 220, 220, 220, 532, 611, 705, 8505, 3256, 2700, 12233, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 69, 8, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 2700, 12233, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 1330, 4866, 198, 220, 220, 220, 1330, 28686, 198, 220, 220, 220, 1330, 4423, 346, 628, 220, 220, 220, 267, 28, 72, 13, 1136, 10786, 448, 3256, 7061, 8, 198, 220, 220, 220, 267, 2238, 796, 267, 611, 267, 855, 6, 1102, 6, 2073, 10148, 220, 220, 220, 220, 1303, 6584, 470, 356, 2074, 584, 3689, 30, 628, 220, 220, 220, 2700, 28, 72, 13, 1136, 10786, 3174, 3256, 7061, 8, 198, 220, 220, 220, 611, 2700, 855, 7061, 25, 2700, 28, 72, 13, 1136, 10786, 69, 3256, 7061, 8, 628, 220, 220, 220, 1303, 1002, 29924, 318, 407, 5447, 11, 779, 366, 12001, 1, 284, 3368, 10829, 17365, 12784, 287, 584, 1128, 418, 198, 220, 220, 220, 7422, 12162, 28, 72, 13, 1136, 10786, 260, 7501, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 611, 7422, 12162, 855, 7061, 25, 7422, 12162, 11639, 12001, 6, 198, 220, 220, 220, 1312, 17816, 260, 7501, 62, 84, 12162, 20520, 28, 622, 12162, 628, 220, 220, 220, 21065, 28, 30073, 13, 22089, 30073, 7, 72, 8, 198, 220, 220, 220, 21065, 17816, 2673, 20520, 11639, 12860, 6, 198, 220, 220, 220, 21065, 17816, 448, 20520, 28, 7061, 628, 220, 220, 220, 374, 28, 694, 13, 15526, 7, 4178, 8, 198, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 300, 301, 28, 81, 17816, 75, 301, 20520, 628, 220, 220, 220, 1303, 6822, 4277, 3108, 198, 220, 220, 220, 374, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 46012, 533, 62, 17350, 62, 6978, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 26495, 20520, 30072, 198, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 2721, 62, 6978, 28, 81, 17816, 6978, 20520, 628, 220, 220, 220, 329, 10662, 287, 300, 301, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7422, 312, 28, 80, 17816, 260, 7501, 62, 27112, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 7043, 312, 28, 80, 17816, 7890, 62, 27112, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 7043, 12162, 28, 80, 17816, 7890, 62, 84, 12162, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 288, 28, 80, 17816, 28961, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 7508, 62, 7890, 62, 3672, 220, 796, 10662, 13, 1136, 10786, 10951, 3256, 90, 92, 737, 1136, 10786, 7890, 62, 3672, 41707, 4944, 44706, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 15940, 62, 40664, 220, 220, 220, 220, 220, 220, 220, 796, 705, 4032, 13, 22179, 7, 67, 13, 1136, 10786, 31499, 3256, 21737, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 269, 385, 28, 67, 13, 1136, 10786, 23144, 1096, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 1336, 62, 6978, 28, 9042, 13, 1136, 10786, 12853, 62, 6978, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4112, 62, 26495, 62, 17350, 62, 6978, 28, 7061, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1336, 62, 6978, 13, 9688, 2032, 342, 7, 17350, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2721, 62, 6978, 13, 437, 2032, 342, 7, 418, 13, 6978, 13, 325, 79, 8, 393, 2721, 62, 6978, 13, 437, 2032, 342, 10786, 14, 6, 2599, 220, 220, 220, 1303, 318, 262, 717, 407, 1576, 30, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 474, 28, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 474, 28, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3585, 62, 6978, 28, 12853, 62, 6978, 58, 11925, 7, 17350, 62, 6978, 47762, 73, 47715, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5301, 62, 17350, 62, 15908, 62, 3672, 28, 43762, 62, 6978, 13, 35312, 7, 418, 13, 6978, 13, 325, 79, 38381, 15, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5301, 62, 17350, 62, 15908, 62, 3672, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4112, 62, 26495, 62, 17350, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 17350, 62, 6978, 11, 5301, 62, 17350, 62, 15908, 62, 3672, 8, 628, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4112, 62, 26495, 62, 17350, 62, 6978, 290, 28686, 13, 6978, 13, 9409, 343, 7, 48546, 62, 26495, 62, 17350, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3359, 62, 24886, 796, 705, 5301, 287, 26672, 24018, 10, 48546, 62, 26495, 62, 17350, 62, 6978, 10, 29653, 290, 6, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3359, 62, 24886, 796, 10148, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2700, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12233, 62, 30388, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 28, 694, 13, 259, 79, 15090, 6, 5239, 10354, 6, 8491, 345, 1654, 284, 12233, 6, 10, 13812, 62, 24886, 10, 6, 45233, 5726, 17365, 11097, 6, 10, 646, 12162, 10, 29653, 532, 257, 705, 10, 10951, 62, 7890, 62, 3672, 10, 6, 351, 15940, 25, 705, 10, 31499, 62, 40664, 10, 6, 357, 88, 14, 45, 2599, 705, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12233, 62, 30388, 796, 374, 17816, 8841, 6, 4083, 36311, 22446, 21037, 3419, 6624, 705, 88, 6, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12233, 62, 30388, 796, 10352, 628, 220, 220, 220, 220, 220, 220, 220, 611, 12233, 62, 30388, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 23520, 5726, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 26224, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 1818, 17816, 944, 62, 21412, 62, 27112, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 646, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 260, 7501, 62, 84, 12162, 10354, 622, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3174, 10354, 705, 8505, 6, 611, 12233, 62, 30388, 2073, 705, 3256, 220, 1303, 10385, 340, 284, 705, 8505, 6, 4731, 357, 25356, 6198, 705, 8505, 6, 393, 705, 88, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 448, 10354, 34160, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 23520, 5301, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4112, 62, 26495, 62, 17350, 62, 6978, 290, 28686, 13, 6978, 13, 9409, 343, 7, 48546, 62, 26495, 62, 17350, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4423, 346, 13, 81, 16762, 631, 7, 48546, 62, 26495, 62, 17350, 62, 6978, 8, 628, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 15, 92, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 5387, 2163, 284, 2721, 5301, 198, 198, 4299, 5387, 62, 17350, 62, 26495, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 4774, 62, 418, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2583, 7294, 357, 15255, 478, 11, 611, 267, 3020, 2175, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16793, 62, 418, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2496, 7294, 357, 15255, 478, 11, 611, 267, 3020, 2175, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16793, 62, 25202, 62, 312, 8, 220, 220, 220, 220, 532, 2496, 3335, 4522, 357, 15255, 478, 11, 611, 22532, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 25202, 62, 312, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 26495, 62, 84, 12162, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4259, 5301, 357, 1904, 913, 329, 24788, 2644, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2989, 471, 23621, 416, 15940, 357, 25512, 515, 416, 39650, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 273, 62, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 751, 12784, 543, 468, 2628, 286, 15940, 11266, 416, 2162, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3919, 62, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 19607, 920, 2442, 351, 777, 15940, 11266, 416, 39650, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10378, 82, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1541, 12939, 390, 862, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 7266, 62, 10378, 82, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 390, 862, 329, 262, 5301, 284, 307, 6589, 357, 1640, 24788, 8384, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 260, 1904, 62, 10378, 82, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 6, 32349, 477, 390, 862, 611, 1043, 287, 12940, 416, 15940, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10378, 82, 62, 23870, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1351, 351, 12939, 390, 862, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 39624, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 6338, 2148, 4277, 3280, 284, 477, 2683, 618, 31038, 20086, 2644, 220, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 17350, 62, 1462, 62, 24330, 8, 220, 220, 220, 220, 220, 220, 532, 2721, 20086, 284, 17365, 2427, 286, 45233, 12, 10468, 3535, 50, 357, 1462, 1394, 340, 3424, 31520, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 17350, 62, 24330, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 24184, 9988, 357, 1904, 913, 329, 24788, 284, 17884, 1774, 5301, 351, 7097, 17365, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 21230, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3338, 4235, 618, 10342, 10392, 717, 2427, 286, 31521, 1541, 6589, 2705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 1462, 423, 517, 2206, 49228, 1382, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 9641, 62, 6738, 8, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2198, 2196, 3599, 422, 2644, 357, 4868, 286, 3146, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 9641, 62, 1462, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2198, 2196, 510, 284, 2644, 357, 4868, 286, 3146, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2860, 62, 71, 600, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 460, 14267, 5301, 9988, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 260, 11249, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 611, 705, 8505, 3256, 2230, 284, 900, 17365, 284, 3368, 22023, 5301, 757, 11, 655, 17884, 357, 361, 4855, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17365, 62, 7890, 62, 84, 12162, 532, 6589, 5301, 1366, 471, 23621, 357, 5171, 307, 13538, 611, 407, 1043, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17365, 62, 7890, 62, 27112, 532, 6589, 5301, 1366, 25105, 357, 5171, 307, 13538, 611, 407, 1043, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 1330, 28686, 628, 220, 220, 220, 267, 28, 72, 13, 1136, 10786, 448, 3256, 7061, 8, 198, 220, 220, 220, 267, 2238, 796, 267, 611, 267, 855, 6, 1102, 6, 2073, 10148, 220, 220, 220, 220, 1303, 6584, 470, 356, 2074, 584, 3689, 30, 628, 220, 220, 220, 289, 418, 28, 72, 13, 1136, 10786, 4774, 62, 418, 3256, 7061, 8, 198, 220, 220, 220, 284, 82, 28, 72, 13, 1136, 10786, 16793, 62, 418, 3256, 7061, 8, 198, 220, 220, 220, 256, 20839, 28, 72, 13, 1136, 10786, 25202, 62, 312, 3256, 7061, 8, 198, 220, 220, 220, 5301, 62, 84, 12162, 28, 72, 13, 1136, 10786, 26495, 62, 84, 12162, 3256, 7061, 8, 628, 220, 220, 220, 17884, 28, 72, 13, 1136, 10786, 260, 11249, 3256, 7061, 8, 628, 220, 220, 220, 390, 862, 62, 23870, 28, 72, 13, 1136, 10786, 10378, 82, 62, 23870, 3256, 58, 12962, 198, 220, 220, 220, 32349, 62, 10378, 82, 28, 72, 13, 1136, 10786, 260, 1904, 62, 10378, 82, 3256, 7061, 8, 628, 220, 220, 220, 15940, 28, 72, 13, 1136, 10786, 31499, 3256, 7061, 8, 198, 220, 220, 220, 393, 62, 31499, 28, 72, 13, 1136, 10786, 273, 62, 31499, 3256, 7061, 8, 198, 220, 220, 220, 645, 62, 31499, 28, 72, 13, 1136, 10786, 3919, 62, 31499, 3256, 7061, 8, 198, 220, 220, 220, 5897, 28, 72, 13, 1136, 10786, 39624, 3256, 7061, 8, 198, 220, 220, 220, 220, 11203, 28, 72, 13, 1136, 10786, 17350, 62, 1462, 62, 24330, 3256, 7061, 8, 198, 220, 220, 220, 2721, 62, 24330, 28, 72, 13, 1136, 10786, 17350, 62, 24330, 3256, 90, 30072, 198, 220, 220, 220, 3338, 28, 72, 13, 1136, 10786, 21230, 3256, 7061, 8, 198, 220, 220, 220, 29042, 28, 72, 13, 1136, 10786, 2860, 62, 71, 600, 3256, 7061, 8, 628, 220, 220, 220, 410, 6738, 28, 72, 13, 1136, 10786, 9641, 62, 6738, 3256, 58, 12962, 198, 220, 220, 220, 410, 1462, 28, 72, 13, 1136, 10786, 9641, 62, 1462, 3256, 58, 12962, 628, 220, 220, 220, 269, 10378, 82, 28, 72, 13, 1136, 10786, 10378, 82, 3256, 90, 30072, 628, 220, 220, 220, 1303, 7406, 11, 1949, 284, 2721, 2884, 5301, 329, 257, 1813, 3788, 198, 220, 220, 220, 611, 267, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 11140, 278, 290, 15975, 45233, 3788, 10392, 2644, 11537, 198, 220, 220, 220, 220, 220, 220, 611, 5301, 62, 84, 12162, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 9993, 284, 4886, 16144, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 2220, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 26495, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 26495, 62, 84, 12162, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5301, 62, 27112, 28, 40914, 17816, 7890, 62, 27112, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5301, 62, 26011, 28, 40914, 17816, 7890, 62, 26011, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 220, 1635, 5301, 471, 23621, 25, 705, 10, 26495, 62, 26011, 10, 6, 19203, 10, 26495, 62, 27112, 10, 11537, 11537, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 220, 1635, 15940, 25, 220, 220, 220, 220, 220, 220, 220, 705, 10, 31499, 8, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 220, 1635, 393, 15940, 25, 220, 220, 220, 220, 705, 10, 273, 62, 31499, 8, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 220, 220, 1635, 645, 15940, 25, 220, 220, 220, 220, 705, 10, 3919, 62, 31499, 8, 198, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5897, 855, 6, 8505, 10354, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 220, 11140, 278, 290, 15975, 5301, 351, 777, 15940, 6338, 2644, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 11639, 88, 6, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 259, 79, 15090, 6, 5239, 10354, 6, 220, 10928, 345, 588, 284, 2989, 290, 2721, 5301, 351, 777, 15940, 6338, 357, 56, 14, 77, 19427, 705, 30072, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 28, 40914, 17816, 8841, 6, 4083, 36311, 22446, 21037, 3419, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 257, 0, 11639, 77, 6, 290, 257, 0, 11639, 3919, 10354, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 3613, 62, 22019, 62, 15908, 28, 418, 13, 1136, 66, 16993, 3419, 198, 220, 220, 220, 2845, 440, 5188, 81, 1472, 25, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 354, 15908, 10786, 492, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 3613, 62, 22019, 62, 15908, 28, 418, 13, 1136, 66, 16993, 3419, 628, 220, 220, 220, 2721, 62, 324, 713, 34758, 6, 2673, 10354, 6, 17350, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 26495, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 26495, 62, 84, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 448, 10354, 34160, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 31499, 10354, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 273, 62, 31499, 10354, 273, 62, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 3919, 62, 31499, 10354, 3919, 62, 31499, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 17350, 62, 1462, 62, 24330, 10354, 11203, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 24330, 10354, 17350, 62, 24330, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 21230, 10354, 21230, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 4774, 62, 418, 10354, 71, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 16793, 62, 418, 10354, 83, 418, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 25202, 62, 312, 10354, 8671, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 260, 1904, 62, 10378, 82, 10354, 260, 1904, 62, 10378, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 10378, 82, 62, 23870, 10354, 10378, 82, 62, 23870, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 6738, 10354, 85, 6738, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 9641, 62, 1462, 10354, 85, 1462, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 39624, 10354, 39624, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2860, 62, 71, 600, 10354, 993, 92, 628, 220, 220, 220, 611, 17884, 855, 6, 8505, 10354, 2721, 62, 324, 713, 17816, 260, 11249, 20520, 11639, 8505, 6, 628, 220, 220, 220, 1303, 6822, 611, 612, 318, 257, 17050, 287, 12939, 390, 862, 284, 32349, 340, 198, 220, 220, 220, 850, 62, 10378, 82, 28, 72, 13, 1136, 10786, 7266, 62, 10378, 82, 3256, 90, 30072, 198, 220, 220, 220, 611, 269, 10378, 82, 13, 1136, 10786, 5589, 5329, 3256, 90, 92, 737, 1136, 10786, 84, 12162, 3256, 7061, 31520, 28, 7061, 25, 850, 62, 10378, 82, 17816, 5589, 5329, 20520, 28, 10210, 25386, 17816, 5589, 5329, 20520, 198, 220, 220, 220, 611, 269, 10378, 82, 13, 1136, 10786, 5589, 5329, 12, 76, 565, 3256, 90, 92, 737, 1136, 10786, 84, 12162, 3256, 7061, 31520, 28, 7061, 25, 850, 62, 10378, 82, 17816, 5589, 5329, 12, 76, 565, 20520, 28, 10210, 25386, 17816, 5589, 5329, 12, 76, 565, 20520, 198, 220, 220, 220, 611, 18896, 7, 7266, 62, 10378, 82, 8, 29, 15, 25, 2721, 62, 324, 713, 17816, 10378, 82, 20520, 28, 7266, 62, 10378, 82, 628, 220, 220, 220, 7043, 12162, 28, 7061, 198, 220, 220, 220, 7043, 312, 28, 7061, 628, 220, 220, 220, 374, 87, 28, 694, 13, 15526, 7, 17350, 62, 324, 713, 8, 198, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 855, 15, 25, 198, 220, 220, 220, 220, 220, 220, 7043, 12162, 28, 40914, 17816, 24330, 62, 7890, 62, 84, 12162, 20520, 198, 220, 220, 220, 220, 220, 220, 7043, 312, 28, 40914, 17816, 24330, 62, 7890, 62, 27112, 20520, 628, 220, 220, 220, 220, 220, 220, 28686, 13, 354, 15908, 7, 21928, 62, 22019, 62, 15908, 8, 198, 220, 220, 220, 1288, 361, 374, 87, 17816, 7783, 20520, 0, 28, 1433, 25, 220, 1303, 1467, 318, 257, 366, 32707, 1271, 1, 3616, 366, 7220, 7690, 407, 284, 2721, 1, 393, 366, 26495, 407, 1043, 1, 198, 220, 220, 220, 220, 220, 220, 1441, 374, 87, 628, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 15, 11, 705, 24330, 62, 7890, 62, 84, 12162, 10354, 646, 12162, 11, 705, 24330, 62, 7890, 62, 27112, 10354, 646, 312, 92, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 5550, 47, 38827, 11617, 532, 779, 366, 694, 7166, 17365, 1, 2427, 0, 198, 2, 900, 17365, 329, 3141, 1627, 357, 3866, 12, 2617, 2972, 9701, 8, 198, 198, 4299, 2124, 2617, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 1303, 2980, 378, 45218, 2393, 198, 220, 220, 220, 1312, 17816, 12001, 20520, 11639, 8505, 6, 198, 220, 220, 220, 1312, 17816, 8664, 62, 7753, 20520, 11639, 22065, 12, 694, 12, 24330, 13, 8664, 6, 198, 220, 220, 220, 1312, 17816, 8664, 62, 3605, 20520, 11639, 8505, 6, 198, 220, 220, 220, 1312, 17816, 4798, 20520, 11639, 8505, 6, 628, 220, 220, 220, 1441, 17365, 62, 2617, 7, 72, 8, 628, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 662, 12, 2220, 2858, 329, 262, 7582, 198, 198, 4299, 7166, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 84, 12162, 393, 334, 12162, 220, 220, 532, 2858, 471, 23621, 284, 662, 12, 2220, 357, 3826, 366, 694, 905, 17365, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 257, 6087, 286, 39650, 12, 25512, 515, 15940, 284, 7135, 866, 262, 2989, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 273, 62, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 532, 257, 6087, 286, 5026, 27045, 261, 12, 25512, 515, 290, 39650, 12, 25512, 515, 15940, 284, 7135, 866, 262, 2989, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 12985, 62, 24432, 8, 220, 220, 220, 220, 220, 532, 4795, 2628, 286, 393, 62, 31499, 11, 11266, 416, 257, 2272, 11, 3522, 284, 4553, 17365, 12784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 326, 460, 307, 5929, 1978, 25, 705, 438, 12985, 62, 24432, 28, 26591, 11, 31361, 34236, 11, 93, 67, 12514, 304, 862, 33576, 26, 50033, 11, 30300, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 12947, 62, 11600, 8, 220, 220, 220, 220, 532, 2421, 3326, 8664, 320, 7466, 286, 617, 12608, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 19011, 577, 8, 220, 220, 220, 220, 220, 220, 220, 220, 532, 900, 284, 705, 8505, 6, 284, 766, 262, 4226, 326, 481, 307, 973, 284, 1382, 262, 2858, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 29149, 62, 28758, 8, 220, 220, 220, 220, 220, 220, 532, 3141, 1627, 284, 1057, 287, 262, 366, 38986, 12, 268, 30486, 1, 7582, 357, 15883, 1654, 340, 318, 6050, 1346, 10947, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 6208, 25, 198, 220, 220, 220, 220, 220, 220, 220, 269, 74, 7166, 17365, 1377, 31499, 28, 19849, 11, 261, 77, 87, 11, 411, 3262, 1377, 29149, 62, 28758, 11639, 30328, 720, 5805, 62, 33365, 3698, 62, 26947, 62, 43, 4792, 12425, 6, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 1330, 4866, 628, 220, 220, 220, 7043, 12162, 220, 220, 220, 220, 220, 220, 220, 796, 1312, 13, 1136, 10786, 7890, 62, 84, 12162, 3256, 1312, 13, 1136, 10786, 84, 12162, 3256, 7061, 8, 1267, 198, 220, 220, 220, 7621, 62, 24432, 220, 796, 1312, 13, 1136, 10786, 12985, 62, 24432, 11537, 198, 220, 220, 220, 1351, 62, 1659, 62, 929, 19581, 796, 17635, 628, 220, 220, 220, 611, 407, 7043, 12162, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 84, 12162, 220, 220, 220, 220, 796, 17635, 198, 220, 220, 220, 1288, 361, 705, 4032, 287, 7043, 12162, 25, 220, 220, 220, 220, 220, 1303, 16926, 46, 25, 4329, 39224, 357, 4360, 991, 2499, 8, 287, 352, 13, 940, 11, 4329, 281, 4049, 287, 352, 13, 1157, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 269, 74, 13, 448, 10786, 46162, 38827, 11617, 25, 921, 1283, 284, 307, 1262, 44189, 5794, 1626, 257, 327, 2389, 13, 4222, 1351, 3294, 327, 47954, 319, 534, 3141, 1627, 2427, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 84, 12162, 796, 7043, 12162, 13, 35312, 7, 3256, 11537, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 84, 12162, 796, 685, 7043, 12162, 2361, 628, 220, 220, 220, 329, 2124, 66, 312, 287, 1312, 13, 1136, 10786, 25306, 2340, 3256, 21737, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 66, 312, 17816, 21412, 62, 84, 12162, 20520, 6624, 705, 24330, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 84, 12162, 13, 33295, 7, 2124, 66, 312, 17816, 7890, 62, 84, 12162, 20520, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 16, 11, 705, 18224, 10354, 1, 439, 327, 2389, 12784, 423, 284, 307, 286, 705, 24330, 6, 2099, 20662, 628, 220, 220, 220, 329, 334, 12162, 287, 1351, 62, 1659, 62, 84, 12162, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 334, 12162, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 9, 6, 407, 287, 334, 12162, 25, 220, 1303, 307, 257, 4295, 9517, 393, 307, 1944, 0, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 796, 269, 74, 13, 15526, 7, 1391, 6, 2673, 10354, 705, 2220, 3256, 705, 21412, 62, 84, 12162, 10354, 705, 24330, 3256, 705, 7890, 62, 84, 12162, 10354, 334, 12162, 92, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 929, 19581, 13, 33295, 7, 1391, 6, 84, 12162, 10354, 334, 12162, 92, 1267, 628, 220, 220, 220, 611, 7621, 62, 24432, 290, 18896, 7, 12985, 62, 24432, 8, 29, 15, 25, 220, 220, 220, 1303, 7621, 62, 24432, 389, 1464, 2087, 319, 1353, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 929, 19581, 15853, 685, 1391, 6, 273, 62, 31499, 10354, 393, 62, 31499, 92, 329, 393, 62, 31499, 287, 7621, 62, 24432, 13, 35312, 3419, 60, 628, 220, 220, 220, 611, 407, 18896, 7, 4868, 62, 1659, 62, 84, 12162, 8, 290, 357, 1312, 13, 1136, 10786, 31499, 11537, 393, 1312, 13, 1136, 10786, 273, 62, 31499, 11537, 15179, 220, 1303, 475, 787, 1654, 15940, 547, 1775, 379, 1551, 1752, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 929, 19581, 13, 33295, 7, 23884, 1267, 628, 220, 220, 220, 611, 407, 18896, 7, 4868, 62, 1659, 62, 929, 19581, 2599, 220, 220, 220, 1303, 611, 2147, 2073, 14451, 11, 1309, 262, 2836, 3853, 530, 17365, 422, 262, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 929, 19581, 13, 33295, 7, 1391, 705, 84, 12162, 6, 1058, 705, 9, 6, 92, 1267, 628, 220, 220, 220, 662, 48553, 62, 6615, 220, 796, 17635, 628, 220, 220, 220, 329, 8633, 62, 19119, 287, 1351, 62, 1659, 62, 929, 19581, 25, 198, 220, 220, 220, 220, 220, 220, 220, 17365, 62, 2617, 62, 49845, 796, 4866, 13, 22089, 30073, 7, 1312, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 17365, 62, 2617, 62, 49845, 13, 19119, 7, 8633, 62, 19119, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 374, 28, 24330, 62, 2617, 7, 17365, 62, 2617, 62, 49845, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 220, 220, 220, 220, 662, 48553, 62, 6615, 13, 33295, 7, 374, 17816, 8664, 6, 4083, 36311, 3419, 1267, 628, 220, 220, 220, 1441, 17365, 2363, 1133, 15090, 705, 79, 1809, 430, 2848, 62, 6615, 10354, 662, 48553, 62, 6615, 11, 705, 29149, 62, 28758, 10354, 1312, 13, 1136, 10786, 29149, 62, 28758, 33809, 705, 19011, 577, 10354, 1312, 13, 1136, 10786, 19011, 577, 11537, 32092, 628, 198, 29113, 29113, 14468, 198, 2, 12260, 257, 7582, 3141, 662, 12, 29988, 1496, 351, 257, 1813, 2858, 12, 4666, 4035, 4226, 198, 198, 4299, 17365, 2363, 1133, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 79, 1809, 430, 2848, 62, 6615, 8, 220, 532, 3951, 286, 262, 2858, 12, 33990, 662, 12, 48553, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 29149, 62, 28758, 8, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3141, 1627, 284, 1057, 287, 262, 662, 12, 29988, 1496, 7582, 357, 15883, 1654, 340, 318, 6050, 1346, 10947, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 19011, 577, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 900, 284, 705, 8505, 6, 284, 766, 262, 662, 62, 48553, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 6208, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 17365, 2363, 1133, 17365, 2488, 12404, 1, 90, 6, 79, 1809, 430, 2848, 62, 6615, 10354, 37250, 39344, 42674, 7801, 28, 26591, 41707, 30328, 17031, 2231, 20520, 36786, 1377, 29149, 62, 28758, 11639, 30328, 720, 1847, 47, 7801, 720, 33, 20892, 6, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 1303, 5660, 7582, 198, 220, 220, 220, 1330, 3859, 198, 220, 220, 220, 1330, 28686, 198, 220, 220, 220, 1330, 850, 14681, 628, 220, 220, 220, 7582, 62, 28758, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 1312, 13, 1136, 10786, 29149, 62, 28758, 3256, 6045, 8, 198, 220, 220, 220, 662, 48553, 62, 6615, 220, 220, 220, 796, 1312, 13, 1136, 10786, 79, 1809, 430, 2848, 62, 6615, 3256, 685, 12962, 628, 220, 220, 220, 611, 1312, 13, 1136, 10786, 19011, 577, 3256, 10148, 8, 855, 6, 8505, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7203, 8162, 3771, 25138, 262, 1708, 2858, 7479, 77, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7203, 59, 77, 1911, 22179, 7, 79, 1809, 430, 2848, 62, 6615, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 628, 220, 220, 220, 611, 407, 7582, 62, 28758, 25, 198, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 10786, 8162, 15932, 25, 345, 389, 287, 257, 649, 7582, 351, 257, 662, 12, 2617, 45233, 2858, 13, 6062, 366, 37023, 1, 284, 1441, 284, 262, 2656, 530, 0, 11537, 628, 220, 220, 220, 611, 3859, 13, 10057, 22446, 21037, 22446, 9688, 2032, 342, 10786, 5404, 6, 2599, 1303, 23864, 2611, 25, 645, 3002, 628, 220, 220, 220, 220, 220, 220, 220, 611, 7582, 62, 28758, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 662, 48553, 62, 6615, 13, 33295, 7, 7582, 62, 28758, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19883, 62, 32109, 796, 31051, 34, 6, 220, 220, 220, 220, 1303, 23654, 262, 327, 12740, 7582, 618, 262, 2858, 4226, 1222, 7582, 62, 28758, 389, 625, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19883, 62, 32109, 796, 31051, 42, 6, 220, 220, 220, 220, 1303, 3520, 287, 262, 327, 12740, 7582, 628, 220, 220, 220, 220, 220, 220, 220, 7582, 62, 12048, 62, 3642, 658, 796, 705, 1222, 45302, 22179, 7, 662, 48553, 62, 6615, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 279, 796, 850, 14681, 13, 47, 9654, 7, 17816, 28758, 3256, 19883, 62, 32109, 11, 7582, 62, 12048, 62, 3642, 658, 4357, 7582, 796, 6407, 11, 17365, 28, 418, 13, 268, 2268, 8, 198, 220, 220, 220, 220, 220, 220, 220, 279, 13, 17077, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 8189, 220, 796, 279, 13, 7783, 8189, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 5235, 62, 22065, 62, 7753, 15090, 6, 40290, 10354, 705, 694, 62, 24330, 2363, 1133, 62, 3256, 705, 37333, 844, 10354, 45302, 1477, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 198, 220, 220, 220, 220, 220, 220, 220, 662, 48553, 62, 34345, 28, 40914, 17816, 7753, 62, 3672, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 7582, 62, 12048, 62, 3642, 658, 796, 705, 59, 77, 59, 77, 4458, 22179, 7, 662, 48553, 62, 6615, 1267, 1343, 705, 59, 77, 6, 628, 220, 220, 220, 220, 220, 220, 220, 374, 87, 28, 694, 13, 21928, 62, 5239, 62, 7753, 15090, 6, 5239, 62, 7753, 10354, 79, 1809, 430, 2848, 62, 34345, 11, 705, 8841, 10354, 29149, 62, 12048, 62, 3642, 658, 32092, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 87, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 628, 220, 220, 220, 220, 220, 220, 220, 1336, 62, 28758, 62, 4868, 220, 220, 220, 796, 685, 26488, 8800, 14, 41757, 41707, 438, 6015, 7753, 3256, 662, 48553, 62, 34345, 11, 705, 12, 72, 20520, 1343, 357, 685, 29001, 66, 3256, 7582, 62, 28758, 60, 611, 7582, 62, 28758, 2073, 17635, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 8189, 796, 850, 14681, 13, 13345, 7, 12853, 62, 28758, 62, 4868, 11, 7582, 796, 10352, 8, 628, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 7783, 62, 8189, 11, 705, 18224, 10354, 6, 20035, 4049, 422, 262, 28376, 7582, 6, 92, 628, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 1441, 262, 2721, 62, 24886, 198, 198, 4299, 17276, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 7890, 62, 84, 12162, 393, 334, 12162, 8, 532, 2858, 5726, 14, 298, 1678, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 31499, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 15940, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 16793, 62, 418, 8, 220, 220, 220, 220, 220, 220, 532, 778, 1726, 416, 2496, 7294, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 7043, 12162, 220, 220, 220, 220, 220, 220, 220, 796, 1312, 13, 1136, 10786, 7890, 62, 84, 12162, 3256, 1312, 13, 1136, 10786, 84, 12162, 3256, 705, 9, 11537, 1267, 198, 220, 220, 220, 15940, 62, 40664, 220, 220, 220, 796, 1312, 13, 1136, 10786, 31499, 11537, 628, 220, 220, 220, 284, 82, 62, 84, 12162, 220, 220, 220, 220, 796, 1312, 13, 1136, 10786, 16793, 62, 418, 3256, 7061, 8, 198, 220, 220, 220, 611, 284, 82, 62, 84, 12162, 0, 28, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8778, 7294, 198, 220, 220, 220, 220, 220, 220, 220, 374, 88, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 2220, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 418, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 83, 418, 62, 84, 12162, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 88, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 88, 628, 220, 220, 220, 220, 220, 220, 220, 284, 82, 62, 84, 12162, 796, 374, 88, 17816, 11600, 6, 4083, 1136, 10786, 8692, 62, 84, 12162, 3256, 7061, 8, 393, 374, 88, 17816, 7890, 62, 84, 12162, 20520, 628, 220, 220, 220, 220, 220, 220, 220, 2496, 62, 418, 62, 12985, 796, 705, 16793, 12, 418, 19355, 10, 83, 418, 62, 84, 12162, 198, 220, 220, 220, 220, 220, 220, 220, 1312, 17816, 31499, 20520, 796, 357, 31499, 62, 40664, 1343, 705, 4032, 611, 15940, 62, 40664, 2073, 10148, 8, 1343, 2496, 62, 418, 62, 12985, 628, 220, 220, 220, 611, 7043, 12162, 13, 19796, 10786, 9, 11537, 0, 10779, 16, 393, 7043, 12162, 13, 19796, 10786, 8348, 31520, 10779, 16, 393, 15940, 62, 40664, 25, 198, 220, 220, 220, 220, 220, 220, 220, 16499, 62, 324, 713, 796, 269, 74, 13, 15526, 7, 8633, 7, 72, 11, 2223, 11639, 12947, 3256, 503, 28, 7061, 8, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 611, 16499, 62, 324, 713, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 628, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 84, 12162, 796, 685, 5726, 17816, 7890, 62, 84, 12162, 20520, 329, 5726, 287, 16499, 62, 324, 713, 17816, 75, 301, 20520, 2361, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 84, 12162, 796, 685, 7043, 12162, 2361, 628, 220, 220, 220, 2721, 62, 17946, 602, 796, 23884, 628, 220, 220, 220, 329, 334, 12162, 287, 1351, 62, 1659, 62, 84, 12162, 25, 628, 220, 220, 220, 220, 220, 220, 220, 9639, 62, 324, 713, 796, 269, 74, 13, 15526, 15090, 6, 2673, 10354, 6, 2220, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 220, 220, 705, 24330, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 220, 220, 220, 220, 334, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 32092, 198, 220, 220, 220, 220, 220, 220, 220, 611, 9639, 62, 324, 713, 17816, 7783, 20520, 29, 15, 25, 1441, 9639, 62, 324, 713, 628, 220, 220, 220, 220, 220, 220, 220, 2721, 62, 24886, 796, 9639, 62, 324, 713, 13, 1136, 10786, 11600, 3256, 23884, 737, 1136, 10786, 17350, 62, 24886, 3256, 10148, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2721, 62, 17946, 602, 58, 84, 12162, 60, 796, 2721, 62, 24886, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 13, 1136, 10786, 448, 11537, 855, 6, 1102, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 4868, 62, 1659, 62, 84, 12162, 8, 29, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7203, 24330, 29164, 92, 4613, 23884, 1911, 18982, 7, 84, 12162, 11, 2721, 62, 24886, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 17350, 62, 24886, 8, 628, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 657, 11, 705, 17350, 62, 17946, 602, 10354, 2721, 62, 17946, 602, 92, 628, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 905, 262, 7582, 4226, 329, 4634, 510, 428, 17365, 198, 198, 4299, 3797, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 84, 12162, 393, 334, 12162, 220, 220, 532, 2858, 471, 23621, 284, 662, 12, 2220, 357, 3826, 366, 694, 7166, 17365, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 1330, 28686, 628, 220, 220, 220, 7043, 12162, 220, 220, 220, 220, 220, 220, 220, 796, 1312, 13, 1136, 10786, 7890, 62, 84, 12162, 3256, 1312, 13, 1136, 10786, 84, 12162, 3256, 705, 9, 11537, 1267, 198, 220, 220, 220, 15940, 62, 40664, 220, 220, 220, 796, 1312, 13, 1136, 10786, 31499, 11537, 628, 220, 220, 220, 611, 7043, 12162, 13, 19796, 7, 3256, 11537, 0, 10779, 16, 25, 220, 220, 220, 220, 220, 1303, 16926, 46, 25, 4329, 39224, 357, 4360, 991, 2499, 8, 287, 352, 13, 940, 11, 4329, 281, 4049, 287, 352, 13, 1157, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 269, 74, 13, 448, 10786, 46162, 38827, 11617, 25, 921, 1283, 284, 307, 1262, 44189, 5794, 1626, 257, 327, 2389, 13, 4222, 1351, 3294, 327, 47954, 319, 534, 3141, 1627, 2427, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 269, 74, 13, 448, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 84, 12162, 796, 7043, 12162, 13, 35312, 7, 3256, 11537, 198, 220, 220, 220, 1288, 361, 7043, 12162, 13, 19796, 10786, 9, 11537, 0, 10779, 16, 393, 7043, 12162, 13, 19796, 10786, 8348, 31520, 10779, 16, 393, 15940, 62, 40664, 25, 198, 220, 220, 220, 220, 220, 220, 220, 16499, 62, 324, 713, 796, 269, 74, 13, 15526, 7, 8633, 7, 72, 11, 2223, 11639, 12947, 11537, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 611, 16499, 62, 324, 713, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 87, 628, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 84, 12162, 796, 685, 5726, 17816, 7890, 62, 84, 12162, 20520, 329, 5726, 287, 16499, 62, 324, 713, 17816, 75, 301, 20520, 2361, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 84, 12162, 796, 685, 7043, 12162, 2361, 628, 220, 220, 220, 329, 2124, 66, 312, 287, 1312, 13, 1136, 10786, 25306, 2340, 3256, 21737, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 66, 312, 17816, 21412, 62, 84, 12162, 20520, 6624, 705, 24330, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 62, 1659, 62, 84, 12162, 13, 33295, 7, 2124, 66, 312, 17816, 7890, 62, 84, 12162, 20520, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 16, 11, 705, 18224, 10354, 1, 439, 327, 2389, 12784, 423, 284, 307, 286, 705, 24330, 6, 2099, 20662, 628, 220, 220, 220, 1303, 3497, 617, 7508, 546, 7294, 198, 220, 220, 220, 374, 28, 694, 13, 15526, 15090, 6, 2673, 10354, 6, 15255, 478, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 37581, 17816, 21412, 62, 10378, 82, 6, 7131, 6, 24254, 13, 418, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 48267, 62, 10951, 62, 43681, 10354, 6, 8505, 3256, 198, 220, 220, 220, 32092, 198, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 198, 220, 220, 220, 289, 418, 67, 28, 81, 17816, 4774, 62, 418, 62, 11600, 20520, 198, 220, 220, 220, 816, 62, 4102, 263, 220, 796, 289, 418, 67, 17816, 2787, 20520, 628, 220, 220, 220, 329, 334, 12162, 287, 1351, 62, 1659, 62, 84, 12162, 25, 628, 220, 220, 220, 220, 220, 220, 220, 9639, 62, 324, 713, 796, 269, 74, 13, 15526, 15090, 6, 2673, 10354, 6, 2220, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 21412, 62, 84, 12162, 10354, 220, 220, 705, 24330, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 7890, 62, 84, 12162, 10354, 220, 220, 220, 220, 334, 12162, 11, 198, 220, 220, 220, 220, 220, 220, 220, 32092, 198, 220, 220, 220, 220, 220, 220, 220, 611, 9639, 62, 324, 713, 17816, 7783, 20520, 29, 15, 25, 1441, 9639, 62, 324, 713, 628, 220, 220, 220, 220, 220, 220, 220, 5726, 62, 34945, 62, 6978, 220, 220, 220, 796, 9639, 62, 324, 713, 17816, 6978, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 17365, 62, 12048, 62, 3672, 220, 220, 220, 220, 220, 220, 220, 220, 796, 9639, 62, 324, 713, 17816, 11600, 6, 4083, 1136, 10786, 24330, 62, 12048, 11537, 393, 357, 30218, 70, 17816, 12286, 62, 8664, 62, 3672, 20520, 1343, 289, 418, 67, 13, 1136, 10786, 12048, 62, 2302, 3256, 7061, 8, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 9058, 62, 12048, 62, 6978, 220, 220, 796, 28686, 13, 6978, 13, 22179, 7, 5726, 62, 34945, 62, 6978, 11, 17365, 62, 12048, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 3672, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 9639, 62, 324, 713, 17816, 7890, 62, 3672, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 9639, 62, 324, 713, 17816, 11600, 6, 4083, 1136, 10786, 23144, 1096, 3256, 90, 92, 737, 1136, 10786, 9641, 3256, 705, 4944, 44706, 62, 43717, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 15940, 62, 40664, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 705, 4032, 13, 22179, 7, 9639, 62, 324, 713, 17816, 11600, 6, 4083, 1136, 10786, 31499, 3256, 58, 12962, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 13639, 62, 6615, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 816, 62, 4102, 263, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 90, 92, 23884, 58, 23884, 3326, 13, 1391, 5512, 23884, 2361, 90, 92, 4458, 18982, 7, 2787, 62, 4102, 263, 11, 705, 19355, 1635, 1160, 11, 1366, 62, 3672, 11, 2196, 11, 9058, 62, 12048, 62, 6978, 11, 705, 19355, 1635, 1160, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 90, 92, 44789, 25, 23884, 4458, 18982, 7, 2787, 62, 4102, 263, 11, 15940, 62, 40664, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 816, 62, 4102, 263, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 628, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 40406, 62, 12048, 62, 6978, 11, 705, 81, 11537, 355, 9058, 62, 12048, 62, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1627, 62, 17618, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 5128, 62, 1370, 287, 9058, 62, 12048, 62, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 1370, 796, 5128, 62, 1370, 13, 81, 36311, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 5128, 62, 1370, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1627, 62, 17618, 25, 220, 220, 220, 220, 1303, 7550, 262, 8295, 12, 27568, 13639, 826, 706, 262, 717, 1627, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 13639, 62, 1370, 287, 13639, 62, 6615, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 13639, 62, 1370, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1627, 62, 17618, 15853, 352, 628, 220, 220, 220, 220, 220, 220, 220, 269, 74, 13, 448, 7, 37082, 77, 59, 77, 1, 1267, 628, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 15, 92, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 4781, 45218, 12784, 357, 12518, 9988, 284, 17365, 5726, 4054, 8, 198, 198, 4299, 374, 16762, 3149, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 1312, 17816, 2673, 20520, 11639, 26224, 6, 198, 220, 220, 220, 1312, 17816, 7890, 62, 84, 12162, 20520, 11639, 9, 6, 628, 220, 220, 220, 15940, 28, 72, 13, 1136, 10786, 31499, 3256, 7061, 8, 198, 220, 220, 220, 611, 15940, 0, 28, 7061, 25, 15940, 47932, 41707, 198, 220, 220, 220, 15940, 10, 11639, 22065, 6, 628, 220, 220, 220, 1312, 17816, 31499, 20520, 28, 31499, 628, 220, 220, 220, 1441, 269, 74, 13, 15526, 7, 72, 8, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 651, 477, 6300, 422, 390, 862, 357, 8344, 1834, 2280, 8, 198, 198, 4299, 651, 62, 439, 62, 47178, 62, 259, 62, 10378, 82, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 390, 862, 220, 220, 220, 220, 220, 220, 220, 532, 390, 862, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2539, 8, 220, 220, 220, 220, 220, 220, 532, 1459, 1994, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 8807, 62, 15763, 8, 532, 611, 705, 8505, 3256, 2198, 691, 6808, 8251, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 47178, 8, 220, 532, 1459, 6300, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 12985, 62, 47178, 8, 532, 1459, 6300, 416, 15940, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6300, 220, 220, 220, 220, 532, 477, 6300, 329, 477, 390, 862, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7621, 62, 47178, 220, 220, 220, 220, 532, 477, 6300, 329, 477, 390, 862, 416, 15940, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 390, 862, 28, 72, 17816, 10378, 82, 20520, 198, 220, 220, 220, 1994, 28, 72, 13, 1136, 10786, 2539, 3256, 7061, 8, 628, 220, 220, 220, 6300, 28, 72, 13, 1136, 10786, 47178, 3256, 90, 30072, 198, 220, 220, 220, 256, 47178, 28, 72, 13, 1136, 10786, 83, 47178, 3256, 58, 12962, 628, 220, 220, 220, 691, 62, 15763, 16193, 72, 13, 1136, 10786, 8807, 62, 15763, 3256, 7061, 8, 855, 6, 8505, 11537, 628, 220, 220, 220, 329, 479, 287, 390, 862, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 2539, 28, 2539, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 2539, 0, 28, 7061, 25, 2124, 2539, 10, 11639, 2, 6, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 2539, 47932, 74, 628, 220, 220, 220, 220, 220, 220, 220, 288, 28, 10378, 82, 58, 74, 60, 628, 220, 220, 220, 220, 220, 220, 220, 49427, 28, 67, 13, 1136, 10786, 11600, 3256, 90, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 15940, 28, 1860, 13, 1136, 10786, 31499, 3256, 58, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 336, 3775, 28, 3256, 4458, 22179, 7, 31499, 8, 628, 220, 220, 220, 220, 220, 220, 220, 3326, 28, 67, 13, 1136, 10786, 332, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 6300, 58, 87, 2539, 22241, 332, 628, 220, 220, 220, 220, 220, 220, 220, 611, 336, 3775, 407, 287, 256, 47178, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 47178, 13, 33295, 7, 301, 3775, 8, 628, 220, 220, 220, 220, 220, 220, 220, 390, 862, 17, 28, 1860, 13, 1136, 10786, 10378, 82, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 691, 62, 15763, 290, 18896, 7, 10378, 82, 17, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 28, 1136, 62, 439, 62, 47178, 62, 259, 62, 10378, 82, 15090, 6, 10378, 82, 10354, 10378, 82, 17, 11, 705, 2539, 10354, 87, 2539, 11, 705, 47178, 10354, 47178, 11, 705, 12985, 62, 47178, 10354, 83, 47178, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 628, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 15, 11, 705, 47178, 10354, 47178, 11, 705, 12985, 62, 47178, 10354, 83, 47178, 92, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 37895, 10638, 286, 477, 390, 862, 198, 198, 4299, 390, 862, 62, 49736, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 390, 862, 532, 12939, 390, 862, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 390, 862, 62, 49736, 532, 10638, 286, 390, 862, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 390, 862, 28, 72, 17816, 10378, 82, 20520, 198, 220, 220, 220, 288, 82, 28, 72, 13, 1136, 10786, 10378, 82, 62, 49736, 3256, 90, 30072, 628, 220, 220, 220, 329, 2124, 287, 390, 862, 25, 198, 220, 220, 220, 220, 220, 220, 220, 288, 28, 10378, 82, 58, 87, 60, 198, 220, 220, 220, 220, 220, 220, 220, 49427, 28, 67, 13, 1136, 10786, 11600, 3256, 90, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 288, 82, 58, 87, 22241, 90, 92, 628, 220, 220, 220, 220, 220, 220, 220, 43213, 28, 1860, 13, 1136, 10786, 23144, 1096, 3256, 90, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 288, 82, 58, 87, 7131, 6, 31499, 20520, 28, 67, 13, 1136, 10786, 31499, 3256, 58, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 288, 82, 58, 87, 7131, 6, 3672, 20520, 28, 67, 13, 1136, 10786, 3672, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 288, 82, 58, 87, 7131, 6, 26495, 62, 31499, 20520, 28, 3256, 4458, 22179, 7, 1860, 13, 1136, 10786, 31499, 3256, 21737, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 288, 82, 58, 87, 7131, 6, 7890, 62, 3672, 20520, 28, 1860, 13, 1136, 10786, 7890, 62, 3672, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 47574, 12162, 28, 1860, 13, 1136, 10786, 26495, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 47574, 12162, 855, 7061, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47574, 12162, 28, 67, 13, 1136, 10786, 9042, 3256, 90, 92, 737, 1136, 10786, 1484, 62, 26495, 62, 27112, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 288, 82, 58, 87, 7131, 6, 26495, 62, 84, 12162, 20520, 28, 19944, 12162, 628, 220, 220, 220, 220, 220, 220, 220, 288, 82, 58, 87, 7131, 6, 9641, 20520, 28, 66, 87, 13, 1136, 10786, 9641, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 288, 82, 58, 87, 7131, 6, 18300, 62, 260, 10178, 20520, 28, 66, 87, 13, 1136, 10786, 18300, 62, 10951, 3256, 90, 92, 737, 1136, 10786, 260, 10178, 3256, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 288, 82, 58, 87, 7131, 6, 18300, 62, 26786, 62, 19608, 8079, 62, 8968, 62, 260, 10178, 20520, 28, 66, 87, 13, 1136, 10786, 18300, 62, 10951, 3256, 90, 92, 737, 1136, 10786, 26786, 62, 19608, 8079, 62, 8968, 62, 260, 10178, 3256, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 264, 10378, 82, 28, 1860, 13, 1136, 10786, 10378, 82, 3256, 90, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 82, 10378, 82, 8, 29, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3311, 24197, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 28, 10378, 82, 62, 49736, 15090, 6, 10378, 82, 10354, 82, 10378, 82, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 17816, 7783, 20520, 29, 15, 25, 1441, 374, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 82, 58, 87, 7131, 6, 10378, 82, 20520, 28, 81, 17816, 10378, 82, 62, 49736, 20520, 628, 220, 220, 220, 1441, 1391, 6, 7783, 10354, 15, 11, 705, 10378, 82, 62, 49736, 10354, 9310, 92, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 12233, 17365, 12784, 198, 198, 4299, 42721, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 260, 7501, 62, 84, 12162, 8, 532, 1957, 416, 4277, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 69, 8, 220, 220, 220, 220, 220, 220, 220, 532, 2700, 10829, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 25235, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 220, 220, 220, 220, 220, 220, 532, 1441, 2438, 796, 220, 657, 11, 611, 4388, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1875, 220, 657, 11, 611, 4049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 18224, 8, 220, 220, 220, 220, 220, 532, 4049, 2420, 611, 1441, 1875, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 1303, 6822, 326, 29924, 62, 84, 12162, 318, 1957, 416, 4277, 284, 3368, 34817, 7748, 17365, 287, 584, 12784, 628, 220, 220, 220, 7422, 12162, 28, 72, 13, 1136, 10786, 260, 7501, 62, 84, 12162, 3256, 7061, 8, 198, 220, 220, 220, 611, 7422, 12162, 855, 7061, 25, 7422, 12162, 11639, 12001, 6, 198, 220, 220, 220, 1312, 17816, 260, 7501, 62, 84, 12162, 20520, 28, 622, 12162, 628, 220, 220, 220, 1312, 17816, 11321, 62, 20786, 20520, 11639, 8505, 6, 628, 220, 220, 220, 1441, 269, 74, 13, 15526, 7, 72, 8, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 12233, 17365, 5726, 198, 198, 4299, 12233, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 4091, 42721, 2163, 1782, 198, 220, 220, 220, 25235, 25, 1391, 4091, 42721, 2163, 1782, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1441, 42721, 7, 72, 8, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 12233, 17365, 5726, 198, 198, 4299, 4781, 7, 72, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 23412, 25, 220, 1391, 4091, 42721, 2163, 1782, 198, 220, 220, 220, 25235, 25, 1391, 4091, 42721, 2163, 1782, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1441, 42721, 7, 72, 8, 198 ]
1.863237
52,061
# Generated by Django 3.2 on 2021-05-10 16:23 import django.contrib.postgres.fields from django.db import migrations, models
[ 2, 2980, 515, 416, 37770, 513, 13, 17, 319, 33448, 12, 2713, 12, 940, 1467, 25, 1954, 198, 198, 11748, 42625, 14208, 13, 3642, 822, 13, 7353, 34239, 13, 25747, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 628 ]
3.02381
42
import torch import logging import numpy as np from data_management.vocabulary import Vocabulary logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__)
[ 11748, 28034, 198, 11748, 18931, 198, 11748, 299, 32152, 355, 45941, 198, 198, 6738, 1366, 62, 27604, 13, 18893, 22528, 1330, 47208, 22528, 198, 198, 6404, 2667, 13, 35487, 16934, 7, 5715, 28, 6404, 2667, 13, 10778, 8, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628, 198 ]
3.296296
54
from IPython.display import Image as Image_py from src.data.google_vision_ocr_parsing import extract_full_text_annotation from src.data.sroie import load_full_ocr, load_labels from torch.utils.data import Dataset, ConcatDataset from transformers import T5Tokenizer from typing import List, Dict, Union import gin class T5BaselineDataset(Dataset): """Dataset for text-to-text training. Args: keynames (List[str]): filenames without extension. t5_tokenizer_prefix (str): tokenizer prefix. format_labels_fn (callable): function for labels preprocessing format_inputs_fn (callable): function for inputs preprocessing max_source_length (int): maximum length for toke sequences on encoder. max_target_length (int): maximum length for labels token sequences. """ def inspect_example(self, idx): """Inspects examples for debugging purposes. """ image = Image_py(filename=f'{self.keynames[idx]}.jpg', width=1200, height=1200) display(image) example = self.__getitem__(idx) return example @gin.configurable(allowlist=['str_replace_newlines']) def get_default_preprocessing_functions( field_to_extract: str, str_replace_newlines: str = None) -> Dict[str, callable]: """Convenience functions for generating preprocessing functions for labels and inputs when using T5 text-to-text training. Args: field_to_extract (str): field_to_extract str_replace_newlines (str): string to replace `\n` characters. Usually spaces (` `) or pipes (`|`). Returns: Dict[str, callable]: dict with two keys: - `labels`: function that extracts the ground truth labels for the desired field. - `inputs`: Replaces `\n` on the ocr output text and prepends the question: `What is the <field_to_extract?` """ return {'inputs': format_inputs_fn, 'labels': format_labels_fn} @gin.configurable(denylist=['keynames']) def get_datasets_dict_from_task_functions_map( keynames: List[str], tasks_functions_maps: List[Dict[str, callable]], t5_prefix: str, max_source_length: int, max_target_length: int) -> Dict[str, Dataset]: """Return dict with datasets for each individual task and one dataset with all tasks concatenated. Args: keynames (List[str]): keynames (paths without extension) for receipts on SROIE dataset. t5_prefix (str, optional): prefix identifying the chosen t5 model. Will be used to instantiate the T5Tokenizer. max_source_length (int): Length of input token sequences. Size is enforced with truncation or padding. Defaults to max_target_length (int): length of labels token sequences. Returns: Dict[str, Dataset]: dataset for each task. """ # Dataset for each task datasets = { k: T5BaselineDataset(keynames=keynames, format_labels_fn=v['labels'], format_inputs_fn=v['inputs'], t5_tokenizer_prefix=t5_prefix, max_source_length=max_source_length, max_target_length=max_target_length) for k, v in tasks_functions_maps.items() } # dataset with all tasks datasets['all_tasks_concat'] = ConcatDataset(datasets.values()) return datasets
[ 6738, 6101, 7535, 13, 13812, 1330, 7412, 355, 7412, 62, 9078, 198, 6738, 12351, 13, 7890, 13, 13297, 62, 10178, 62, 1696, 62, 79, 945, 278, 1330, 7925, 62, 12853, 62, 5239, 62, 1236, 14221, 198, 6738, 12351, 13, 7890, 13, 82, 305, 494, 1330, 3440, 62, 12853, 62, 1696, 11, 3440, 62, 23912, 1424, 198, 6738, 28034, 13, 26791, 13, 7890, 1330, 16092, 292, 316, 11, 1482, 9246, 27354, 292, 316, 198, 6738, 6121, 364, 1330, 309, 20, 30642, 7509, 198, 6738, 19720, 1330, 7343, 11, 360, 713, 11, 4479, 198, 11748, 39733, 628, 198, 4871, 309, 20, 15522, 4470, 27354, 292, 316, 7, 27354, 292, 316, 2599, 198, 220, 220, 220, 37227, 27354, 292, 316, 329, 2420, 12, 1462, 12, 5239, 3047, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1994, 14933, 357, 8053, 58, 2536, 60, 2599, 1226, 268, 1047, 1231, 7552, 13, 198, 220, 220, 220, 220, 220, 220, 220, 256, 20, 62, 30001, 7509, 62, 40290, 357, 2536, 2599, 11241, 7509, 21231, 13, 198, 220, 220, 220, 220, 220, 220, 220, 5794, 62, 23912, 1424, 62, 22184, 357, 13345, 540, 2599, 2163, 329, 14722, 662, 36948, 198, 220, 220, 220, 220, 220, 220, 220, 5794, 62, 15414, 82, 62, 22184, 357, 13345, 540, 2599, 2163, 329, 17311, 662, 36948, 198, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 10459, 62, 13664, 357, 600, 2599, 5415, 4129, 329, 284, 365, 16311, 319, 2207, 12342, 13, 198, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 16793, 62, 13664, 357, 600, 2599, 5415, 4129, 329, 14722, 11241, 16311, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 10104, 62, 20688, 7, 944, 11, 4686, 87, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 818, 4443, 82, 6096, 329, 28769, 4959, 13, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2939, 796, 7412, 62, 9078, 7, 34345, 28, 69, 6, 90, 944, 13, 365, 2047, 1047, 58, 312, 87, 60, 27422, 9479, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9647, 28, 27550, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6001, 28, 27550, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3359, 7, 9060, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1672, 796, 2116, 13, 834, 1136, 9186, 834, 7, 312, 87, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1672, 628, 198, 31, 1655, 13, 11250, 11970, 7, 12154, 4868, 28, 17816, 2536, 62, 33491, 62, 3605, 6615, 6, 12962, 198, 4299, 651, 62, 12286, 62, 3866, 36948, 62, 12543, 2733, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 1462, 62, 2302, 974, 25, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 965, 62, 33491, 62, 3605, 6615, 25, 965, 796, 6045, 8, 4613, 360, 713, 58, 2536, 11, 869, 540, 5974, 198, 220, 220, 220, 37227, 3103, 574, 1240, 5499, 329, 15453, 220, 662, 36948, 5499, 329, 14722, 198, 220, 220, 220, 220, 220, 220, 220, 290, 17311, 618, 1262, 309, 20, 2420, 12, 1462, 12, 5239, 3047, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 1462, 62, 2302, 974, 357, 2536, 2599, 2214, 62, 1462, 62, 2302, 974, 198, 220, 220, 220, 220, 220, 220, 220, 965, 62, 33491, 62, 3605, 6615, 357, 2536, 2599, 4731, 284, 6330, 4600, 59, 77, 63, 198, 220, 220, 220, 220, 220, 220, 220, 3435, 13, 19672, 9029, 357, 63, 4600, 8, 393, 19860, 357, 63, 91, 63, 737, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 360, 713, 58, 2536, 11, 869, 540, 5974, 8633, 351, 734, 8251, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4600, 23912, 1424, 63, 25, 2163, 326, 32139, 262, 2323, 3872, 14722, 329, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10348, 2214, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4600, 15414, 82, 63, 25, 18407, 2114, 4600, 59, 77, 63, 319, 262, 267, 6098, 5072, 2420, 290, 3143, 2412, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1808, 25, 4600, 2061, 318, 262, 1279, 3245, 62, 1462, 62, 2302, 974, 30, 63, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1441, 1391, 6, 15414, 82, 10354, 5794, 62, 15414, 82, 62, 22184, 11, 705, 23912, 1424, 10354, 5794, 62, 23912, 1424, 62, 22184, 92, 198, 198, 31, 1655, 13, 11250, 11970, 7, 6559, 2645, 396, 28, 17816, 365, 2047, 1047, 6, 12962, 198, 4299, 651, 62, 19608, 292, 1039, 62, 11600, 62, 6738, 62, 35943, 62, 12543, 2733, 62, 8899, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1994, 14933, 25, 7343, 58, 2536, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 8861, 62, 12543, 2733, 62, 31803, 25, 7343, 58, 35, 713, 58, 2536, 11, 869, 540, 60, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 256, 20, 62, 40290, 25, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 10459, 62, 13664, 25, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 16793, 62, 13664, 25, 493, 8, 4613, 360, 713, 58, 2536, 11, 16092, 292, 316, 5974, 198, 220, 220, 220, 37227, 13615, 8633, 351, 40522, 329, 1123, 1981, 4876, 290, 530, 27039, 351, 198, 220, 220, 220, 220, 220, 220, 220, 477, 8861, 1673, 36686, 515, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1994, 14933, 357, 8053, 58, 2536, 60, 2599, 1994, 14933, 357, 6978, 82, 1231, 7552, 8, 329, 29946, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 319, 311, 13252, 10008, 27039, 13, 198, 220, 220, 220, 220, 220, 220, 220, 256, 20, 62, 40290, 357, 2536, 11, 11902, 2599, 21231, 13720, 262, 7147, 256, 20, 2746, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2561, 307, 973, 284, 9113, 9386, 262, 309, 20, 30642, 7509, 13, 198, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 10459, 62, 13664, 357, 600, 2599, 22313, 286, 5128, 11241, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16311, 13, 12849, 318, 20326, 351, 40122, 341, 393, 24511, 13, 2896, 13185, 284, 198, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 16793, 62, 13664, 357, 600, 2599, 4129, 286, 14722, 11241, 16311, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 360, 713, 58, 2536, 11, 16092, 292, 316, 5974, 27039, 329, 1123, 4876, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 16092, 292, 316, 329, 1123, 4876, 198, 220, 220, 220, 40522, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 479, 25, 309, 20, 15522, 4470, 27354, 292, 316, 7, 365, 2047, 1047, 28, 365, 2047, 1047, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5794, 62, 23912, 1424, 62, 22184, 28, 85, 17816, 23912, 1424, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5794, 62, 15414, 82, 62, 22184, 28, 85, 17816, 15414, 82, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 20, 62, 30001, 7509, 62, 40290, 28, 83, 20, 62, 40290, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 10459, 62, 13664, 28, 9806, 62, 10459, 62, 13664, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 16793, 62, 13664, 28, 9806, 62, 16793, 62, 13664, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 479, 11, 410, 287, 8861, 62, 12543, 2733, 62, 31803, 13, 23814, 3419, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 1303, 27039, 351, 477, 8861, 198, 220, 220, 220, 40522, 17816, 439, 62, 83, 6791, 62, 1102, 9246, 20520, 796, 1482, 9246, 27354, 292, 316, 7, 19608, 292, 1039, 13, 27160, 28955, 198, 220, 220, 220, 1441, 40522, 198 ]
2.36024
1,499
from django.shortcuts import render from django.http import HttpResponse from inventory.models import Product
[ 6738, 42625, 14208, 13, 19509, 23779, 1330, 8543, 198, 6738, 42625, 14208, 13, 4023, 1330, 367, 29281, 31077, 198, 6738, 13184, 13, 27530, 1330, 8721, 198, 220, 220, 220, 220 ]
3.8
30
import curio from curio import socket from ... import gvars
[ 11748, 1090, 952, 198, 6738, 1090, 952, 1330, 17802, 198, 198, 6738, 2644, 1330, 308, 85, 945, 628 ]
3.444444
18
import pytest from kafka import KafkaConsumer from kafka.errors import KafkaConfigurationError
[ 11748, 12972, 9288, 198, 198, 6738, 479, 1878, 4914, 1330, 46906, 49106, 198, 6738, 479, 1878, 4914, 13, 48277, 1330, 46906, 38149, 12331, 628 ]
4.041667
24
# -*- coding: utf-8 -*- ### # © 2018 The Board of Trustees of the Leland Stanford Junior University # Nathaniel Watson # [email protected] ### # For some useful documentation, see # https://docs.python.org/2/distutils/setupscript.html. # This page is useful for dependencies: # http://python-packaging.readthedocs.io/en/latest/dependencies.html. # PSF tutorial for packaging up projects: # https://packaging.python.org/tutorials/packaging-projects import glob import os from setuptools import setup, find_packages SCRIPTS_DIR = "pulsarpy_to_dcc/scripts/" scripts = glob.glob(os.path.join(SCRIPTS_DIR,"*.py")) scripts.remove(os.path.join(SCRIPTS_DIR,"__init__.py")) with open("README.md", "r") as fh: long_description = fh.read() setup( author = "Nathaniel Watson", author_email = "[email protected]", classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], description = "Client for submitting experiments in Pulsar LIMS to the ENCODE Portal", install_requires = [ "dxpy3", "encode-utils", "pulsarpy", "inflection", "requests", ], long_description = long_description, long_description_content_type = "text/markdown", name = "pulsarpy-to-encodedcc", packages = find_packages(), project_urls = { "Read the Docs": "https://pulsarpy-to-encodedcc.readthedocs.io/en/latest", }, scripts = scripts, url = "https://github.com/nathankw/pulsarpy-to-encodedcc", # home page version = "0.2.0", )
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 21017, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 2, 10673, 2864, 383, 5926, 286, 9870, 2841, 286, 262, 406, 8822, 13863, 20000, 2059, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 2, 49536, 14959, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 2, 299, 776, 962, 86, 31, 14192, 3841, 13, 15532, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 21017, 198, 198, 2, 1114, 617, 4465, 10314, 11, 766, 198, 2, 3740, 1378, 31628, 13, 29412, 13, 2398, 14, 17, 14, 17080, 26791, 14, 2617, 4739, 6519, 13, 6494, 13, 198, 2, 770, 2443, 318, 4465, 329, 20086, 25, 220, 198, 2, 2638, 1378, 29412, 12, 8002, 3039, 13, 961, 83, 704, 420, 82, 13, 952, 14, 268, 14, 42861, 14, 45841, 3976, 13, 6494, 13, 198, 198, 2, 6599, 37, 11808, 329, 16846, 510, 4493, 25, 198, 2, 3740, 1378, 8002, 3039, 13, 29412, 13, 2398, 14, 83, 44917, 82, 14, 8002, 3039, 12, 42068, 198, 198, 11748, 15095, 198, 11748, 28686, 198, 6738, 900, 37623, 10141, 1330, 9058, 11, 1064, 62, 43789, 198, 198, 6173, 32618, 4694, 62, 34720, 796, 366, 79, 5753, 5117, 88, 62, 1462, 62, 67, 535, 14, 46521, 30487, 198, 46521, 796, 15095, 13, 4743, 672, 7, 418, 13, 6978, 13, 22179, 7, 6173, 32618, 4694, 62, 34720, 553, 24620, 9078, 48774, 198, 46521, 13, 28956, 7, 418, 13, 6978, 13, 22179, 7, 6173, 32618, 4694, 62, 34720, 553, 834, 15003, 834, 13, 9078, 48774, 198, 198, 4480, 1280, 7203, 15675, 11682, 13, 9132, 1600, 366, 81, 4943, 355, 277, 71, 25, 198, 220, 220, 220, 890, 62, 11213, 796, 277, 71, 13, 961, 3419, 198, 198, 40406, 7, 198, 220, 1772, 796, 366, 45, 776, 6321, 14959, 1600, 198, 220, 1772, 62, 12888, 796, 366, 77, 776, 962, 86, 31, 14192, 3841, 13, 15532, 1600, 198, 220, 1398, 13350, 796, 685, 198, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 7904, 513, 1600, 198, 220, 220, 220, 220, 220, 366, 34156, 7904, 7294, 40, 20010, 1079, 7904, 17168, 13789, 1600, 198, 220, 220, 220, 220, 220, 366, 18843, 803, 4482, 7904, 7294, 13362, 1600, 198, 220, 16589, 198, 220, 6764, 796, 366, 11792, 329, 24353, 10256, 287, 350, 5753, 283, 27564, 50, 284, 262, 412, 7792, 16820, 25663, 1600, 198, 220, 2721, 62, 47911, 796, 685, 198, 220, 220, 220, 366, 34350, 9078, 18, 1600, 198, 220, 220, 220, 366, 268, 8189, 12, 26791, 1600, 198, 220, 220, 220, 366, 79, 5753, 5117, 88, 1600, 198, 220, 220, 220, 366, 10745, 1564, 1600, 198, 220, 220, 220, 366, 8897, 3558, 1600, 198, 220, 16589, 198, 220, 890, 62, 11213, 796, 890, 62, 11213, 11, 198, 220, 890, 62, 11213, 62, 11299, 62, 4906, 796, 366, 5239, 14, 4102, 2902, 1600, 198, 220, 1438, 796, 366, 79, 5753, 5117, 88, 12, 1462, 12, 12685, 9043, 535, 1600, 198, 220, 10392, 796, 1064, 62, 43789, 22784, 198, 220, 1628, 62, 6371, 82, 796, 1391, 198, 220, 220, 220, 220, 220, 366, 5569, 262, 14432, 82, 1298, 366, 5450, 1378, 79, 5753, 5117, 88, 12, 1462, 12, 12685, 9043, 535, 13, 961, 83, 704, 420, 82, 13, 952, 14, 268, 14, 42861, 1600, 198, 220, 8964, 198, 220, 14750, 796, 14750, 11, 198, 220, 19016, 796, 366, 5450, 1378, 12567, 13, 785, 14, 77, 776, 962, 86, 14, 79, 5753, 5117, 88, 12, 1462, 12, 12685, 9043, 535, 1600, 1303, 1363, 2443, 198, 220, 2196, 796, 366, 15, 13, 17, 13, 15, 1600, 198, 8, 198 ]
1.940114
1,052
#py_persistent_2.py """pickle your stuff for a long winter's nap""" import pickle from py_persistent_3 import THIS_YEAR print("imported THIS_YEAR, which is {}".format(THIS_YEAR)) pickle_file='this_year.pkl' with open(pickle_file, 'wb') as f: pickle.dump(THIS_YEAR, f)
[ 2, 9078, 62, 19276, 7609, 62, 17, 13, 9078, 198, 37811, 27729, 293, 534, 3404, 329, 257, 890, 7374, 338, 25422, 37811, 198, 11748, 2298, 293, 198, 6738, 12972, 62, 19276, 7609, 62, 18, 1330, 12680, 62, 56, 17133, 198, 198, 4798, 7203, 320, 9213, 12680, 62, 56, 17133, 11, 543, 318, 23884, 1911, 18982, 7, 43559, 62, 56, 17133, 4008, 198, 198, 27729, 293, 62, 7753, 11639, 5661, 62, 1941, 13, 79, 41582, 6, 198, 4480, 1280, 7, 27729, 293, 62, 7753, 11, 705, 39346, 11537, 355, 277, 25, 198, 197, 197, 220, 2298, 293, 13, 39455, 7, 43559, 62, 56, 17133, 11, 277, 8, 628, 198 ]
2.555556
108
#!/usr/bin/env python3 # SPDX-License-Identifier: GPL-2.0+ # # Copyright (c) 2012 The Chromium OS Authors. # """See README for more information""" import doctest import multiprocessing import os import re import sys import unittest # Bring in the patman libraries our_path = os.path.dirname(os.path.realpath(__file__)) sys.path.insert(1, os.path.join(our_path, '..')) # Our modules from buildman import board from buildman import bsettings from buildman import builder from buildman import cmdline from buildman import control from buildman import toolchain from patman import patchstream from patman import gitutil from patman import terminal options, args = cmdline.ParseArgs() # Run our meagre tests if options.test: RunTests(options.skip_net_tests) # Build selected commits for selected boards else: bsettings.Setup(options.config_file) ret_code = control.DoBuildman(options, args) sys.exit(ret_code)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 30628, 55, 12, 34156, 12, 33234, 7483, 25, 38644, 12, 17, 13, 15, 10, 198, 2, 198, 2, 15069, 357, 66, 8, 2321, 383, 18255, 1505, 7294, 46665, 13, 198, 2, 198, 198, 37811, 6214, 20832, 11682, 329, 517, 1321, 37811, 198, 198, 11748, 10412, 395, 198, 11748, 18540, 305, 919, 278, 198, 11748, 28686, 198, 11748, 302, 198, 11748, 25064, 198, 11748, 555, 715, 395, 198, 198, 2, 24347, 287, 262, 1458, 805, 12782, 198, 454, 62, 6978, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 418, 13, 6978, 13, 5305, 6978, 7, 834, 7753, 834, 4008, 198, 17597, 13, 6978, 13, 28463, 7, 16, 11, 28686, 13, 6978, 13, 22179, 7, 454, 62, 6978, 11, 705, 492, 6, 4008, 198, 198, 2, 3954, 13103, 198, 6738, 1382, 805, 1330, 3096, 198, 6738, 1382, 805, 1330, 275, 33692, 198, 6738, 1382, 805, 1330, 27098, 198, 6738, 1382, 805, 1330, 23991, 1370, 198, 6738, 1382, 805, 1330, 1630, 198, 6738, 1382, 805, 1330, 2891, 7983, 198, 6738, 1458, 805, 1330, 8529, 5532, 198, 6738, 1458, 805, 1330, 17606, 22602, 198, 6738, 1458, 805, 1330, 12094, 628, 198, 25811, 11, 26498, 796, 23991, 1370, 13, 10044, 325, 42035, 3419, 198, 198, 2, 5660, 674, 502, 363, 260, 5254, 198, 361, 3689, 13, 9288, 25, 198, 220, 220, 220, 5660, 51, 3558, 7, 25811, 13, 48267, 62, 3262, 62, 41989, 8, 198, 198, 2, 10934, 6163, 23463, 329, 6163, 11490, 198, 17772, 25, 198, 220, 220, 220, 275, 33692, 13, 40786, 7, 25811, 13, 11250, 62, 7753, 8, 198, 220, 220, 220, 1005, 62, 8189, 796, 1630, 13, 5211, 15580, 805, 7, 25811, 11, 26498, 8, 198, 220, 220, 220, 25064, 13, 37023, 7, 1186, 62, 8189, 8, 198 ]
3.11745
298
from LAC import LAC """ 本文件测试LAC的分词,词性标注及重要性功能 """ os.environ['PYTHONIOENCODING'] = 'UTF-8'
[ 6738, 406, 2246, 1330, 406, 2246, 198, 37811, 198, 17312, 105, 23877, 229, 20015, 35050, 113, 233, 46237, 243, 43, 2246, 21410, 26344, 228, 46237, 235, 11, 46237, 235, 45250, 100, 43718, 229, 37345, 101, 20998, 232, 34932, 235, 17358, 223, 45250, 100, 27950, 253, 47797, 121, 198, 37811, 198, 418, 13, 268, 2268, 17816, 47, 56, 4221, 1340, 9399, 24181, 3727, 2751, 20520, 796, 705, 48504, 12, 23, 6, 628, 198 ]
1.305556
72
import time import requests import os import json from datetime import datetime from dotenv import load_dotenv from tinydb import TinyDB, where from scrapers.domvast import Domvast from scrapers.beumerutrecht import BeumerUtrecht from scrapers.rvl import RVL from scrapers.molenbeek import Molenbeek from scrapers.makelaar1 import Makelaar1 from scrapers.lauteslager import Lauteslager from scrapers.punt import Punt from scrapers.debree import DeBree from scrapers.realworks import createRealworksInstances if __name__ == '__main__': load_dotenv() print('Waiting a few seconds for the VPN to start...') time.sleep(5) starttime = time.time() print('Started at: ', starttime) interval = 15.0 * 60.0 print('Checking every ' + str(interval) + ' seconds') while True: loop() time.sleep(interval - ((time.time() - starttime) % interval))
[ 198, 11748, 640, 198, 11748, 7007, 198, 11748, 28686, 198, 11748, 33918, 198, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 16605, 24330, 1330, 3440, 62, 26518, 24330, 198, 6738, 7009, 9945, 1330, 20443, 11012, 11, 810, 198, 198, 6738, 15881, 364, 13, 3438, 85, 459, 1330, 9666, 85, 459, 198, 6738, 15881, 364, 13, 1350, 6975, 315, 260, 21474, 1330, 1355, 6975, 18274, 260, 21474, 198, 6738, 15881, 364, 13, 81, 19279, 1330, 31367, 43, 198, 6738, 15881, 364, 13, 76, 8622, 1350, 988, 1330, 337, 8622, 1350, 988, 198, 6738, 15881, 364, 13, 15883, 5031, 283, 16, 1330, 6889, 5031, 283, 16, 198, 6738, 15881, 364, 13, 5031, 1769, 75, 3536, 1330, 4689, 1769, 75, 3536, 198, 6738, 15881, 364, 13, 79, 2797, 1330, 350, 2797, 198, 6738, 15881, 364, 13, 11275, 631, 1330, 1024, 33, 631, 198, 198, 6738, 15881, 364, 13, 5305, 5225, 1330, 2251, 15633, 5225, 6310, 1817, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 3440, 62, 26518, 24330, 3419, 628, 220, 220, 220, 3601, 10786, 33484, 1780, 257, 1178, 4201, 329, 262, 21669, 284, 923, 986, 11537, 198, 220, 220, 220, 640, 13, 42832, 7, 20, 8, 628, 220, 220, 220, 923, 2435, 796, 640, 13, 2435, 3419, 198, 220, 220, 220, 3601, 10786, 10434, 276, 379, 25, 46083, 923, 2435, 8, 628, 220, 220, 220, 16654, 796, 1315, 13, 15, 1635, 3126, 13, 15, 198, 220, 220, 220, 3601, 10786, 9787, 278, 790, 705, 1343, 965, 7, 3849, 2100, 8, 1343, 705, 4201, 11537, 628, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 9052, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 640, 13, 42832, 7, 3849, 2100, 532, 14808, 2435, 13, 2435, 3419, 532, 923, 2435, 8, 4064, 16654, 4008, 198 ]
2.911765
306
#!/usr/bin/env python3 # # --- Copyright 2021 Modern Electron # --- Monte-Carlo Collision script to reproduce the benchmark tests from # --- Turner et al. (2013) - https://doi.org/10.1063/1.4775084 import argparse import sys import numpy as np from pywarpx import callbacks, fields, picmi from scipy.sparse import csc_matrix from scipy.sparse import linalg as sla constants = picmi.constants class PoissonSolver1D(picmi.ElectrostaticSolver): """This can be removed and the MLMG solver used once https://github.com/ECP-WarpX/WarpX/issues/3123 is addressed.""" def __init__(self, grid, **kwargs): """Direct solver for the Poisson equation using superLU. This solver is useful for 1D cases. Arguments: grid (picmi.Cartesian1DGrid): Instance of the grid on which the solver will be installed. """ # Sanity check that this solver is appropriate to use if not isinstance(grid, picmi.Cartesian1DGrid): raise RuntimeError('Direct solver can only be used on a 1D grid.') super(PoissonSolver1D, self).__init__( grid=grid, method=kwargs.pop('method', 'Multigrid'), required_precision=1, **kwargs ) def initialize_inputs(self): """Grab geometrical quantities from the grid. The boundary potentials are also obtained from the grid using 'warpx_potential_zmin' for the left_voltage and 'warpx_potential_zmax' for the right_voltage. These can be given as floats or strings that can be parsed by the WarpX parser. """ # grab the boundary potentials from the grid object self.right_voltage = ( self.grid.potential_zmax.replace('sin', 'np.sin').replace('pi', 'np.pi') ) # set WarpX boundary potentials to None since we will handle it # ourselves in this solver self.grid.potential_xmin = None self.grid.potential_xmax = None self.grid.potential_ymin = None self.grid.potential_ymax = None self.grid.potential_zmin = None self.grid.potential_zmax = None super(PoissonSolver1D, self).initialize_inputs() self.nz = self.grid.nx self.dz = (self.grid.xmax - self.grid.xmin) / self.nz self.nxguardphi = 1 self.nzguardphi = 1 self.phi = np.zeros(self.nz + 1 + 2*self.nzguardphi) self.decompose_matrix() callbacks.installpoissonsolver(self._run_solve) def decompose_matrix(self): """Function to build the superLU object used to solve the linear system.""" self.nsolve = self.nz + 1 # Set up the tridiagonal computation matrix in order to solve A*phi = # rho for phi. self.A_ldiag = np.ones(self.nsolve-1) / self.dz**2 self.A_mdiag = -2.*np.ones(self.nsolve) / self.dz**2 self.A_udiag = np.ones(self.nsolve-1) / self.dz**2 self.A_mdiag[0] = 1. self.A_udiag[0] = 0.0 self.A_mdiag[-1] = 1. self.A_ldiag[-1] = 0.0 # Set up the computation matrix in order to solve A*phi = rho A = np.zeros((self.nsolve, self.nsolve)) idx = np.arange(self.nsolve) A[idx, idx] = -2.0 A[idx[1:], idx[:-1]] = 1.0 A[idx[:-1], idx[1:]] = 1.0 A[0, 1] = 0.0 A[-1, -2] = 0.0 A[0, 0] = 1.0 A[-1, -1] = 1.0 A = csc_matrix(A, dtype=np.float32) self.lu = sla.splu(A) def _run_solve(self): """Function run on every step to perform the required steps to solve Poisson's equation.""" # get rho from WarpX self.rho_data = fields.RhoFPWrapper(0, False)[...][:,0] # run superLU solver to get phi self.solve() # write phi to WarpX fields.PhiFPWrapper(0, True)[...] = self.phi def solve(self): """The solution step. Includes getting the boundary potentials and calculating phi from rho.""" left_voltage = 0.0 t = self.sim_ext.gett_new() right_voltage = eval(self.right_voltage) # Construct b vector rho = -self.rho_data / constants.ep0 b = np.zeros(rho.shape[0], dtype=np.float32) b[:] = rho * self.dz**2 b[0] = left_voltage b[-1] = right_voltage phi = self.lu.solve(b) self.phi[self.nzguardphi:-self.nzguardphi] = phi self.phi[:self.nzguardphi] = left_voltage self.phi[-self.nzguardphi:] = right_voltage class CapacitiveDischargeExample(object): '''The following runs a simulation of a parallel plate capacitor seeded with a plasma in the spacing between the plates. A time varying voltage is applied across the capacitor. The groups of 4 values below correspond to the 4 cases simulated by Turner et al. (2013) in their benchmarks of PIC-MCC codes. ''' gap = 0.067 # m freq = 13.56e6 # Hz voltage = [450.0, 200.0, 150.0, 120.0] # V gas_density = [9.64e20, 32.1e20, 96.4e20, 321e20] # m^-3 gas_temp = 300.0 # K m_ion = 6.67e-27 # kg plasma_density = [2.56e14, 5.12e14, 5.12e14, 3.84e14] # m^-3 elec_temp = 30000.0 # K seed_nppc = 16 * np.array([32, 16, 8, 4]) nz = [128, 256, 512, 512] dt = 1.0 / (np.array([400, 800, 1600, 3200]) * freq) # Total simulation time in seconds total_time = np.array([1280, 5120, 5120, 15360]) / freq # Time (in seconds) between diagnostic evaluations diag_interval = 32 / freq def __init__(self, n=0, test=False): """Get input parameters for the specific case (n) desired.""" self.n = n self.test = test # Case specific input parameters self.voltage = f"{self.voltage[n]}*sin(2*pi*{self.freq:.5e}*t)" self.gas_density = self.gas_density[n] self.plasma_density = self.plasma_density[n] self.seed_nppc = self.seed_nppc[n] self.nz = self.nz[n] self.dt = self.dt[n] self.max_steps = int(self.total_time[n] / self.dt) self.diag_steps = int(self.diag_interval / self.dt) if self.test: self.max_steps = 50 self.diag_steps = 5 self.mcc_subcycling_steps = 2 else: self.mcc_subcycling_steps = None self.ion_density_array = np.zeros(self.nz + 1) self.setup_run() def setup_run(self): """Setup simulation components.""" ####################################################################### # Set geometry and boundary conditions # ####################################################################### self.grid = picmi.Cartesian1DGrid( number_of_cells=[self.nz], warpx_max_grid_size=128, lower_bound=[0], upper_bound=[self.gap], lower_boundary_conditions=['dirichlet'], upper_boundary_conditions=['dirichlet'], lower_boundary_conditions_particles=['absorbing'], upper_boundary_conditions_particles=['absorbing'], warpx_potential_hi_z=self.voltage, ) ####################################################################### # Field solver # ####################################################################### # self.solver = picmi.ElectrostaticSolver( # grid=self.grid, method='Multigrid', required_precision=1e-6, # warpx_self_fields_verbosity=2 # ) self.solver = PoissonSolver1D(grid=self.grid) ####################################################################### # Particle types setup # ####################################################################### self.electrons = picmi.Species( particle_type='electron', name='electrons', initial_distribution=picmi.UniformDistribution( density=self.plasma_density, rms_velocity=[np.sqrt(constants.kb * self.elec_temp / constants.m_e)]*3, ) ) self.ions = picmi.Species( particle_type='He', name='he_ions', charge='q_e', mass=self.m_ion, initial_distribution=picmi.UniformDistribution( density=self.plasma_density, rms_velocity=[np.sqrt(constants.kb * self.gas_temp / self.m_ion)]*3, ) ) ####################################################################### # Collision initialization # ####################################################################### cross_sec_direc = '../../../../warpx-data/MCC_cross_sections/He/' mcc_electrons = picmi.MCCCollisions( name='coll_elec', species=self.electrons, background_density=self.gas_density, background_temperature=self.gas_temp, background_mass=self.ions.mass, ndt=self.mcc_subcycling_steps, scattering_processes={ 'elastic' : { 'cross_section' : cross_sec_direc+'electron_scattering.dat' }, 'excitation1' : { 'cross_section': cross_sec_direc+'excitation_1.dat', 'energy' : 19.82 }, 'excitation2' : { 'cross_section': cross_sec_direc+'excitation_2.dat', 'energy' : 20.61 }, 'ionization' : { 'cross_section' : cross_sec_direc+'ionization.dat', 'energy' : 24.55, 'species' : self.ions }, } ) mcc_ions = picmi.MCCCollisions( name='coll_ion', species=self.ions, background_density=self.gas_density, background_temperature=self.gas_temp, ndt=self.mcc_subcycling_steps, scattering_processes={ 'elastic' : { 'cross_section' : cross_sec_direc+'ion_scattering.dat' }, 'back' : { 'cross_section' : cross_sec_direc+'ion_back_scatter.dat' }, # 'charge_exchange' : { # 'cross_section' : cross_sec_direc+'charge_exchange.dat' # } } ) ####################################################################### # Initialize simulation # ####################################################################### self.sim = picmi.Simulation( solver=self.solver, time_step_size=self.dt, max_steps=self.max_steps, warpx_collisions=[mcc_electrons, mcc_ions], warpx_load_balance_intervals=self.max_steps//5000, verbose=self.test ) self.sim.add_species( self.electrons, layout = picmi.GriddedLayout( n_macroparticle_per_cell=[self.seed_nppc], grid=self.grid ) ) self.sim.add_species( self.ions, layout = picmi.GriddedLayout( n_macroparticle_per_cell=[self.seed_nppc], grid=self.grid ) ) self.solver.sim_ext = self.sim.extension ####################################################################### # Add diagnostics for the CI test to be happy # ####################################################################### field_diag = picmi.FieldDiagnostic( name='diag1', grid=self.grid, period=0, data_list=['rho_electrons', 'rho_he_ions'], write_dir='.', warpx_file_prefix='Python_background_mcc_1d_plt' ) self.sim.add_diagnostic(field_diag) ########################## # parse input parameters ########################## parser = argparse.ArgumentParser() parser.add_argument( '-t', '--test', help='toggle whether this script is run as a short CI test', action='store_true', ) parser.add_argument( '-n', help='Test number to run (1 to 4)', required=False, type=int, default=1 ) args, left = parser.parse_known_args() sys.argv = sys.argv[:1]+left if args.n < 1 or args.n > 4: raise AttributeError('Test number must be an integer from 1 to 4.') run = CapacitiveDischargeExample(n=args.n-1, test=args.test) run.run_sim()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 198, 2, 11420, 15069, 33448, 12495, 5903, 1313, 198, 2, 11420, 22489, 12, 9914, 5439, 7778, 1166, 4226, 284, 22919, 262, 18335, 5254, 422, 198, 2, 11420, 15406, 2123, 435, 13, 357, 6390, 8, 532, 3740, 1378, 34023, 13, 2398, 14, 940, 13, 940, 5066, 14, 16, 13, 2857, 15426, 5705, 198, 198, 11748, 1822, 29572, 198, 11748, 25064, 198, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 12972, 86, 5117, 87, 1330, 869, 10146, 11, 7032, 11, 8301, 11632, 198, 6738, 629, 541, 88, 13, 82, 29572, 1330, 269, 1416, 62, 6759, 8609, 198, 6738, 629, 541, 88, 13, 82, 29572, 1330, 300, 1292, 70, 355, 1017, 64, 198, 198, 9979, 1187, 796, 8301, 11632, 13, 9979, 1187, 628, 198, 4871, 7695, 30927, 50, 14375, 16, 35, 7, 16564, 11632, 13, 19453, 305, 12708, 50, 14375, 2599, 198, 220, 220, 220, 37227, 1212, 460, 307, 4615, 290, 262, 10373, 20474, 1540, 332, 973, 1752, 198, 220, 220, 220, 220, 220, 220, 3740, 1378, 12567, 13, 785, 14, 2943, 47, 12, 54, 5117, 55, 14, 54, 5117, 55, 14, 37165, 14, 18, 10163, 318, 9469, 526, 15931, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 10706, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13470, 1540, 332, 329, 262, 7695, 30927, 16022, 1262, 2208, 41596, 13, 770, 1540, 332, 318, 198, 220, 220, 220, 220, 220, 220, 220, 4465, 329, 352, 35, 2663, 13, 628, 220, 220, 220, 220, 220, 220, 220, 20559, 2886, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10706, 357, 16564, 11632, 13, 43476, 35610, 16, 35, 41339, 2599, 2262, 590, 286, 262, 10706, 319, 543, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1540, 332, 481, 307, 6589, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2986, 414, 2198, 326, 428, 1540, 332, 318, 5035, 284, 779, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 25928, 11, 8301, 11632, 13, 43476, 35610, 16, 35, 41339, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 43160, 12331, 10786, 13470, 1540, 332, 460, 691, 307, 973, 319, 257, 352, 35, 10706, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2208, 7, 18833, 30927, 50, 14375, 16, 35, 11, 2116, 737, 834, 15003, 834, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10706, 28, 25928, 11, 2446, 28, 46265, 22046, 13, 12924, 10786, 24396, 3256, 705, 15205, 3692, 312, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2672, 62, 3866, 16005, 28, 16, 11, 12429, 46265, 22046, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 825, 41216, 62, 15414, 82, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 48400, 4903, 908, 8143, 17794, 422, 262, 10706, 13, 383, 18645, 2785, 82, 198, 220, 220, 220, 220, 220, 220, 220, 389, 635, 6492, 422, 262, 10706, 1262, 705, 86, 5117, 87, 62, 13059, 1843, 62, 89, 1084, 6, 329, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1364, 62, 37764, 496, 290, 705, 86, 5117, 87, 62, 13059, 1843, 62, 89, 9806, 6, 329, 262, 826, 62, 37764, 496, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2312, 460, 307, 1813, 355, 36016, 393, 13042, 326, 460, 307, 44267, 416, 262, 198, 220, 220, 220, 220, 220, 220, 220, 31382, 55, 30751, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5552, 262, 18645, 2785, 82, 422, 262, 10706, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3506, 62, 37764, 496, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25928, 13, 13059, 1843, 62, 89, 9806, 13, 33491, 10786, 31369, 3256, 705, 37659, 13, 31369, 27691, 33491, 10786, 14415, 3256, 705, 37659, 13, 14415, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 900, 31382, 55, 18645, 2785, 82, 284, 6045, 1201, 356, 481, 5412, 340, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6731, 287, 428, 1540, 332, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25928, 13, 13059, 1843, 62, 87, 1084, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25928, 13, 13059, 1843, 62, 87, 9806, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25928, 13, 13059, 1843, 62, 88, 1084, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25928, 13, 13059, 1843, 62, 4948, 897, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25928, 13, 13059, 1843, 62, 89, 1084, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25928, 13, 13059, 1843, 62, 89, 9806, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 2208, 7, 18833, 30927, 50, 14375, 16, 35, 11, 2116, 737, 36733, 1096, 62, 15414, 82, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 27305, 796, 2116, 13, 25928, 13, 77, 87, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 67, 89, 796, 357, 944, 13, 25928, 13, 87, 9806, 532, 2116, 13, 25928, 13, 87, 1084, 8, 1220, 2116, 13, 27305, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 77, 87, 14864, 34846, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 27305, 14864, 34846, 796, 352, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34846, 796, 45941, 13, 9107, 418, 7, 944, 13, 27305, 1343, 352, 1343, 362, 9, 944, 13, 27305, 14864, 34846, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12501, 3361, 577, 62, 6759, 8609, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 869, 10146, 13, 17350, 7501, 747, 684, 14375, 7, 944, 13557, 5143, 62, 82, 6442, 8, 628, 220, 220, 220, 825, 26969, 3455, 62, 6759, 8609, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 22203, 284, 1382, 262, 2208, 41596, 2134, 973, 284, 8494, 262, 14174, 198, 220, 220, 220, 220, 220, 220, 220, 1080, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5907, 6442, 796, 2116, 13, 27305, 1343, 352, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 5345, 510, 262, 491, 19830, 27923, 29964, 17593, 287, 1502, 284, 8494, 317, 9, 34846, 796, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 374, 8873, 329, 872, 72, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 32, 62, 335, 72, 363, 796, 45941, 13, 1952, 7, 944, 13, 5907, 6442, 12, 16, 8, 1220, 2116, 13, 67, 89, 1174, 17, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 32, 62, 9132, 72, 363, 796, 532, 17, 15885, 37659, 13, 1952, 7, 944, 13, 5907, 6442, 8, 1220, 2116, 13, 67, 89, 1174, 17, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 32, 62, 47928, 363, 796, 45941, 13, 1952, 7, 944, 13, 5907, 6442, 12, 16, 8, 1220, 2116, 13, 67, 89, 1174, 17, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 32, 62, 9132, 72, 363, 58, 15, 60, 796, 352, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 32, 62, 47928, 363, 58, 15, 60, 796, 657, 13, 15, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 32, 62, 9132, 72, 363, 58, 12, 16, 60, 796, 352, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 32, 62, 335, 72, 363, 58, 12, 16, 60, 796, 657, 13, 15, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 5345, 510, 262, 29964, 17593, 287, 1502, 284, 8494, 317, 9, 34846, 796, 374, 8873, 198, 220, 220, 220, 220, 220, 220, 220, 317, 796, 45941, 13, 9107, 418, 19510, 944, 13, 5907, 6442, 11, 2116, 13, 5907, 6442, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 796, 45941, 13, 283, 858, 7, 944, 13, 5907, 6442, 8, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 312, 87, 11, 4686, 87, 60, 796, 532, 17, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 312, 87, 58, 16, 25, 4357, 4686, 87, 58, 21912, 16, 11907, 796, 352, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 312, 87, 58, 21912, 16, 4357, 4686, 87, 58, 16, 25, 11907, 796, 352, 13, 15, 628, 220, 220, 220, 220, 220, 220, 220, 317, 58, 15, 11, 352, 60, 796, 657, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 12, 16, 11, 532, 17, 60, 796, 657, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 15, 11, 657, 60, 796, 352, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 12, 16, 11, 532, 16, 60, 796, 352, 13, 15, 628, 220, 220, 220, 220, 220, 220, 220, 317, 796, 269, 1416, 62, 6759, 8609, 7, 32, 11, 288, 4906, 28, 37659, 13, 22468, 2624, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2290, 796, 1017, 64, 13, 22018, 84, 7, 32, 8, 628, 220, 220, 220, 825, 4808, 5143, 62, 82, 6442, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 22203, 1057, 319, 790, 2239, 284, 1620, 262, 2672, 4831, 284, 8494, 198, 220, 220, 220, 220, 220, 220, 220, 7695, 30927, 338, 16022, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 651, 374, 8873, 422, 31382, 55, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 81, 8873, 62, 7890, 796, 7032, 13, 49, 8873, 5837, 36918, 2848, 7, 15, 11, 10352, 38381, 986, 7131, 45299, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1057, 2208, 41596, 1540, 332, 284, 651, 872, 72, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 82, 6442, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3551, 872, 72, 284, 31382, 55, 198, 220, 220, 220, 220, 220, 220, 220, 7032, 13, 2725, 72, 5837, 36918, 2848, 7, 15, 11, 6407, 38381, 22345, 796, 2116, 13, 34846, 628, 220, 220, 220, 825, 8494, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 464, 4610, 2239, 13, 29581, 1972, 262, 18645, 2785, 82, 290, 198, 220, 220, 220, 220, 220, 220, 220, 26019, 872, 72, 422, 374, 8873, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 1364, 62, 37764, 496, 796, 657, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 256, 796, 2116, 13, 14323, 62, 2302, 13, 1136, 83, 62, 3605, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 826, 62, 37764, 496, 796, 5418, 7, 944, 13, 3506, 62, 37764, 496, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 28407, 275, 15879, 198, 220, 220, 220, 220, 220, 220, 220, 374, 8873, 796, 532, 944, 13, 81, 8873, 62, 7890, 1220, 38491, 13, 538, 15, 198, 220, 220, 220, 220, 220, 220, 220, 275, 796, 45941, 13, 9107, 418, 7, 81, 8873, 13, 43358, 58, 15, 4357, 288, 4906, 28, 37659, 13, 22468, 2624, 8, 198, 220, 220, 220, 220, 220, 220, 220, 275, 58, 47715, 796, 374, 8873, 1635, 2116, 13, 67, 89, 1174, 17, 628, 220, 220, 220, 220, 220, 220, 220, 275, 58, 15, 60, 796, 1364, 62, 37764, 496, 198, 220, 220, 220, 220, 220, 220, 220, 275, 58, 12, 16, 60, 796, 826, 62, 37764, 496, 628, 220, 220, 220, 220, 220, 220, 220, 872, 72, 796, 2116, 13, 2290, 13, 82, 6442, 7, 65, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34846, 58, 944, 13, 27305, 14864, 34846, 21912, 944, 13, 27305, 14864, 34846, 60, 796, 872, 72, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34846, 58, 25, 944, 13, 27305, 14864, 34846, 60, 796, 1364, 62, 37764, 496, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34846, 58, 12, 944, 13, 27305, 14864, 34846, 47715, 796, 826, 62, 37764, 496, 628, 198, 4871, 4476, 330, 1800, 7279, 10136, 16281, 7, 15252, 2599, 198, 220, 220, 220, 705, 7061, 464, 1708, 4539, 257, 18640, 286, 257, 10730, 7480, 43212, 48453, 198, 220, 220, 220, 351, 257, 16074, 287, 262, 31050, 1022, 262, 13375, 13, 317, 640, 15874, 15004, 318, 198, 220, 220, 220, 5625, 1973, 262, 43212, 13, 383, 2628, 286, 604, 3815, 2174, 6053, 284, 198, 220, 220, 220, 262, 604, 2663, 28590, 416, 15406, 2123, 435, 13, 357, 6390, 8, 287, 511, 31747, 286, 198, 220, 220, 220, 350, 2149, 12, 44, 4093, 12416, 13, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 7625, 796, 657, 13, 15, 3134, 1303, 285, 628, 220, 220, 220, 2030, 80, 796, 1511, 13, 3980, 68, 21, 1303, 26109, 198, 220, 220, 220, 15004, 796, 685, 17885, 13, 15, 11, 939, 13, 15, 11, 6640, 13, 15, 11, 7982, 13, 15, 60, 1303, 569, 628, 220, 220, 220, 3623, 62, 43337, 796, 685, 24, 13, 2414, 68, 1238, 11, 3933, 13, 16, 68, 1238, 11, 9907, 13, 19, 68, 1238, 11, 39595, 68, 1238, 60, 1303, 285, 61, 12, 18, 198, 220, 220, 220, 3623, 62, 29510, 796, 5867, 13, 15, 1303, 509, 198, 220, 220, 220, 285, 62, 295, 796, 718, 13, 3134, 68, 12, 1983, 1303, 14211, 628, 220, 220, 220, 16074, 62, 43337, 796, 685, 17, 13, 3980, 68, 1415, 11, 642, 13, 1065, 68, 1415, 11, 642, 13, 1065, 68, 1415, 11, 513, 13, 5705, 68, 1415, 60, 1303, 285, 61, 12, 18, 198, 220, 220, 220, 9766, 66, 62, 29510, 796, 513, 2388, 13, 15, 1303, 509, 628, 220, 220, 220, 9403, 62, 77, 381, 66, 796, 1467, 1635, 45941, 13, 18747, 26933, 2624, 11, 1467, 11, 807, 11, 604, 12962, 628, 220, 220, 220, 299, 89, 796, 685, 12762, 11, 17759, 11, 22243, 11, 22243, 60, 628, 220, 220, 220, 288, 83, 796, 352, 13, 15, 1220, 357, 37659, 13, 18747, 26933, 7029, 11, 10460, 11, 26143, 11, 513, 2167, 12962, 1635, 2030, 80, 8, 628, 220, 220, 220, 1303, 7472, 18640, 640, 287, 4201, 198, 220, 220, 220, 2472, 62, 2435, 796, 45941, 13, 18747, 26933, 1065, 1795, 11, 642, 10232, 11, 642, 10232, 11, 1315, 15277, 12962, 1220, 2030, 80, 198, 220, 220, 220, 1303, 3862, 357, 259, 4201, 8, 1022, 23584, 34109, 198, 220, 220, 220, 2566, 363, 62, 3849, 2100, 796, 3933, 1220, 2030, 80, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 299, 28, 15, 11, 1332, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 5128, 10007, 329, 262, 2176, 1339, 357, 77, 8, 10348, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 77, 796, 299, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9288, 796, 1332, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 8913, 2176, 5128, 10007, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 37764, 496, 796, 277, 1, 90, 944, 13, 37764, 496, 58, 77, 48999, 9, 31369, 7, 17, 9, 14415, 9, 90, 944, 13, 19503, 80, 25, 13, 20, 68, 92, 9, 83, 16725, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22649, 62, 43337, 796, 2116, 13, 22649, 62, 43337, 58, 77, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 489, 11797, 62, 43337, 796, 2116, 13, 489, 11797, 62, 43337, 58, 77, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 28826, 62, 77, 381, 66, 796, 2116, 13, 28826, 62, 77, 381, 66, 58, 77, 60, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 27305, 796, 2116, 13, 27305, 58, 77, 60, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 28664, 796, 2116, 13, 28664, 58, 77, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9806, 62, 20214, 796, 493, 7, 944, 13, 23350, 62, 2435, 58, 77, 60, 1220, 2116, 13, 28664, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 10989, 363, 62, 20214, 796, 493, 7, 944, 13, 10989, 363, 62, 3849, 2100, 1220, 2116, 13, 28664, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 9288, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9806, 62, 20214, 796, 2026, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 10989, 363, 62, 20214, 796, 642, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 76, 535, 62, 7266, 948, 8493, 62, 20214, 796, 362, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 76, 535, 62, 7266, 948, 8493, 62, 20214, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 295, 62, 43337, 62, 18747, 796, 45941, 13, 9107, 418, 7, 944, 13, 27305, 1343, 352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40406, 62, 5143, 3419, 628, 220, 220, 220, 825, 9058, 62, 5143, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 40786, 18640, 6805, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 29113, 29113, 4242, 2235, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5345, 22939, 290, 18645, 3403, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29113, 29113, 4242, 2235, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25928, 796, 8301, 11632, 13, 43476, 35610, 16, 35, 41339, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1271, 62, 1659, 62, 46342, 41888, 944, 13, 27305, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1175, 8416, 62, 9806, 62, 25928, 62, 7857, 28, 12762, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2793, 62, 7784, 41888, 15, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6727, 62, 7784, 41888, 944, 13, 43554, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2793, 62, 7784, 560, 62, 17561, 1756, 28, 17816, 15908, 488, 1616, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6727, 62, 7784, 560, 62, 17561, 1756, 28, 17816, 15908, 488, 1616, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2793, 62, 7784, 560, 62, 17561, 1756, 62, 3911, 2983, 28, 17816, 46303, 4623, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6727, 62, 7784, 560, 62, 17561, 1756, 62, 3911, 2983, 28, 17816, 46303, 4623, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1175, 8416, 62, 13059, 1843, 62, 5303, 62, 89, 28, 944, 13, 37764, 496, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 29113, 29113, 4242, 2235, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7663, 1540, 332, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29113, 29113, 4242, 2235, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 2116, 13, 82, 14375, 796, 8301, 11632, 13, 19453, 305, 12708, 50, 14375, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 10706, 28, 944, 13, 25928, 11, 2446, 11639, 15205, 3692, 312, 3256, 2672, 62, 3866, 16005, 28, 16, 68, 12, 21, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 1175, 8416, 62, 944, 62, 25747, 62, 19011, 16579, 28, 17, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 82, 14375, 796, 7695, 30927, 50, 14375, 16, 35, 7, 25928, 28, 944, 13, 25928, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 29113, 29113, 4242, 2235, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2142, 1548, 3858, 9058, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29113, 29113, 4242, 2235, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9509, 12212, 796, 8301, 11632, 13, 5248, 3171, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18758, 62, 4906, 11639, 9509, 1313, 3256, 1438, 11639, 9509, 12212, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4238, 62, 17080, 3890, 28, 16564, 11632, 13, 3118, 6933, 20344, 3890, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12109, 28, 944, 13, 489, 11797, 62, 43337, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 907, 62, 626, 11683, 41888, 37659, 13, 31166, 17034, 7, 9979, 1187, 13, 32812, 1635, 2116, 13, 11129, 66, 62, 29510, 1220, 38491, 13, 76, 62, 68, 15437, 9, 18, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 507, 796, 8301, 11632, 13, 5248, 3171, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18758, 62, 4906, 11639, 1544, 3256, 1438, 11639, 258, 62, 507, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3877, 11639, 80, 62, 68, 3256, 2347, 28, 944, 13, 76, 62, 295, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4238, 62, 17080, 3890, 28, 16564, 11632, 13, 3118, 6933, 20344, 3890, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12109, 28, 944, 13, 489, 11797, 62, 43337, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 907, 62, 626, 11683, 41888, 37659, 13, 31166, 17034, 7, 9979, 1187, 13, 32812, 1635, 2116, 13, 22649, 62, 29510, 1220, 2116, 13, 76, 62, 295, 15437, 9, 18, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 29113, 29113, 4242, 2235, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7778, 1166, 37588, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29113, 29113, 4242, 2235, 628, 220, 220, 220, 220, 220, 220, 220, 3272, 62, 2363, 62, 67, 557, 66, 796, 705, 40720, 40720, 40720, 40720, 86, 5117, 87, 12, 7890, 14, 44, 4093, 62, 19692, 62, 23946, 14, 1544, 14, 6, 198, 220, 220, 220, 220, 220, 220, 220, 285, 535, 62, 9509, 12212, 796, 8301, 11632, 13, 44, 4093, 22667, 3279, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 26000, 62, 11129, 66, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4693, 28, 944, 13, 9509, 12212, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4469, 62, 43337, 28, 944, 13, 22649, 62, 43337, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4469, 62, 11498, 21069, 28, 944, 13, 22649, 62, 29510, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4469, 62, 22208, 28, 944, 13, 507, 13, 22208, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 28664, 28, 944, 13, 76, 535, 62, 7266, 948, 8493, 62, 20214, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45765, 62, 14681, 274, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 417, 3477, 6, 1058, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 19692, 62, 5458, 6, 1058, 3272, 62, 2363, 62, 67, 557, 66, 10, 6, 9509, 1313, 62, 1416, 16475, 13, 19608, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 41194, 3780, 16, 6, 1058, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 19692, 62, 5458, 10354, 3272, 62, 2363, 62, 67, 557, 66, 10, 6, 41194, 3780, 62, 16, 13, 19608, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 22554, 6, 1058, 678, 13, 6469, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 41194, 3780, 17, 6, 1058, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 19692, 62, 5458, 10354, 3272, 62, 2363, 62, 67, 557, 66, 10, 6, 41194, 3780, 62, 17, 13, 19608, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 22554, 6, 1058, 1160, 13, 5333, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 295, 1634, 6, 1058, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 19692, 62, 5458, 6, 1058, 3272, 62, 2363, 62, 67, 557, 66, 10, 6, 295, 1634, 13, 19608, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 22554, 6, 1058, 1987, 13, 2816, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 35448, 6, 1058, 2116, 13, 507, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 285, 535, 62, 507, 796, 8301, 11632, 13, 44, 4093, 22667, 3279, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 26000, 62, 295, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4693, 28, 944, 13, 507, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4469, 62, 43337, 28, 944, 13, 22649, 62, 43337, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4469, 62, 11498, 21069, 28, 944, 13, 22649, 62, 29510, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 28664, 28, 944, 13, 76, 535, 62, 7266, 948, 8493, 62, 20214, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45765, 62, 14681, 274, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 417, 3477, 6, 1058, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 19692, 62, 5458, 6, 1058, 3272, 62, 2363, 62, 67, 557, 66, 10, 6, 295, 62, 1416, 16475, 13, 19608, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1891, 6, 1058, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 19692, 62, 5458, 6, 1058, 3272, 62, 2363, 62, 67, 557, 66, 10, 6, 295, 62, 1891, 62, 1416, 1436, 13, 19608, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 705, 10136, 62, 1069, 3803, 6, 1058, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 705, 19692, 62, 5458, 6, 1058, 3272, 62, 2363, 62, 67, 557, 66, 10, 6, 10136, 62, 1069, 3803, 13, 19608, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 29113, 29113, 4242, 2235, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 20768, 1096, 18640, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29113, 29113, 4242, 2235, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 14323, 796, 8301, 11632, 13, 8890, 1741, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1540, 332, 28, 944, 13, 82, 14375, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 62, 9662, 62, 7857, 28, 944, 13, 28664, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 20214, 28, 944, 13, 9806, 62, 20214, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1175, 8416, 62, 26000, 3279, 41888, 76, 535, 62, 9509, 12212, 11, 285, 535, 62, 507, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1175, 8416, 62, 2220, 62, 20427, 62, 3849, 12786, 28, 944, 13, 9806, 62, 20214, 1003, 27641, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15942, 577, 28, 944, 13, 9288, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 14323, 13, 2860, 62, 35448, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9509, 12212, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12461, 796, 8301, 11632, 13, 8642, 1638, 276, 32517, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 62, 20285, 1773, 20205, 62, 525, 62, 3846, 41888, 944, 13, 28826, 62, 77, 381, 66, 4357, 10706, 28, 944, 13, 25928, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 14323, 13, 2860, 62, 35448, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 507, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12461, 796, 8301, 11632, 13, 8642, 1638, 276, 32517, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 62, 20285, 1773, 20205, 62, 525, 62, 3846, 41888, 944, 13, 28826, 62, 77, 381, 66, 4357, 10706, 28, 944, 13, 25928, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 82, 14375, 13, 14323, 62, 2302, 796, 2116, 13, 14323, 13, 2302, 3004, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 29113, 29113, 4242, 2235, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3060, 6689, 34558, 329, 262, 14514, 1332, 284, 307, 3772, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 29113, 29113, 4242, 2235, 628, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 10989, 363, 796, 8301, 11632, 13, 15878, 18683, 4660, 15132, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 10989, 363, 16, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10706, 28, 944, 13, 25928, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2278, 28, 15, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 4868, 28, 17816, 81, 8873, 62, 9509, 12212, 3256, 705, 81, 8873, 62, 258, 62, 507, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3551, 62, 15908, 11639, 2637, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1175, 8416, 62, 7753, 62, 40290, 11639, 37906, 62, 25249, 62, 76, 535, 62, 16, 67, 62, 489, 83, 6, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 14323, 13, 2860, 62, 47356, 15132, 7, 3245, 62, 10989, 363, 8, 198, 198, 14468, 7804, 2235, 198, 2, 21136, 5128, 10007, 198, 14468, 7804, 2235, 198, 198, 48610, 796, 1822, 29572, 13, 28100, 1713, 46677, 3419, 198, 48610, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 705, 12, 83, 3256, 705, 438, 9288, 3256, 1037, 11639, 44256, 1771, 428, 4226, 318, 1057, 355, 257, 1790, 14514, 1332, 3256, 198, 220, 220, 220, 2223, 11639, 8095, 62, 7942, 3256, 198, 8, 198, 48610, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 705, 12, 77, 3256, 1037, 11639, 14402, 1271, 284, 1057, 357, 16, 284, 604, 8, 3256, 2672, 28, 25101, 11, 2099, 28, 600, 11, 198, 220, 220, 220, 4277, 28, 16, 198, 8, 198, 22046, 11, 1364, 796, 30751, 13, 29572, 62, 4002, 62, 22046, 3419, 198, 17597, 13, 853, 85, 796, 25064, 13, 853, 85, 58, 25, 16, 48688, 9464, 198, 198, 361, 26498, 13, 77, 1279, 352, 393, 26498, 13, 77, 1875, 604, 25, 198, 220, 220, 220, 5298, 3460, 4163, 12331, 10786, 14402, 1271, 1276, 307, 281, 18253, 422, 352, 284, 604, 2637, 8, 198, 198, 5143, 796, 4476, 330, 1800, 7279, 10136, 16281, 7, 77, 28, 22046, 13, 77, 12, 16, 11, 1332, 28, 22046, 13, 9288, 8, 198, 5143, 13, 5143, 62, 14323, 3419, 198 ]
2.101176
6,039
import torch import torchvision from tqdm import notebook import torch.nn.functional as F from time import time
[ 11748, 28034, 198, 11748, 28034, 10178, 198, 6738, 256, 80, 36020, 1330, 20922, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 376, 198, 6738, 640, 1330, 640, 628, 628, 220, 220, 220, 220, 220, 220, 220, 220, 628, 198 ]
3.230769
39
#!/usr/bin/env python3 # encoding: utf-8 import sys from itertools import combinations from random import randint ############################################################################## if __name__ == "__main__": if len(sys.argv) != 2: print("Usage: {} words.txt".format(sys.argv[0])) exit(1) # else process(sys.argv[1])
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 21004, 25, 3384, 69, 12, 23, 198, 198, 11748, 25064, 198, 6738, 340, 861, 10141, 1330, 17790, 198, 6738, 4738, 1330, 43720, 600, 628, 628, 628, 628, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 611, 18896, 7, 17597, 13, 853, 85, 8, 14512, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 28350, 25, 23884, 2456, 13, 14116, 1911, 18982, 7, 17597, 13, 853, 85, 58, 15, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 8420, 7, 16, 8, 198, 220, 220, 220, 1303, 2073, 198, 220, 220, 220, 1429, 7, 17597, 13, 853, 85, 58, 16, 12962, 198 ]
2.801527
131
""" This module contains functions for reading CSV files containing pressure and volume data. """ import numpy def read_csv(input_file, delimiter=",", x="p", sigma_x="sigma_p", y="v", sigma_y="sigma_v"): """ Reads a CSV file with x and y data and standard deviation columns. Parameters ---------- input_file : str delimiter : str y : str x : str sigma_y : str sigma_x : str Returns ------- x, y, sigma_x, sigma_y : tuple of array_like """ data = numpy.genfromtxt(input_file, delimiter=delimiter, names=True) return (data[x].flatten(), data[sigma_x].flatten(), data[y].flatten(), data[sigma_y].flatten())
[ 37811, 770, 8265, 4909, 5499, 329, 3555, 44189, 3696, 7268, 3833, 198, 392, 6115, 1366, 13, 198, 37811, 198, 198, 11748, 299, 32152, 198, 198, 4299, 1100, 62, 40664, 7, 15414, 62, 7753, 11, 46728, 2676, 28, 2430, 11, 2124, 2625, 79, 1600, 264, 13495, 62, 87, 2625, 82, 13495, 62, 79, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 2625, 85, 1600, 264, 13495, 62, 88, 2625, 82, 13495, 62, 85, 1, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4149, 82, 257, 44189, 2393, 351, 2124, 290, 331, 1366, 290, 3210, 28833, 15180, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 5128, 62, 7753, 1058, 965, 198, 220, 220, 220, 46728, 2676, 1058, 965, 198, 220, 220, 220, 331, 1058, 965, 198, 220, 220, 220, 2124, 1058, 965, 198, 220, 220, 220, 264, 13495, 62, 88, 1058, 965, 198, 220, 220, 220, 264, 13495, 62, 87, 1058, 965, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 2124, 11, 331, 11, 264, 13495, 62, 87, 11, 264, 13495, 62, 88, 1058, 46545, 286, 7177, 62, 2339, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1366, 796, 299, 32152, 13, 5235, 6738, 14116, 7, 15414, 62, 7753, 11, 46728, 2676, 28, 12381, 320, 2676, 11, 3891, 28, 17821, 8, 198, 220, 220, 220, 1441, 357, 7890, 58, 87, 4083, 2704, 41769, 22784, 1366, 58, 82, 13495, 62, 87, 4083, 2704, 41769, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 58, 88, 4083, 2704, 41769, 22784, 1366, 58, 82, 13495, 62, 88, 4083, 2704, 41769, 28955, 198 ]
2.412371
291
import fastai.torch_core as tc import fastai.data.load as load import torch import PIL as pil import pathlib as path import dill from numpy import prod import utils ################################################################################ TARGET_FOLDER = 'data' DATA_PATH = utils.download_dataset('cifar10', TARGET_FOLDER) CLASSIFICATION_LABELS = ['airplane', 'automobile', 'bird', 'cat', 'deer', 'dog', 'frog', 'horse', 'ship', 'truck'] EXPERIMENT_FOLDER = 'experiments' ################################################################################
[ 11748, 3049, 1872, 13, 13165, 354, 62, 7295, 355, 37096, 198, 11748, 3049, 1872, 13, 7890, 13, 2220, 355, 3440, 198, 11748, 28034, 198, 11748, 350, 4146, 355, 5560, 198, 11748, 3108, 8019, 355, 3108, 198, 11748, 288, 359, 198, 198, 6738, 299, 32152, 1330, 40426, 198, 198, 11748, 3384, 4487, 198, 198, 29113, 29113, 14468, 198, 198, 51, 46095, 62, 37, 3535, 14418, 796, 705, 7890, 6, 198, 26947, 62, 34219, 796, 3384, 4487, 13, 15002, 62, 19608, 292, 316, 10786, 66, 361, 283, 940, 3256, 309, 46095, 62, 37, 3535, 14418, 8, 198, 31631, 30643, 6234, 62, 48780, 37142, 796, 37250, 958, 14382, 3256, 705, 2306, 296, 3579, 3256, 705, 16944, 3256, 705, 9246, 3256, 705, 2934, 263, 3256, 705, 9703, 3256, 705, 49956, 3256, 705, 30527, 3256, 705, 6720, 3256, 705, 83, 30915, 20520, 198, 6369, 18973, 3955, 3525, 62, 37, 3535, 14418, 796, 705, 23100, 6800, 6, 198, 198, 29113, 29113, 14468, 198 ]
3.598726
157
# ======================================================================================= # ======================================================================================= # ======================================================================================= if __name__ == '__main__': solve()
[ 198, 2, 38093, 4770, 50155, 198, 198, 2, 38093, 4770, 50155, 628, 198, 2, 38093, 4770, 50155, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 8494, 3419 ]
9.176471
34
import logging import tensorflow as tf import d4.dsm.extensible_dsm as edsm import d4.interpreter as si from d4.dsm.loss import L2Loss logging.basicConfig(level=logging.DEBUG) if __name__ == "__main__": test_learn_to_add_digits()
[ 11748, 18931, 198, 198, 11748, 11192, 273, 11125, 355, 48700, 198, 198, 11748, 288, 19, 13, 67, 5796, 13, 2302, 27339, 62, 67, 5796, 355, 1225, 5796, 198, 11748, 288, 19, 13, 3849, 3866, 353, 355, 33721, 198, 6738, 288, 19, 13, 67, 5796, 13, 22462, 1330, 406, 17, 43, 793, 198, 198, 6404, 2667, 13, 35487, 16934, 7, 5715, 28, 6404, 2667, 13, 30531, 8, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1332, 62, 35720, 62, 1462, 62, 2860, 62, 12894, 896, 3419, 198 ]
2.542553
94
from datetime import datetime from datetime import timedelta import jwt from jwt import PyJWTError from passlib.context import CryptContext from fastapi import Depends from fastapi import HTTPException from fastapi.security import HTTPBearer from starlette.status import HTTP_401_UNAUTHORIZED from app.models.auth import UserModel security = HTTPBearer() pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") # openssl rand -hex 32 SECRET_KEY = "c1669dfb649fdf59354d6cc7403cd4f16ea0f2f3d6ee6180bf452bf640472a6f" ALGORITHM = "HS256" ACCESS_TOKEN_EXPIRE_MINUTES = 60 * 24
[ 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 4818, 8079, 1330, 28805, 12514, 198, 198, 11748, 474, 46569, 198, 6738, 474, 46569, 1330, 9485, 41, 39386, 12331, 198, 6738, 1208, 8019, 13, 22866, 1330, 15126, 21947, 198, 198, 6738, 3049, 15042, 1330, 2129, 2412, 198, 6738, 3049, 15042, 1330, 14626, 16922, 198, 6738, 3049, 15042, 13, 12961, 1330, 14626, 3856, 11258, 198, 6738, 3491, 21348, 13, 13376, 1330, 14626, 62, 21844, 62, 52, 4535, 24318, 1581, 14887, 1961, 628, 198, 6738, 598, 13, 27530, 13, 18439, 1330, 11787, 17633, 628, 198, 12961, 796, 14626, 3856, 11258, 3419, 198, 79, 16993, 62, 22866, 796, 15126, 21947, 7, 1416, 4411, 274, 28, 14692, 15630, 6012, 33116, 39224, 2625, 23736, 4943, 198, 198, 2, 9808, 6649, 43720, 532, 33095, 3933, 198, 23683, 26087, 62, 20373, 796, 366, 66, 1433, 3388, 7568, 65, 33300, 69, 7568, 3270, 32182, 67, 21, 535, 22, 31552, 10210, 19, 69, 1433, 18213, 15, 69, 17, 69, 18, 67, 21, 1453, 21, 15259, 19881, 37730, 19881, 31102, 37856, 64, 21, 69, 1, 198, 1847, 38, 1581, 10554, 44, 796, 366, 7998, 11645, 1, 198, 26861, 7597, 62, 10468, 43959, 62, 6369, 11901, 2200, 62, 23678, 3843, 1546, 796, 3126, 1635, 1987, 628, 628, 628, 198 ]
2.88835
206
from __future__ import division, absolute_import, print_function __copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ import six # noqa import pytest from six.moves import range import sys import logging logger = logging.getLogger(__name__) if __name__ == "__main__": if len(sys.argv) > 1: exec(sys.argv[1]) else: from py.test.cmdline import main main([__file__]) # vim: foldmethod=marker
[ 6738, 11593, 37443, 834, 1330, 7297, 11, 4112, 62, 11748, 11, 3601, 62, 8818, 198, 198, 834, 22163, 4766, 834, 796, 366, 15269, 357, 34, 8, 1584, 4705, 370, 6081, 1, 198, 198, 834, 43085, 834, 796, 37227, 198, 5990, 3411, 318, 29376, 7520, 11, 1479, 286, 3877, 11, 284, 597, 1048, 16727, 257, 4866, 198, 1659, 428, 3788, 290, 3917, 10314, 3696, 357, 1169, 366, 25423, 12340, 284, 1730, 198, 259, 262, 10442, 1231, 17504, 11, 1390, 1231, 17385, 262, 2489, 198, 1462, 779, 11, 4866, 11, 13096, 11, 20121, 11, 7715, 11, 14983, 11, 850, 43085, 11, 290, 14, 273, 3677, 198, 22163, 444, 286, 262, 10442, 11, 290, 284, 8749, 6506, 284, 4150, 262, 10442, 318, 198, 69, 700, 1348, 284, 466, 523, 11, 2426, 284, 262, 1708, 3403, 25, 198, 198, 464, 2029, 6634, 4003, 290, 428, 7170, 4003, 2236, 307, 3017, 287, 198, 439, 9088, 393, 8904, 16690, 286, 262, 10442, 13, 198, 198, 10970, 47466, 3180, 36592, 2389, 1961, 366, 1921, 3180, 1600, 42881, 34764, 56, 3963, 15529, 509, 12115, 11, 7788, 32761, 6375, 198, 3955, 49094, 11, 47783, 2751, 21728, 5626, 40880, 5390, 3336, 34764, 11015, 3963, 34482, 3398, 1565, 5603, 25382, 11, 198, 37, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 5357, 44521, 1268, 10913, 2751, 12529, 13, 3268, 8005, 49261, 50163, 3336, 198, 32, 24318, 20673, 6375, 27975, 38162, 9947, 367, 15173, 4877, 9348, 43031, 19146, 7473, 15529, 47666, 3955, 11, 29506, 25552, 6375, 25401, 198, 43, 3539, 25382, 11, 7655, 2767, 16879, 3268, 3537, 40282, 3963, 27342, 10659, 11, 309, 9863, 6375, 25401, 54, 24352, 11, 5923, 1797, 2751, 16034, 11, 198, 12425, 3963, 6375, 3268, 7102, 45, 24565, 13315, 3336, 47466, 6375, 3336, 23210, 6375, 25401, 5550, 1847, 20754, 3268, 198, 10970, 47466, 13, 198, 37811, 198, 198, 11748, 2237, 220, 1303, 645, 20402, 198, 11748, 12972, 9288, 198, 6738, 2237, 13, 76, 5241, 1330, 2837, 198, 198, 11748, 25064, 198, 198, 11748, 18931, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628, 628, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 611, 18896, 7, 17597, 13, 853, 85, 8, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2452, 7, 17597, 13, 853, 85, 58, 16, 12962, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 422, 12972, 13, 9288, 13, 28758, 1370, 1330, 1388, 198, 220, 220, 220, 220, 220, 220, 220, 1388, 26933, 834, 7753, 834, 12962, 198, 198, 2, 43907, 25, 5591, 24396, 28, 4102, 263, 198 ]
3.394009
434
from collections import OrderedDict from django.db import models from django.utils.translation import ugettext_lazy as _ from modelutils import * sheet_models = OrderedDict([ ('Print', NewspaperSheet), ('Radio', RadioSheet), ('Television', TelevisionSheet), ('Internet', InternetNewsSheet), ('Twitter', TwitterSheet) ]) tm_sheet_models = OrderedDict([ ('Print', NewspaperSheet), ('Radio', RadioSheet), ('Television', TelevisionSheet) ]) dm_sheet_models = OrderedDict([ ('Internet', InternetNewsSheet), ('Twitter', TwitterSheet) ]) person_models = OrderedDict([ ('Print', NewspaperPerson), ('Radio', RadioPerson), ('Television', TelevisionPerson), ('Internet', InternetNewsPerson), ('Twitter', TwitterPerson)] ) tm_person_models = OrderedDict([ ('Print', NewspaperPerson), ('Radio', RadioPerson), ('Television', TelevisionPerson), ]) dm_person_models = OrderedDict([ ('Internet', InternetNewsPerson), ('Twitter', TwitterPerson) ]) journalist_models = OrderedDict([ ('Print', NewspaperJournalist), ('Radio', RadioJournalist), ('Television', TelevisionJournalist), ('Internet', InternetNewsJournalist), ('Twitter', TwitterJournalist) ]) tm_journalist_models = OrderedDict([ ('Print', NewspaperJournalist), ('Radio', RadioJournalist), ('Television', TelevisionJournalist), ]) broadcast_journalist_models = OrderedDict([ ('Radio', RadioJournalist), ('Television', TelevisionJournalist), ]) dm_journalist_models = OrderedDict([ ('Internet', InternetNewsJournalist), ('Twitter', TwitterJournalist) ]) all_models = OrderedDict([ ('Sheets', sheet_models), ('Sources', person_models), ('Reporters', journalist_models) ])
[ 6738, 17268, 1330, 14230, 1068, 35, 713, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 6738, 42625, 14208, 13, 26791, 13, 41519, 1330, 334, 1136, 5239, 62, 75, 12582, 355, 4808, 198, 6738, 2746, 26791, 1330, 1635, 628, 198, 21760, 62, 27530, 796, 14230, 1068, 35, 713, 26933, 198, 220, 220, 220, 19203, 18557, 3256, 49598, 3347, 316, 828, 198, 220, 220, 220, 19203, 26093, 3256, 8829, 3347, 316, 828, 198, 220, 220, 220, 19203, 6767, 5024, 3256, 21516, 3347, 316, 828, 198, 220, 220, 220, 19203, 28566, 3256, 4455, 9980, 3347, 316, 828, 198, 220, 220, 220, 19203, 14254, 3256, 3009, 3347, 316, 8, 198, 12962, 198, 198, 17209, 62, 21760, 62, 27530, 796, 14230, 1068, 35, 713, 26933, 198, 220, 220, 220, 19203, 18557, 3256, 49598, 3347, 316, 828, 198, 220, 220, 220, 19203, 26093, 3256, 8829, 3347, 316, 828, 198, 220, 220, 220, 19203, 6767, 5024, 3256, 21516, 3347, 316, 8, 198, 12962, 198, 198, 36020, 62, 21760, 62, 27530, 796, 14230, 1068, 35, 713, 26933, 198, 220, 220, 220, 19203, 28566, 3256, 4455, 9980, 3347, 316, 828, 198, 220, 220, 220, 19203, 14254, 3256, 3009, 3347, 316, 8, 198, 12962, 198, 198, 6259, 62, 27530, 796, 14230, 1068, 35, 713, 26933, 198, 220, 220, 220, 19203, 18557, 3256, 49598, 15439, 828, 198, 220, 220, 220, 19203, 26093, 3256, 8829, 15439, 828, 198, 220, 220, 220, 19203, 6767, 5024, 3256, 21516, 15439, 828, 198, 220, 220, 220, 19203, 28566, 3256, 4455, 9980, 15439, 828, 198, 220, 220, 220, 19203, 14254, 3256, 3009, 15439, 15437, 198, 8, 198, 198, 17209, 62, 6259, 62, 27530, 796, 14230, 1068, 35, 713, 26933, 198, 220, 220, 220, 19203, 18557, 3256, 49598, 15439, 828, 198, 220, 220, 220, 19203, 26093, 3256, 8829, 15439, 828, 198, 220, 220, 220, 19203, 6767, 5024, 3256, 21516, 15439, 828, 198, 12962, 198, 198, 36020, 62, 6259, 62, 27530, 796, 14230, 1068, 35, 713, 26933, 198, 220, 220, 220, 19203, 28566, 3256, 4455, 9980, 15439, 828, 198, 220, 220, 220, 19203, 14254, 3256, 3009, 15439, 8, 198, 12962, 198, 198, 24891, 396, 62, 27530, 796, 14230, 1068, 35, 713, 26933, 198, 220, 220, 220, 19203, 18557, 3256, 49598, 25296, 396, 828, 198, 220, 220, 220, 19203, 26093, 3256, 8829, 25296, 396, 828, 198, 220, 220, 220, 19203, 6767, 5024, 3256, 21516, 25296, 396, 828, 198, 220, 220, 220, 19203, 28566, 3256, 4455, 9980, 25296, 396, 828, 198, 220, 220, 220, 19203, 14254, 3256, 3009, 25296, 396, 8, 198, 12962, 198, 198, 17209, 62, 24891, 396, 62, 27530, 796, 14230, 1068, 35, 713, 26933, 198, 220, 220, 220, 19203, 18557, 3256, 49598, 25296, 396, 828, 198, 220, 220, 220, 19203, 26093, 3256, 8829, 25296, 396, 828, 198, 220, 220, 220, 19203, 6767, 5024, 3256, 21516, 25296, 396, 828, 198, 12962, 198, 198, 36654, 2701, 62, 24891, 396, 62, 27530, 796, 14230, 1068, 35, 713, 26933, 198, 220, 220, 220, 19203, 26093, 3256, 8829, 25296, 396, 828, 198, 220, 220, 220, 19203, 6767, 5024, 3256, 21516, 25296, 396, 828, 198, 12962, 198, 198, 36020, 62, 24891, 396, 62, 27530, 796, 14230, 1068, 35, 713, 26933, 198, 220, 220, 220, 19203, 28566, 3256, 4455, 9980, 25296, 396, 828, 198, 220, 220, 220, 19203, 14254, 3256, 3009, 25296, 396, 8, 198, 12962, 198, 198, 439, 62, 27530, 796, 14230, 1068, 35, 713, 26933, 198, 220, 220, 220, 19203, 3347, 1039, 3256, 9629, 62, 27530, 828, 198, 220, 220, 220, 19203, 21188, 3256, 1048, 62, 27530, 828, 198, 220, 220, 220, 19203, 6207, 3816, 3256, 10099, 62, 27530, 8, 198, 12962, 198 ]
2.97973
592
from graphene_django import DjangoObjectType from graphql_jwt.decorators import login_required import graphene from .models import * class ShopType(DjangoObjectType): """ Create ModelType for Shop model """ class Meta: """ Metadata class """ model = Shop class LikeType(DjangoObjectType): """ Create ModelType for Like model """ class Meta: """ Metadata class """ model = Like class DislikeType(DjangoObjectType): """ Create ModelType for Dislike model """ class Meta: """ Metadata class """ model = Dislike class LikeShop(graphene.Mutation): """ LikeShop Mutation """ Output = LikeType class Arguments: """ pk unique key of the shop to be liken by the user in the session context. """ pk = graphene.ID() @login_required class DislikeShop(graphene.Mutation): """ DislikeShop Mutation """ Output = DislikeType class Arguments: """ pk unique key of the shop to be liken by the user in the session context. """ pk = graphene.ID() @login_required class RemoveShop(graphene.Mutation): """ DislikeShop Mutation """ ok = graphene.Boolean() class Arguments: """ pk unique key of the shop to be liken by the user in the session context. """ pk = graphene.ID() @login_required def mutate(self, info, pk): """ remove shop with primary key pk from favorite shops of the user in the context. """ shop = Shop.objects.get(pk=pk) like = Like.objects.get(shop=shop, user=info.context.user) like.delete() return RemoveShop(True) class ShopQuery(graphene.ObjectType): """ Query class for model shop """ nearby_shops = graphene.List(ShopType) preferred_shops = graphene.List(ShopType) @login_required def resolve_nearby_shops(self, info): """ Return all nearby shop for given user in the session context. """ return Shop.get_sorted_by_distance(info.context.user) @login_required def resolve_preferred_shops(self, info): """ Return all preferred shops for given user in the session context. """ return info.context.user.favorite_shops.all().distinct() class ShopMutation(graphene.ObjectType): """ All Mutation related with shop model type. """ like = LikeShop.Field() dislike = DislikeShop.Field() remove = RemoveShop.Field()
[ 6738, 42463, 62, 28241, 14208, 1330, 37770, 10267, 6030, 198, 6738, 4823, 13976, 62, 73, 46569, 13, 12501, 273, 2024, 1330, 17594, 62, 35827, 198, 11748, 42463, 198, 6738, 764, 27530, 1330, 1635, 628, 198, 4871, 13705, 6030, 7, 35, 73, 14208, 10267, 6030, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13610, 9104, 6030, 329, 13705, 2746, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1398, 30277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3395, 14706, 1398, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 2746, 796, 13705, 628, 198, 4871, 4525, 6030, 7, 35, 73, 14208, 10267, 6030, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13610, 9104, 6030, 329, 4525, 2746, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1398, 30277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3395, 14706, 1398, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 2746, 796, 4525, 628, 198, 4871, 3167, 2339, 6030, 7, 35, 73, 14208, 10267, 6030, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13610, 9104, 6030, 329, 3167, 2339, 2746, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1398, 30277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3395, 14706, 1398, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 2746, 796, 3167, 2339, 628, 198, 4871, 4525, 29917, 7, 70, 2416, 29473, 13, 44, 7094, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4525, 29917, 337, 7094, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 25235, 796, 4525, 6030, 628, 220, 220, 220, 1398, 20559, 2886, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 74, 3748, 1994, 286, 262, 6128, 284, 307, 4300, 268, 416, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 287, 262, 6246, 4732, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 279, 74, 796, 42463, 13, 2389, 3419, 628, 220, 220, 220, 2488, 38235, 62, 35827, 628, 198, 4871, 3167, 2339, 29917, 7, 70, 2416, 29473, 13, 44, 7094, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3167, 2339, 29917, 337, 7094, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 25235, 796, 3167, 2339, 6030, 628, 220, 220, 220, 1398, 20559, 2886, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 74, 3748, 1994, 286, 262, 6128, 284, 307, 4300, 268, 416, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 287, 262, 6246, 4732, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 279, 74, 796, 42463, 13, 2389, 3419, 628, 220, 220, 220, 2488, 38235, 62, 35827, 628, 198, 4871, 17220, 29917, 7, 70, 2416, 29473, 13, 44, 7094, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3167, 2339, 29917, 337, 7094, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 12876, 796, 42463, 13, 46120, 13087, 3419, 628, 220, 220, 220, 1398, 20559, 2886, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 74, 3748, 1994, 286, 262, 6128, 284, 307, 4300, 268, 416, 262, 2836, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 262, 6246, 4732, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 279, 74, 796, 42463, 13, 2389, 3419, 628, 220, 220, 220, 2488, 38235, 62, 35827, 198, 220, 220, 220, 825, 4517, 378, 7, 944, 11, 7508, 11, 279, 74, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4781, 6128, 351, 4165, 1994, 279, 74, 422, 4004, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12437, 286, 262, 2836, 287, 262, 4732, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 6128, 796, 13705, 13, 48205, 13, 1136, 7, 79, 74, 28, 79, 74, 8, 628, 220, 220, 220, 220, 220, 220, 220, 588, 796, 4525, 13, 48205, 13, 1136, 7, 24643, 28, 24643, 11, 2836, 28, 10951, 13, 22866, 13, 7220, 8, 628, 220, 220, 220, 220, 220, 220, 220, 588, 13, 33678, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 17220, 29917, 7, 17821, 8, 628, 198, 4871, 13705, 20746, 7, 70, 2416, 29473, 13, 10267, 6030, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 43301, 1398, 329, 2746, 6128, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6716, 62, 1477, 2840, 796, 42463, 13, 8053, 7, 29917, 6030, 8, 628, 220, 220, 220, 9871, 62, 1477, 2840, 796, 42463, 13, 8053, 7, 29917, 6030, 8, 628, 220, 220, 220, 2488, 38235, 62, 35827, 198, 220, 220, 220, 825, 10568, 62, 40093, 1525, 62, 1477, 2840, 7, 944, 11, 7508, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8229, 477, 6716, 6128, 329, 1813, 2836, 287, 262, 6246, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4732, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 13705, 13, 1136, 62, 82, 9741, 62, 1525, 62, 30246, 7, 10951, 13, 22866, 13, 7220, 8, 628, 220, 220, 220, 2488, 38235, 62, 35827, 198, 220, 220, 220, 825, 10568, 62, 3866, 18186, 62, 1477, 2840, 7, 944, 11, 7508, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8229, 477, 9871, 12437, 329, 1813, 2836, 287, 262, 6246, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4732, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 7508, 13, 22866, 13, 7220, 13, 35200, 62, 1477, 2840, 13, 439, 22446, 17080, 4612, 3419, 628, 198, 4871, 13705, 44, 7094, 7, 70, 2416, 29473, 13, 10267, 6030, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1439, 337, 7094, 3519, 351, 6128, 2746, 2099, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 588, 796, 4525, 29917, 13, 15878, 3419, 628, 220, 220, 220, 23109, 796, 3167, 2339, 29917, 13, 15878, 3419, 628, 220, 220, 220, 4781, 796, 17220, 29917, 13, 15878, 3419, 198 ]
2.292079
1,212
from django.contrib import admin from users import models # Register your models here. admin.site.register(models.Profile, ProfileAdmin)
[ 6738, 42625, 14208, 13, 3642, 822, 1330, 13169, 198, 6738, 2985, 1330, 4981, 198, 198, 2, 17296, 534, 4981, 994, 13, 198, 198, 28482, 13, 15654, 13, 30238, 7, 27530, 13, 37046, 11, 13118, 46787, 8 ]
3.833333
36
import tensorflow as tf
[ 11748, 11192, 273, 11125, 355, 48700, 628, 198 ]
3.25
8
""" war War card game written for fun while following the 'Complete Python Developer Certification Course' by Imtiaz Ahmad, on Udemy. """ # Add imports here # from card_class import Card # from .deck_class import Deck # from .table_class import Table # from .functions import get_players # Handle versioneer from ._version import get_versions versions = get_versions() __version__ = versions['version'] __git_revision__ = versions['full-revisionid'] del get_versions, versions
[ 37811, 198, 5767, 198, 13195, 2657, 983, 3194, 329, 1257, 981, 1708, 262, 705, 20988, 11361, 23836, 40609, 20537, 6, 416, 1846, 83, 17890, 24152, 11, 319, 35774, 3065, 13, 198, 37811, 198, 198, 2, 3060, 17944, 994, 198, 2, 422, 2657, 62, 4871, 1330, 5172, 198, 2, 422, 764, 35875, 62, 4871, 1330, 20961, 198, 2, 422, 764, 11487, 62, 4871, 1330, 8655, 198, 2, 422, 764, 12543, 2733, 1330, 651, 62, 32399, 628, 198, 2, 33141, 2196, 28153, 198, 6738, 47540, 9641, 1330, 651, 62, 47178, 198, 47178, 796, 651, 62, 47178, 3419, 198, 834, 9641, 834, 796, 6300, 17816, 9641, 20520, 198, 834, 18300, 62, 260, 10178, 834, 796, 6300, 17816, 12853, 12, 260, 10178, 312, 20520, 198, 12381, 651, 62, 47178, 11, 6300, 198 ]
3.75
128
import json import logging import asyncio from aiohttp import web import voluptuous as vol from concurrent import futures from ledfxcontroller.api import RestEndpoint _LOGGER = logging.getLogger(__name__) MAX_PENDING_MESSAGES = 256 BASE_MESSAGE_SCHEMA = vol.Schema({ vol.Required('id'): vol.Coerce(int), vol.Required('type'): str, }, extra=vol.ALLOW_EXTRA) # TODO: Have a more well defined registration and a more componetized solution. # Could do something like have Device actually provide the handler for Device # related functionality. This would allow easy access to internal workings and # events. websocket_handlers = {} import numpy as np @websocket_handler('get_pixels')
[ 11748, 33918, 198, 11748, 18931, 198, 11748, 30351, 952, 198, 6738, 257, 952, 4023, 1330, 3992, 198, 11748, 2322, 37623, 5623, 355, 2322, 198, 6738, 24580, 1330, 25650, 198, 6738, 2957, 21373, 36500, 13, 15042, 1330, 8324, 12915, 4122, 198, 198, 62, 25294, 30373, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 198, 22921, 62, 47, 10619, 2751, 62, 44, 1546, 4090, 48075, 796, 17759, 198, 198, 33, 11159, 62, 44, 1546, 4090, 8264, 62, 50, 3398, 27630, 796, 2322, 13, 27054, 2611, 15090, 198, 220, 220, 220, 2322, 13, 37374, 10786, 312, 6, 2599, 2322, 13, 7222, 263, 344, 7, 600, 828, 198, 220, 220, 220, 2322, 13, 37374, 10786, 4906, 6, 2599, 965, 11, 198, 5512, 3131, 28, 10396, 13, 7036, 3913, 62, 13918, 3861, 8, 198, 198, 2, 16926, 46, 25, 8192, 257, 517, 880, 5447, 9352, 290, 257, 517, 552, 36823, 1143, 4610, 13, 198, 2, 10347, 466, 1223, 588, 423, 16232, 1682, 2148, 262, 21360, 329, 16232, 220, 198, 2, 3519, 11244, 13, 770, 561, 1249, 2562, 1895, 284, 5387, 35084, 290, 198, 2, 2995, 13, 220, 198, 732, 1443, 5459, 62, 4993, 8116, 796, 23884, 198, 198, 11748, 299, 32152, 355, 45941, 198, 198, 31, 732, 1443, 5459, 62, 30281, 10786, 1136, 62, 79, 14810, 11537 ]
3.227907
215
# step 1 - capture first frame # step 2 - capture other frame # step 3 - calculate the difference in frisr and other frame # step 4 - define threshold # step 5 - define boarders import cv2 from sendMail import send_mail from datetime import datetime first_frame = None video = cv2.VideoCapture(0) count = 0 photos = [] time1 = datetime.now() while True: check, frame = video.read() gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) gray = cv2.GaussianBlur(gray, (21, 21), 0) # first frame if first_frame is None: first_frame = gray continue # calculate difference delta_frame = cv2.absdiff(first_frame, gray) # define threshold # if threshold is < 30 convert that pixels to black otherwise white thresh_delta = cv2.threshold(delta_frame, 30, 225, cv2.THRESH_BINARY)[1] thresh_delta = cv2.dilate(thresh_delta, None, iterations=0) # define boarders or contours (cnts, _) = cv2.findContours(thresh_delta.copy(), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) for contour in cnts: if cv2.contourArea(contour) < 25000: # remove noises continue # define rectangle count = count + 1 path = "Capture/ph_" + str(count) + ".jpg" cv2.imwrite(path, frame) # photos.append(path) (x, y, w, h) = cv2.boundingRect(contour) cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 3) cv2.imshow('frame', frame) """ cv2.imshow('gray', gray) cv2.imshow('delta', delta_frame) cv2.imshow('thresh ', thresh_delta) """ """if len(photos) > 100 : send_mail(photos[0]) photos.clear() """ """time2 = datetime.now() diff = time2 - time1 if diff.total_seconds() > 15: send_mail(photos[:5]) photos.clear() time1 = time2 """ key = cv2.waitKey(1) if key == ord('q'): break video.release() cv2.destroyAllWindows()
[ 2, 2239, 352, 532, 8006, 717, 5739, 201, 198, 2, 2239, 362, 532, 8006, 584, 5739, 201, 198, 2, 2239, 513, 532, 15284, 262, 3580, 287, 1216, 271, 81, 290, 584, 5739, 201, 198, 2, 220, 2239, 604, 532, 8160, 11387, 201, 198, 2, 2239, 642, 532, 220, 220, 8160, 3096, 364, 201, 198, 201, 198, 11748, 269, 85, 17, 201, 198, 6738, 3758, 25804, 1330, 3758, 62, 4529, 201, 198, 6738, 4818, 8079, 1330, 4818, 8079, 201, 198, 201, 198, 11085, 62, 14535, 796, 6045, 201, 198, 15588, 796, 269, 85, 17, 13, 10798, 49630, 7, 15, 8, 201, 198, 9127, 796, 657, 201, 198, 24729, 796, 17635, 201, 198, 2435, 16, 796, 4818, 8079, 13, 2197, 3419, 201, 198, 4514, 6407, 25, 201, 198, 220, 220, 220, 2198, 11, 5739, 796, 2008, 13, 961, 3419, 201, 198, 220, 220, 220, 12768, 796, 269, 85, 17, 13, 33967, 83, 10258, 7, 14535, 11, 269, 85, 17, 13, 46786, 62, 33, 10761, 17, 38, 30631, 8, 201, 198, 220, 220, 220, 12768, 796, 269, 85, 17, 13, 35389, 31562, 3629, 333, 7, 44605, 11, 357, 2481, 11, 2310, 828, 657, 8, 201, 198, 201, 198, 220, 220, 220, 1303, 717, 5739, 201, 198, 220, 220, 220, 611, 717, 62, 14535, 318, 6045, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 717, 62, 14535, 796, 12768, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2555, 201, 198, 201, 198, 220, 220, 220, 1303, 15284, 3580, 201, 198, 220, 220, 220, 25979, 62, 14535, 796, 269, 85, 17, 13, 8937, 26069, 7, 11085, 62, 14535, 11, 12768, 8, 201, 198, 220, 220, 220, 1303, 8160, 11387, 201, 198, 220, 220, 220, 1303, 611, 11387, 318, 1279, 1542, 10385, 326, 17848, 284, 2042, 4306, 2330, 201, 198, 220, 220, 220, 294, 3447, 62, 67, 12514, 796, 269, 85, 17, 13, 400, 10126, 7, 67, 12514, 62, 14535, 11, 1542, 11, 18500, 11, 269, 85, 17, 13, 4221, 19535, 39, 62, 33, 1268, 13153, 38381, 16, 60, 201, 198, 220, 220, 220, 294, 3447, 62, 67, 12514, 796, 269, 85, 17, 13, 67, 346, 378, 7, 400, 3447, 62, 67, 12514, 11, 6045, 11, 34820, 28, 15, 8, 201, 198, 201, 198, 220, 220, 220, 1303, 8160, 3096, 364, 393, 542, 4662, 201, 198, 201, 198, 220, 220, 220, 357, 66, 429, 82, 11, 4808, 8, 796, 269, 85, 17, 13, 19796, 4264, 4662, 7, 400, 3447, 62, 67, 12514, 13, 30073, 22784, 269, 85, 17, 13, 2200, 5446, 62, 6369, 31800, 1847, 11, 269, 85, 17, 13, 3398, 29833, 62, 2969, 31190, 55, 62, 48913, 16437, 8, 201, 198, 201, 198, 220, 220, 220, 329, 542, 454, 287, 269, 429, 82, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 269, 85, 17, 13, 3642, 454, 30547, 7, 3642, 454, 8, 1279, 1679, 830, 25, 220, 1303, 4781, 26782, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8160, 35991, 201, 198, 220, 220, 220, 220, 220, 220, 220, 954, 796, 954, 1343, 352, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 366, 49630, 14, 746, 62, 1, 1343, 965, 7, 9127, 8, 1343, 27071, 9479, 1, 201, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 17, 13, 320, 13564, 7, 6978, 11, 5739, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5205, 13, 33295, 7, 6978, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 357, 87, 11, 331, 11, 266, 11, 289, 8, 796, 269, 85, 17, 13, 7784, 278, 45474, 7, 3642, 454, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 269, 85, 17, 13, 2554, 9248, 7, 14535, 11, 357, 87, 11, 331, 828, 357, 87, 1343, 266, 11, 331, 1343, 289, 828, 357, 15, 11, 14280, 11, 657, 828, 513, 8, 201, 198, 201, 198, 220, 220, 220, 269, 85, 17, 13, 320, 12860, 10786, 14535, 3256, 5739, 8, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 269, 85, 17, 13, 320, 12860, 10786, 44605, 3256, 12768, 8, 201, 198, 220, 220, 220, 220, 269, 85, 17, 13, 320, 12860, 10786, 67, 12514, 3256, 25979, 62, 14535, 8, 201, 198, 220, 220, 220, 220, 269, 85, 17, 13, 320, 12860, 10786, 400, 3447, 46083, 294, 3447, 62, 67, 12514, 8, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 37227, 361, 18896, 7, 24729, 8, 1875, 1802, 1058, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3758, 62, 4529, 7, 24729, 58, 15, 12962, 201, 198, 220, 220, 220, 220, 220, 220, 220, 5205, 13, 20063, 3419, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 37227, 2435, 17, 796, 4818, 8079, 13, 2197, 3419, 201, 198, 220, 220, 220, 814, 796, 640, 17, 532, 640, 16, 201, 198, 220, 220, 220, 611, 220, 814, 13, 23350, 62, 43012, 3419, 1875, 1315, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3758, 62, 4529, 7, 24729, 58, 25, 20, 12962, 201, 198, 220, 220, 220, 220, 220, 220, 220, 5205, 13, 20063, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 640, 16, 796, 640, 17, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 201, 198, 220, 220, 220, 1994, 796, 269, 85, 17, 13, 17077, 9218, 7, 16, 8, 201, 198, 220, 220, 220, 611, 1994, 6624, 2760, 10786, 80, 6, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2270, 201, 198, 201, 198, 15588, 13, 20979, 3419, 201, 198, 33967, 17, 13, 41659, 3237, 11209, 3419, 201, 198 ]
2.127368
950
from django.urls import path from django.views.generic.base import TemplateView from microsoft_student_partners.msp.views import MspView app_name = "msp" urlpatterns = [ path("", view=MspView.as_view(), name="home"), path( "services/", TemplateView.as_view(template_name="services.html"), name="services", ), path("about", TemplateView.as_view(template_name="about.html"), name="about",), path( "contact", TemplateView.as_view(template_name="contact.html"), name="contact", ), ]
[ 6738, 42625, 14208, 13, 6371, 82, 1330, 3108, 198, 6738, 42625, 14208, 13, 33571, 13, 41357, 13, 8692, 1330, 37350, 7680, 198, 198, 6738, 4580, 4215, 62, 50139, 62, 3911, 2741, 13, 907, 79, 13, 33571, 1330, 337, 2777, 7680, 198, 198, 1324, 62, 3672, 796, 366, 907, 79, 1, 198, 6371, 33279, 82, 796, 685, 198, 220, 220, 220, 3108, 7203, 1600, 1570, 28, 44, 2777, 7680, 13, 292, 62, 1177, 22784, 1438, 2625, 11195, 12340, 198, 220, 220, 220, 3108, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 30416, 14, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 37350, 7680, 13, 292, 62, 1177, 7, 28243, 62, 3672, 2625, 30416, 13, 6494, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 2625, 30416, 1600, 198, 220, 220, 220, 10612, 198, 220, 220, 220, 3108, 7203, 10755, 1600, 37350, 7680, 13, 292, 62, 1177, 7, 28243, 62, 3672, 2625, 10755, 13, 6494, 12340, 1438, 2625, 10755, 1600, 828, 198, 220, 220, 220, 3108, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 32057, 1600, 37350, 7680, 13, 292, 62, 1177, 7, 28243, 62, 3672, 2625, 32057, 13, 6494, 12340, 1438, 2625, 32057, 1600, 198, 220, 220, 220, 10612, 198, 60, 198 ]
2.594203
207
from collections import namedtuple from datetime import datetime from subprocess import call GitFileData = namedtuple("GitFileData", ["permissions", "type", "hash", "path"]) repos = dict() def load_file(repo, file:GitFileData): """git checkout HEAD -- {path}""" try: get_repo(repo).checkout("master", "--", file.path) # print("Successfully loaded: {}".format(file.path)) except Exception as e: raise Exception("There was an error checking out file: {}\n{}".format(file.path, e)) call(["cp", "-vr", repo+"/" + file.path, "."]) def list_files(repo, filter=None, branch="HEAD"): """git ls-tree -r -t HEAD/{branch} --name-only""" files = get_repo(repo)('ls-tree', "-r", "-t", branch).stdout.decode("utf8").strip().splitlines() for data in files: split, file = data.split("\t") if filter is None or filter in file: permissions, type, hash = split.split(" ") yield GitFileData(permissions, type, hash, file) # def select_file(): # pairs = {} # for k, v in enumerate(list_files(str(resources_path))): # print(f'{k}:\t{v.path}') # pairs[k] = v # id = int(input("File #:\n")) # return pairs[id]
[ 6738, 17268, 1330, 3706, 83, 29291, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 850, 14681, 1330, 869, 198, 198, 38, 270, 8979, 6601, 796, 3706, 83, 29291, 7203, 38, 270, 8979, 6601, 1600, 14631, 525, 8481, 1600, 366, 4906, 1600, 366, 17831, 1600, 366, 6978, 8973, 8, 198, 198, 260, 1930, 796, 8633, 3419, 198, 198, 4299, 3440, 62, 7753, 7, 260, 7501, 11, 2393, 25, 38, 270, 8979, 6601, 2599, 198, 220, 220, 220, 37227, 18300, 28006, 39837, 1377, 1391, 6978, 92, 37811, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 651, 62, 260, 7501, 7, 260, 7501, 737, 9122, 448, 7203, 9866, 1600, 366, 438, 1600, 2393, 13, 6978, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7203, 33244, 2759, 9639, 25, 23884, 1911, 18982, 7, 7753, 13, 6978, 4008, 198, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 7203, 1858, 373, 281, 4049, 10627, 503, 2393, 25, 23884, 59, 77, 90, 92, 1911, 18982, 7, 7753, 13, 6978, 11, 304, 4008, 198, 220, 220, 220, 869, 7, 14692, 13155, 1600, 27444, 37020, 1600, 29924, 10, 1, 30487, 1343, 2393, 13, 6978, 11, 366, 526, 12962, 198, 198, 4299, 1351, 62, 16624, 7, 260, 7501, 11, 8106, 28, 14202, 11, 8478, 2625, 37682, 1, 2599, 198, 220, 220, 220, 37227, 18300, 43979, 12, 21048, 532, 81, 532, 83, 39837, 14, 90, 1671, 3702, 92, 1377, 3672, 12, 8807, 37811, 198, 220, 220, 220, 3696, 796, 651, 62, 260, 7501, 7, 260, 7501, 5769, 6, 7278, 12, 21048, 3256, 27444, 81, 1600, 27444, 83, 1600, 8478, 737, 19282, 448, 13, 12501, 1098, 7203, 40477, 23, 11074, 36311, 22446, 35312, 6615, 3419, 198, 220, 220, 220, 329, 1366, 287, 3696, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6626, 11, 2393, 796, 1366, 13, 35312, 7203, 59, 83, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 611, 8106, 318, 6045, 393, 8106, 287, 2393, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21627, 11, 2099, 11, 12234, 796, 6626, 13, 35312, 7203, 366, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 15151, 8979, 6601, 7, 525, 8481, 11, 2099, 11, 12234, 11, 2393, 8, 198, 198, 2, 825, 2922, 62, 7753, 33529, 198, 2, 220, 220, 220, 220, 14729, 796, 23884, 198, 2, 220, 220, 220, 220, 329, 479, 11, 410, 287, 27056, 378, 7, 4868, 62, 16624, 7, 2536, 7, 37540, 62, 6978, 4008, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 90, 74, 92, 7479, 83, 90, 85, 13, 6978, 92, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 14729, 58, 74, 60, 796, 410, 198, 2, 220, 220, 220, 220, 4686, 796, 493, 7, 15414, 7203, 8979, 1303, 7479, 77, 48774, 198, 2, 220, 220, 220, 220, 1441, 14729, 58, 312, 60, 628 ]
2.432
500
import pandas as pd import numpy as np import sqlalchemy from sqlalchemy import create_engine from sqlalchemy.orm import Session from password import pw import json from flask import Flask, jsonify, render_template path = 'postgresql://postgres:' + pw + '@localhost:5432/rpi_comp' engine = create_engine(path) conn = engine.connect() # Access our DB through pandas dataframe - convert to json - record oriented data = pd.read_sql("SELECT * FROM rpi", conn).to_json(orient='records') # Access database through sql alchemy # db = engine.execute('SELECT * FROM "rpi"').fetchall() # Create Session session = Session(engine) # Create Flask connection app = Flask(__name__) ################################################# # Flask Routes ################################################# @app.route("/api/v1.0/rpi_comp") def database(): """Return the rpi_comp db""" # Convert string to json data_json = json.loads(data) return jsonify(data_json) @app.route("/") @app.route("/index") if __name__ == "__main__": app.run(debug=True) # Could this database be accessed in this method? # DB through sql lite method # reflect an existing database into a new model # Base = automap_base() # reflect the tables # Base.prepare(engine, reflect=True) # Accessing different tables # Measurement = Base.classes.measurement # Station = Base.classes.station # Performing a query - Session.query
[ 11748, 19798, 292, 355, 279, 67, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 44161, 282, 26599, 198, 6738, 44161, 282, 26599, 1330, 2251, 62, 18392, 198, 6738, 44161, 282, 26599, 13, 579, 1330, 23575, 198, 6738, 9206, 1330, 279, 86, 198, 11748, 33918, 628, 198, 6738, 42903, 1330, 46947, 11, 33918, 1958, 11, 8543, 62, 28243, 628, 198, 6978, 796, 705, 7353, 34239, 13976, 1378, 7353, 34239, 32105, 1343, 279, 86, 1343, 705, 31, 36750, 25, 4051, 2624, 14, 81, 14415, 62, 5589, 6, 198, 198, 18392, 796, 2251, 62, 18392, 7, 6978, 8, 198, 37043, 796, 3113, 13, 8443, 3419, 198, 198, 2, 8798, 674, 20137, 832, 19798, 292, 1366, 14535, 532, 10385, 284, 33918, 532, 1700, 25921, 198, 7890, 796, 279, 67, 13, 961, 62, 25410, 7203, 46506, 1635, 16034, 374, 14415, 1600, 48260, 737, 1462, 62, 17752, 7, 13989, 11639, 8344, 3669, 11537, 198, 198, 2, 8798, 6831, 832, 44161, 435, 26599, 198, 2, 20613, 796, 3113, 13, 41049, 10786, 46506, 1635, 16034, 366, 81, 14415, 1, 27691, 69, 7569, 439, 3419, 198, 198, 2, 13610, 23575, 198, 29891, 796, 23575, 7, 18392, 8, 198, 198, 2, 13610, 46947, 4637, 198, 1324, 796, 46947, 7, 834, 3672, 834, 8, 628, 198, 29113, 14468, 2, 198, 2, 46947, 39602, 274, 198, 29113, 14468, 2, 198, 198, 31, 1324, 13, 38629, 7203, 14, 15042, 14, 85, 16, 13, 15, 14, 81, 14415, 62, 5589, 4943, 198, 4299, 6831, 33529, 198, 220, 220, 220, 37227, 13615, 262, 374, 14415, 62, 5589, 20613, 37811, 198, 2, 38240, 4731, 284, 33918, 220, 628, 220, 220, 220, 1366, 62, 17752, 796, 33918, 13, 46030, 7, 7890, 8, 628, 220, 220, 220, 1441, 33918, 1958, 7, 7890, 62, 17752, 8, 628, 198, 31, 1324, 13, 38629, 7203, 14, 4943, 220, 628, 198, 31, 1324, 13, 38629, 7203, 14, 9630, 4943, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 598, 13, 5143, 7, 24442, 28, 17821, 8, 628, 198, 2, 10347, 428, 6831, 307, 17535, 287, 428, 2446, 30, 198, 198, 2, 20137, 832, 44161, 300, 578, 2446, 198, 2, 4079, 281, 4683, 6831, 656, 257, 649, 2746, 198, 198, 2, 7308, 796, 3557, 499, 62, 8692, 3419, 198, 2, 4079, 262, 8893, 198, 2, 7308, 13, 46012, 533, 7, 18392, 11, 4079, 28, 17821, 8, 198, 198, 2, 8798, 278, 1180, 8893, 198, 2, 24291, 434, 796, 7308, 13, 37724, 13, 1326, 5015, 434, 198, 2, 9327, 796, 7308, 13, 37724, 13, 17529, 628, 198, 198, 2, 2448, 15464, 257, 12405, 532, 23575, 13, 22766, 198 ]
3.292343
431
# -*- coding: utf-8 -*- from hijack.tests.test_hijack import BaseHijackTests from hijack_admin import settings as hijack_admin_settings from hijack_admin.tests.test_app.models import RelatedModel
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 6738, 16836, 441, 13, 41989, 13, 9288, 62, 71, 2926, 441, 1330, 7308, 39, 2926, 441, 51, 3558, 198, 198, 6738, 16836, 441, 62, 28482, 1330, 6460, 355, 16836, 441, 62, 28482, 62, 33692, 198, 6738, 16836, 441, 62, 28482, 13, 41989, 13, 9288, 62, 1324, 13, 27530, 1330, 19809, 17633, 628 ]
3
66
"""JTAGICE3 protocol mappings""" from logging import getLogger from .avrcmsisdap import AvrCommand from ..util import binary from ..util import print_helpers from ..pyedbglib_errors import PyedbglibError class Jtagice3Command(AvrCommand): """ Sends a "JTAGICE3" command frame, and received a response JTAGICE3 protocol header is formatted: JTAGICE3_TOKEN 0x0E PROTOCOL_VERSION 0 SEQUENCE_NUMBER_L SEQUENCE_NUMBER_H HANDLER_ID PAYLOAD Response format is: JTAGICE3_TOKEN 0x0E SEQUENCE_NUMBER_L echo SEQUENCE_NUMBER_H echo HANDLER_ID PAYLOAD """ # JTAGICE3 protocol token JTAGICE3_TOKEN = 0x0E JTAGICE3_PROTOCOL_VERSION = 0x00 # Handlers within JTAGICE3 protocol HANDLER_DISCOVERY = 0x00 HANDLER_HOUSEKEEPING = 0x01 HANDLER_SPI = 0x11 HANDLER_AVR8_GENERIC = 0x12 HANDLER_AVR32_GENERIC = 0x13 HANDLER_TPI = 0x14 HANDLER_EDBG = 0x20 HANDLER_COPROCESSOR = 0x21 HANDLER_POWER = 0x22 HANDLER_SELFTEST = 0x81 def validate_response(self, response): """ Validates the response form the debugger :param response: raw response bytes """ self.logger.debug("Checking response (%s)", print_helpers.bytelist_to_hex_string(response)) # Check length first if len(response) < 5: raise PyedbglibError("Invalid response length ({:d}).".format(len(response))) # Check token if response[0] != self.JTAGICE3_TOKEN: raise PyedbglibError("Invalid token (0x{:02X}) in response.".format(response[0])) # Check sequence sequence = response[1] + (response[2] << 8) if self.sequence_id != sequence: raise PyedbglibError( "Invalid sequence in response (0x{:04X} vs 0x{:04X}).".format(self.sequence_id, sequence)) # Check handler if response[3] != self.handler: raise PyedbglibError("Invalid handler (0x{:02X}) in response.".format(response[3])) def jtagice3_command_response_raw(self, command): """ Sends a JTAGICE3 command and receives the corresponding response :param command: :return: """ # Header header = bytearray([self.JTAGICE3_TOKEN, self.JTAGICE3_PROTOCOL_VERSION, self.sequence_id & 0xFF, (self.sequence_id >> 8) & 0xFF, self.handler]) # Send command, receive response packet = header + bytearray(command) response = self.avr_command_response(packet) return response def jtagice3_command_response(self, command): """ Sends a JTAGICE3 command and receives the corresponding response, and validates it :param command: :return: """ response = self.jtagice3_command_response_raw(command) # Increment sequence number self.sequence_id += 1 if self.sequence_id > 0xFFFE: self.sequence_id = 1 # Peel and return return response[4:] class Jtagice3ResponseError(Exception): """Exception type for JTAGICE3 responses""" class Jtagice3Protocol(Jtagice3Command): """ Base class for all protocols in the JTAGICE3 family. All sub-protocols support query, get and set commands. """ # Command versioning CMD_VERSION0 = 0 CMD_VERSION1 = 1 # All handler share these functions: CMD_QUERY = 0x00 CMD_SET = 0x01 CMD_GET = 0x02 # And these base responses PROTOCOL_OK = 0x80 PROTOCOL_LIST = 0x81 PROTOCOL_DATA = 0x84 PROTOCOL_FAILED = 0xA0 # PROTOCOL_FAILED_WITH_DATA = 0xA1 # Failure codes FAILURE_OK = 0 # CMD_SET and CMD_GET failure codes SETGET_FAILURE_OK = 0x00 SETGET_FAILURE_NOT_IMPLEMENTED = 0x10 SETGET_FAILURE_NOT_SUPPORTED = 0x11 SETGET_FAILURE_INVALID_CLOCK_SPEED = 0x20 SETGET_FAILURE_ILLEGAL_STATE = 0x21 SETGET_FAILURE_JTAGM_INIT_ERROR = 0x22 SETGET_FAILURE_INVALID_VALUE = 0x23 SETGET_FAILURE_HANDLER_ERROR = 0x30 """Mapping JTAGICE3 error codes to more human friendly strings""" JTAGICE3_ERRORS = {0: 'SUCCESS'} def check_response(self, response, expected=None): """ Checks the response for known errors :param response: response bytes :param expected: expected response :return: data from response """ status, data = self.peel_response(response, expected) if not status: error_message = self.error_as_string(data[0]) msg = "JTAGICE3 error response code 0x{:02X}: '{:s}' ".format(data[0], error_message) self.logger.error(msg) raise Jtagice3ResponseError(error_message, data[0]) return data def error_as_string(self, code): """ Get the response error as a string (error code translated to descriptive string) :param code: error code :return: error code as descriptive string """ try: return self.JTAGICE3_ERRORS[code] except KeyError: return "Unknown error!" def peel_response(self, response, expected=None): """ Process the response, extracting error codes and data :param response: raw response bytes :param expected: expected response :return: status, data """ return_list = False, [0xFF] # Special handling if expected is not None and response[0] == expected: return_list = True, response[2:] else: if response[0] == self.PROTOCOL_OK: return_list = True, [] elif response[0] == self.PROTOCOL_LIST: return_list = True, response[2:] elif response[0] == self.PROTOCOL_DATA: # Trailing status is not included on some handlers if self.supports_trailing_status and response[-1] == self.FAILURE_OK: return_list = True, response[2:-1] else: return_list = False, [response[-1]] elif response[0] == self.PROTOCOL_FAILED: return_list = False, [response[2]] return return_list def query(self, context): """ Queries functionality using the QUERY API :param context: Query context :return: List of supported entries """ self.logger.debug("Query to context 0x{:02X}".format(context)) resp = self.jtagice3_command_response([self.CMD_QUERY, self.CMD_VERSION0, context]) status, data = self.peel_response(resp) if not status: msg = "Unable to QUERY (failure code 0x{:02X})".format(data[0]) raise PyedbglibError(msg) return data def set_byte(self, context, offset, value): """ Sets a single byte parameter :param context: context (address) to set :param offset: offset address to set :param value: value to set :return: """ self._set_protocol(context, offset, bytearray([value])) def set_le16(self, context, offset, value): """ Sets a little-endian 16-bit parameter :param context: context (address) to set :param offset: offset address to set :param value: value to set """ self._set_protocol(context, offset, binary.pack_le16(value)) def set_le32(self, context, offset, value): """ Sets a little-endian 32-bit parameter :param context: context (address) to set :param offset: offset address to set :param value: value to set """ self._set_protocol(context, offset, binary.pack_le32(value)) def _set_protocol(self, context, offset, data): """ Generic function for setting parameters :param context: context (address) to set :param offset: offset address to set :param data: values to set """ self.logger.debug("JTAGICE3::set {:d} byte(s) to context {:d} offset {:d}".format(len(data), context, offset)) resp = self.jtagice3_command_response( bytearray([self.CMD_SET, self.CMD_VERSION0, context, offset, len(data)]) + data) resp_status, resp_data = self.peel_response(resp) if not resp_status: msg = "Unable to SET (failure code 0x{:02X})".format(resp_data[0]) raise PyedbglibError(msg) def get_byte(self, context, offset): """ Get a single-byte parameter :param context: context (address) to set :param offset: offset address to set :return: value read """ data = self._get_protocol(context, offset, 1) return data[0] def get_le16(self, context, offset): """ Get a little-endian 16-bit parameter :param context: context (address) to set :param offset: offset address to set :return: value read """ data = self._get_protocol(context, offset, 2) return binary.unpack_le16(data) def get_le32(self, context, offset): """ Get a little-endian 32-bit parameter :param context: context (address) to set :param offset: offset address to set :return: value read """ data = self._get_protocol(context, offset, 4) return binary.unpack_le32(data) def _get_protocol(self, context, offset, numbytes): """ Generic function to get a parameter :param context: context (address) to set :param offset: offset address to set :param numbytes: number of bytes to get :return: value read """ self.logger.debug("JTAGICE3::get {:d} byte(s) from context {:d} offset {:d}".format(numbytes, context, offset)) resp = self.jtagice3_command_response([self.CMD_GET, self.CMD_VERSION0, context, offset, numbytes]) status, data = self.peel_response(resp) if not status: msg = "Unable to GET (failure code 0x{:02X})".format(data[0]) raise Jtagice3ResponseError(msg, data) return data
[ 37811, 41, 42197, 8476, 18, 8435, 285, 39242, 37811, 198, 198, 6738, 18931, 1330, 651, 11187, 1362, 198, 198, 6738, 764, 615, 6015, 907, 9409, 499, 1330, 5184, 81, 21575, 198, 6738, 11485, 22602, 1330, 13934, 198, 6738, 11485, 22602, 1330, 3601, 62, 16794, 364, 198, 6738, 11485, 9078, 276, 65, 4743, 571, 62, 48277, 1330, 9485, 276, 65, 4743, 571, 12331, 628, 198, 4871, 449, 12985, 501, 18, 21575, 7, 7355, 81, 21575, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 311, 2412, 257, 366, 41, 42197, 8476, 18, 1, 3141, 5739, 11, 290, 2722, 257, 2882, 628, 220, 220, 220, 220, 220, 220, 220, 449, 42197, 8476, 18, 8435, 13639, 318, 39559, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 449, 42197, 8476, 18, 62, 10468, 43959, 220, 220, 220, 220, 220, 657, 87, 15, 36, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 48006, 4503, 3535, 62, 43717, 220, 220, 220, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7946, 10917, 18310, 62, 41359, 13246, 62, 43, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7946, 10917, 18310, 62, 41359, 13246, 62, 39, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 367, 6981, 39878, 62, 2389, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 38444, 35613, 628, 220, 220, 220, 220, 220, 220, 220, 18261, 5794, 318, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 449, 42197, 8476, 18, 62, 10468, 43959, 220, 220, 220, 220, 220, 657, 87, 15, 36, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7946, 10917, 18310, 62, 41359, 13246, 62, 43, 220, 220, 9809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7946, 10917, 18310, 62, 41359, 13246, 62, 39, 220, 220, 9809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 367, 6981, 39878, 62, 2389, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 38444, 35613, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1303, 449, 42197, 8476, 18, 8435, 11241, 198, 220, 220, 220, 449, 42197, 8476, 18, 62, 10468, 43959, 796, 657, 87, 15, 36, 198, 220, 220, 220, 449, 42197, 8476, 18, 62, 4805, 2394, 4503, 3535, 62, 43717, 796, 657, 87, 405, 628, 220, 220, 220, 1303, 7157, 8116, 1626, 449, 42197, 8476, 18, 8435, 198, 220, 220, 220, 367, 6981, 39878, 62, 26288, 8220, 5959, 56, 796, 657, 87, 405, 198, 220, 220, 220, 367, 6981, 39878, 62, 46685, 5188, 42, 35238, 2751, 796, 657, 87, 486, 198, 220, 220, 220, 367, 6981, 39878, 62, 4303, 40, 796, 657, 87, 1157, 198, 220, 220, 220, 367, 6981, 39878, 62, 10116, 49, 23, 62, 35353, 1137, 2149, 796, 657, 87, 1065, 198, 220, 220, 220, 367, 6981, 39878, 62, 10116, 49, 2624, 62, 35353, 1137, 2149, 796, 657, 87, 1485, 198, 220, 220, 220, 367, 6981, 39878, 62, 7250, 40, 796, 657, 87, 1415, 198, 220, 220, 220, 367, 6981, 39878, 62, 1961, 40469, 796, 657, 87, 1238, 198, 220, 220, 220, 367, 6981, 39878, 62, 34, 3185, 49, 4503, 7597, 1581, 796, 657, 87, 2481, 198, 220, 220, 220, 367, 6981, 39878, 62, 47, 36048, 796, 657, 87, 1828, 198, 220, 220, 220, 367, 6981, 39878, 62, 50, 3698, 9792, 6465, 796, 657, 87, 6659, 628, 220, 220, 220, 825, 26571, 62, 26209, 7, 944, 11, 2882, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3254, 37051, 262, 2882, 1296, 262, 49518, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2882, 25, 8246, 2882, 9881, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 1362, 13, 24442, 7203, 9787, 278, 2882, 37633, 82, 42501, 3601, 62, 16794, 364, 13, 1525, 37524, 396, 62, 1462, 62, 33095, 62, 8841, 7, 26209, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 4129, 717, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 26209, 8, 1279, 642, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 9485, 276, 65, 4743, 571, 12331, 7203, 44651, 2882, 4129, 37913, 25, 67, 92, 21387, 13, 18982, 7, 11925, 7, 26209, 22305, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 11241, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2882, 58, 15, 60, 14512, 2116, 13, 41, 42197, 8476, 18, 62, 10468, 43959, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 9485, 276, 65, 4743, 571, 12331, 7203, 44651, 11241, 357, 15, 87, 90, 25, 2999, 55, 30072, 287, 2882, 526, 13, 18982, 7, 26209, 58, 15, 60, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 8379, 198, 220, 220, 220, 220, 220, 220, 220, 8379, 796, 2882, 58, 16, 60, 1343, 357, 26209, 58, 17, 60, 9959, 807, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 43167, 62, 312, 14512, 8379, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 9485, 276, 65, 4743, 571, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 44651, 8379, 287, 2882, 357, 15, 87, 90, 25, 3023, 55, 92, 3691, 657, 87, 90, 25, 3023, 55, 92, 21387, 13, 18982, 7, 944, 13, 43167, 62, 312, 11, 8379, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 21360, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2882, 58, 18, 60, 14512, 2116, 13, 30281, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 9485, 276, 65, 4743, 571, 12331, 7203, 44651, 21360, 357, 15, 87, 90, 25, 2999, 55, 30072, 287, 2882, 526, 13, 18982, 7, 26209, 58, 18, 60, 4008, 628, 220, 220, 220, 825, 474, 12985, 501, 18, 62, 21812, 62, 26209, 62, 1831, 7, 944, 11, 3141, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 311, 2412, 257, 449, 42197, 8476, 18, 3141, 290, 11583, 262, 11188, 2882, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 3141, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 48900, 198, 220, 220, 220, 220, 220, 220, 220, 13639, 796, 416, 83, 451, 2433, 26933, 944, 13, 41, 42197, 8476, 18, 62, 10468, 43959, 11, 2116, 13, 41, 42197, 8476, 18, 62, 4805, 2394, 4503, 3535, 62, 43717, 11, 2116, 13, 43167, 62, 312, 1222, 657, 87, 5777, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 944, 13, 43167, 62, 312, 9609, 807, 8, 1222, 657, 87, 5777, 11, 2116, 13, 30281, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 16290, 3141, 11, 3328, 2882, 198, 220, 220, 220, 220, 220, 220, 220, 19638, 796, 13639, 1343, 416, 83, 451, 2433, 7, 21812, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 2116, 13, 615, 81, 62, 21812, 62, 26209, 7, 8002, 316, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2882, 628, 220, 220, 220, 825, 474, 12985, 501, 18, 62, 21812, 62, 26209, 7, 944, 11, 3141, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 311, 2412, 257, 449, 42197, 8476, 18, 3141, 290, 11583, 262, 11188, 2882, 11, 290, 4938, 689, 340, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 3141, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 2116, 13, 73, 12985, 501, 18, 62, 21812, 62, 26209, 62, 1831, 7, 21812, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 10791, 434, 8379, 1271, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 43167, 62, 312, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 43167, 62, 312, 1875, 657, 87, 5777, 15112, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 43167, 62, 312, 796, 352, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 49266, 290, 1441, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2882, 58, 19, 47715, 628, 198, 4871, 449, 12985, 501, 18, 31077, 12331, 7, 16922, 2599, 198, 220, 220, 220, 37227, 16922, 2099, 329, 449, 42197, 8476, 18, 9109, 37811, 628, 198, 4871, 449, 12985, 501, 18, 19703, 4668, 7, 41, 12985, 501, 18, 21575, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 7308, 1398, 329, 477, 19565, 287, 262, 449, 42197, 8476, 18, 1641, 13, 628, 220, 220, 220, 1439, 850, 12, 11235, 4668, 82, 1104, 12405, 11, 651, 290, 900, 9729, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1303, 9455, 2196, 278, 198, 220, 220, 220, 327, 12740, 62, 43717, 15, 796, 657, 198, 220, 220, 220, 327, 12740, 62, 43717, 16, 796, 352, 628, 220, 220, 220, 1303, 1439, 21360, 2648, 777, 5499, 25, 198, 220, 220, 220, 327, 12740, 62, 10917, 19664, 796, 657, 87, 405, 198, 220, 220, 220, 327, 12740, 62, 28480, 796, 657, 87, 486, 198, 220, 220, 220, 327, 12740, 62, 18851, 796, 657, 87, 2999, 628, 220, 220, 220, 1303, 843, 777, 2779, 9109, 198, 220, 220, 220, 48006, 4503, 3535, 62, 11380, 796, 657, 87, 1795, 198, 220, 220, 220, 48006, 4503, 3535, 62, 45849, 796, 657, 87, 6659, 198, 220, 220, 220, 48006, 4503, 3535, 62, 26947, 796, 657, 87, 5705, 198, 220, 220, 220, 48006, 4503, 3535, 62, 7708, 4146, 1961, 796, 657, 87, 32, 15, 198, 220, 220, 220, 1303, 48006, 4503, 3535, 62, 7708, 4146, 1961, 62, 54, 10554, 62, 26947, 796, 657, 87, 32, 16, 628, 220, 220, 220, 1303, 25743, 12416, 198, 220, 220, 220, 9677, 4146, 11335, 62, 11380, 796, 657, 628, 220, 220, 220, 1303, 220, 327, 12740, 62, 28480, 290, 327, 12740, 62, 18851, 5287, 12416, 198, 220, 220, 220, 25823, 18851, 62, 7708, 4146, 11335, 62, 11380, 796, 657, 87, 405, 198, 220, 220, 220, 25823, 18851, 62, 7708, 4146, 11335, 62, 11929, 62, 3955, 16437, 10979, 1961, 796, 657, 87, 940, 198, 220, 220, 220, 25823, 18851, 62, 7708, 4146, 11335, 62, 11929, 62, 40331, 15490, 1961, 796, 657, 87, 1157, 198, 220, 220, 220, 25823, 18851, 62, 7708, 4146, 11335, 62, 1268, 23428, 2389, 62, 5097, 11290, 62, 4303, 41841, 796, 657, 87, 1238, 198, 220, 220, 220, 25823, 18851, 62, 7708, 4146, 11335, 62, 33844, 38, 1847, 62, 44724, 796, 657, 87, 2481, 198, 220, 220, 220, 25823, 18851, 62, 7708, 4146, 11335, 62, 41, 42197, 44, 62, 1268, 2043, 62, 24908, 796, 657, 87, 1828, 198, 220, 220, 220, 25823, 18851, 62, 7708, 4146, 11335, 62, 1268, 23428, 2389, 62, 39488, 796, 657, 87, 1954, 198, 220, 220, 220, 25823, 18851, 62, 7708, 4146, 11335, 62, 39, 6981, 39878, 62, 24908, 796, 657, 87, 1270, 628, 220, 220, 220, 37227, 44, 5912, 449, 42197, 8476, 18, 4049, 12416, 284, 517, 1692, 8030, 13042, 37811, 198, 220, 220, 220, 449, 42197, 8476, 18, 62, 24908, 50, 796, 1391, 15, 25, 705, 12564, 4093, 7597, 6, 92, 628, 220, 220, 220, 825, 2198, 62, 26209, 7, 944, 11, 2882, 11, 2938, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 47719, 262, 2882, 329, 1900, 8563, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2882, 25, 2882, 9881, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2938, 25, 2938, 2882, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 1366, 422, 2882, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3722, 11, 1366, 796, 2116, 13, 431, 417, 62, 26209, 7, 26209, 11, 2938, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 3722, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4049, 62, 20500, 796, 2116, 13, 18224, 62, 292, 62, 8841, 7, 7890, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 366, 41, 42197, 8476, 18, 4049, 2882, 2438, 657, 87, 90, 25, 2999, 55, 38362, 705, 90, 25, 82, 92, 6, 27071, 18982, 7, 7890, 58, 15, 4357, 4049, 62, 20500, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 1362, 13, 18224, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 449, 12985, 501, 18, 31077, 12331, 7, 18224, 62, 20500, 11, 1366, 58, 15, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1366, 628, 220, 220, 220, 825, 4049, 62, 292, 62, 8841, 7, 944, 11, 2438, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3497, 262, 2882, 4049, 355, 257, 4731, 357, 18224, 2438, 14251, 284, 35644, 4731, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2438, 25, 4049, 2438, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 4049, 2438, 355, 35644, 4731, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 41, 42197, 8476, 18, 62, 24908, 50, 58, 8189, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 7383, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 366, 20035, 4049, 2474, 628, 220, 220, 220, 825, 31738, 62, 26209, 7, 944, 11, 2882, 11, 2938, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 10854, 262, 2882, 11, 37895, 4049, 12416, 290, 1366, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2882, 25, 8246, 2882, 9881, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2938, 25, 2938, 2882, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 3722, 11, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 4868, 796, 10352, 11, 685, 15, 87, 5777, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6093, 9041, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2938, 318, 407, 6045, 290, 2882, 58, 15, 60, 6624, 2938, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 4868, 796, 6407, 11, 2882, 58, 17, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2882, 58, 15, 60, 6624, 2116, 13, 4805, 2394, 4503, 3535, 62, 11380, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 4868, 796, 6407, 11, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2882, 58, 15, 60, 6624, 2116, 13, 4805, 2394, 4503, 3535, 62, 45849, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 4868, 796, 6407, 11, 2882, 58, 17, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2882, 58, 15, 60, 6624, 2116, 13, 4805, 2394, 4503, 3535, 62, 26947, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4759, 4386, 3722, 318, 407, 3017, 319, 617, 32847, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 18608, 2096, 62, 9535, 4386, 62, 13376, 290, 2882, 58, 12, 16, 60, 6624, 2116, 13, 7708, 4146, 11335, 62, 11380, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 4868, 796, 6407, 11, 2882, 58, 17, 21912, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 4868, 796, 10352, 11, 685, 26209, 58, 12, 16, 11907, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2882, 58, 15, 60, 6624, 2116, 13, 4805, 2394, 4503, 3535, 62, 7708, 4146, 1961, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 4868, 796, 10352, 11, 685, 26209, 58, 17, 11907, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1441, 62, 4868, 628, 220, 220, 220, 825, 12405, 7, 944, 11, 4732, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2264, 10640, 11244, 1262, 262, 19604, 19664, 7824, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4732, 25, 43301, 4732, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 7343, 286, 4855, 12784, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 1362, 13, 24442, 7203, 20746, 284, 4732, 657, 87, 90, 25, 2999, 55, 92, 1911, 18982, 7, 22866, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1217, 796, 2116, 13, 73, 12985, 501, 18, 62, 21812, 62, 26209, 26933, 944, 13, 34, 12740, 62, 10917, 19664, 11, 2116, 13, 34, 12740, 62, 43717, 15, 11, 4732, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 3722, 11, 1366, 796, 2116, 13, 431, 417, 62, 26209, 7, 4363, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 3722, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 366, 3118, 540, 284, 19604, 19664, 357, 32165, 495, 2438, 657, 87, 90, 25, 2999, 55, 30072, 1911, 18982, 7, 7890, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 9485, 276, 65, 4743, 571, 12331, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1366, 628, 220, 220, 220, 825, 900, 62, 26327, 7, 944, 11, 4732, 11, 11677, 11, 1988, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 21394, 257, 2060, 18022, 11507, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4732, 25, 4732, 357, 21975, 8, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11677, 25, 11677, 2209, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1988, 25, 1988, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 2617, 62, 11235, 4668, 7, 22866, 11, 11677, 11, 416, 83, 451, 2433, 26933, 8367, 60, 4008, 628, 220, 220, 220, 825, 900, 62, 293, 1433, 7, 944, 11, 4732, 11, 11677, 11, 1988, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 21394, 257, 1310, 12, 437, 666, 1467, 12, 2545, 11507, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4732, 25, 4732, 357, 21975, 8, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11677, 25, 11677, 2209, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1988, 25, 1988, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 2617, 62, 11235, 4668, 7, 22866, 11, 11677, 11, 13934, 13, 8002, 62, 293, 1433, 7, 8367, 4008, 628, 220, 220, 220, 825, 900, 62, 293, 2624, 7, 944, 11, 4732, 11, 11677, 11, 1988, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 21394, 257, 1310, 12, 437, 666, 3933, 12, 2545, 11507, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4732, 25, 4732, 357, 21975, 8, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11677, 25, 11677, 2209, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1988, 25, 1988, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 2617, 62, 11235, 4668, 7, 22866, 11, 11677, 11, 13934, 13, 8002, 62, 293, 2624, 7, 8367, 4008, 628, 220, 220, 220, 825, 4808, 2617, 62, 11235, 4668, 7, 944, 11, 4732, 11, 11677, 11, 1366, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 42044, 2163, 329, 4634, 10007, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4732, 25, 4732, 357, 21975, 8, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11677, 25, 11677, 2209, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 1366, 25, 3815, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 1362, 13, 24442, 7203, 41, 42197, 8476, 18, 3712, 2617, 46110, 67, 92, 18022, 7, 82, 8, 284, 4732, 46110, 67, 92, 11677, 46110, 67, 92, 1911, 18982, 7, 11925, 7, 7890, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4732, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11677, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1217, 796, 2116, 13, 73, 12985, 501, 18, 62, 21812, 62, 26209, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 416, 83, 451, 2433, 26933, 944, 13, 34, 12740, 62, 28480, 11, 2116, 13, 34, 12740, 62, 43717, 15, 11, 4732, 11, 11677, 11, 18896, 7, 7890, 8, 12962, 1343, 1366, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1217, 62, 13376, 11, 1217, 62, 7890, 796, 2116, 13, 431, 417, 62, 26209, 7, 4363, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1217, 62, 13376, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 366, 3118, 540, 284, 25823, 357, 32165, 495, 2438, 657, 87, 90, 25, 2999, 55, 30072, 1911, 18982, 7, 4363, 62, 7890, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 9485, 276, 65, 4743, 571, 12331, 7, 19662, 8, 628, 220, 220, 220, 825, 651, 62, 26327, 7, 944, 11, 4732, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3497, 257, 2060, 12, 26327, 11507, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4732, 25, 4732, 357, 21975, 8, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11677, 25, 11677, 2209, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 1988, 1100, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2116, 13557, 1136, 62, 11235, 4668, 7, 22866, 11, 11677, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1366, 58, 15, 60, 628, 220, 220, 220, 825, 651, 62, 293, 1433, 7, 944, 11, 4732, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3497, 257, 1310, 12, 437, 666, 1467, 12, 2545, 11507, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4732, 25, 4732, 357, 21975, 8, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11677, 25, 11677, 2209, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 1988, 1100, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2116, 13557, 1136, 62, 11235, 4668, 7, 22866, 11, 11677, 11, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 13934, 13, 403, 8002, 62, 293, 1433, 7, 7890, 8, 628, 220, 220, 220, 825, 651, 62, 293, 2624, 7, 944, 11, 4732, 11, 11677, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3497, 257, 1310, 12, 437, 666, 3933, 12, 2545, 11507, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4732, 25, 4732, 357, 21975, 8, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11677, 25, 11677, 2209, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 1988, 1100, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2116, 13557, 1136, 62, 11235, 4668, 7, 22866, 11, 11677, 11, 604, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 13934, 13, 403, 8002, 62, 293, 2624, 7, 7890, 8, 628, 220, 220, 220, 825, 4808, 1136, 62, 11235, 4668, 7, 944, 11, 4732, 11, 11677, 11, 997, 33661, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 42044, 2163, 284, 651, 257, 11507, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4732, 25, 4732, 357, 21975, 8, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11677, 25, 11677, 2209, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 997, 33661, 25, 1271, 286, 9881, 284, 651, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 1988, 1100, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 1362, 13, 24442, 7203, 41, 42197, 8476, 18, 3712, 1136, 46110, 67, 92, 18022, 7, 82, 8, 422, 4732, 46110, 67, 92, 11677, 46110, 67, 92, 1911, 18982, 7, 22510, 33661, 11, 4732, 11, 11677, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1217, 796, 2116, 13, 73, 12985, 501, 18, 62, 21812, 62, 26209, 26933, 944, 13, 34, 12740, 62, 18851, 11, 2116, 13, 34, 12740, 62, 43717, 15, 11, 4732, 11, 11677, 11, 997, 33661, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 3722, 11, 1366, 796, 2116, 13, 431, 417, 62, 26209, 7, 4363, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 3722, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31456, 796, 366, 3118, 540, 284, 17151, 357, 32165, 495, 2438, 657, 87, 90, 25, 2999, 55, 30072, 1911, 18982, 7, 7890, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 449, 12985, 501, 18, 31077, 12331, 7, 19662, 11, 1366, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1366, 198 ]
2.198695
4,751
from decimal import Decimal from enerdata.profiles.profile import * from expects import * with description('A dragger object'): with it('must return the integer of the number'): d = Dragger() aprox = d.drag(32.453) expect(aprox).to(be(32)) with it('must keep the decimal part'): d = Dragger() aprox = d.drag(32.453) expect(Decimal(d['default'])).to(equal(Decimal('0.453'))) with it('has to save the decimal part to default key if is not set'): d = Dragger() aprox = d.drag(1.01) expect(d).to(have_key('default')) with it('has to work with diferent keys independently'): d = Dragger() aprox = d.drag(1.6, key='key1') aprox2 = d.drag(2.3, key='key2') expect(d['key1']).to(equal(Decimal('-0.4'))) expect(d['key2']).to(equal(Decimal('0.3'))) aprox = d.drag(1.4, key='key1') expect(aprox).to(be(1)) expect(d['key1']).to(equal(Decimal('0'))) aprox = d.drag(5.2, key='key2') expect(aprox).to(be(6)) expect(d['key2']).to(equal(Decimal('-0.5'))) with context('Has to use the drag of antecesor drag'): with context('If the current drag is >= 0.5'): with it('has to return number + 1 and drag will be < 0'): d = Dragger() aprox = d.drag(32.453) aprox2 = d.drag(1.1) expect(aprox2).to(be(2)) expect(d['default']).to(be_below_or_equal(0)) with context('If the curren drag is < 0.5'): with it('has to return number'): d = Dragger() aprox = d.drag(32.453) aprox2 = d.drag(1.046) expect(aprox2).to(be(1)) with context('if receives 0.5 and 0'): with it('has to drag -0.5 and return 1 and 0'): d = Dragger() approx = d.drag(0.5) dragging = d['default'] expect(approx).to(equal(1)) expect(dragging).to(equal(Decimal('-0.5'))) aprox = d.drag(0) dragging = d['default'] expect(aprox).to(equal(0)) expect(dragging).to(equal(Decimal('-0.5')))
[ 6738, 32465, 1330, 4280, 4402, 198, 198, 6738, 2400, 7890, 13, 5577, 2915, 13, 13317, 1330, 1635, 198, 6738, 13423, 1330, 1635, 198, 198, 4480, 6764, 10786, 32, 6715, 1362, 2134, 6, 2599, 198, 220, 220, 220, 351, 340, 10786, 27238, 1441, 262, 18253, 286, 262, 1271, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 288, 796, 1583, 7928, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1676, 87, 796, 288, 13, 7109, 363, 7, 2624, 13, 36625, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 499, 13907, 737, 1462, 7, 1350, 7, 2624, 4008, 628, 220, 220, 220, 351, 340, 10786, 27238, 1394, 262, 32465, 636, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 288, 796, 1583, 7928, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1676, 87, 796, 288, 13, 7109, 363, 7, 2624, 13, 36625, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 10707, 4402, 7, 67, 17816, 12286, 6, 12962, 737, 1462, 7, 40496, 7, 10707, 4402, 10786, 15, 13, 36625, 6, 22305, 628, 220, 220, 220, 351, 340, 10786, 10134, 284, 3613, 262, 32465, 636, 284, 4277, 1994, 611, 318, 407, 900, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 288, 796, 1583, 7928, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1676, 87, 796, 288, 13, 7109, 363, 7, 16, 13, 486, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 67, 737, 1462, 7, 14150, 62, 2539, 10786, 12286, 6, 4008, 628, 220, 220, 220, 351, 340, 10786, 10134, 284, 670, 351, 288, 361, 9100, 8251, 14799, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 288, 796, 1583, 7928, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1676, 87, 796, 288, 13, 7109, 363, 7, 16, 13, 21, 11, 1994, 11639, 2539, 16, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1676, 87, 17, 796, 288, 13, 7109, 363, 7, 17, 13, 18, 11, 1994, 11639, 2539, 17, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 67, 17816, 2539, 16, 20520, 737, 1462, 7, 40496, 7, 10707, 4402, 10786, 12, 15, 13, 19, 6, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 67, 17816, 2539, 17, 20520, 737, 1462, 7, 40496, 7, 10707, 4402, 10786, 15, 13, 18, 6, 22305, 628, 220, 220, 220, 220, 220, 220, 220, 257, 1676, 87, 796, 288, 13, 7109, 363, 7, 16, 13, 19, 11, 1994, 11639, 2539, 16, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 499, 13907, 737, 1462, 7, 1350, 7, 16, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 67, 17816, 2539, 16, 20520, 737, 1462, 7, 40496, 7, 10707, 4402, 10786, 15, 6, 22305, 628, 220, 220, 220, 220, 220, 220, 220, 257, 1676, 87, 796, 288, 13, 7109, 363, 7, 20, 13, 17, 11, 1994, 11639, 2539, 17, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 499, 13907, 737, 1462, 7, 1350, 7, 21, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 67, 17816, 2539, 17, 20520, 737, 1462, 7, 40496, 7, 10707, 4402, 10786, 12, 15, 13, 20, 6, 22305, 628, 198, 220, 220, 220, 351, 4732, 10786, 19242, 284, 779, 262, 6715, 286, 29692, 728, 273, 6715, 6, 2599, 628, 220, 220, 220, 220, 220, 220, 220, 351, 4732, 10786, 1532, 262, 1459, 6715, 318, 18189, 657, 13, 20, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 340, 10786, 10134, 284, 1441, 1271, 1343, 352, 290, 6715, 481, 307, 1279, 657, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 796, 1583, 7928, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 1676, 87, 796, 288, 13, 7109, 363, 7, 2624, 13, 36625, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 1676, 87, 17, 796, 288, 13, 7109, 363, 7, 16, 13, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 499, 13907, 17, 737, 1462, 7, 1350, 7, 17, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 67, 17816, 12286, 20520, 737, 1462, 7, 1350, 62, 35993, 62, 273, 62, 40496, 7, 15, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 351, 4732, 10786, 1532, 262, 1090, 918, 6715, 318, 1279, 657, 13, 20, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 340, 10786, 10134, 284, 1441, 1271, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 796, 1583, 7928, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 1676, 87, 796, 288, 13, 7109, 363, 7, 2624, 13, 36625, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 1676, 87, 17, 796, 288, 13, 7109, 363, 7, 16, 13, 45438, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 499, 13907, 17, 737, 1462, 7, 1350, 7, 16, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 351, 4732, 10786, 361, 11583, 657, 13, 20, 290, 657, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 340, 10786, 10134, 284, 6715, 532, 15, 13, 20, 290, 1441, 352, 290, 657, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 796, 1583, 7928, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5561, 796, 288, 13, 7109, 363, 7, 15, 13, 20, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25046, 796, 288, 17816, 12286, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 1324, 13907, 737, 1462, 7, 40496, 7, 16, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 7109, 16406, 737, 1462, 7, 40496, 7, 10707, 4402, 10786, 12, 15, 13, 20, 6, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 1676, 87, 796, 288, 13, 7109, 363, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25046, 796, 288, 17816, 12286, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 499, 13907, 737, 1462, 7, 40496, 7, 15, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1607, 7, 7109, 16406, 737, 1462, 7, 40496, 7, 10707, 4402, 10786, 12, 15, 13, 20, 6, 22305, 198 ]
1.881765
1,201
'''OpenGL extension NV.blend_square This module customises the behaviour of the OpenGL.raw.GL.NV.blend_square to provide a more Python-friendly API Overview (from the spec) It is useful to be able to multiply a number by itself in the blending stages -- for example, in certain types of specular lighting effects where a result from a dot product needs to be taken to a high power. This extension provides four additional blending factors to permit this and other effects: SRC_COLOR and ONE_MINUS_SRC_COLOR for source blending factors, and DST_COLOR and ONE_MINUS_DST_COLOR for destination blending factors. Direct3D provides capability bits for advertising these additional blend modes. The official definition of this extension is available here: http://www.opengl.org/registry/specs/NV/blend_square.txt ''' from OpenGL import platform, constant, arrays from OpenGL import extensions, wrapper import ctypes from OpenGL.raw.GL import _types, _glgets from OpenGL.raw.GL.NV.blend_square import * from OpenGL.raw.GL.NV.blend_square import _EXTENSION_NAME def glInitBlendSquareNV(): '''Return boolean indicating whether this extension is available''' from OpenGL import extensions return extensions.hasGLExtension( _EXTENSION_NAME ) ### END AUTOGENERATED SECTION
[ 7061, 6, 11505, 8763, 7552, 23973, 13, 2436, 437, 62, 23415, 201, 198, 201, 198, 1212, 8265, 2183, 2696, 262, 9172, 286, 262, 220, 201, 198, 11505, 8763, 13, 1831, 13, 8763, 13, 27159, 13, 2436, 437, 62, 23415, 284, 2148, 257, 517, 220, 201, 198, 37906, 12, 13120, 7824, 201, 198, 201, 198, 29064, 357, 6738, 262, 1020, 8, 201, 198, 197, 201, 198, 197, 1026, 318, 4465, 284, 307, 1498, 284, 29162, 257, 1271, 416, 2346, 287, 262, 34863, 201, 198, 197, 301, 1095, 1377, 329, 1672, 11, 287, 1728, 3858, 286, 1020, 934, 12019, 3048, 201, 198, 197, 3003, 257, 1255, 422, 257, 16605, 1720, 2476, 284, 307, 2077, 284, 257, 1029, 1176, 13, 201, 198, 197, 201, 198, 197, 1212, 7552, 3769, 1440, 3224, 34863, 5087, 284, 8749, 201, 198, 197, 5661, 290, 584, 3048, 25, 311, 7397, 62, 46786, 290, 16329, 62, 23678, 2937, 62, 50, 7397, 62, 46786, 329, 2723, 201, 198, 197, 2436, 1571, 5087, 11, 290, 360, 2257, 62, 46786, 290, 16329, 62, 23678, 2937, 62, 35, 2257, 62, 46786, 329, 10965, 201, 198, 197, 2436, 1571, 5087, 13, 201, 198, 197, 201, 198, 197, 13470, 18, 35, 3769, 12971, 10340, 329, 8560, 777, 3224, 201, 198, 197, 2436, 437, 12881, 13, 201, 198, 201, 198, 464, 1743, 6770, 286, 428, 7552, 318, 1695, 994, 25, 201, 198, 4023, 1378, 2503, 13, 404, 1516, 75, 13, 2398, 14, 2301, 4592, 14, 4125, 6359, 14, 27159, 14, 2436, 437, 62, 23415, 13, 14116, 201, 198, 7061, 6, 201, 198, 6738, 30672, 1330, 3859, 11, 6937, 11, 26515, 201, 198, 6738, 30672, 1330, 18366, 11, 29908, 201, 198, 11748, 269, 19199, 201, 198, 6738, 30672, 13, 1831, 13, 8763, 1330, 4808, 19199, 11, 4808, 4743, 11407, 201, 198, 6738, 30672, 13, 1831, 13, 8763, 13, 27159, 13, 2436, 437, 62, 23415, 1330, 1635, 201, 198, 6738, 30672, 13, 1831, 13, 8763, 13, 27159, 13, 2436, 437, 62, 23415, 1330, 4808, 13918, 16938, 2849, 62, 20608, 201, 198, 201, 198, 4299, 1278, 31768, 3629, 437, 48011, 27159, 33529, 201, 198, 220, 220, 220, 705, 7061, 13615, 25131, 12739, 1771, 428, 7552, 318, 1695, 7061, 6, 201, 198, 220, 220, 220, 422, 30672, 1330, 18366, 201, 198, 220, 220, 220, 1441, 18366, 13, 10134, 38, 2538, 742, 3004, 7, 4808, 13918, 16938, 2849, 62, 20608, 1267, 201, 198, 201, 198, 201, 198, 21017, 23578, 47044, 7730, 1677, 1137, 11617, 44513 ]
3.292079
404
from chainer.training.triggers import interval from chainer.training.triggers import minmax_value_trigger IntervalTrigger = interval.IntervalTrigger MaxValueTrigger = minmax_value_trigger.MaxValueTrigger MinValueTrigger = minmax_value_trigger.MinValueTrigger
[ 6738, 6333, 263, 13, 34409, 13, 2213, 328, 5355, 1330, 16654, 198, 6738, 6333, 263, 13, 34409, 13, 2213, 328, 5355, 1330, 949, 9806, 62, 8367, 62, 46284, 628, 198, 9492, 2100, 48344, 796, 16654, 13, 9492, 2100, 48344, 198, 11518, 11395, 48344, 796, 949, 9806, 62, 8367, 62, 46284, 13, 11518, 11395, 48344, 198, 9452, 11395, 48344, 796, 949, 9806, 62, 8367, 62, 46284, 13, 9452, 11395, 48344, 198 ]
3.728571
70
import urllib.request wiki = "https://en.wikipedia.org/wiki/List_of_countries_by_the_number_of_billionaires" page = urllib.request.urlopen(wiki) from bs4 import BeautifulSoup soup = BeautifulSoup(page) print (soup.prettify()) soup.title.text soup.a soup.find_all("a") right_table = soup.find('table',class_ = 'wikitable') table_body = right_table.find('tbody') rows = table_body.find_all('tr') count = 0 data = [] for row in rows: if count == 0: cols = row.find_all('th') cols = [elem.text.strip() for elem in cols] data.append([elem for elem in cols if elem]) count = count + 1 else: cols = row.find_all('td') cols = [elem.text.strip() for elem in cols] data.append([elem for elem in cols if elem]) import pandas as pd dataframe = pd.DataFrame(columns = data[0]) for i in range(1,len(data)): dataframe = dataframe.append(pd.Series(data[i],index = data[0]),ignore_index = True)
[ 11748, 2956, 297, 571, 13, 25927, 198, 15466, 796, 366, 5450, 1378, 268, 13, 31266, 13, 2398, 14, 15466, 14, 8053, 62, 1659, 62, 9127, 1678, 62, 1525, 62, 1169, 62, 17618, 62, 1659, 62, 24540, 17693, 1, 198, 7700, 796, 2956, 297, 571, 13, 25927, 13, 6371, 9654, 7, 15466, 8, 220, 198, 198, 6738, 275, 82, 19, 1330, 23762, 50, 10486, 198, 82, 10486, 796, 23762, 50, 10486, 7, 7700, 8, 198, 4798, 357, 82, 10486, 13, 3866, 926, 1958, 28955, 198, 198, 82, 10486, 13, 7839, 13, 5239, 198, 198, 82, 10486, 13, 64, 220, 198, 82, 10486, 13, 19796, 62, 439, 7203, 64, 4943, 198, 198, 3506, 62, 11487, 796, 17141, 13, 19796, 10786, 11487, 3256, 4871, 62, 796, 705, 20763, 4674, 11537, 198, 11487, 62, 2618, 796, 826, 62, 11487, 13, 19796, 10786, 83, 2618, 11537, 198, 8516, 796, 3084, 62, 2618, 13, 19796, 62, 439, 10786, 2213, 11537, 198, 198, 9127, 796, 657, 198, 7890, 796, 17635, 198, 198, 1640, 5752, 287, 15274, 25, 198, 220, 220, 220, 611, 954, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 951, 82, 796, 5752, 13, 19796, 62, 439, 10786, 400, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 951, 82, 796, 685, 68, 10671, 13, 5239, 13, 36311, 3419, 329, 9766, 76, 287, 951, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 13, 33295, 26933, 68, 10671, 329, 9766, 76, 287, 951, 82, 611, 9766, 76, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 954, 796, 954, 1343, 352, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 951, 82, 796, 5752, 13, 19796, 62, 439, 10786, 8671, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 951, 82, 796, 685, 68, 10671, 13, 5239, 13, 36311, 3419, 329, 9766, 76, 287, 951, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 13, 33295, 26933, 68, 10671, 329, 9766, 76, 287, 951, 82, 611, 9766, 76, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 11748, 19798, 292, 355, 279, 67, 198, 7890, 14535, 796, 279, 67, 13, 6601, 19778, 7, 28665, 82, 796, 1366, 58, 15, 12962, 220, 220, 220, 220, 220, 220, 198, 198, 1640, 1312, 287, 2837, 7, 16, 11, 11925, 7, 7890, 8, 2599, 198, 220, 220, 220, 1366, 14535, 796, 1366, 14535, 13, 33295, 7, 30094, 13, 27996, 7, 7890, 58, 72, 4357, 9630, 796, 1366, 58, 15, 46570, 46430, 62, 9630, 796, 6407, 8, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 198, 220, 220, 220, 220 ]
2.279176
437